From 7ec2130120ba34b1b751da0b8134156038544125 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Sun, 22 Mar 2026 15:09:39 -0700 Subject: [PATCH 01/34] move to uv --- .github/workflows/python-publish.yml | 16 +- .github/workflows/test-suite.yml | 14 +- .readthedocs.yml | 8 +- Dockerfile | 14 +- compose.yml | 2 - docs/CONTRIBUTING.rst | 10 +- docs/quickstart.rst | 16 +- poetry.lock | 2749 -------------------- pyproject.toml | 100 +- volumes/config/.storage/core.restore_state | 8 +- 10 files changed, 86 insertions(+), 2851 deletions(-) delete mode 100644 poetry.lock diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index a32afcf3..b147886a 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -16,16 +16,12 @@ jobs: uses: actions/setup-python@v2 with: python-version: "3.13" + - name: Install uv + uses: astral-sh/setup-uv@v4 - name: Install dependencies - run: | - python -m pip install --upgrade pip poetry - poetry config virtualenvs.create false - poetry install - - - name: build release distributions - run: | - # NOTE: put your own distribution build steps here. - poetry build + run: uv sync + - name: Build release distributions + run: uv build - name: upload dists uses: actions/upload-artifact@v4 @@ -48,4 +44,4 @@ jobs: path: dist/ - name: Publish release distributions to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 + uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 858d4edb..77435707 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -4,7 +4,6 @@ on: paths: - "**.py" - "pyproject.toml" - - "poetry.lock" pull_request: branches: - master @@ -12,7 +11,6 @@ on: paths: - "**.py" - "pyproject.toml" - - "poetry.lock" workflow_dispatch: jobs: @@ -28,16 +26,16 @@ jobs: uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} + - name: Install uv + uses: astral-sh/setup-uv@v4 - name: Install Dependencies - run: | - pip install poetry - poetry install --with styling + run: uv sync --group styling - name: Run Ruff format - run: poetry run ruff format homeassistant_api + run: uv run ruff format homeassistant_api - name: Run Ruff linting - run: poetry run ruff check homeassistant_api + run: uv run ruff check homeassistant_api - name: Run MyPy - run: poetry run mypy homeassistant_api --show-error-codes + run: uv run mypy homeassistant_api --show-error-codes code_functionality: name: "Code Functionality" diff --git a/.readthedocs.yml b/.readthedocs.yml index 14f286ed..89643f58 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -6,13 +6,9 @@ build: tools: python: "3.10" jobs: - pre_create_environment: - - asdf plugin add poetry - - asdf install poetry 1.8.3 - - asdf global poetry 1.8.3 - - poetry export -f requirements.txt --output requirements.txt --with docs post_install: - - pip install -r requirements.txt + - pip install uv + - uv export --group docs --no-hashes | uv pip install --system -r - # Build documentation in the docs/ directory with Sphinx sphinx: diff --git a/Dockerfile b/Dockerfile index be299b74..d7332538 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,20 +1,12 @@ -ARG BUILD_FROM - -FROM ${BUILD_FROM} AS base +FROM ghcr.io/astral-sh/uv:python3.13-bookworm AS base ENV PYTHONPATH=. WORKDIR /app COPY ./ /app/ FROM base AS dependencies -RUN pip install --upgrade pip wheel -RUN pip install poetry -RUN python3 -m venv .venv && \ - . .venv/bin/activate && \ - poetry install --with testing && \ - deactivate +RUN uv sync --group testing FROM base AS final COPY --from=dependencies /app/.venv /app/.venv -ENTRYPOINT [ "sh", "entrypoint.sh" ] - +ENTRYPOINT [ "sh", "entrypoint.sh" ] \ No newline at end of file diff --git a/compose.yml b/compose.yml index bd502f0f..b8364f51 100644 --- a/compose.yml +++ b/compose.yml @@ -8,8 +8,6 @@ services: tests: build: context: . - args: - BUILD_FROM: "python:3.13" image: homeassistant-tests:latest volumes: - ./volumes/coverage:/app/coverage:rw diff --git a/docs/CONTRIBUTING.rst b/docs/CONTRIBUTING.rst index 2639d155..d35f2791 100644 --- a/docs/CONTRIBUTING.rst +++ b/docs/CONTRIBUTING.rst @@ -37,12 +37,12 @@ Next run in your terminal. Step Three: Installing Dependencies ====================================== -Firstly, you need to have Python 3.7 or newer with Pip installed. +Firstly, you need to have Python 3.9 or newer installed. Download the latest Python Version from `here `__. -Then you need to install the very popular Python Package Manager, :code:`poetry`. -Checkout the `Poetry Docs `__. -You can install that with :code:`pip` by running :code:`pip install poetry`. -Now you can install the project's dependencies by running :code:`cd HomeAssistantAPI && poetry install` +Then you need to install :code:`uv`, a fast Python package manager. +Checkout the `uv Docs `__. +You can install it with :code:`pip` by running :code:`pip install uv`, or see the uv docs for other installation methods. +Now you can install the project's dependencies by running :code:`cd HomeAssistantAPI && uv sync` Step Four: [Optional] Setting Up a Home Assistant Development Environment. ============================================================================= diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 8ae128ca..c93b2273 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -55,14 +55,14 @@ Installation with pip is really easy and will install the dependencies this proj # To install the latest stable version from PyPI $ pip install homeassistant_api - # To install the latest dev version (you'll need to use poetry because pip, by itself, does not understand poetry dependencies.) - $ poetry add git+https://github.com/GrandMoff100/HomeassistantAPI + # To install the latest dev version + $ pip install git+https://github.com/GrandMoff100/HomeassistantAPI Installing with :code:`git` ---------------------------------- -To install with git we're going to clone the repository and then run :code:`$ poetry install` like so. +To install with git we're going to clone the repository and then run :code:`$ uv sync` like so. .. code-block:: bash @@ -70,13 +70,13 @@ To install with git we're going to clone the repository and then run :code:`$ po git clone https://github.com/GrandMoff100/HomeassistantAPI # CD into your project - cd + cd HomeAssistantAPI - # Install poetry - python -m pip install poetry + # Install uv (see https://docs.astral.sh/uv/ for other methods) + python -m pip install uv - # Run poetry install - python -m poetry install ~/HomeAssistantAPI + # Install dependencies + uv sync Then you should be all set to start using the library! diff --git a/poetry.lock b/poetry.lock deleted file mode 100644 index 2d9cd390..00000000 --- a/poetry.lock +++ /dev/null @@ -1,2749 +0,0 @@ -# This file is automatically @generated by Poetry 1.8.0 and should not be changed by hand. - -[[package]] -name = "aiohappyeyeballs" -version = "2.6.1" -description = "Happy Eyeballs for asyncio" -optional = false -python-versions = ">=3.9" -files = [ - {file = "aiohappyeyeballs-2.6.1-py3-none-any.whl", hash = "sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8"}, - {file = "aiohappyeyeballs-2.6.1.tar.gz", hash = "sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558"}, -] - -[[package]] -name = "aiohttp" -version = "3.13.3" -description = "Async http client/server framework (asyncio)" -optional = false -python-versions = ">=3.9" -files = [ - {file = "aiohttp-3.13.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d5a372fd5afd301b3a89582817fdcdb6c34124787c70dbcc616f259013e7eef7"}, - {file = "aiohttp-3.13.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:147e422fd1223005c22b4fe080f5d93ced44460f5f9c105406b753612b587821"}, - {file = "aiohttp-3.13.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:859bd3f2156e81dd01432f5849fc73e2243d4a487c4fd26609b1299534ee1845"}, - {file = "aiohttp-3.13.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dca68018bf48c251ba17c72ed479f4dafe9dbd5a73707ad8d28a38d11f3d42af"}, - {file = "aiohttp-3.13.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:fee0c6bc7db1de362252affec009707a17478a00ec69f797d23ca256e36d5940"}, - {file = "aiohttp-3.13.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c048058117fd649334d81b4b526e94bde3ccaddb20463a815ced6ecbb7d11160"}, - {file = "aiohttp-3.13.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:215a685b6fbbfcf71dfe96e3eba7a6f58f10da1dfdf4889c7dd856abe430dca7"}, - {file = "aiohttp-3.13.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2c184bb1fe2cbd2cefba613e9db29a5ab559323f994b6737e370d3da0ac455"}, - {file = "aiohttp-3.13.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:75ca857eba4e20ce9f546cd59c7007b33906a4cd48f2ff6ccf1ccfc3b646f279"}, - {file = "aiohttp-3.13.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:81e97251d9298386c2b7dbeb490d3d1badbdc69107fb8c9299dd04eb39bddc0e"}, - {file = "aiohttp-3.13.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c0e2d366af265797506f0283487223146af57815b388623f0357ef7eac9b209d"}, - {file = "aiohttp-3.13.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4e239d501f73d6db1522599e14b9b321a7e3b1de66ce33d53a765d975e9f4808"}, - {file = "aiohttp-3.13.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:0db318f7a6f065d84cb1e02662c526294450b314a02bd9e2a8e67f0d8564ce40"}, - {file = "aiohttp-3.13.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:bfc1cc2fe31a6026a8a88e4ecfb98d7f6b1fec150cfd708adbfd1d2f42257c29"}, - {file = "aiohttp-3.13.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:af71fff7bac6bb7508956696dce8f6eec2bbb045eceb40343944b1ae62b5ef11"}, - {file = "aiohttp-3.13.3-cp310-cp310-win32.whl", hash = "sha256:37da61e244d1749798c151421602884db5270faf479cf0ef03af0ff68954c9dd"}, - {file = "aiohttp-3.13.3-cp310-cp310-win_amd64.whl", hash = "sha256:7e63f210bc1b57ef699035f2b4b6d9ce096b5914414a49b0997c839b2bd2223c"}, - {file = "aiohttp-3.13.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5b6073099fb654e0a068ae678b10feff95c5cae95bbfcbfa7af669d361a8aa6b"}, - {file = "aiohttp-3.13.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cb93e166e6c28716c8c6aeb5f99dfb6d5ccf482d29fe9bf9a794110e6d0ab64"}, - {file = "aiohttp-3.13.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:28e027cf2f6b641693a09f631759b4d9ce9165099d2b5d92af9bd4e197690eea"}, - {file = "aiohttp-3.13.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3b61b7169ababd7802f9568ed96142616a9118dd2be0d1866e920e77ec8fa92a"}, - {file = "aiohttp-3.13.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:80dd4c21b0f6237676449c6baaa1039abae86b91636b6c91a7f8e61c87f89540"}, - {file = "aiohttp-3.13.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:65d2ccb7eabee90ce0503c17716fc77226be026dcc3e65cce859a30db715025b"}, - {file = "aiohttp-3.13.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5b179331a481cb5529fca8b432d8d3c7001cb217513c94cd72d668d1248688a3"}, - {file = "aiohttp-3.13.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d4c940f02f49483b18b079d1c27ab948721852b281f8b015c058100e9421dd1"}, - {file = "aiohttp-3.13.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f9444f105664c4ce47a2a7171a2418bce5b7bae45fb610f4e2c36045d85911d3"}, - {file = "aiohttp-3.13.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:694976222c711d1d00ba131904beb60534f93966562f64440d0c9d41b8cdb440"}, - {file = "aiohttp-3.13.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:f33ed1a2bf1997a36661874b017f5c4b760f41266341af36febaf271d179f6d7"}, - {file = "aiohttp-3.13.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:e636b3c5f61da31a92bf0d91da83e58fdfa96f178ba682f11d24f31944cdd28c"}, - {file = "aiohttp-3.13.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:5d2d94f1f5fcbe40838ac51a6ab5704a6f9ea42e72ceda48de5e6b898521da51"}, - {file = "aiohttp-3.13.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2be0e9ccf23e8a94f6f0650ce06042cefc6ac703d0d7ab6c7a917289f2539ad4"}, - {file = "aiohttp-3.13.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9af5e68ee47d6534d36791bbe9b646d2a7c7deb6fc24d7943628edfbb3581f29"}, - {file = "aiohttp-3.13.3-cp311-cp311-win32.whl", hash = "sha256:a2212ad43c0833a873d0fb3c63fa1bacedd4cf6af2fee62bf4b739ceec3ab239"}, - {file = "aiohttp-3.13.3-cp311-cp311-win_amd64.whl", hash = "sha256:642f752c3eb117b105acbd87e2c143de710987e09860d674e068c4c2c441034f"}, - {file = "aiohttp-3.13.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b903a4dfee7d347e2d87697d0713be59e0b87925be030c9178c5faa58ea58d5c"}, - {file = "aiohttp-3.13.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a45530014d7a1e09f4a55f4f43097ba0fd155089372e105e4bff4ca76cb1b168"}, - {file = "aiohttp-3.13.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:27234ef6d85c914f9efeb77ff616dbf4ad2380be0cda40b4db086ffc7ddd1b7d"}, - {file = "aiohttp-3.13.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d32764c6c9aafb7fb55366a224756387cd50bfa720f32b88e0e6fa45b27dcf29"}, - {file = "aiohttp-3.13.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b1a6102b4d3ebc07dad44fbf07b45bb600300f15b552ddf1851b5390202ea2e3"}, - {file = "aiohttp-3.13.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c014c7ea7fb775dd015b2d3137378b7be0249a448a1612268b5a90c2d81de04d"}, - {file = "aiohttp-3.13.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2b8d8ddba8f95ba17582226f80e2de99c7a7948e66490ef8d947e272a93e9463"}, - {file = "aiohttp-3.13.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9ae8dd55c8e6c4257eae3a20fd2c8f41edaea5992ed67156642493b8daf3cecc"}, - {file = "aiohttp-3.13.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:01ad2529d4b5035578f5081606a465f3b814c542882804e2e8cda61adf5c71bf"}, - {file = "aiohttp-3.13.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bb4f7475e359992b580559e008c598091c45b5088f28614e855e42d39c2f1033"}, - {file = "aiohttp-3.13.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c19b90316ad3b24c69cd78d5c9b4f3aa4497643685901185b65166293d36a00f"}, - {file = "aiohttp-3.13.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:96d604498a7c782cb15a51c406acaea70d8c027ee6b90c569baa6e7b93073679"}, - {file = "aiohttp-3.13.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:084911a532763e9d3dd95adf78a78f4096cd5f58cdc18e6fdbc1b58417a45423"}, - {file = "aiohttp-3.13.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7a4a94eb787e606d0a09404b9c38c113d3b099d508021faa615d70a0131907ce"}, - {file = "aiohttp-3.13.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:87797e645d9d8e222e04160ee32aa06bc5c163e8499f24db719e7852ec23093a"}, - {file = "aiohttp-3.13.3-cp312-cp312-win32.whl", hash = "sha256:b04be762396457bef43f3597c991e192ee7da460a4953d7e647ee4b1c28e7046"}, - {file = "aiohttp-3.13.3-cp312-cp312-win_amd64.whl", hash = "sha256:e3531d63d3bdfa7e3ac5e9b27b2dd7ec9df3206a98e0b3445fa906f233264c57"}, - {file = "aiohttp-3.13.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5dff64413671b0d3e7d5918ea490bdccb97a4ad29b3f311ed423200b2203e01c"}, - {file = "aiohttp-3.13.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:87b9aab6d6ed88235aa2970294f496ff1a1f9adcd724d800e9b952395a80ffd9"}, - {file = "aiohttp-3.13.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:425c126c0dc43861e22cb1c14ba4c8e45d09516d0a3ae0a3f7494b79f5f233a3"}, - {file = "aiohttp-3.13.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7f9120f7093c2a32d9647abcaf21e6ad275b4fbec5b55969f978b1a97c7c86bf"}, - {file = "aiohttp-3.13.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:697753042d57f4bf7122cab985bf15d0cef23c770864580f5af4f52023a56bd6"}, - {file = "aiohttp-3.13.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6de499a1a44e7de70735d0b39f67c8f25eb3d91eb3103be99ca0fa882cdd987d"}, - {file = "aiohttp-3.13.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:37239e9f9a7ea9ac5bf6b92b0260b01f8a22281996da609206a84df860bc1261"}, - {file = "aiohttp-3.13.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f76c1e3fe7d7c8afad7ed193f89a292e1999608170dcc9751a7462a87dfd5bc0"}, - {file = "aiohttp-3.13.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fc290605db2a917f6e81b0e1e0796469871f5af381ce15c604a3c5c7e51cb730"}, - {file = "aiohttp-3.13.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4021b51936308aeea0367b8f006dc999ca02bc118a0cc78c303f50a2ff6afb91"}, - {file = "aiohttp-3.13.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:49a03727c1bba9a97d3e93c9f93ca03a57300f484b6e935463099841261195d3"}, - {file = "aiohttp-3.13.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3d9908a48eb7416dc1f4524e69f1d32e5d90e3981e4e37eb0aa1cd18f9cfa2a4"}, - {file = "aiohttp-3.13.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:2712039939ec963c237286113c68dbad80a82a4281543f3abf766d9d73228998"}, - {file = "aiohttp-3.13.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:7bfdc049127717581866fa4708791220970ce291c23e28ccf3922c700740fdc0"}, - {file = "aiohttp-3.13.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8057c98e0c8472d8846b9c79f56766bcc57e3e8ac7bfd510482332366c56c591"}, - {file = "aiohttp-3.13.3-cp313-cp313-win32.whl", hash = "sha256:1449ceddcdbcf2e0446957863af03ebaaa03f94c090f945411b61269e2cb5daf"}, - {file = "aiohttp-3.13.3-cp313-cp313-win_amd64.whl", hash = "sha256:693781c45a4033d31d4187d2436f5ac701e7bbfe5df40d917736108c1cc7436e"}, - {file = "aiohttp-3.13.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:ea37047c6b367fd4bd632bff8077449b8fa034b69e812a18e0132a00fae6e808"}, - {file = "aiohttp-3.13.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:6fc0e2337d1a4c3e6acafda6a78a39d4c14caea625124817420abceed36e2415"}, - {file = "aiohttp-3.13.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c685f2d80bb67ca8c3837823ad76196b3694b0159d232206d1e461d3d434666f"}, - {file = "aiohttp-3.13.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48e377758516d262bde50c2584fc6c578af272559c409eecbdd2bae1601184d6"}, - {file = "aiohttp-3.13.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:34749271508078b261c4abb1767d42b8d0c0cc9449c73a4df494777dc55f0687"}, - {file = "aiohttp-3.13.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:82611aeec80eb144416956ec85b6ca45a64d76429c1ed46ae1b5f86c6e0c9a26"}, - {file = "aiohttp-3.13.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2fff83cfc93f18f215896e3a190e8e5cb413ce01553901aca925176e7568963a"}, - {file = "aiohttp-3.13.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bbe7d4cecacb439e2e2a8a1a7b935c25b812af7a5fd26503a66dadf428e79ec1"}, - {file = "aiohttp-3.13.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b928f30fe49574253644b1ca44b1b8adbd903aa0da4b9054a6c20fc7f4092a25"}, - {file = "aiohttp-3.13.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7b5e8fe4de30df199155baaf64f2fcd604f4c678ed20910db8e2c66dc4b11603"}, - {file = "aiohttp-3.13.3-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:8542f41a62bcc58fc7f11cf7c90e0ec324ce44950003feb70640fc2a9092c32a"}, - {file = "aiohttp-3.13.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:5e1d8c8b8f1d91cd08d8f4a3c2b067bfca6ec043d3ff36de0f3a715feeedf926"}, - {file = "aiohttp-3.13.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:90455115e5da1c3c51ab619ac57f877da8fd6d73c05aacd125c5ae9819582aba"}, - {file = "aiohttp-3.13.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:042e9e0bcb5fba81886c8b4fbb9a09d6b8a00245fd8d88e4d989c1f96c74164c"}, - {file = "aiohttp-3.13.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2eb752b102b12a76ca02dff751a801f028b4ffbbc478840b473597fc91a9ed43"}, - {file = "aiohttp-3.13.3-cp314-cp314-win32.whl", hash = "sha256:b556c85915d8efaed322bf1bdae9486aa0f3f764195a0fb6ee962e5c71ef5ce1"}, - {file = "aiohttp-3.13.3-cp314-cp314-win_amd64.whl", hash = "sha256:9bf9f7a65e7aa20dd764151fb3d616c81088f91f8df39c3893a536e279b4b984"}, - {file = "aiohttp-3.13.3-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:05861afbbec40650d8a07ea324367cb93e9e8cc7762e04dd4405df99fa65159c"}, - {file = "aiohttp-3.13.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2fc82186fadc4a8316768d61f3722c230e2c1dcab4200d52d2ebdf2482e47592"}, - {file = "aiohttp-3.13.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0add0900ff220d1d5c5ebbf99ed88b0c1bbf87aa7e4262300ed1376a6b13414f"}, - {file = "aiohttp-3.13.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:568f416a4072fbfae453dcf9a99194bbb8bdeab718e08ee13dfa2ba0e4bebf29"}, - {file = "aiohttp-3.13.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:add1da70de90a2569c5e15249ff76a631ccacfe198375eead4aadf3b8dc849dc"}, - {file = "aiohttp-3.13.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:10b47b7ba335d2e9b1239fa571131a87e2d8ec96b333e68b2a305e7a98b0bae2"}, - {file = "aiohttp-3.13.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3dd4dce1c718e38081c8f35f323209d4c1df7d4db4bab1b5c88a6b4d12b74587"}, - {file = "aiohttp-3.13.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:34bac00a67a812570d4a460447e1e9e06fae622946955f939051e7cc895cfab8"}, - {file = "aiohttp-3.13.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a19884d2ee70b06d9204b2727a7b9f983d0c684c650254679e716b0b77920632"}, - {file = "aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5f8ca7f2bb6ba8348a3614c7918cc4bb73268c5ac2a207576b7afea19d3d9f64"}, - {file = "aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:b0d95340658b9d2f11d9697f59b3814a9d3bb4b7a7c20b131df4bcef464037c0"}, - {file = "aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:a1e53262fd202e4b40b70c3aff944a8155059beedc8a89bba9dc1f9ef06a1b56"}, - {file = "aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:d60ac9663f44168038586cab2157e122e46bdef09e9368b37f2d82d354c23f72"}, - {file = "aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:90751b8eed69435bac9ff4e3d2f6b3af1f57e37ecb0fbeee59c0174c9e2d41df"}, - {file = "aiohttp-3.13.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:fc353029f176fd2b3ec6cfc71be166aba1936fe5d73dd1992ce289ca6647a9aa"}, - {file = "aiohttp-3.13.3-cp314-cp314t-win32.whl", hash = "sha256:2e41b18a58da1e474a057b3d35248d8320029f61d70a37629535b16a0c8f3767"}, - {file = "aiohttp-3.13.3-cp314-cp314t-win_amd64.whl", hash = "sha256:44531a36aa2264a1860089ffd4dce7baf875ee5a6079d5fb42e261c704ef7344"}, - {file = "aiohttp-3.13.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:31a83ea4aead760dfcb6962efb1d861db48c34379f2ff72db9ddddd4cda9ea2e"}, - {file = "aiohttp-3.13.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:988a8c5e317544fdf0d39871559e67b6341065b87fceac641108c2096d5506b7"}, - {file = "aiohttp-3.13.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9b174f267b5cfb9a7dba9ee6859cecd234e9a681841eb85068059bc867fb8f02"}, - {file = "aiohttp-3.13.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:947c26539750deeaee933b000fb6517cc770bbd064bad6033f1cff4803881e43"}, - {file = "aiohttp-3.13.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:9ebf57d09e131f5323464bd347135a88622d1c0976e88ce15b670e7ad57e4bd6"}, - {file = "aiohttp-3.13.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4ae5b5a0e1926e504c81c5b84353e7a5516d8778fbbff00429fe7b05bb25cbce"}, - {file = "aiohttp-3.13.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2ba0eea45eb5cc3172dbfc497c066f19c41bac70963ea1a67d51fc92e4cf9a80"}, - {file = "aiohttp-3.13.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bae5c2ed2eae26cc382020edad80d01f36cb8e746da40b292e68fec40421dc6a"}, - {file = "aiohttp-3.13.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:8a60e60746623925eab7d25823329941aee7242d559baa119ca2b253c88a7bd6"}, - {file = "aiohttp-3.13.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e50a2e1404f063427c9d027378472316201a2290959a295169bcf25992d04558"}, - {file = "aiohttp-3.13.3-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:9a9dc347e5a3dc7dfdbc1f82da0ef29e388ddb2ed281bfce9dd8248a313e62b7"}, - {file = "aiohttp-3.13.3-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:b46020d11d23fe16551466c77823df9cc2f2c1e63cc965daf67fa5eec6ca1877"}, - {file = "aiohttp-3.13.3-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:69c56fbc1993fa17043e24a546959c0178fe2b5782405ad4559e6c13975c15e3"}, - {file = "aiohttp-3.13.3-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:b99281b0704c103d4e11e72a76f1b543d4946fea7dd10767e7e1b5f00d4e5704"}, - {file = "aiohttp-3.13.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:40c5e40ecc29ba010656c18052b877a1c28f84344825efa106705e835c28530f"}, - {file = "aiohttp-3.13.3-cp39-cp39-win32.whl", hash = "sha256:56339a36b9f1fc708260c76c87e593e2afb30d26de9ae1eb445b5e051b98a7a1"}, - {file = "aiohttp-3.13.3-cp39-cp39-win_amd64.whl", hash = "sha256:c6b8568a3bb5819a0ad087f16d40e5a3fb6099f39ea1d5625a3edc1e923fc538"}, - {file = "aiohttp-3.13.3.tar.gz", hash = "sha256:a949eee43d3782f2daae4f4a2819b2cb9b0c5d3b7f7a927067cc84dafdbb9f88"}, -] - -[package.dependencies] -aiohappyeyeballs = ">=2.5.0" -aiosignal = ">=1.4.0" -async-timeout = {version = ">=4.0,<6.0", markers = "python_version < \"3.11\""} -attrs = ">=17.3.0" -frozenlist = ">=1.1.1" -multidict = ">=4.5,<7.0" -propcache = ">=0.2.0" -yarl = ">=1.17.0,<2.0" - -[package.extras] -speedups = ["Brotli (>=1.2)", "aiodns (>=3.3.0)", "backports.zstd", "brotlicffi (>=1.2)"] - -[[package]] -name = "aiohttp-client-cache" -version = "0.14.3" -description = "Persistent cache for aiohttp requests" -optional = false -python-versions = ">=3.9" -files = [ - {file = "aiohttp_client_cache-0.14.3-py3-none-any.whl", hash = "sha256:1154497739dcf9c7f6f6f1f27dc3985d8a7f5f8f31fb76710c06044ffac6f983"}, - {file = "aiohttp_client_cache-0.14.3.tar.gz", hash = "sha256:329f4038c6a8ed0b410023980b6d1a2c484af33e667a89ce245c899d62c1fba1"}, -] - -[package.dependencies] -aiohttp = ">=3.8" -attrs = ">=21.2" -itsdangerous = ">=2.0" -typing-extensions = {version = ">=4", markers = "python_version <= \"3.10\""} -url-normalize = ">=2.2" - -[package.extras] -all = ["aioboto3 (>=9.0)", "aiobotocore (>=2.0)", "aiofiles (>=0.6.0)", "aiosqlite (>=0.20)", "motor (>=3.1)", "redis (>=4.2)"] -dynamodb = ["aioboto3 (>=9.0)", "aiobotocore (>=2.0)"] -filesystem = ["aiofiles (>=0.6.0)", "aiosqlite (>=0.20)"] -mongodb = ["motor (>=3.1)"] -redis = ["redis (>=4.2)"] -sqlite = ["aiosqlite (>=0.20)"] - -[[package]] -name = "aiosignal" -version = "1.4.0" -description = "aiosignal: a list of registered asynchronous callbacks" -optional = false -python-versions = ">=3.9" -files = [ - {file = "aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e"}, - {file = "aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7"}, -] - -[package.dependencies] -frozenlist = ">=1.1.0" -typing-extensions = {version = ">=4.2", markers = "python_version < \"3.13\""} - -[[package]] -name = "aiosqlite" -version = "0.22.1" -description = "asyncio bridge to the standard sqlite3 module" -optional = false -python-versions = ">=3.9" -files = [ - {file = "aiosqlite-0.22.1-py3-none-any.whl", hash = "sha256:21c002eb13823fad740196c5a2e9d8e62f6243bd9e7e4a1f87fb5e44ecb4fceb"}, - {file = "aiosqlite-0.22.1.tar.gz", hash = "sha256:043e0bd78d32888c0a9ca90fc788b38796843360c855a7262a532813133a0650"}, -] - -[package.extras] -dev = ["attribution (==1.8.0)", "black (==25.11.0)", "build (>=1.2)", "coverage[toml] (==7.10.7)", "flake8 (==7.3.0)", "flake8-bugbear (==24.12.12)", "flit (==3.12.0)", "mypy (==1.19.0)", "ufmt (==2.8.0)", "usort (==1.0.8.post1)"] -docs = ["sphinx (==8.1.3)", "sphinx-mdinclude (==0.6.2)"] - -[[package]] -name = "alabaster" -version = "0.7.16" -description = "A light, configurable Sphinx theme" -optional = false -python-versions = ">=3.9" -files = [ - {file = "alabaster-0.7.16-py3-none-any.whl", hash = "sha256:b46733c07dce03ae4e150330b975c75737fa60f0a7c591b6c8bf4928a28e2c92"}, - {file = "alabaster-0.7.16.tar.gz", hash = "sha256:75a8b99c28a5dad50dd7f8ccdd447a121ddb3892da9e53d1ca5cca3106d58d65"}, -] - -[[package]] -name = "annotated-types" -version = "0.7.0" -description = "Reusable constraint types to use with typing.Annotated" -optional = false -python-versions = ">=3.8" -files = [ - {file = "annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53"}, - {file = "annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"}, -] - -[[package]] -name = "async-timeout" -version = "5.0.1" -description = "Timeout context manager for asyncio programs" -optional = false -python-versions = ">=3.8" -files = [ - {file = "async_timeout-5.0.1-py3-none-any.whl", hash = "sha256:39e3809566ff85354557ec2398b55e096c8364bacac9405a7a1fa429e77fe76c"}, - {file = "async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3"}, -] - -[[package]] -name = "attrs" -version = "25.4.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.9" -files = [ - {file = "attrs-25.4.0-py3-none-any.whl", hash = "sha256:adcf7e2a1fb3b36ac48d97835bb6d8ade15b8dcce26aba8bf1d14847b57a3373"}, - {file = "attrs-25.4.0.tar.gz", hash = "sha256:16d5969b87f0859ef33a48b35d55ac1be6e42ae49d5e853b597db70c35c57e11"}, -] - -[[package]] -name = "autodoc-pydantic" -version = "2.2.0" -description = "Seamlessly integrate pydantic models in your Sphinx documentation." -optional = false -python-versions = "<4.0.0,>=3.8.1" -files = [ - {file = "autodoc_pydantic-2.2.0-py3-none-any.whl", hash = "sha256:8c6a36fbf6ed2700ea9c6d21ea76ad541b621fbdf16b5a80ee04673548af4d95"}, -] - -[package.dependencies] -pydantic = ">=2.0,<3.0.0" -pydantic-settings = ">=2.0,<3.0.0" -Sphinx = ">=4.0" - -[package.extras] -docs = ["myst-parser (>=3.0.0,<4.0.0)", "sphinx-copybutton (>=0.5.0,<0.6.0)", "sphinx-rtd-theme (>=2.0.0,<3.0.0)", "sphinx-tabs (>=3,<4)", "sphinxcontrib-mermaid (>=0.9.0,<0.10.0)"] -erdantic = ["erdantic (<2.0)"] -linting = ["ruff (>=0.4.0,<0.5.0)"] -security = ["pip-audit (>=2.7.2,<3.0.0)"] -test = ["coverage (>=7,<8)", "defusedxml (>=0.7.1)", "pytest (>=8.0.0,<9.0.0)", "pytest-sugar (>=1.0.0,<2.0.0)"] -type-checking = ["mypy (>=1.9,<2.0)", "types-docutils (>=0.20,<0.21)", "typing-extensions (>=4.11,<5.0)"] - -[[package]] -name = "babel" -version = "2.18.0" -description = "Internationalization utilities" -optional = false -python-versions = ">=3.8" -files = [ - {file = "babel-2.18.0-py3-none-any.whl", hash = "sha256:e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35"}, - {file = "babel-2.18.0.tar.gz", hash = "sha256:b80b99a14bd085fcacfa15c9165f651fbb3406e66cc603abf11c5750937c992d"}, -] - -[package.extras] -dev = ["backports.zoneinfo", "freezegun (>=1.0,<2.0)", "jinja2 (>=3.0)", "pytest (>=6.0)", "pytest-cov", "pytz", "setuptools", "tzdata"] - -[[package]] -name = "backports-asyncio-runner" -version = "1.2.0" -description = "Backport of asyncio.Runner, a context manager that controls event loop life cycle." -optional = false -python-versions = "<3.11,>=3.8" -files = [ - {file = "backports_asyncio_runner-1.2.0-py3-none-any.whl", hash = "sha256:0da0a936a8aeb554eccb426dc55af3ba63bcdc69fa1a600b5bb305413a4477b5"}, - {file = "backports_asyncio_runner-1.2.0.tar.gz", hash = "sha256:a5aa7b2b7d8f8bfcaa2b57313f70792df84e32a2a746f585213373f900b42162"}, -] - -[[package]] -name = "cattrs" -version = "25.3.0" -description = "Composable complex class support for attrs and dataclasses." -optional = false -python-versions = ">=3.9" -files = [ - {file = "cattrs-25.3.0-py3-none-any.whl", hash = "sha256:9896e84e0a5bf723bc7b4b68f4481785367ce07a8a02e7e9ee6eb2819bc306ff"}, - {file = "cattrs-25.3.0.tar.gz", hash = "sha256:1ac88d9e5eda10436c4517e390a4142d88638fe682c436c93db7ce4a277b884a"}, -] - -[package.dependencies] -attrs = ">=25.4.0" -exceptiongroup = {version = ">=1.1.1", markers = "python_version < \"3.11\""} -typing-extensions = ">=4.14.0" - -[package.extras] -bson = ["pymongo (>=4.4.0)"] -cbor2 = ["cbor2 (>=5.4.6)"] -msgpack = ["msgpack (>=1.0.5)"] -msgspec = ["msgspec (>=0.19.0)"] -orjson = ["orjson (>=3.11.3)"] -pyyaml = ["pyyaml (>=6.0)"] -tomlkit = ["tomlkit (>=0.11.8)"] -ujson = ["ujson (>=5.10.0)"] - -[[package]] -name = "certifi" -version = "2026.2.25" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.7" -files = [ - {file = "certifi-2026.2.25-py3-none-any.whl", hash = "sha256:027692e4402ad994f1c42e52a4997a9763c646b73e4096e4d5d6db8af1d6f0fa"}, - {file = "certifi-2026.2.25.tar.gz", hash = "sha256:e887ab5cee78ea814d3472169153c2d12cd43b14bd03329a39a9c6e2e80bfba7"}, -] - -[[package]] -name = "cfgv" -version = "3.4.0" -description = "Validate configuration and produce human readable error messages." -optional = false -python-versions = ">=3.8" -files = [ - {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, - {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, -] - -[[package]] -name = "charset-normalizer" -version = "3.4.6" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7" -files = [ - {file = "charset_normalizer-3.4.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2e1d8ca8611099001949d1cdfaefc510cf0f212484fe7c565f735b68c78c3c95"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e25369dc110d58ddf29b949377a93e0716d72a24f62bad72b2b39f155949c1fd"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:259695e2ccc253feb2a016303543d691825e920917e31f894ca1a687982b1de4"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:dda86aba335c902b6149a02a55b38e96287157e609200811837678214ba2b1db"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51fb3c322c81d20567019778cb5a4a6f2dc1c200b886bc0d636238e364848c89"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:4482481cb0572180b6fd976a4d5c72a30263e98564da68b86ec91f0fe35e8565"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:39f5068d35621da2881271e5c3205125cc456f54e9030d3f723288c873a71bf9"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8bea55c4eef25b0b19a0337dc4e3f9a15b00d569c77211fa8cde38684f234fb7"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:f0cdaecd4c953bfae0b6bb64910aaaca5a424ad9c72d85cb88417bb9814f7550"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:150b8ce8e830eb7ccb029ec9ca36022f756986aaaa7956aad6d9ec90089338c0"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:e68c14b04827dd76dcbd1aeea9e604e3e4b78322d8faf2f8132c7138efa340a8"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:3778fd7d7cd04ae8f54651f4a7a0bd6e39a0cf20f801720a4c21d80e9b7ad6b0"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:dad6e0f2e481fffdcf776d10ebee25e0ef89f16d691f1e5dee4b586375fdc64b"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-win32.whl", hash = "sha256:74a2e659c7ecbc73562e2a15e05039f1e22c75b7c7618b4b574a3ea9118d1557"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-win_amd64.whl", hash = "sha256:aa9cccf4a44b9b62d8ba8b4dd06c649ba683e4bf04eea606d2e94cfc2d6ff4d6"}, - {file = "charset_normalizer-3.4.6-cp310-cp310-win_arm64.whl", hash = "sha256:e985a16ff513596f217cee86c21371b8cd011c0f6f056d0920aa2d926c544058"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:82060f995ab5003a2d6e0f4ad29065b7672b6593c8c63559beefe5b443242c3e"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:60c74963d8350241a79cb8feea80e54d518f72c26db618862a8f53e5023deaf9"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f6e4333fb15c83f7d1482a76d45a0818897b3d33f00efd215528ff7c51b8e35d"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:bc72863f4d9aba2e8fd9085e63548a324ba706d2ea2c83b260da08a59b9482de"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9cc4fc6c196d6a8b76629a70ddfcd4635a6898756e2d9cac5565cf0654605d73"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:0c173ce3a681f309f31b87125fecec7a5d1347261ea11ebbb856fa6006b23c8c"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c907cdc8109f6c619e6254212e794d6548373cc40e1ec75e6e3823d9135d29cc"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:404a1e552cf5b675a87f0651f8b79f5f1e6fd100ee88dc612f89aa16abd4486f"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:e3c701e954abf6fc03a49f7c579cc80c2c6cc52525340ca3186c41d3f33482ef"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7a6967aaf043bceabab5412ed6bd6bd26603dae84d5cb75bf8d9a74a4959d398"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:5feb91325bbceade6afab43eb3b508c63ee53579fe896c77137ded51c6b6958e"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:f820f24b09e3e779fe84c3c456cb4108a7aa639b0d1f02c28046e11bfcd088ed"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b35b200d6a71b9839a46b9b7fff66b6638bb52fc9658aa58796b0326595d3021"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-win32.whl", hash = "sha256:9ca4c0b502ab399ef89248a2c84c54954f77a070f28e546a85e91da627d1301e"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-win_amd64.whl", hash = "sha256:a9e68c9d88823b274cf1e72f28cb5dc89c990edf430b0bfd3e2fb0785bfeabf4"}, - {file = "charset_normalizer-3.4.6-cp311-cp311-win_arm64.whl", hash = "sha256:97d0235baafca5f2b09cf332cc275f021e694e8362c6bb9c96fc9a0eb74fc316"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:2ef7fedc7a6ecbe99969cd09632516738a97eeb8bd7258bf8a0f23114c057dab"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a4ea868bc28109052790eb2b52a9ab33f3aa7adc02f96673526ff47419490e21"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:836ab36280f21fc1a03c99cd05c6b7af70d2697e374c7af0b61ed271401a72a2"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f1ce721c8a7dfec21fcbdfe04e8f68174183cf4e8188e0645e92aa23985c57ff"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e28d62a8fc7a1fa411c43bd65e346f3bce9716dc51b897fbe930c5987b402d5"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:530d548084c4a9f7a16ed4a294d459b4f229db50df689bfe92027452452943a0"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:30f445ae60aad5e1f8bdbb3108e39f6fbc09f4ea16c815c66578878325f8f15a"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ac2393c73378fea4e52aa56285a3d64be50f1a12395afef9cce47772f60334c2"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:90ca27cd8da8118b18a52d5f547859cc1f8354a00cd1e8e5120df3e30d6279e5"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8e5a94886bedca0f9b78fecd6afb6629142fd2605aa70a125d49f4edc6037ee6"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:695f5c2823691a25f17bc5d5ffe79fa90972cc34b002ac6c843bb8a1720e950d"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:231d4da14bcd9301310faf492051bee27df11f2bc7549bc0bb41fef11b82daa2"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a056d1ad2633548ca18ffa2f85c202cfb48b68615129143915b8dc72a806a923"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-win32.whl", hash = "sha256:c2274ca724536f173122f36c98ce188fd24ce3dad886ec2b7af859518ce008a4"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-win_amd64.whl", hash = "sha256:c8ae56368f8cc97c7e40a7ee18e1cedaf8e780cd8bc5ed5ac8b81f238614facb"}, - {file = "charset_normalizer-3.4.6-cp312-cp312-win_arm64.whl", hash = "sha256:899d28f422116b08be5118ef350c292b36fc15ec2daeb9ea987c89281c7bb5c4"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:11afb56037cbc4b1555a34dd69151e8e069bee82e613a73bef6e714ce733585f"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:423fb7e748a08f854a08a222b983f4df1912b1daedce51a72bd24fe8f26a1843"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:d73beaac5e90173ac3deb9928a74763a6d230f494e4bfb422c217a0ad8e629bf"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d60377dce4511655582e300dc1e5a5f24ba0cb229005a1d5c8d0cb72bb758ab8"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:530e8cebeea0d76bdcf93357aa5e41336f48c3dc709ac52da2bb167c5b8271d9"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:a26611d9987b230566f24a0a125f17fe0de6a6aff9f25c9f564aaa2721a5fb88"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:34315ff4fc374b285ad7f4a0bf7dcbfe769e1b104230d40f49f700d4ab6bbd84"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5f8ddd609f9e1af8c7bd6e2aca279c931aefecd148a14402d4e368f3171769fd"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:80d0a5615143c0b3225e5e3ef22c8d5d51f3f72ce0ea6fb84c943546c7b25b6c"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:92734d4d8d187a354a556626c221cd1a892a4e0802ccb2af432a1d85ec012194"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:613f19aa6e082cf96e17e3ffd89383343d0d589abda756b7764cf78361fd41dc"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2b1a63e8224e401cafe7739f77efd3f9e7f5f2026bda4aead8e59afab537784f"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6cceb5473417d28edd20c6c984ab6fee6c6267d38d906823ebfe20b03d607dc2"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-win32.whl", hash = "sha256:d7de2637729c67d67cf87614b566626057e95c303bc0a55ffe391f5205e7003d"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-win_amd64.whl", hash = "sha256:572d7c822caf521f0525ba1bce1a622a0b85cf47ffbdae6c9c19e3b5ac3c4389"}, - {file = "charset_normalizer-3.4.6-cp313-cp313-win_arm64.whl", hash = "sha256:a4474d924a47185a06411e0064b803c68be044be2d60e50e8bddcc2649957c1f"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:9cc6e6d9e571d2f863fa77700701dae73ed5f78881efc8b3f9a4398772ff53e8"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef5960d965e67165d75b7c7ffc60a83ec5abfc5c11b764ec13ea54fbef8b4421"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b3694e3f87f8ac7ce279d4355645b3c878d24d1424581b46282f24b92f5a4ae2"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5d11595abf8dd942a77883a39d81433739b287b6aa71620f15164f8096221b30"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7bda6eebafd42133efdca535b04ccb338ab29467b3f7bf79569883676fc628db"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:bbc8c8650c6e51041ad1be191742b8b421d05bbd3410f43fa2a00c8db87678e8"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:22c6f0c2fbc31e76c3b8a86fba1a56eda6166e238c29cdd3d14befdb4a4e4815"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7edbed096e4a4798710ed6bc75dcaa2a21b68b6c356553ac4823c3658d53743a"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:7f9019c9cb613f084481bd6a100b12e1547cf2efe362d873c2e31e4035a6fa43"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:58c948d0d086229efc484fe2f30c2d382c86720f55cd9bc33591774348ad44e0"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:419a9d91bd238052642a51938af8ac05da5b3343becde08d5cdeab9046df9ee1"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:5273b9f0b5835ff0350c0828faea623c68bfa65b792720c453e22b25cc72930f"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:0e901eb1049fdb80f5bd11ed5ea1e498ec423102f7a9b9e4645d5b8204ff2815"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-win32.whl", hash = "sha256:b4ff1d35e8c5bd078be89349b6f3a845128e685e751b6ea1169cf2160b344c4d"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-win_amd64.whl", hash = "sha256:74119174722c4349af9708993118581686f343adc1c8c9c007d59be90d077f3f"}, - {file = "charset_normalizer-3.4.6-cp314-cp314-win_arm64.whl", hash = "sha256:e5bcc1a1ae744e0bb59641171ae53743760130600da8db48cbb6e4918e186e4e"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:ad8faf8df23f0378c6d527d8b0b15ea4a2e23c89376877c598c4870d1b2c7866"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f5ea69428fa1b49573eef0cc44a1d43bebd45ad0c611eb7d7eac760c7ae771bc"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:06a7e86163334edfc5d20fe104db92fcd666e5a5df0977cb5680a506fe26cc8e"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e1f6e2f00a6b8edb562826e4632e26d063ac10307e80f7461f7de3ad8ef3f077"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:95b52c68d64c1878818687a473a10547b3292e82b6f6fe483808fb1468e2f52f"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:7504e9b7dc05f99a9bbb4525c67a2c155073b44d720470a148b34166a69c054e"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:172985e4ff804a7ad08eebec0a1640ece87ba5041d565fff23c8f99c1f389484"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:4be9f4830ba8741527693848403e2c457c16e499100963ec711b1c6f2049b7c7"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:79090741d842f564b1b2827c0b82d846405b744d31e84f18d7a7b41c20e473ff"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:87725cfb1a4f1f8c2fc9890ae2f42094120f4b44db9360be5d99a4c6b0e03a9e"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:fcce033e4021347d80ed9c66dcf1e7b1546319834b74445f561d2e2221de5659"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:ca0276464d148c72defa8bb4390cce01b4a0e425f3b50d1435aa6d7a18107602"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:197c1a244a274bb016dd8b79204850144ef77fe81c5b797dc389327adb552407"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-win32.whl", hash = "sha256:2a24157fa36980478dd1770b585c0f30d19e18f4fb0c47c13aa568f871718579"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-win_amd64.whl", hash = "sha256:cd5e2801c89992ed8c0a3f0293ae83c159a60d9a5d685005383ef4caca77f2c4"}, - {file = "charset_normalizer-3.4.6-cp314-cp314t-win_arm64.whl", hash = "sha256:47955475ac79cc504ef2704b192364e51d0d473ad452caedd0002605f780101c"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:659a1e1b500fac8f2779dd9e1570464e012f43e580371470b45277a27baa7532"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f61aa92e4aad0be58eb6eb4e0c21acf32cf8065f4b2cae5665da756c4ceef982"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f50498891691e0864dc3da965f340fada0771f6142a378083dc4608f4ea513e2"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:bf625105bb9eef28a56a943fec8c8a98aeb80e7d7db99bd3c388137e6eb2d237"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2bd9d128ef93637a5d7a6af25363cf5dec3fa21cf80e68055aad627f280e8afa"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-manylinux_2_31_armv7l.whl", hash = "sha256:d08ec48f0a1c48d75d0356cea971921848fb620fdeba805b28f937e90691209f"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:1ed80ff870ca6de33f4d953fda4d55654b9a2b340ff39ab32fa3adbcd718f264"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f98059e4fcd3e3e4e2d632b7cf81c2faae96c43c60b569e9c621468082f1d104"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:ab30e5e3e706e3063bc6de96b118688cb10396b70bb9864a430f67df98c61ecc"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:d5f5d1e9def3405f60e3ca8232d56f35c98fb7bf581efcc60051ebf53cb8b611"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-musllinux_1_2_riscv64.whl", hash = "sha256:461598cd852bfa5a61b09cae2b1c02e2efcd166ee5516e243d540ac24bfa68a7"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:71be7e0e01753a89cf024abf7ecb6bca2c81738ead80d43004d9b5e3f1244e64"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:df01808ee470038c3f8dc4f48620df7225c49c2d6639e38f96e6d6ac6e6f7b0e"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-win32.whl", hash = "sha256:69dd852c2f0ad631b8b60cfbe25a28c0058a894de5abb566619c205ce0550eae"}, - {file = "charset_normalizer-3.4.6-cp38-cp38-win_amd64.whl", hash = "sha256:517ad0e93394ac532745129ceabdf2696b609ec9f87863d337140317ebce1c14"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:31215157227939b4fb3d740cd23fe27be0439afef67b785a1eb78a3ae69cba9e"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ecbbd45615a6885fe3240eb9db73b9e62518b611850fdf8ab08bd56de7ad2b17"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c45a03a4c69820a399f1dda9e1d8fbf3562eda46e7720458180302021b08f778"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e8aeb10fcbe92767f0fa69ad5a72deca50d0dca07fbde97848997d778a50c9fe"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:54fae94be3d75f3e573c9a1b5402dc593de19377013c9a0e4285e3d402dd3a2a"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-manylinux_2_31_armv7l.whl", hash = "sha256:2f7fdd9b6e6c529d6a2501a2d36b240109e78a8ceaef5687cfcfa2bbe671d297"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4d1d02209e06550bdaef34af58e041ad71b88e624f5d825519da3a3308e22687"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8bc5f0687d796c05b1e28ab0d38a50e6309906ee09375dd3aff6a9c09dd6e8f4"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:ee4ec14bc1680d6b0afab9aea2ef27e26d2024f18b24a2d7155a52b60da7e833"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:d1a2ee9c1499fc8f86f4521f27a973c914b211ffa87322f4ee33bb35392da2c5"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:48696db7f18afb80a068821504296eb0787d9ce239b91ca15059d1d3eaacf13b"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4f41da960b196ea355357285ad1316a00099f22d0929fe168343b99b254729c9"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:802168e03fba8bbc5ce0d866d589e4b1ca751d06edee69f7f3a19c5a9fe6b597"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-win32.whl", hash = "sha256:8761ac29b6c81574724322a554605608a9960769ea83d2c73e396f3df896ad54"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-win_amd64.whl", hash = "sha256:1cf0a70018692f85172348fe06d3a4b63f94ecb055e13a00c644d368eb82e5b8"}, - {file = "charset_normalizer-3.4.6-cp39-cp39-win_arm64.whl", hash = "sha256:3516bbb8d42169de9e61b8520cbeeeb716f12f4ecfe3fd30a9919aa16c806ca8"}, - {file = "charset_normalizer-3.4.6-py3-none-any.whl", hash = "sha256:947cf925bc916d90adba35a64c82aace04fa39b46b52d4630ece166655905a69"}, - {file = "charset_normalizer-3.4.6.tar.gz", hash = "sha256:1ae6b62897110aa7c79ea2f5dd38d1abca6db663687c0b1ad9aed6f6bae3d9d6"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "coverage" -version = "7.10.7" -description = "Code coverage measurement for Python" -optional = false -python-versions = ">=3.9" -files = [ - {file = "coverage-7.10.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fc04cc7a3db33664e0c2d10eb8990ff6b3536f6842c9590ae8da4c614b9ed05a"}, - {file = "coverage-7.10.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e201e015644e207139f7e2351980feb7040e6f4b2c2978892f3e3789d1c125e5"}, - {file = "coverage-7.10.7-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:240af60539987ced2c399809bd34f7c78e8abe0736af91c3d7d0e795df633d17"}, - {file = "coverage-7.10.7-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:8421e088bc051361b01c4b3a50fd39a4b9133079a2229978d9d30511fd05231b"}, - {file = "coverage-7.10.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6be8ed3039ae7f7ac5ce058c308484787c86e8437e72b30bf5e88b8ea10f3c87"}, - {file = "coverage-7.10.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e28299d9f2e889e6d51b1f043f58d5f997c373cc12e6403b90df95b8b047c13e"}, - {file = "coverage-7.10.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c4e16bd7761c5e454f4efd36f345286d6f7c5fa111623c355691e2755cae3b9e"}, - {file = "coverage-7.10.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b1c81d0e5e160651879755c9c675b974276f135558cf4ba79fee7b8413a515df"}, - {file = "coverage-7.10.7-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:606cc265adc9aaedcc84f1f064f0e8736bc45814f15a357e30fca7ecc01504e0"}, - {file = "coverage-7.10.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:10b24412692df990dbc34f8fb1b6b13d236ace9dfdd68df5b28c2e39cafbba13"}, - {file = "coverage-7.10.7-cp310-cp310-win32.whl", hash = "sha256:b51dcd060f18c19290d9b8a9dd1e0181538df2ce0717f562fff6cf74d9fc0b5b"}, - {file = "coverage-7.10.7-cp310-cp310-win_amd64.whl", hash = "sha256:3a622ac801b17198020f09af3eaf45666b344a0d69fc2a6ffe2ea83aeef1d807"}, - {file = "coverage-7.10.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a609f9c93113be646f44c2a0256d6ea375ad047005d7f57a5c15f614dc1b2f59"}, - {file = "coverage-7.10.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:65646bb0359386e07639c367a22cf9b5bf6304e8630b565d0626e2bdf329227a"}, - {file = "coverage-7.10.7-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:5f33166f0dfcce728191f520bd2692914ec70fac2713f6bf3ce59c3deacb4699"}, - {file = "coverage-7.10.7-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:35f5e3f9e455bb17831876048355dca0f758b6df22f49258cb5a91da23ef437d"}, - {file = "coverage-7.10.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4da86b6d62a496e908ac2898243920c7992499c1712ff7c2b6d837cc69d9467e"}, - {file = "coverage-7.10.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6b8b09c1fad947c84bbbc95eca841350fad9cbfa5a2d7ca88ac9f8d836c92e23"}, - {file = "coverage-7.10.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4376538f36b533b46f8971d3a3e63464f2c7905c9800db97361c43a2b14792ab"}, - {file = "coverage-7.10.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:121da30abb574f6ce6ae09840dae322bef734480ceafe410117627aa54f76d82"}, - {file = "coverage-7.10.7-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:88127d40df529336a9836870436fc2751c339fbaed3a836d42c93f3e4bd1d0a2"}, - {file = "coverage-7.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ba58bbcd1b72f136080c0bccc2400d66cc6115f3f906c499013d065ac33a4b61"}, - {file = "coverage-7.10.7-cp311-cp311-win32.whl", hash = "sha256:972b9e3a4094b053a4e46832b4bc829fc8a8d347160eb39d03f1690316a99c14"}, - {file = "coverage-7.10.7-cp311-cp311-win_amd64.whl", hash = "sha256:a7b55a944a7f43892e28ad4bc0561dfd5f0d73e605d1aa5c3c976b52aea121d2"}, - {file = "coverage-7.10.7-cp311-cp311-win_arm64.whl", hash = "sha256:736f227fb490f03c6488f9b6d45855f8e0fd749c007f9303ad30efab0e73c05a"}, - {file = "coverage-7.10.7-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7bb3b9ddb87ef7725056572368040c32775036472d5a033679d1fa6c8dc08417"}, - {file = "coverage-7.10.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:18afb24843cbc175687225cab1138c95d262337f5473512010e46831aa0c2973"}, - {file = "coverage-7.10.7-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:399a0b6347bcd3822be369392932884b8216d0944049ae22925631a9b3d4ba4c"}, - {file = "coverage-7.10.7-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:314f2c326ded3f4b09be11bc282eb2fc861184bc95748ae67b360ac962770be7"}, - {file = "coverage-7.10.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c41e71c9cfb854789dee6fc51e46743a6d138b1803fab6cb860af43265b42ea6"}, - {file = "coverage-7.10.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc01f57ca26269c2c706e838f6422e2a8788e41b3e3c65e2f41148212e57cd59"}, - {file = "coverage-7.10.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a6442c59a8ac8b85812ce33bc4d05bde3fb22321fa8294e2a5b487c3505f611b"}, - {file = "coverage-7.10.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:78a384e49f46b80fb4c901d52d92abe098e78768ed829c673fbb53c498bef73a"}, - {file = "coverage-7.10.7-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:5e1e9802121405ede4b0133aa4340ad8186a1d2526de5b7c3eca519db7bb89fb"}, - {file = "coverage-7.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d41213ea25a86f69efd1575073d34ea11aabe075604ddf3d148ecfec9e1e96a1"}, - {file = "coverage-7.10.7-cp312-cp312-win32.whl", hash = "sha256:77eb4c747061a6af8d0f7bdb31f1e108d172762ef579166ec84542f711d90256"}, - {file = "coverage-7.10.7-cp312-cp312-win_amd64.whl", hash = "sha256:f51328ffe987aecf6d09f3cd9d979face89a617eacdaea43e7b3080777f647ba"}, - {file = "coverage-7.10.7-cp312-cp312-win_arm64.whl", hash = "sha256:bda5e34f8a75721c96085903c6f2197dc398c20ffd98df33f866a9c8fd95f4bf"}, - {file = "coverage-7.10.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:981a651f543f2854abd3b5fcb3263aac581b18209be49863ba575de6edf4c14d"}, - {file = "coverage-7.10.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:73ab1601f84dc804f7812dc297e93cd99381162da39c47040a827d4e8dafe63b"}, - {file = "coverage-7.10.7-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:a8b6f03672aa6734e700bbcd65ff050fd19cddfec4b031cc8cf1c6967de5a68e"}, - {file = "coverage-7.10.7-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:10b6ba00ab1132a0ce4428ff68cf50a25efd6840a42cdf4239c9b99aad83be8b"}, - {file = "coverage-7.10.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c79124f70465a150e89340de5963f936ee97097d2ef76c869708c4248c63ca49"}, - {file = "coverage-7.10.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:69212fbccdbd5b0e39eac4067e20a4a5256609e209547d86f740d68ad4f04911"}, - {file = "coverage-7.10.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7ea7c6c9d0d286d04ed3541747e6597cbe4971f22648b68248f7ddcd329207f0"}, - {file = "coverage-7.10.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b9be91986841a75042b3e3243d0b3cb0b2434252b977baaf0cd56e960fe1e46f"}, - {file = "coverage-7.10.7-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:b281d5eca50189325cfe1f365fafade89b14b4a78d9b40b05ddd1fc7d2a10a9c"}, - {file = "coverage-7.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:99e4aa63097ab1118e75a848a28e40d68b08a5e19ce587891ab7fd04475e780f"}, - {file = "coverage-7.10.7-cp313-cp313-win32.whl", hash = "sha256:dc7c389dce432500273eaf48f410b37886be9208b2dd5710aaf7c57fd442c698"}, - {file = "coverage-7.10.7-cp313-cp313-win_amd64.whl", hash = "sha256:cac0fdca17b036af3881a9d2729a850b76553f3f716ccb0360ad4dbc06b3b843"}, - {file = "coverage-7.10.7-cp313-cp313-win_arm64.whl", hash = "sha256:4b6f236edf6e2f9ae8fcd1332da4e791c1b6ba0dc16a2dc94590ceccb482e546"}, - {file = "coverage-7.10.7-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a0ec07fd264d0745ee396b666d47cef20875f4ff2375d7c4f58235886cc1ef0c"}, - {file = "coverage-7.10.7-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:dd5e856ebb7bfb7672b0086846db5afb4567a7b9714b8a0ebafd211ec7ce6a15"}, - {file = "coverage-7.10.7-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:f57b2a3c8353d3e04acf75b3fed57ba41f5c0646bbf1d10c7c282291c97936b4"}, - {file = "coverage-7.10.7-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:1ef2319dd15a0b009667301a3f84452a4dc6fddfd06b0c5c53ea472d3989fbf0"}, - {file = "coverage-7.10.7-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:83082a57783239717ceb0ad584de3c69cf581b2a95ed6bf81ea66034f00401c0"}, - {file = "coverage-7.10.7-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:50aa94fb1fb9a397eaa19c0d5ec15a5edd03a47bf1a3a6111a16b36e190cff65"}, - {file = "coverage-7.10.7-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:2120043f147bebb41c85b97ac45dd173595ff14f2a584f2963891cbcc3091541"}, - {file = "coverage-7.10.7-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:2fafd773231dd0378fdba66d339f84904a8e57a262f583530f4f156ab83863e6"}, - {file = "coverage-7.10.7-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:0b944ee8459f515f28b851728ad224fa2d068f1513ef6b7ff1efafeb2185f999"}, - {file = "coverage-7.10.7-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4b583b97ab2e3efe1b3e75248a9b333bd3f8b0b1b8e5b45578e05e5850dfb2c2"}, - {file = "coverage-7.10.7-cp313-cp313t-win32.whl", hash = "sha256:2a78cd46550081a7909b3329e2266204d584866e8d97b898cd7fb5ac8d888b1a"}, - {file = "coverage-7.10.7-cp313-cp313t-win_amd64.whl", hash = "sha256:33a5e6396ab684cb43dc7befa386258acb2d7fae7f67330ebb85ba4ea27938eb"}, - {file = "coverage-7.10.7-cp313-cp313t-win_arm64.whl", hash = "sha256:86b0e7308289ddde73d863b7683f596d8d21c7d8664ce1dee061d0bcf3fbb4bb"}, - {file = "coverage-7.10.7-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:b06f260b16ead11643a5a9f955bd4b5fd76c1a4c6796aeade8520095b75de520"}, - {file = "coverage-7.10.7-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:212f8f2e0612778f09c55dd4872cb1f64a1f2b074393d139278ce902064d5b32"}, - {file = "coverage-7.10.7-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3445258bcded7d4aa630ab8296dea4d3f15a255588dd535f980c193ab6b95f3f"}, - {file = "coverage-7.10.7-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:bb45474711ba385c46a0bfe696c695a929ae69ac636cda8f532be9e8c93d720a"}, - {file = "coverage-7.10.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:813922f35bd800dca9994c5971883cbc0d291128a5de6b167c7aa697fcf59360"}, - {file = "coverage-7.10.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:93c1b03552081b2a4423091d6fb3787265b8f86af404cff98d1b5342713bdd69"}, - {file = "coverage-7.10.7-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:cc87dd1b6eaf0b848eebb1c86469b9f72a1891cb42ac7adcfbce75eadb13dd14"}, - {file = "coverage-7.10.7-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:39508ffda4f343c35f3236fe8d1a6634a51f4581226a1262769d7f970e73bffe"}, - {file = "coverage-7.10.7-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:925a1edf3d810537c5a3abe78ec5530160c5f9a26b1f4270b40e62cc79304a1e"}, - {file = "coverage-7.10.7-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2c8b9a0636f94c43cd3576811e05b89aa9bc2d0a85137affc544ae5cb0e4bfbd"}, - {file = "coverage-7.10.7-cp314-cp314-win32.whl", hash = "sha256:b7b8288eb7cdd268b0304632da8cb0bb93fadcfec2fe5712f7b9cc8f4d487be2"}, - {file = "coverage-7.10.7-cp314-cp314-win_amd64.whl", hash = "sha256:1ca6db7c8807fb9e755d0379ccc39017ce0a84dcd26d14b5a03b78563776f681"}, - {file = "coverage-7.10.7-cp314-cp314-win_arm64.whl", hash = "sha256:097c1591f5af4496226d5783d036bf6fd6cd0cbc132e071b33861de756efb880"}, - {file = "coverage-7.10.7-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:a62c6ef0d50e6de320c270ff91d9dd0a05e7250cac2a800b7784bae474506e63"}, - {file = "coverage-7.10.7-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:9fa6e4dd51fe15d8738708a973470f67a855ca50002294852e9571cdbd9433f2"}, - {file = "coverage-7.10.7-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:8fb190658865565c549b6b4706856d6a7b09302c797eb2cf8e7fe9dabb043f0d"}, - {file = "coverage-7.10.7-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:affef7c76a9ef259187ef31599a9260330e0335a3011732c4b9effa01e1cd6e0"}, - {file = "coverage-7.10.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e16e07d85ca0cf8bafe5f5d23a0b850064e8e945d5677492b06bbe6f09cc699"}, - {file = "coverage-7.10.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:03ffc58aacdf65d2a82bbeb1ffe4d01ead4017a21bfd0454983b88ca73af94b9"}, - {file = "coverage-7.10.7-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:1b4fd784344d4e52647fd7857b2af5b3fbe6c239b0b5fa63e94eb67320770e0f"}, - {file = "coverage-7.10.7-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:0ebbaddb2c19b71912c6f2518e791aa8b9f054985a0769bdb3a53ebbc765c6a1"}, - {file = "coverage-7.10.7-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:a2d9a3b260cc1d1dbdb1c582e63ddcf5363426a1a68faa0f5da28d8ee3c722a0"}, - {file = "coverage-7.10.7-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a3cc8638b2480865eaa3926d192e64ce6c51e3d29c849e09d5b4ad95efae5399"}, - {file = "coverage-7.10.7-cp314-cp314t-win32.whl", hash = "sha256:67f8c5cbcd3deb7a60b3345dffc89a961a484ed0af1f6f73de91705cc6e31235"}, - {file = "coverage-7.10.7-cp314-cp314t-win_amd64.whl", hash = "sha256:e1ed71194ef6dea7ed2d5cb5f7243d4bcd334bfb63e59878519be558078f848d"}, - {file = "coverage-7.10.7-cp314-cp314t-win_arm64.whl", hash = "sha256:7fe650342addd8524ca63d77b2362b02345e5f1a093266787d210c70a50b471a"}, - {file = "coverage-7.10.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fff7b9c3f19957020cac546c70025331113d2e61537f6e2441bc7657913de7d3"}, - {file = "coverage-7.10.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bc91b314cef27742da486d6839b677b3f2793dfe52b51bbbb7cf736d5c29281c"}, - {file = "coverage-7.10.7-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:567f5c155eda8df1d3d439d40a45a6a5f029b429b06648235f1e7e51b522b396"}, - {file = "coverage-7.10.7-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2af88deffcc8a4d5974cf2d502251bc3b2db8461f0b66d80a449c33757aa9f40"}, - {file = "coverage-7.10.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c7315339eae3b24c2d2fa1ed7d7a38654cba34a13ef19fbcb9425da46d3dc594"}, - {file = "coverage-7.10.7-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:912e6ebc7a6e4adfdbb1aec371ad04c68854cd3bf3608b3514e7ff9062931d8a"}, - {file = "coverage-7.10.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f49a05acd3dfe1ce9715b657e28d138578bc40126760efb962322c56e9ca344b"}, - {file = "coverage-7.10.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:cce2109b6219f22ece99db7644b9622f54a4e915dad65660ec435e89a3ea7cc3"}, - {file = "coverage-7.10.7-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:f3c887f96407cea3916294046fc7dab611c2552beadbed4ea901cbc6a40cc7a0"}, - {file = "coverage-7.10.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:635adb9a4507c9fd2ed65f39693fa31c9a3ee3a8e6dc64df033e8fdf52a7003f"}, - {file = "coverage-7.10.7-cp39-cp39-win32.whl", hash = "sha256:5a02d5a850e2979b0a014c412573953995174743a3f7fa4ea5a6e9a3c5617431"}, - {file = "coverage-7.10.7-cp39-cp39-win_amd64.whl", hash = "sha256:c134869d5ffe34547d14e174c866fd8fe2254918cc0a95e99052903bc1543e07"}, - {file = "coverage-7.10.7-py3-none-any.whl", hash = "sha256:f7941f6f2fe6dd6807a1208737b8a0cbcf1cc6d7b07d24998ad2d63590868260"}, - {file = "coverage-7.10.7.tar.gz", hash = "sha256:f4ab143ab113be368a3e9b795f9cd7906c5ef407d6173fe9675a902e1fffc239"}, -] - -[package.dependencies] -tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""} - -[package.extras] -toml = ["tomli"] - -[[package]] -name = "distlib" -version = "0.4.0" -description = "Distribution utilities" -optional = false -python-versions = "*" -files = [ - {file = "distlib-0.4.0-py2.py3-none-any.whl", hash = "sha256:9659f7d87e46584a30b5780e43ac7a2143098441670ff0a49d5f9034c54a6c16"}, - {file = "distlib-0.4.0.tar.gz", hash = "sha256:feec40075be03a04501a973d81f633735b4b69f98b05450592310c0f401a4e0d"}, -] - -[[package]] -name = "docutils" -version = "0.20.1" -description = "Docutils -- Python Documentation Utilities" -optional = false -python-versions = ">=3.7" -files = [ - {file = "docutils-0.20.1-py3-none-any.whl", hash = "sha256:96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6"}, - {file = "docutils-0.20.1.tar.gz", hash = "sha256:f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b"}, -] - -[[package]] -name = "exceptiongroup" -version = "1.3.1" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598"}, - {file = "exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219"}, -] - -[package.dependencies] -typing-extensions = {version = ">=4.6.0", markers = "python_version < \"3.13\""} - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "filelock" -version = "3.19.1" -description = "A platform independent file lock." -optional = false -python-versions = ">=3.9" -files = [ - {file = "filelock-3.19.1-py3-none-any.whl", hash = "sha256:d38e30481def20772f5baf097c122c3babc4fcdb7e14e57049eb9d88c6dc017d"}, - {file = "filelock-3.19.1.tar.gz", hash = "sha256:66eda1888b0171c998b35be2bcc0f6d75c388a7ce20c3f3f37aa8e96c2dddf58"}, -] - -[[package]] -name = "filelock" -version = "3.25.2" -description = "A platform independent file lock." -optional = false -python-versions = ">=3.10" -files = [ - {file = "filelock-3.25.2-py3-none-any.whl", hash = "sha256:ca8afb0da15f229774c9ad1b455ed96e85a81373065fb10446672f64444ddf70"}, - {file = "filelock-3.25.2.tar.gz", hash = "sha256:b64ece2b38f4ca29dd3e810287aa8c48182bbecd1ae6e9ae126c9b35f1382694"}, -] - -[[package]] -name = "frozenlist" -version = "1.8.0" -description = "A list-like structure which implements collections.abc.MutableSequence" -optional = false -python-versions = ">=3.9" -files = [ - {file = "frozenlist-1.8.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b37f6d31b3dcea7deb5e9696e529a6aa4a898adc33db82da12e4c60a7c4d2011"}, - {file = "frozenlist-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef2b7b394f208233e471abc541cc6991f907ffd47dc72584acee3147899d6565"}, - {file = "frozenlist-1.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a88f062f072d1589b7b46e951698950e7da00442fc1cacbe17e19e025dc327ad"}, - {file = "frozenlist-1.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f57fb59d9f385710aa7060e89410aeb5058b99e62f4d16b08b91986b9a2140c2"}, - {file = "frozenlist-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:799345ab092bee59f01a915620b5d014698547afd011e691a208637312db9186"}, - {file = "frozenlist-1.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c23c3ff005322a6e16f71bf8692fcf4d5a304aaafe1e262c98c6d4adc7be863e"}, - {file = "frozenlist-1.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8a76ea0f0b9dfa06f254ee06053d93a600865b3274358ca48a352ce4f0798450"}, - {file = "frozenlist-1.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c7366fe1418a6133d5aa824ee53d406550110984de7637d65a178010f759c6ef"}, - {file = "frozenlist-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:13d23a45c4cebade99340c4165bd90eeb4a56c6d8a9d8aa49568cac19a6d0dc4"}, - {file = "frozenlist-1.8.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:e4a3408834f65da56c83528fb52ce7911484f0d1eaf7b761fc66001db1646eff"}, - {file = "frozenlist-1.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:42145cd2748ca39f32801dad54aeea10039da6f86e303659db90db1c4b614c8c"}, - {file = "frozenlist-1.8.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e2de870d16a7a53901e41b64ffdf26f2fbb8917b3e6ebf398098d72c5b20bd7f"}, - {file = "frozenlist-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:20e63c9493d33ee48536600d1a5c95eefc870cd71e7ab037763d1fbb89cc51e7"}, - {file = "frozenlist-1.8.0-cp310-cp310-win32.whl", hash = "sha256:adbeebaebae3526afc3c96fad434367cafbfd1b25d72369a9e5858453b1bb71a"}, - {file = "frozenlist-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:667c3777ca571e5dbeb76f331562ff98b957431df140b54c85fd4d52eea8d8f6"}, - {file = "frozenlist-1.8.0-cp310-cp310-win_arm64.whl", hash = "sha256:80f85f0a7cc86e7a54c46d99c9e1318ff01f4687c172ede30fd52d19d1da1c8e"}, - {file = "frozenlist-1.8.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:09474e9831bc2b2199fad6da3c14c7b0fbdd377cce9d3d77131be28906cb7d84"}, - {file = "frozenlist-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:17c883ab0ab67200b5f964d2b9ed6b00971917d5d8a92df149dc2c9779208ee9"}, - {file = "frozenlist-1.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fa47e444b8ba08fffd1c18e8cdb9a75db1b6a27f17507522834ad13ed5922b93"}, - {file = "frozenlist-1.8.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2552f44204b744fba866e573be4c1f9048d6a324dfe14475103fd51613eb1d1f"}, - {file = "frozenlist-1.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:957e7c38f250991e48a9a73e6423db1bb9dd14e722a10f6b8bb8e16a0f55f695"}, - {file = "frozenlist-1.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:8585e3bb2cdea02fc88ffa245069c36555557ad3609e83be0ec71f54fd4abb52"}, - {file = "frozenlist-1.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:edee74874ce20a373d62dc28b0b18b93f645633c2943fd90ee9d898550770581"}, - {file = "frozenlist-1.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c9a63152fe95756b85f31186bddf42e4c02c6321207fd6601a1c89ebac4fe567"}, - {file = "frozenlist-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b6db2185db9be0a04fecf2f241c70b63b1a242e2805be291855078f2b404dd6b"}, - {file = "frozenlist-1.8.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:f4be2e3d8bc8aabd566f8d5b8ba7ecc09249d74ba3c9ed52e54dc23a293f0b92"}, - {file = "frozenlist-1.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c8d1634419f39ea6f5c427ea2f90ca85126b54b50837f31497f3bf38266e853d"}, - {file = "frozenlist-1.8.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:1a7fa382a4a223773ed64242dbe1c9c326ec09457e6b8428efb4118c685c3dfd"}, - {file = "frozenlist-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:11847b53d722050808926e785df837353bd4d75f1d494377e59b23594d834967"}, - {file = "frozenlist-1.8.0-cp311-cp311-win32.whl", hash = "sha256:27c6e8077956cf73eadd514be8fb04d77fc946a7fe9f7fe167648b0b9085cc25"}, - {file = "frozenlist-1.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac913f8403b36a2c8610bbfd25b8013488533e71e62b4b4adce9c86c8cea905b"}, - {file = "frozenlist-1.8.0-cp311-cp311-win_arm64.whl", hash = "sha256:d4d3214a0f8394edfa3e303136d0575eece0745ff2b47bd2cb2e66dd92d4351a"}, - {file = "frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:78f7b9e5d6f2fdb88cdde9440dc147259b62b9d3b019924def9f6478be254ac1"}, - {file = "frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:229bf37d2e4acdaf808fd3f06e854a4a7a3661e871b10dc1f8f1896a3b05f18b"}, - {file = "frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f833670942247a14eafbb675458b4e61c82e002a148f49e68257b79296e865c4"}, - {file = "frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:494a5952b1c597ba44e0e78113a7266e656b9794eec897b19ead706bd7074383"}, - {file = "frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96f423a119f4777a4a056b66ce11527366a8bb92f54e541ade21f2374433f6d4"}, - {file = "frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3462dd9475af2025c31cc61be6652dfa25cbfb56cbbf52f4ccfe029f38decaf8"}, - {file = "frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4c800524c9cd9bac5166cd6f55285957fcfc907db323e193f2afcd4d9abd69b"}, - {file = "frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d6a5df73acd3399d893dafc71663ad22534b5aa4f94e8a2fabfe856c3c1b6a52"}, - {file = "frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:405e8fe955c2280ce66428b3ca55e12b3c4e9c336fb2103a4937e891c69a4a29"}, - {file = "frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:908bd3f6439f2fef9e85031b59fd4f1297af54415fb60e4254a95f75b3cab3f3"}, - {file = "frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:294e487f9ec720bd8ffcebc99d575f7eff3568a08a253d1ee1a0378754b74143"}, - {file = "frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:74c51543498289c0c43656701be6b077f4b265868fa7f8a8859c197006efb608"}, - {file = "frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:776f352e8329135506a1d6bf16ac3f87bc25b28e765949282dcc627af36123aa"}, - {file = "frozenlist-1.8.0-cp312-cp312-win32.whl", hash = "sha256:433403ae80709741ce34038da08511d4a77062aa924baf411ef73d1146e74faf"}, - {file = "frozenlist-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:34187385b08f866104f0c0617404c8eb08165ab1272e884abc89c112e9c00746"}, - {file = "frozenlist-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:fe3c58d2f5db5fbd18c2987cba06d51b0529f52bc3a6cdc33d3f4eab725104bd"}, - {file = "frozenlist-1.8.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8d92f1a84bb12d9e56f818b3a746f3efba93c1b63c8387a73dde655e1e42282a"}, - {file = "frozenlist-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96153e77a591c8adc2ee805756c61f59fef4cf4073a9275ee86fe8cba41241f7"}, - {file = "frozenlist-1.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f21f00a91358803399890ab167098c131ec2ddd5f8f5fd5fe9c9f2c6fcd91e40"}, - {file = "frozenlist-1.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fb30f9626572a76dfe4293c7194a09fb1fe93ba94c7d4f720dfae3b646b45027"}, - {file = "frozenlist-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eaa352d7047a31d87dafcacbabe89df0aa506abb5b1b85a2fb91bc3faa02d822"}, - {file = "frozenlist-1.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:03ae967b4e297f58f8c774c7eabcce57fe3c2434817d4385c50661845a058121"}, - {file = "frozenlist-1.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f6292f1de555ffcc675941d65fffffb0a5bcd992905015f85d0592201793e0e5"}, - {file = "frozenlist-1.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:29548f9b5b5e3460ce7378144c3010363d8035cea44bc0bf02d57f5a685e084e"}, - {file = "frozenlist-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ec3cc8c5d4084591b4237c0a272cc4f50a5b03396a47d9caaf76f5d7b38a4f11"}, - {file = "frozenlist-1.8.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:517279f58009d0b1f2e7c1b130b377a349405da3f7621ed6bfae50b10adf20c1"}, - {file = "frozenlist-1.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:db1e72ede2d0d7ccb213f218df6a078a9c09a7de257c2fe8fcef16d5925230b1"}, - {file = "frozenlist-1.8.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b4dec9482a65c54a5044486847b8a66bf10c9cb4926d42927ec4e8fd5db7fed8"}, - {file = "frozenlist-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:21900c48ae04d13d416f0e1e0c4d81f7931f73a9dfa0b7a8746fb2fe7dd970ed"}, - {file = "frozenlist-1.8.0-cp313-cp313-win32.whl", hash = "sha256:8b7b94a067d1c504ee0b16def57ad5738701e4ba10cec90529f13fa03c833496"}, - {file = "frozenlist-1.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:878be833caa6a3821caf85eb39c5ba92d28e85df26d57afb06b35b2efd937231"}, - {file = "frozenlist-1.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:44389d135b3ff43ba8cc89ff7f51f5a0bb6b63d829c8300f79a2fe4fe61bcc62"}, - {file = "frozenlist-1.8.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:e25ac20a2ef37e91c1b39938b591457666a0fa835c7783c3a8f33ea42870db94"}, - {file = "frozenlist-1.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:07cdca25a91a4386d2e76ad992916a85038a9b97561bf7a3fd12d5d9ce31870c"}, - {file = "frozenlist-1.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4e0c11f2cc6717e0a741f84a527c52616140741cd812a50422f83dc31749fb52"}, - {file = "frozenlist-1.8.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b3210649ee28062ea6099cfda39e147fa1bc039583c8ee4481cb7811e2448c51"}, - {file = "frozenlist-1.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:581ef5194c48035a7de2aefc72ac6539823bb71508189e5de01d60c9dcd5fa65"}, - {file = "frozenlist-1.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3ef2d026f16a2b1866e1d86fc4e1291e1ed8a387b2c333809419a2f8b3a77b82"}, - {file = "frozenlist-1.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5500ef82073f599ac84d888e3a8c1f77ac831183244bfd7f11eaa0289fb30714"}, - {file = "frozenlist-1.8.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:50066c3997d0091c411a66e710f4e11752251e6d2d73d70d8d5d4c76442a199d"}, - {file = "frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:5c1c8e78426e59b3f8005e9b19f6ff46e5845895adbde20ece9218319eca6506"}, - {file = "frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:eefdba20de0d938cec6a89bd4d70f346a03108a19b9df4248d3cf0d88f1b0f51"}, - {file = "frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:cf253e0e1c3ceb4aaff6df637ce033ff6535fb8c70a764a8f46aafd3d6ab798e"}, - {file = "frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:032efa2674356903cd0261c4317a561a6850f3ac864a63fc1583147fb05a79b0"}, - {file = "frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6da155091429aeba16851ecb10a9104a108bcd32f6c1642867eadaee401c1c41"}, - {file = "frozenlist-1.8.0-cp313-cp313t-win32.whl", hash = "sha256:0f96534f8bfebc1a394209427d0f8a63d343c9779cda6fc25e8e121b5fd8555b"}, - {file = "frozenlist-1.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5d63a068f978fc69421fb0e6eb91a9603187527c86b7cd3f534a5b77a592b888"}, - {file = "frozenlist-1.8.0-cp313-cp313t-win_arm64.whl", hash = "sha256:bf0a7e10b077bf5fb9380ad3ae8ce20ef919a6ad93b4552896419ac7e1d8e042"}, - {file = "frozenlist-1.8.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:cee686f1f4cadeb2136007ddedd0aaf928ab95216e7691c63e50a8ec066336d0"}, - {file = "frozenlist-1.8.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:119fb2a1bd47307e899c2fac7f28e85b9a543864df47aa7ec9d3c1b4545f096f"}, - {file = "frozenlist-1.8.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:4970ece02dbc8c3a92fcc5228e36a3e933a01a999f7094ff7c23fbd2beeaa67c"}, - {file = "frozenlist-1.8.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:cba69cb73723c3f329622e34bdbf5ce1f80c21c290ff04256cff1cd3c2036ed2"}, - {file = "frozenlist-1.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:778a11b15673f6f1df23d9586f83c4846c471a8af693a22e066508b77d201ec8"}, - {file = "frozenlist-1.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:0325024fe97f94c41c08872db482cf8ac4800d80e79222c6b0b7b162d5b13686"}, - {file = "frozenlist-1.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:97260ff46b207a82a7567b581ab4190bd4dfa09f4db8a8b49d1a958f6aa4940e"}, - {file = "frozenlist-1.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:54b2077180eb7f83dd52c40b2750d0a9f175e06a42e3213ce047219de902717a"}, - {file = "frozenlist-1.8.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:2f05983daecab868a31e1da44462873306d3cbfd76d1f0b5b69c473d21dbb128"}, - {file = "frozenlist-1.8.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:33f48f51a446114bc5d251fb2954ab0164d5be02ad3382abcbfe07e2531d650f"}, - {file = "frozenlist-1.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:154e55ec0655291b5dd1b8731c637ecdb50975a2ae70c606d100750a540082f7"}, - {file = "frozenlist-1.8.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:4314debad13beb564b708b4a496020e5306c7333fa9a3ab90374169a20ffab30"}, - {file = "frozenlist-1.8.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:073f8bf8becba60aa931eb3bc420b217bb7d5b8f4750e6f8b3be7f3da85d38b7"}, - {file = "frozenlist-1.8.0-cp314-cp314-win32.whl", hash = "sha256:bac9c42ba2ac65ddc115d930c78d24ab8d4f465fd3fc473cdedfccadb9429806"}, - {file = "frozenlist-1.8.0-cp314-cp314-win_amd64.whl", hash = "sha256:3e0761f4d1a44f1d1a47996511752cf3dcec5bbdd9cc2b4fe595caf97754b7a0"}, - {file = "frozenlist-1.8.0-cp314-cp314-win_arm64.whl", hash = "sha256:d1eaff1d00c7751b7c6662e9c5ba6eb2c17a2306ba5e2a37f24ddf3cc953402b"}, - {file = "frozenlist-1.8.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:d3bb933317c52d7ea5004a1c442eef86f426886fba134ef8cf4226ea6ee1821d"}, - {file = "frozenlist-1.8.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:8009897cdef112072f93a0efdce29cd819e717fd2f649ee3016efd3cd885a7ed"}, - {file = "frozenlist-1.8.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2c5dcbbc55383e5883246d11fd179782a9d07a986c40f49abe89ddf865913930"}, - {file = "frozenlist-1.8.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:39ecbc32f1390387d2aa4f5a995e465e9e2f79ba3adcac92d68e3e0afae6657c"}, - {file = "frozenlist-1.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92db2bf818d5cc8d9c1f1fc56b897662e24ea5adb36ad1f1d82875bd64e03c24"}, - {file = "frozenlist-1.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2dc43a022e555de94c3b68a4ef0b11c4f747d12c024a520c7101709a2144fb37"}, - {file = "frozenlist-1.8.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cb89a7f2de3602cfed448095bab3f178399646ab7c61454315089787df07733a"}, - {file = "frozenlist-1.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:33139dc858c580ea50e7e60a1b0ea003efa1fd42e6ec7fdbad78fff65fad2fd2"}, - {file = "frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:168c0969a329b416119507ba30b9ea13688fafffac1b7822802537569a1cb0ef"}, - {file = "frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:28bd570e8e189d7f7b001966435f9dac6718324b5be2990ac496cf1ea9ddb7fe"}, - {file = "frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:b2a095d45c5d46e5e79ba1e5b9cb787f541a8dee0433836cea4b96a2c439dcd8"}, - {file = "frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:eab8145831a0d56ec9c4139b6c3e594c7a83c2c8be25d5bcf2d86136a532287a"}, - {file = "frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:974b28cf63cc99dfb2188d8d222bc6843656188164848c4f679e63dae4b0708e"}, - {file = "frozenlist-1.8.0-cp314-cp314t-win32.whl", hash = "sha256:342c97bf697ac5480c0a7ec73cd700ecfa5a8a40ac923bd035484616efecc2df"}, - {file = "frozenlist-1.8.0-cp314-cp314t-win_amd64.whl", hash = "sha256:06be8f67f39c8b1dc671f5d83aaefd3358ae5cdcf8314552c57e7ed3e6475bdd"}, - {file = "frozenlist-1.8.0-cp314-cp314t-win_arm64.whl", hash = "sha256:102e6314ca4da683dca92e3b1355490fed5f313b768500084fbe6371fddfdb79"}, - {file = "frozenlist-1.8.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d8b7138e5cd0647e4523d6685b0eac5d4be9a184ae9634492f25c6eb38c12a47"}, - {file = "frozenlist-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a6483e309ca809f1efd154b4d37dc6d9f61037d6c6a81c2dc7a15cb22c8c5dca"}, - {file = "frozenlist-1.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1b9290cf81e95e93fdf90548ce9d3c1211cf574b8e3f4b3b7cb0537cf2227068"}, - {file = "frozenlist-1.8.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:59a6a5876ca59d1b63af8cd5e7ffffb024c3dc1e9cf9301b21a2e76286505c95"}, - {file = "frozenlist-1.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6dc4126390929823e2d2d9dc79ab4046ed74680360fc5f38b585c12c66cdf459"}, - {file = "frozenlist-1.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:332db6b2563333c5671fecacd085141b5800cb866be16d5e3eb15a2086476675"}, - {file = "frozenlist-1.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9ff15928d62a0b80bb875655c39bf517938c7d589554cbd2669be42d97c2cb61"}, - {file = "frozenlist-1.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7bf6cdf8e07c8151fba6fe85735441240ec7f619f935a5205953d58009aef8c6"}, - {file = "frozenlist-1.8.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:48e6d3f4ec5c7273dfe83ff27c91083c6c9065af655dc2684d2c200c94308bb5"}, - {file = "frozenlist-1.8.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:1a7607e17ad33361677adcd1443edf6f5da0ce5e5377b798fba20fae194825f3"}, - {file = "frozenlist-1.8.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3a935c3a4e89c733303a2d5a7c257ea44af3a56c8202df486b7f5de40f37e1"}, - {file = "frozenlist-1.8.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:940d4a017dbfed9daf46a3b086e1d2167e7012ee297fef9e1c545c4d022f5178"}, - {file = "frozenlist-1.8.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b9be22a69a014bc47e78072d0ecae716f5eb56c15238acca0f43d6eb8e4a5bda"}, - {file = "frozenlist-1.8.0-cp39-cp39-win32.whl", hash = "sha256:1aa77cb5697069af47472e39612976ed05343ff2e84a3dcf15437b232cbfd087"}, - {file = "frozenlist-1.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:7398c222d1d405e796970320036b1b563892b65809d9e5261487bb2c7f7b5c6a"}, - {file = "frozenlist-1.8.0-cp39-cp39-win_arm64.whl", hash = "sha256:b4f3b365f31c6cd4af24545ca0a244a53688cad8834e32f56831c4923b50a103"}, - {file = "frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d"}, - {file = "frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad"}, -] - -[[package]] -name = "identify" -version = "2.6.15" -description = "File identification library for Python" -optional = false -python-versions = ">=3.9" -files = [ - {file = "identify-2.6.15-py2.py3-none-any.whl", hash = "sha256:1181ef7608e00704db228516541eb83a88a9f94433a8c80bb9b5bd54b1d81757"}, - {file = "identify-2.6.15.tar.gz", hash = "sha256:e4f4864b96c6557ef2a1e1c951771838f4edc9df3a72ec7118b338801b11c7bf"}, -] - -[package.extras] -license = ["ukkonen"] - -[[package]] -name = "idna" -version = "3.11" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.8" -files = [ - {file = "idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea"}, - {file = "idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902"}, -] - -[package.extras] -all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] - -[[package]] -name = "imagesize" -version = "1.5.0" -description = "Getting image size from png/jpeg/jpeg2000/gif file" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" -files = [ - {file = "imagesize-1.5.0-py2.py3-none-any.whl", hash = "sha256:32677681b3f434c2cb496f00e89c5a291247b35b1f527589909e008057da5899"}, - {file = "imagesize-1.5.0.tar.gz", hash = "sha256:8bfc5363a7f2133a89f0098451e0bcb1cd71aba4dc02bbcecb39d99d40e1b94f"}, -] - -[[package]] -name = "importlib-metadata" -version = "8.7.1" -description = "Read metadata from Python packages" -optional = false -python-versions = ">=3.9" -files = [ - {file = "importlib_metadata-8.7.1-py3-none-any.whl", hash = "sha256:5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151"}, - {file = "importlib_metadata-8.7.1.tar.gz", hash = "sha256:49fef1ae6440c182052f407c8d34a68f72efc36db9ca90dc0113398f2fdde8bb"}, -] - -[package.dependencies] -zipp = ">=3.20" - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -enabler = ["pytest-enabler (>=3.4)"] -perf = ["ipython"] -test = ["flufl.flake8", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] -type = ["mypy (<1.19)", "pytest-mypy (>=1.0.1)"] - -[[package]] -name = "iniconfig" -version = "2.1.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.8" -files = [ - {file = "iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760"}, - {file = "iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7"}, -] - -[[package]] -name = "itsdangerous" -version = "2.2.0" -description = "Safely pass data to untrusted environments and back." -optional = false -python-versions = ">=3.8" -files = [ - {file = "itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef"}, - {file = "itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173"}, -] - -[[package]] -name = "jinja2" -version = "3.1.6" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67"}, - {file = "jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "librt" -version = "0.8.1" -description = "Mypyc runtime library" -optional = false -python-versions = ">=3.9" -files = [ - {file = "librt-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:81fd938344fecb9373ba1b155968c8a329491d2ce38e7ddb76f30ffb938f12dc"}, - {file = "librt-0.8.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5db05697c82b3a2ec53f6e72b2ed373132b0c2e05135f0696784e97d7f5d48e7"}, - {file = "librt-0.8.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:d56bc4011975f7460bea7b33e1ff425d2f1adf419935ff6707273c77f8a4ada6"}, - {file = "librt-0.8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5cdc0f588ff4b663ea96c26d2a230c525c6fc62b28314edaaaca8ed5af931ad0"}, - {file = "librt-0.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:97c2b54ff6717a7a563b72627990bec60d8029df17df423f0ed37d56a17a176b"}, - {file = "librt-0.8.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:8f1125e6bbf2f1657d9a2f3ccc4a2c9b0c8b176965bb565dd4d86be67eddb4b6"}, - {file = "librt-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8f4bb453f408137d7581be309b2fbc6868a80e7ef60c88e689078ee3a296ae71"}, - {file = "librt-0.8.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:c336d61d2fe74a3195edc1646d53ff1cddd3a9600b09fa6ab75e5514ba4862a7"}, - {file = "librt-0.8.1-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:eb5656019db7c4deacf0c1a55a898c5bb8f989be904597fcb5232a2f4828fa05"}, - {file = "librt-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c25d9e338d5bed46c1632f851babf3d13c78f49a225462017cf5e11e845c5891"}, - {file = "librt-0.8.1-cp310-cp310-win32.whl", hash = "sha256:aaab0e307e344cb28d800957ef3ec16605146ef0e59e059a60a176d19543d1b7"}, - {file = "librt-0.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:56e04c14b696300d47b3bc5f1d10a00e86ae978886d0cee14e5714fafb5df5d2"}, - {file = "librt-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:681dc2451d6d846794a828c16c22dc452d924e9f700a485b7ecb887a30aad1fd"}, - {file = "librt-0.8.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a3b4350b13cc0e6f5bec8fa7caf29a8fb8cdc051a3bae45cfbfd7ce64f009965"}, - {file = "librt-0.8.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:ac1e7817fd0ed3d14fd7c5df91daed84c48e4c2a11ee99c0547f9f62fdae13da"}, - {file = "librt-0.8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:747328be0c5b7075cde86a0e09d7a9196029800ba75a1689332348e998fb85c0"}, - {file = "librt-0.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f0af2bd2bc204fa27f3d6711d0f360e6b8c684a035206257a81673ab924aa11e"}, - {file = "librt-0.8.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d480de377f5b687b6b1bc0c0407426da556e2a757633cc7e4d2e1a057aa688f3"}, - {file = "librt-0.8.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d0ee06b5b5291f609ddb37b9750985b27bc567791bc87c76a569b3feed8481ac"}, - {file = "librt-0.8.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:9e2c6f77b9ad48ce5603b83b7da9ee3e36b3ab425353f695cba13200c5d96596"}, - {file = "librt-0.8.1-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:439352ba9373f11cb8e1933da194dcc6206daf779ff8df0ed69c5e39113e6a99"}, - {file = "librt-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:82210adabbc331dbb65d7868b105185464ef13f56f7f76688565ad79f648b0fe"}, - {file = "librt-0.8.1-cp311-cp311-win32.whl", hash = "sha256:52c224e14614b750c0a6d97368e16804a98c684657c7518752c356834fff83bb"}, - {file = "librt-0.8.1-cp311-cp311-win_amd64.whl", hash = "sha256:c00e5c884f528c9932d278d5c9cbbea38a6b81eb62c02e06ae53751a83a4d52b"}, - {file = "librt-0.8.1-cp311-cp311-win_arm64.whl", hash = "sha256:f7cdf7f26c2286ffb02e46d7bac56c94655540b26347673bea15fa52a6af17e9"}, - {file = "librt-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a28f2612ab566b17f3698b0da021ff9960610301607c9a5e8eaca62f5e1c350a"}, - {file = "librt-0.8.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:60a78b694c9aee2a0f1aaeaa7d101cf713e92e8423a941d2897f4fa37908dab9"}, - {file = "librt-0.8.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:758509ea3f1eba2a57558e7e98f4659d0ea7670bff49673b0dde18a3c7e6c0eb"}, - {file = "librt-0.8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:039b9f2c506bd0ab0f8725aa5ba339c6f0cd19d3b514b50d134789809c24285d"}, - {file = "librt-0.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5bb54f1205a3a6ab41a6fd71dfcdcbd278670d3a90ca502a30d9da583105b6f7"}, - {file = "librt-0.8.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:05bd41cdee35b0c59c259f870f6da532a2c5ca57db95b5f23689fcb5c9e42440"}, - {file = "librt-0.8.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:adfab487facf03f0d0857b8710cf82d0704a309d8ffc33b03d9302b4c64e91a9"}, - {file = "librt-0.8.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:153188fe98a72f206042be10a2c6026139852805215ed9539186312d50a8e972"}, - {file = "librt-0.8.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:dd3c41254ee98604b08bd5b3af5bf0a89740d4ee0711de95b65166bf44091921"}, - {file = "librt-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e0d138c7ae532908cbb342162b2611dbd4d90c941cd25ab82084aaf71d2c0bd0"}, - {file = "librt-0.8.1-cp312-cp312-win32.whl", hash = "sha256:43353b943613c5d9c49a25aaffdba46f888ec354e71e3529a00cca3f04d66a7a"}, - {file = "librt-0.8.1-cp312-cp312-win_amd64.whl", hash = "sha256:ff8baf1f8d3f4b6b7257fcb75a501f2a5499d0dda57645baa09d4d0d34b19444"}, - {file = "librt-0.8.1-cp312-cp312-win_arm64.whl", hash = "sha256:0f2ae3725904f7377e11cc37722d5d401e8b3d5851fb9273d7f4fe04f6b3d37d"}, - {file = "librt-0.8.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7e6bad1cd94f6764e1e21950542f818a09316645337fd5ab9a7acc45d99a8f35"}, - {file = "librt-0.8.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cf450f498c30af55551ba4f66b9123b7185362ec8b625a773b3d39aa1a717583"}, - {file = "librt-0.8.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:eca45e982fa074090057132e30585a7e8674e9e885d402eae85633e9f449ce6c"}, - {file = "librt-0.8.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0c3811485fccfda840861905b8c70bba5ec094e02825598bb9d4ca3936857a04"}, - {file = "librt-0.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e4af413908f77294605e28cfd98063f54b2c790561383971d2f52d113d9c363"}, - {file = "librt-0.8.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5212a5bd7fae98dae95710032902edcd2ec4dc994e883294f75c857b83f9aba0"}, - {file = "librt-0.8.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e692aa2d1d604e6ca12d35e51fdc36f4cda6345e28e36374579f7ef3611b3012"}, - {file = "librt-0.8.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4be2a5c926b9770c9e08e717f05737a269b9d0ebc5d2f0060f0fe3fe9ce47acb"}, - {file = "librt-0.8.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:fd1a720332ea335ceb544cf0a03f81df92abd4bb887679fd1e460976b0e6214b"}, - {file = "librt-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:93c2af9e01e0ef80d95ae3c720be101227edae5f2fe7e3dc63d8857fadfc5a1d"}, - {file = "librt-0.8.1-cp313-cp313-win32.whl", hash = "sha256:086a32dbb71336627e78cc1d6ee305a68d038ef7d4c39aaff41ae8c9aa46e91a"}, - {file = "librt-0.8.1-cp313-cp313-win_amd64.whl", hash = "sha256:e11769a1dbda4da7b00a76cfffa67aa47cfa66921d2724539eee4b9ede780b79"}, - {file = "librt-0.8.1-cp313-cp313-win_arm64.whl", hash = "sha256:924817ab3141aca17893386ee13261f1d100d1ef410d70afe4389f2359fea4f0"}, - {file = "librt-0.8.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:6cfa7fe54fd4d1f47130017351a959fe5804bda7a0bc7e07a2cdbc3fdd28d34f"}, - {file = "librt-0.8.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:228c2409c079f8c11fb2e5d7b277077f694cb93443eb760e00b3b83cb8b3176c"}, - {file = "librt-0.8.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:7aae78ab5e3206181780e56912d1b9bb9f90a7249ce12f0e8bf531d0462dd0fc"}, - {file = "librt-0.8.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:172d57ec04346b047ca6af181e1ea4858086c80bdf455f61994c4aa6fc3f866c"}, - {file = "librt-0.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6b1977c4ea97ce5eb7755a78fae68d87e4102e4aaf54985e8b56806849cc06a3"}, - {file = "librt-0.8.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:10c42e1f6fd06733ef65ae7bebce2872bcafd8d6e6b0a08fe0a05a23b044fb14"}, - {file = "librt-0.8.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:4c8dfa264b9193c4ee19113c985c95f876fae5e51f731494fc4e0cf594990ba7"}, - {file = "librt-0.8.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:01170b6729a438f0dedc4a26ed342e3dc4f02d1000b4b19f980e1877f0c297e6"}, - {file = "librt-0.8.1-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:7b02679a0d783bdae30d443025b94465d8c3dc512f32f5b5031f93f57ac32071"}, - {file = "librt-0.8.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:190b109bb69592a3401fe1ffdea41a2e73370ace2ffdc4a0e8e2b39cdea81b78"}, - {file = "librt-0.8.1-cp314-cp314-win32.whl", hash = "sha256:e70a57ecf89a0f64c24e37f38d3fe217a58169d2fe6ed6d70554964042474023"}, - {file = "librt-0.8.1-cp314-cp314-win_amd64.whl", hash = "sha256:7e2f3edca35664499fbb36e4770650c4bd4a08abc1f4458eab9df4ec56389730"}, - {file = "librt-0.8.1-cp314-cp314-win_arm64.whl", hash = "sha256:0d2f82168e55ddefd27c01c654ce52379c0750ddc31ee86b4b266bcf4d65f2a3"}, - {file = "librt-0.8.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2c74a2da57a094bd48d03fa5d196da83d2815678385d2978657499063709abe1"}, - {file = "librt-0.8.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a355d99c4c0d8e5b770313b8b247411ed40949ca44e33e46a4789b9293a907ee"}, - {file = "librt-0.8.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:2eb345e8b33fb748227409c9f1233d4df354d6e54091f0e8fc53acdb2ffedeb7"}, - {file = "librt-0.8.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9be2f15e53ce4e83cc08adc29b26fb5978db62ef2a366fbdf716c8a6c8901040"}, - {file = "librt-0.8.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:785ae29c1f5c6e7c2cde2c7c0e148147f4503da3abc5d44d482068da5322fd9e"}, - {file = "librt-0.8.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:1d3a7da44baf692f0c6aeb5b2a09c5e6fc7a703bca9ffa337ddd2e2da53f7732"}, - {file = "librt-0.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5fc48998000cbc39ec0d5311312dda93ecf92b39aaf184c5e817d5d440b29624"}, - {file = "librt-0.8.1-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:e96baa6820280077a78244b2e06e416480ed859bbd8e5d641cf5742919d8beb4"}, - {file = "librt-0.8.1-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:31362dbfe297b23590530007062c32c6f6176f6099646bb2c95ab1b00a57c382"}, - {file = "librt-0.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:cc3656283d11540ab0ea01978378e73e10002145117055e03722417aeab30994"}, - {file = "librt-0.8.1-cp314-cp314t-win32.whl", hash = "sha256:738f08021b3142c2918c03692608baed43bc51144c29e35807682f8070ee2a3a"}, - {file = "librt-0.8.1-cp314-cp314t-win_amd64.whl", hash = "sha256:89815a22daf9c51884fb5dbe4f1ef65ee6a146e0b6a8df05f753e2e4a9359bf4"}, - {file = "librt-0.8.1-cp314-cp314t-win_arm64.whl", hash = "sha256:bf512a71a23504ed08103a13c941f763db13fb11177beb3d9244c98c29fb4a61"}, - {file = "librt-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3dff3d3ca8db20e783b1bc7de49c0a2ab0b8387f31236d6a026597d07fcd68ac"}, - {file = "librt-0.8.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:08eec3a1fc435f0d09c87b6bf1ec798986a3544f446b864e4099633a56fcd9ed"}, - {file = "librt-0.8.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:e3f0a41487fd5fad7e760b9e8a90e251e27c2816fbc2cff36a22a0e6bcbbd9dd"}, - {file = "librt-0.8.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bacdb58d9939d95cc557b4dbaa86527c9db2ac1ed76a18bc8d26f6dc8647d851"}, - {file = "librt-0.8.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b6d7ab1f01aa753188605b09a51faa44a3327400b00b8cce424c71910fc0a128"}, - {file = "librt-0.8.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4998009e7cb9e896569f4be7004f09d0ed70d386fa99d42b6d363f6d200501ac"}, - {file = "librt-0.8.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2cc68eeeef5e906839c7bb0815748b5b0a974ec27125beefc0f942715785b551"}, - {file = "librt-0.8.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:0bf69d79a23f4f40b8673a947a234baeeb133b5078b483b7297c5916539cf5d5"}, - {file = "librt-0.8.1-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:22b46eabd76c1986ee7d231b0765ad387d7673bbd996aa0d0d054b38ac65d8f6"}, - {file = "librt-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:237796479f4d0637d6b9cbcb926ff424a97735e68ade6facf402df4ec93375ed"}, - {file = "librt-0.8.1-cp39-cp39-win32.whl", hash = "sha256:4beb04b8c66c6ae62f8c1e0b2f097c1ebad9295c929a8d5286c05eae7c2fc7dc"}, - {file = "librt-0.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:64548cde61b692dc0dc379f4b5f59a2f582c2ebe7890d09c1ae3b9e66fa015b7"}, - {file = "librt-0.8.1.tar.gz", hash = "sha256:be46a14693955b3bd96014ccbdb8339ee8c9346fbe11c1b78901b55125f14c73"}, -] - -[[package]] -name = "markupsafe" -version = "3.0.3" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.9" -files = [ - {file = "markupsafe-3.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f981d352f04553a7171b8e44369f2af4055f888dfb147d55e42d29e29e74559"}, - {file = "markupsafe-3.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c1493fb6e50ab01d20a22826e57520f1284df32f2d8601fdd90b6304601419"}, - {file = "markupsafe-3.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ba88449deb3de88bd40044603fafffb7bc2b055d626a330323a9ed736661695"}, - {file = "markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42d0984e947b8adf7dd6dde396e720934d12c506ce84eea8476409563607591"}, - {file = "markupsafe-3.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c0c0b3ade1c0b13b936d7970b1d37a57acde9199dc2aecc4c336773e1d86049c"}, - {file = "markupsafe-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0303439a41979d9e74d18ff5e2dd8c43ed6c6001fd40e5bf2e43f7bd9bbc523f"}, - {file = "markupsafe-3.0.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:d2ee202e79d8ed691ceebae8e0486bd9a2cd4794cec4824e1c99b6f5009502f6"}, - {file = "markupsafe-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:177b5253b2834fe3678cb4a5f0059808258584c559193998be2601324fdeafb1"}, - {file = "markupsafe-3.0.3-cp310-cp310-win32.whl", hash = "sha256:2a15a08b17dd94c53a1da0438822d70ebcd13f8c3a95abe3a9ef9f11a94830aa"}, - {file = "markupsafe-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:c4ffb7ebf07cfe8931028e3e4c85f0357459a3f9f9490886198848f4fa002ec8"}, - {file = "markupsafe-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:e2103a929dfa2fcaf9bb4e7c091983a49c9ac3b19c9061b6d5427dd7d14d81a1"}, - {file = "markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad"}, - {file = "markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a"}, - {file = "markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50"}, - {file = "markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf"}, - {file = "markupsafe-3.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f"}, - {file = "markupsafe-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a"}, - {file = "markupsafe-3.0.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115"}, - {file = "markupsafe-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a"}, - {file = "markupsafe-3.0.3-cp311-cp311-win32.whl", hash = "sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19"}, - {file = "markupsafe-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01"}, - {file = "markupsafe-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c"}, - {file = "markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e"}, - {file = "markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce"}, - {file = "markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d"}, - {file = "markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d"}, - {file = "markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a"}, - {file = "markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b"}, - {file = "markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f"}, - {file = "markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b"}, - {file = "markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d"}, - {file = "markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c"}, - {file = "markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f"}, - {file = "markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795"}, - {file = "markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219"}, - {file = "markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6"}, - {file = "markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676"}, - {file = "markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9"}, - {file = "markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1"}, - {file = "markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc"}, - {file = "markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12"}, - {file = "markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed"}, - {file = "markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5"}, - {file = "markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485"}, - {file = "markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73"}, - {file = "markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37"}, - {file = "markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19"}, - {file = "markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025"}, - {file = "markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6"}, - {file = "markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f"}, - {file = "markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb"}, - {file = "markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009"}, - {file = "markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354"}, - {file = "markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218"}, - {file = "markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287"}, - {file = "markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe"}, - {file = "markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026"}, - {file = "markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737"}, - {file = "markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97"}, - {file = "markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d"}, - {file = "markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda"}, - {file = "markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf"}, - {file = "markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe"}, - {file = "markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9"}, - {file = "markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581"}, - {file = "markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4"}, - {file = "markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab"}, - {file = "markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175"}, - {file = "markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634"}, - {file = "markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50"}, - {file = "markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e"}, - {file = "markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5"}, - {file = "markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523"}, - {file = "markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc"}, - {file = "markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d"}, - {file = "markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9"}, - {file = "markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa"}, - {file = "markupsafe-3.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:15d939a21d546304880945ca1ecb8a039db6b4dc49b2c5a400387cdae6a62e26"}, - {file = "markupsafe-3.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f71a396b3bf33ecaa1626c255855702aca4d3d9fea5e051b41ac59a9c1c41edc"}, - {file = "markupsafe-3.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f4b68347f8c5eab4a13419215bdfd7f8c9b19f2b25520968adfad23eb0ce60c"}, - {file = "markupsafe-3.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8fc20152abba6b83724d7ff268c249fa196d8259ff481f3b1476383f8f24e42"}, - {file = "markupsafe-3.0.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:949b8d66bc381ee8b007cd945914c721d9aba8e27f71959d750a46f7c282b20b"}, - {file = "markupsafe-3.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:3537e01efc9d4dccdf77221fb1cb3b8e1a38d5428920e0657ce299b20324d758"}, - {file = "markupsafe-3.0.3-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:591ae9f2a647529ca990bc681daebdd52c8791ff06c2bfa05b65163e28102ef2"}, - {file = "markupsafe-3.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a320721ab5a1aba0a233739394eb907f8c8da5c98c9181d1161e77a0c8e36f2d"}, - {file = "markupsafe-3.0.3-cp39-cp39-win32.whl", hash = "sha256:df2449253ef108a379b8b5d6b43f4b1a8e81a061d6537becd5582fba5f9196d7"}, - {file = "markupsafe-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:7c3fb7d25180895632e5d3148dbdc29ea38ccb7fd210aa27acbd1201a1902c6e"}, - {file = "markupsafe-3.0.3-cp39-cp39-win_arm64.whl", hash = "sha256:38664109c14ffc9e7437e86b4dceb442b0096dfe3541d7864d9cbe1da4cf36c8"}, - {file = "markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698"}, -] - -[[package]] -name = "multidict" -version = "6.7.1" -description = "multidict implementation" -optional = false -python-versions = ">=3.9" -files = [ - {file = "multidict-6.7.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c93c3db7ea657dd4637d57e74ab73de31bccefe144d3d4ce370052035bc85fb5"}, - {file = "multidict-6.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:974e72a2474600827abaeda71af0c53d9ebbc3c2eb7da37b37d7829ae31232d8"}, - {file = "multidict-6.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdea2e7b2456cfb6694fb113066fd0ec7ea4d67e3a35e1f4cbeea0b448bf5872"}, - {file = "multidict-6.7.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:17207077e29342fdc2c9a82e4b306f1127bf1ea91f8b71e02d4798a70bb99991"}, - {file = "multidict-6.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4f49cb5661344764e4c7c7973e92a47a59b8fc19b6523649ec9dc4960e58a03"}, - {file = "multidict-6.7.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a9fc4caa29e2e6ae408d1c450ac8bf19892c5fca83ee634ecd88a53332c59981"}, - {file = "multidict-6.7.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c5f0c21549ab432b57dcc82130f388d84ad8179824cc3f223d5e7cfbfd4143f6"}, - {file = "multidict-6.7.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7dfb78d966b2c906ae1d28ccf6e6712a3cd04407ee5088cd276fe8cb42186190"}, - {file = "multidict-6.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9b0d9b91d1aa44db9c1f1ecd0d9d2ae610b2f4f856448664e01a3b35899f3f92"}, - {file = "multidict-6.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:dd96c01a9dcd4889dcfcf9eb5544ca0c77603f239e3ffab0524ec17aea9a93ee"}, - {file = "multidict-6.7.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:067343c68cd6612d375710f895337b3a98a033c94f14b9a99eff902f205424e2"}, - {file = "multidict-6.7.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5884a04f4ff56c6120f6ccf703bdeb8b5079d808ba604d4d53aec0d55dc33568"}, - {file = "multidict-6.7.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8affcf1c98b82bc901702eb73b6947a1bfa170823c153fe8a47b5f5f02e48e40"}, - {file = "multidict-6.7.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:0d17522c37d03e85c8098ec8431636309b2682cf12e58f4dbc76121fb50e4962"}, - {file = "multidict-6.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:24c0cf81544ca5e17cfcb6e482e7a82cd475925242b308b890c9452a074d4505"}, - {file = "multidict-6.7.1-cp310-cp310-win32.whl", hash = "sha256:d82dd730a95e6643802f4454b8fdecdf08667881a9c5670db85bc5a56693f122"}, - {file = "multidict-6.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:cf37cbe5ced48d417ba045aca1b21bafca67489452debcde94778a576666a1df"}, - {file = "multidict-6.7.1-cp310-cp310-win_arm64.whl", hash = "sha256:59bc83d3f66b41dac1e7460aac1d196edc70c9ba3094965c467715a70ecb46db"}, - {file = "multidict-6.7.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7ff981b266af91d7b4b3793ca3382e53229088d193a85dfad6f5f4c27fc73e5d"}, - {file = "multidict-6.7.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:844c5bca0b5444adb44a623fb0a1310c2f4cd41f402126bb269cd44c9b3f3e1e"}, - {file = "multidict-6.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f2a0a924d4c2e9afcd7ec64f9de35fcd96915149b2216e1cb2c10a56df483855"}, - {file = "multidict-6.7.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:8be1802715a8e892c784c0197c2ace276ea52702a0ede98b6310c8f255a5afb3"}, - {file = "multidict-6.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2e2d2ed645ea29f31c4c7ea1552fcfd7cb7ba656e1eafd4134a6620c9f5fdd9e"}, - {file = "multidict-6.7.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:95922cee9a778659e91db6497596435777bd25ed116701a4c034f8e46544955a"}, - {file = "multidict-6.7.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6b83cabdc375ffaaa15edd97eb7c0c672ad788e2687004990074d7d6c9b140c8"}, - {file = "multidict-6.7.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:38fb49540705369bab8484db0689d86c0a33a0a9f2c1b197f506b71b4b6c19b0"}, - {file = "multidict-6.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:439cbebd499f92e9aa6793016a8acaa161dfa749ae86d20960189f5398a19144"}, - {file = "multidict-6.7.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6d3bc717b6fe763b8be3f2bee2701d3c8eb1b2a8ae9f60910f1b2860c82b6c49"}, - {file = "multidict-6.7.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:619e5a1ac57986dbfec9f0b301d865dddf763696435e2962f6d9cf2fdff2bb71"}, - {file = "multidict-6.7.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:0b38ebffd9be37c1170d33bc0f36f4f262e0a09bc1aac1c34c7aa51a7293f0b3"}, - {file = "multidict-6.7.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:10ae39c9cfe6adedcdb764f5e8411d4a92b055e35573a2eaa88d3323289ef93c"}, - {file = "multidict-6.7.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:25167cc263257660290fba06b9318d2026e3c910be240a146e1f66dd114af2b0"}, - {file = "multidict-6.7.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:128441d052254f42989ef98b7b6a6ecb1e6f708aa962c7984235316db59f50fa"}, - {file = "multidict-6.7.1-cp311-cp311-win32.whl", hash = "sha256:d62b7f64ffde3b99d06b707a280db04fb3855b55f5a06df387236051d0668f4a"}, - {file = "multidict-6.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:bdbf9f3b332abd0cdb306e7c2113818ab1e922dc84b8f8fd06ec89ed2a19ab8b"}, - {file = "multidict-6.7.1-cp311-cp311-win_arm64.whl", hash = "sha256:b8c990b037d2fff2f4e33d3f21b9b531c5745b33a49a7d6dbe7a177266af44f6"}, - {file = "multidict-6.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a90f75c956e32891a4eda3639ce6dd86e87105271f43d43442a3aedf3cddf172"}, - {file = "multidict-6.7.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fccb473e87eaa1382689053e4a4618e7ba7b9b9b8d6adf2027ee474597128cd"}, - {file = "multidict-6.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0fa96985700739c4c7853a43c0b3e169360d6855780021bfc6d0f1ce7c123e7"}, - {file = "multidict-6.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cb2a55f408c3043e42b40cc8eecd575afa27b7e0b956dfb190de0f8499a57a53"}, - {file = "multidict-6.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eb0ce7b2a32d09892b3dd6cc44877a0d02a33241fafca5f25c8b6b62374f8b75"}, - {file = "multidict-6.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c3a32d23520ee37bf327d1e1a656fec76a2edd5c038bf43eddfa0572ec49c60b"}, - {file = "multidict-6.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9c90fed18bffc0189ba814749fdcc102b536e83a9f738a9003e569acd540a733"}, - {file = "multidict-6.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da62917e6076f512daccfbbde27f46fed1c98fee202f0559adec8ee0de67f71a"}, - {file = "multidict-6.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bfde23ef6ed9db7eaee6c37dcec08524cb43903c60b285b172b6c094711b3961"}, - {file = "multidict-6.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3758692429e4e32f1ba0df23219cd0b4fc0a52f476726fff9337d1a57676a582"}, - {file = "multidict-6.7.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:398c1478926eca669f2fd6a5856b6de9c0acf23a2cb59a14c0ba5844fa38077e"}, - {file = "multidict-6.7.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c102791b1c4f3ab36ce4101154549105a53dc828f016356b3e3bcae2e3a039d3"}, - {file = "multidict-6.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a088b62bd733e2ad12c50dad01b7d0166c30287c166e137433d3b410add807a6"}, - {file = "multidict-6.7.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3d51ff4785d58d3f6c91bdbffcb5e1f7ddfda557727043aa20d20ec4f65e324a"}, - {file = "multidict-6.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc5907494fccf3e7d3f94f95c91d6336b092b5fc83811720fae5e2765890dfba"}, - {file = "multidict-6.7.1-cp312-cp312-win32.whl", hash = "sha256:28ca5ce2fd9716631133d0e9a9b9a745ad7f60bac2bccafb56aa380fc0b6c511"}, - {file = "multidict-6.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcee94dfbd638784645b066074b338bc9cc155d4b4bffa4adce1615c5a426c19"}, - {file = "multidict-6.7.1-cp312-cp312-win_arm64.whl", hash = "sha256:ba0a9fb644d0c1a2194cf7ffb043bd852cea63a57f66fbd33959f7dae18517bf"}, - {file = "multidict-6.7.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2b41f5fed0ed563624f1c17630cb9941cf2309d4df00e494b551b5f3e3d67a23"}, - {file = "multidict-6.7.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84e61e3af5463c19b67ced91f6c634effb89ef8bfc5ca0267f954451ed4bb6a2"}, - {file = "multidict-6.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:935434b9853c7c112eee7ac891bc4cb86455aa631269ae35442cb316790c1445"}, - {file = "multidict-6.7.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:432feb25a1cb67fe82a9680b4d65fb542e4635cb3166cd9c01560651ad60f177"}, - {file = "multidict-6.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e82d14e3c948952a1a85503817e038cba5905a3352de76b9a465075d072fba23"}, - {file = "multidict-6.7.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4cfb48c6ea66c83bcaaf7e4dfa7ec1b6bbcf751b7db85a328902796dfde4c060"}, - {file = "multidict-6.7.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1d540e51b7e8e170174555edecddbd5538105443754539193e3e1061864d444d"}, - {file = "multidict-6.7.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:273d23f4b40f3dce4d6c8a821c741a86dec62cded82e1175ba3d99be128147ed"}, - {file = "multidict-6.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d624335fd4fa1c08a53f8b4be7676ebde19cd092b3895c421045ca87895b429"}, - {file = "multidict-6.7.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:12fad252f8b267cc75b66e8fc51b3079604e8d43a75428ffe193cd9e2195dfd6"}, - {file = "multidict-6.7.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:03ede2a6ffbe8ef936b92cb4529f27f42be7f56afcdab5ab739cd5f27fb1cbf9"}, - {file = "multidict-6.7.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:90efbcf47dbe33dcf643a1e400d67d59abeac5db07dc3f27d6bdeae497a2198c"}, - {file = "multidict-6.7.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:5c4b9bfc148f5a91be9244d6264c53035c8a0dcd2f51f1c3c6e30e30ebaa1c84"}, - {file = "multidict-6.7.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:401c5a650f3add2472d1d288c26deebc540f99e2fb83e9525007a74cd2116f1d"}, - {file = "multidict-6.7.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:97891f3b1b3ffbded884e2916cacf3c6fc87b66bb0dde46f7357404750559f33"}, - {file = "multidict-6.7.1-cp313-cp313-win32.whl", hash = "sha256:e1c5988359516095535c4301af38d8a8838534158f649c05dd1050222321bcb3"}, - {file = "multidict-6.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:960c83bf01a95b12b08fd54324a4eb1d5b52c88932b5cba5d6e712bb3ed12eb5"}, - {file = "multidict-6.7.1-cp313-cp313-win_arm64.whl", hash = "sha256:563fe25c678aaba333d5399408f5ec3c383ca5b663e7f774dd179a520b8144df"}, - {file = "multidict-6.7.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:c76c4bec1538375dad9d452d246ca5368ad6e1c9039dadcf007ae59c70619ea1"}, - {file = "multidict-6.7.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:57b46b24b5d5ebcc978da4ec23a819a9402b4228b8a90d9c656422b4bdd8a963"}, - {file = "multidict-6.7.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e954b24433c768ce78ab7929e84ccf3422e46deb45a4dc9f93438f8217fa2d34"}, - {file = "multidict-6.7.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:3bd231490fa7217cc832528e1cd8752a96f0125ddd2b5749390f7c3ec8721b65"}, - {file = "multidict-6.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:253282d70d67885a15c8a7716f3a73edf2d635793ceda8173b9ecc21f2fb8292"}, - {file = "multidict-6.7.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:0b4c48648d7649c9335cf1927a8b87fa692de3dcb15faa676c6a6f1f1aabda43"}, - {file = "multidict-6.7.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:98bc624954ec4d2c7cb074b8eefc2b5d0ce7d482e410df446414355d158fe4ca"}, - {file = "multidict-6.7.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1b99af4d9eec0b49927b4402bcbb58dea89d3e0db8806a4086117019939ad3dd"}, - {file = "multidict-6.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6aac4f16b472d5b7dc6f66a0d49dd57b0e0902090be16594dc9ebfd3d17c47e7"}, - {file = "multidict-6.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:21f830fe223215dffd51f538e78c172ed7c7f60c9b96a2bf05c4848ad49921c3"}, - {file = "multidict-6.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:f5dd81c45b05518b9aa4da4aa74e1c93d715efa234fd3e8a179df611cc85e5f4"}, - {file = "multidict-6.7.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:eb304767bca2bb92fb9c5bd33cedc95baee5bb5f6c88e63706533a1c06ad08c8"}, - {file = "multidict-6.7.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:c9035dde0f916702850ef66460bc4239d89d08df4d02023a5926e7446724212c"}, - {file = "multidict-6.7.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:af959b9beeb66c822380f222f0e0a1889331597e81f1ded7f374f3ecb0fd6c52"}, - {file = "multidict-6.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:41f2952231456154ee479651491e94118229844dd7226541788be783be2b5108"}, - {file = "multidict-6.7.1-cp313-cp313t-win32.whl", hash = "sha256:df9f19c28adcb40b6aae30bbaa1478c389efd50c28d541d76760199fc1037c32"}, - {file = "multidict-6.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:d54ecf9f301853f2c5e802da559604b3e95bb7a3b01a9c295c6ee591b9882de8"}, - {file = "multidict-6.7.1-cp313-cp313t-win_arm64.whl", hash = "sha256:5a37ca18e360377cfda1d62f5f382ff41f2b8c4ccb329ed974cc2e1643440118"}, - {file = "multidict-6.7.1-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8f333ec9c5eb1b7105e3b84b53141e66ca05a19a605368c55450b6ba208cb9ee"}, - {file = "multidict-6.7.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:a407f13c188f804c759fc6a9f88286a565c242a76b27626594c133b82883b5c2"}, - {file = "multidict-6.7.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0e161ddf326db5577c3a4cc2d8648f81456e8a20d40415541587a71620d7a7d1"}, - {file = "multidict-6.7.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:1e3a8bb24342a8201d178c3b4984c26ba81a577c80d4d525727427460a50c22d"}, - {file = "multidict-6.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97231140a50f5d447d3164f994b86a0bed7cd016e2682f8650d6a9158e14fd31"}, - {file = "multidict-6.7.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:6b10359683bd8806a200fd2909e7c8ca3a7b24ec1d8132e483d58e791d881048"}, - {file = "multidict-6.7.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:283ddac99f7ac25a4acadbf004cb5ae34480bbeb063520f70ce397b281859362"}, - {file = "multidict-6.7.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:538cec1e18c067d0e6103aa9a74f9e832904c957adc260e61cd9d8cf0c3b3d37"}, - {file = "multidict-6.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7eee46ccb30ff48a1e35bb818cc90846c6be2b68240e42a78599166722cea709"}, - {file = "multidict-6.7.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:fa263a02f4f2dd2d11a7b1bb4362aa7cb1049f84a9235d31adf63f30143469a0"}, - {file = "multidict-6.7.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:2e1425e2f99ec5bd36c15a01b690a1a2456209c5deed58f95469ffb46039ccbb"}, - {file = "multidict-6.7.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:497394b3239fc6f0e13a78a3e1b61296e72bf1c5f94b4c4eb80b265c37a131cd"}, - {file = "multidict-6.7.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:233b398c29d3f1b9676b4b6f75c518a06fcb2ea0b925119fb2c1bc35c05e1601"}, - {file = "multidict-6.7.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:93b1818e4a6e0930454f0f2af7dfce69307ca03cdcfb3739bf4d91241967b6c1"}, - {file = "multidict-6.7.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f33dc2a3abe9249ea5d8360f969ec7f4142e7ac45ee7014d8f8d5acddf178b7b"}, - {file = "multidict-6.7.1-cp314-cp314-win32.whl", hash = "sha256:3ab8b9d8b75aef9df299595d5388b14530839f6422333357af1339443cff777d"}, - {file = "multidict-6.7.1-cp314-cp314-win_amd64.whl", hash = "sha256:5e01429a929600e7dab7b166062d9bb54a5eed752384c7384c968c2afab8f50f"}, - {file = "multidict-6.7.1-cp314-cp314-win_arm64.whl", hash = "sha256:4885cb0e817aef5d00a2e8451d4665c1808378dc27c2705f1bf4ef8505c0d2e5"}, - {file = "multidict-6.7.1-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:0458c978acd8e6ea53c81eefaddbbee9c6c5e591f41b3f5e8e194780fe026581"}, - {file = "multidict-6.7.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:c0abd12629b0af3cf590982c0b413b1e7395cd4ec026f30986818ab95bfaa94a"}, - {file = "multidict-6.7.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:14525a5f61d7d0c94b368a42cff4c9a4e7ba2d52e2672a7b23d84dc86fb02b0c"}, - {file = "multidict-6.7.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:17307b22c217b4cf05033dabefe68255a534d637c6c9b0cc8382718f87be4262"}, - {file = "multidict-6.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7a7e590ff876a3eaf1c02a4dfe0724b6e69a9e9de6d8f556816f29c496046e59"}, - {file = "multidict-6.7.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:5fa6a95dfee63893d80a34758cd0e0c118a30b8dcb46372bf75106c591b77889"}, - {file = "multidict-6.7.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a0543217a6a017692aa6ae5cc39adb75e587af0f3a82288b1492eb73dd6cc2a4"}, - {file = "multidict-6.7.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f99fe611c312b3c1c0ace793f92464d8cd263cc3b26b5721950d977b006b6c4d"}, - {file = "multidict-6.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9004d8386d133b7e6135679424c91b0b854d2d164af6ea3f289f8f2761064609"}, - {file = "multidict-6.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e628ef0e6859ffd8273c69412a2465c4be4a9517d07261b33334b5ec6f3c7489"}, - {file = "multidict-6.7.1-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:841189848ba629c3552035a6a7f5bf3b02eb304e9fea7492ca220a8eda6b0e5c"}, - {file = "multidict-6.7.1-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:ce1bbd7d780bb5a0da032e095c951f7014d6b0a205f8318308140f1a6aba159e"}, - {file = "multidict-6.7.1-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:b26684587228afed0d50cf804cc71062cc9c1cdf55051c4c6345d372947b268c"}, - {file = "multidict-6.7.1-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:9f9af11306994335398293f9958071019e3ab95e9a707dc1383a35613f6abcb9"}, - {file = "multidict-6.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:b4938326284c4f1224178a560987b6cf8b4d38458b113d9b8c1db1a836e640a2"}, - {file = "multidict-6.7.1-cp314-cp314t-win32.whl", hash = "sha256:98655c737850c064a65e006a3df7c997cd3b220be4ec8fe26215760b9697d4d7"}, - {file = "multidict-6.7.1-cp314-cp314t-win_amd64.whl", hash = "sha256:497bde6223c212ba11d462853cfa4f0ae6ef97465033e7dc9940cdb3ab5b48e5"}, - {file = "multidict-6.7.1-cp314-cp314t-win_arm64.whl", hash = "sha256:2bbd113e0d4af5db41d5ebfe9ccaff89de2120578164f86a5d17d5a576d1e5b2"}, - {file = "multidict-6.7.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:65573858d27cdeaca41893185677dc82395159aa28875a8867af66532d413a8f"}, - {file = "multidict-6.7.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c524c6fb8fc342793708ab111c4dbc90ff9abd568de220432500e47e990c0358"}, - {file = "multidict-6.7.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aa23b001d968faef416ff70dc0f1ab045517b9b42a90edd3e9bcdb06479e31d5"}, - {file = "multidict-6.7.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:6704fa2b7453b2fb121740555fa1ee20cd98c4d011120caf4d2b8d4e7c76eec0"}, - {file = "multidict-6.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:121a34e5bfa410cdf2c8c49716de160de3b1dbcd86b49656f5681e4543bcd1a8"}, - {file = "multidict-6.7.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:026d264228bcd637d4e060844e39cdc60f86c479e463d49075dedc21b18fbbe0"}, - {file = "multidict-6.7.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0e697826df7eb63418ee190fd06ce9f1803593bb4b9517d08c60d9b9a7f69d8f"}, - {file = "multidict-6.7.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:bb08271280173720e9fea9ede98e5231defcbad90f1624bea26f32ec8a956e2f"}, - {file = "multidict-6.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c6b3228e1d80af737b72925ce5fb4daf5a335e49cd7ab77ed7b9fdfbf58c526e"}, - {file = "multidict-6.7.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:3943debf0fbb57bdde5901695c11094a9a36723e5c03875f87718ee15ca2f4d2"}, - {file = "multidict-6.7.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:98c5787b0a0d9a41d9311eae44c3b76e6753def8d8870ab501320efe75a6a5f8"}, - {file = "multidict-6.7.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:08ccb2a6dc72009093ebe7f3f073e5ec5964cba9a706fa94b1a1484039b87941"}, - {file = "multidict-6.7.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:eb351f72c26dc9abe338ca7294661aa22969ad8ffe7ef7d5541d19f368dc854a"}, - {file = "multidict-6.7.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ac1c665bad8b5d762f5f85ebe4d94130c26965f11de70c708c75671297c776de"}, - {file = "multidict-6.7.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1fa6609d0364f4f6f58351b4659a1f3e0e898ba2a8c5cac04cb2c7bc556b0bc5"}, - {file = "multidict-6.7.1-cp39-cp39-win32.whl", hash = "sha256:6f77ce314a29263e67adadc7e7c1bc699fcb3a305059ab973d038f87caa42ed0"}, - {file = "multidict-6.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:f537b55778cd3cbee430abe3131255d3a78202e0f9ea7ffc6ada893a4bcaeea4"}, - {file = "multidict-6.7.1-cp39-cp39-win_arm64.whl", hash = "sha256:749aa54f578f2e5f439538706a475aa844bfa8ef75854b1401e6e528e4937cf9"}, - {file = "multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56"}, - {file = "multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d"}, -] - -[package.dependencies] -typing-extensions = {version = ">=4.1.0", markers = "python_version < \"3.11\""} - -[[package]] -name = "mypy" -version = "1.19.1" -description = "Optional static typing for Python" -optional = false -python-versions = ">=3.9" -files = [ - {file = "mypy-1.19.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5f05aa3d375b385734388e844bc01733bd33c644ab48e9684faa54e5389775ec"}, - {file = "mypy-1.19.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:022ea7279374af1a5d78dfcab853fe6a536eebfda4b59deab53cd21f6cd9f00b"}, - {file = "mypy-1.19.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee4c11e460685c3e0c64a4c5de82ae143622410950d6be863303a1c4ba0e36d6"}, - {file = "mypy-1.19.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de759aafbae8763283b2ee5869c7255391fbc4de3ff171f8f030b5ec48381b74"}, - {file = "mypy-1.19.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ab43590f9cd5108f41aacf9fca31841142c786827a74ab7cc8a2eacb634e09a1"}, - {file = "mypy-1.19.1-cp310-cp310-win_amd64.whl", hash = "sha256:2899753e2f61e571b3971747e302d5f420c3fd09650e1951e99f823bc3089dac"}, - {file = "mypy-1.19.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d8dfc6ab58ca7dda47d9237349157500468e404b17213d44fc1cb77bce532288"}, - {file = "mypy-1.19.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e3f276d8493c3c97930e354b2595a44a21348b320d859fb4a2b9f66da9ed27ab"}, - {file = "mypy-1.19.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2abb24cf3f17864770d18d673c85235ba52456b36a06b6afc1e07c1fdcd3d0e6"}, - {file = "mypy-1.19.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a009ffa5a621762d0c926a078c2d639104becab69e79538a494bcccb62cc0331"}, - {file = "mypy-1.19.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f7cee03c9a2e2ee26ec07479f38ea9c884e301d42c6d43a19d20fb014e3ba925"}, - {file = "mypy-1.19.1-cp311-cp311-win_amd64.whl", hash = "sha256:4b84a7a18f41e167f7995200a1d07a4a6810e89d29859df936f1c3923d263042"}, - {file = "mypy-1.19.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a8174a03289288c1f6c46d55cef02379b478bfbc8e358e02047487cad44c6ca1"}, - {file = "mypy-1.19.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ffcebe56eb09ff0c0885e750036a095e23793ba6c2e894e7e63f6d89ad51f22e"}, - {file = "mypy-1.19.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b64d987153888790bcdb03a6473d321820597ab8dd9243b27a92153c4fa50fd2"}, - {file = "mypy-1.19.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c35d298c2c4bba75feb2195655dfea8124d855dfd7343bf8b8c055421eaf0cf8"}, - {file = "mypy-1.19.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:34c81968774648ab5ac09c29a375fdede03ba253f8f8287847bd480782f73a6a"}, - {file = "mypy-1.19.1-cp312-cp312-win_amd64.whl", hash = "sha256:b10e7c2cd7870ba4ad9b2d8a6102eb5ffc1f16ca35e3de6bfa390c1113029d13"}, - {file = "mypy-1.19.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e3157c7594ff2ef1634ee058aafc56a82db665c9438fd41b390f3bde1ab12250"}, - {file = "mypy-1.19.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bdb12f69bcc02700c2b47e070238f42cb87f18c0bc1fc4cdb4fb2bc5fd7a3b8b"}, - {file = "mypy-1.19.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f859fb09d9583a985be9a493d5cfc5515b56b08f7447759a0c5deaf68d80506e"}, - {file = "mypy-1.19.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c9a6538e0415310aad77cb94004ca6482330fece18036b5f360b62c45814c4ef"}, - {file = "mypy-1.19.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:da4869fc5e7f62a88f3fe0b5c919d1d9f7ea3cef92d3689de2823fd27e40aa75"}, - {file = "mypy-1.19.1-cp313-cp313-win_amd64.whl", hash = "sha256:016f2246209095e8eda7538944daa1d60e1e8134d98983b9fc1e92c1fc0cb8dd"}, - {file = "mypy-1.19.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:06e6170bd5836770e8104c8fdd58e5e725cfeb309f0a6c681a811f557e97eac1"}, - {file = "mypy-1.19.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:804bd67b8054a85447c8954215a906d6eff9cabeabe493fb6334b24f4bfff718"}, - {file = "mypy-1.19.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:21761006a7f497cb0d4de3d8ef4ca70532256688b0523eee02baf9eec895e27b"}, - {file = "mypy-1.19.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:28902ee51f12e0f19e1e16fbe2f8f06b6637f482c459dd393efddd0ec7f82045"}, - {file = "mypy-1.19.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:481daf36a4c443332e2ae9c137dfee878fcea781a2e3f895d54bd3002a900957"}, - {file = "mypy-1.19.1-cp314-cp314-win_amd64.whl", hash = "sha256:8bb5c6f6d043655e055be9b542aa5f3bdd30e4f3589163e85f93f3640060509f"}, - {file = "mypy-1.19.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7bcfc336a03a1aaa26dfce9fff3e287a3ba99872a157561cbfcebe67c13308e3"}, - {file = "mypy-1.19.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b7951a701c07ea584c4fe327834b92a30825514c868b1f69c30445093fdd9d5a"}, - {file = "mypy-1.19.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b13cfdd6c87fc3efb69ea4ec18ef79c74c3f98b4e5498ca9b85ab3b2c2329a67"}, - {file = "mypy-1.19.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4f28f99c824ecebcdaa2e55d82953e38ff60ee5ec938476796636b86afa3956e"}, - {file = "mypy-1.19.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c608937067d2fc5a4dd1a5ce92fd9e1398691b8c5d012d66e1ddd430e9244376"}, - {file = "mypy-1.19.1-cp39-cp39-win_amd64.whl", hash = "sha256:409088884802d511ee52ca067707b90c883426bd95514e8cfda8281dc2effe24"}, - {file = "mypy-1.19.1-py3-none-any.whl", hash = "sha256:f1235f5ea01b7db5468d53ece6aaddf1ad0b88d9e7462b86ef96fe04995d7247"}, - {file = "mypy-1.19.1.tar.gz", hash = "sha256:19d88bb05303fe63f71dd2c6270daca27cb9401c4ca8255fe50d1d920e0eb9ba"}, -] - -[package.dependencies] -librt = {version = ">=0.6.2", markers = "platform_python_implementation != \"PyPy\""} -mypy_extensions = ">=1.0.0" -pathspec = ">=0.9.0" -tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} -typing_extensions = ">=4.6.0" - -[package.extras] -dmypy = ["psutil (>=4.0)"] -faster-cache = ["orjson"] -install-types = ["pip"] -mypyc = ["setuptools (>=50)"] -reports = ["lxml"] - -[[package]] -name = "mypy-extensions" -version = "1.1.0" -description = "Type system extensions for programs checked with the mypy type checker." -optional = false -python-versions = ">=3.8" -files = [ - {file = "mypy_extensions-1.1.0-py3-none-any.whl", hash = "sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505"}, - {file = "mypy_extensions-1.1.0.tar.gz", hash = "sha256:52e68efc3284861e772bbcd66823fde5ae21fd2fdb51c62a211403730b916558"}, -] - -[[package]] -name = "nodeenv" -version = "1.10.0" -description = "Node.js virtual environment builder" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "nodeenv-1.10.0-py2.py3-none-any.whl", hash = "sha256:5bb13e3eed2923615535339b3c620e76779af4cb4c6a90deccc9e36b274d3827"}, - {file = "nodeenv-1.10.0.tar.gz", hash = "sha256:996c191ad80897d076bdfba80a41994c2b47c68e224c542b48feba42ba00f8bb"}, -] - -[[package]] -name = "packaging" -version = "26.0" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "packaging-26.0-py3-none-any.whl", hash = "sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529"}, - {file = "packaging-26.0.tar.gz", hash = "sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4"}, -] - -[[package]] -name = "pathspec" -version = "1.0.4" -description = "Utility library for gitignore style pattern matching of file paths." -optional = false -python-versions = ">=3.9" -files = [ - {file = "pathspec-1.0.4-py3-none-any.whl", hash = "sha256:fb6ae2fd4e7c921a165808a552060e722767cfa526f99ca5156ed2ce45a5c723"}, - {file = "pathspec-1.0.4.tar.gz", hash = "sha256:0210e2ae8a21a9137c0d470578cb0e595af87edaa6ebf12ff176f14a02e0e645"}, -] - -[package.extras] -hyperscan = ["hyperscan (>=0.7)"] -optional = ["typing-extensions (>=4)"] -re2 = ["google-re2 (>=1.1)"] -tests = ["pytest (>=9)", "typing-extensions (>=4.15)"] - -[[package]] -name = "platformdirs" -version = "4.4.0" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." -optional = false -python-versions = ">=3.9" -files = [ - {file = "platformdirs-4.4.0-py3-none-any.whl", hash = "sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85"}, - {file = "platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf"}, -] - -[package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.4)", "pytest-cov (>=6)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.14.1)"] - -[[package]] -name = "pluggy" -version = "1.6.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.9" -files = [ - {file = "pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746"}, - {file = "pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["coverage", "pytest", "pytest-benchmark"] - -[[package]] -name = "pre-commit" -version = "2.21.0" -description = "A framework for managing and maintaining multi-language pre-commit hooks." -optional = false -python-versions = ">=3.7" -files = [ - {file = "pre_commit-2.21.0-py2.py3-none-any.whl", hash = "sha256:e2f91727039fc39a92f58a588a25b87f936de6567eed4f0e673e0507edc75bad"}, - {file = "pre_commit-2.21.0.tar.gz", hash = "sha256:31ef31af7e474a8d8995027fefdfcf509b5c913ff31f2015b4ec4beb26a6f658"}, -] - -[package.dependencies] -cfgv = ">=2.0.0" -identify = ">=1.0.0" -nodeenv = ">=0.11.1" -pyyaml = ">=5.1" -virtualenv = ">=20.10.0" - -[[package]] -name = "propcache" -version = "0.4.1" -description = "Accelerated property cache" -optional = false -python-versions = ">=3.9" -files = [ - {file = "propcache-0.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7c2d1fa3201efaf55d730400d945b5b3ab6e672e100ba0f9a409d950ab25d7db"}, - {file = "propcache-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1eb2994229cc8ce7fe9b3db88f5465f5fd8651672840b2e426b88cdb1a30aac8"}, - {file = "propcache-0.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:66c1f011f45a3b33d7bcb22daed4b29c0c9e2224758b6be00686731e1b46f925"}, - {file = "propcache-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9a52009f2adffe195d0b605c25ec929d26b36ef986ba85244891dee3b294df21"}, - {file = "propcache-0.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5d4e2366a9c7b837555cf02fb9be2e3167d333aff716332ef1b7c3a142ec40c5"}, - {file = "propcache-0.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:9d2b6caef873b4f09e26ea7e33d65f42b944837563a47a94719cc3544319a0db"}, - {file = "propcache-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b16ec437a8c8a965ecf95739448dd938b5c7f56e67ea009f4300d8df05f32b7"}, - {file = "propcache-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:296f4c8ed03ca7476813fe666c9ea97869a8d7aec972618671b33a38a5182ef4"}, - {file = "propcache-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:1f0978529a418ebd1f49dad413a2b68af33f85d5c5ca5c6ca2a3bed375a7ac60"}, - {file = "propcache-0.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fd138803047fb4c062b1c1dd95462f5209456bfab55c734458f15d11da288f8f"}, - {file = "propcache-0.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8c9b3cbe4584636d72ff556d9036e0c9317fa27b3ac1f0f558e7e84d1c9c5900"}, - {file = "propcache-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f93243fdc5657247533273ac4f86ae106cc6445a0efacb9a1bfe982fcfefd90c"}, - {file = "propcache-0.4.1-cp310-cp310-win32.whl", hash = "sha256:a0ee98db9c5f80785b266eb805016e36058ac72c51a064040f2bc43b61101cdb"}, - {file = "propcache-0.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:1cdb7988c4e5ac7f6d175a28a9aa0c94cb6f2ebe52756a3c0cda98d2809a9e37"}, - {file = "propcache-0.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:d82ad62b19645419fe79dd63b3f9253e15b30e955c0170e5cebc350c1844e581"}, - {file = "propcache-0.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:60a8fda9644b7dfd5dece8c61d8a85e271cb958075bfc4e01083c148b61a7caf"}, - {file = "propcache-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c30b53e7e6bda1d547cabb47c825f3843a0a1a42b0496087bb58d8fedf9f41b5"}, - {file = "propcache-0.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6918ecbd897443087a3b7cd978d56546a812517dcaaca51b49526720571fa93e"}, - {file = "propcache-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3d902a36df4e5989763425a8ab9e98cd8ad5c52c823b34ee7ef307fd50582566"}, - {file = "propcache-0.4.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a9695397f85973bb40427dedddf70d8dc4a44b22f1650dd4af9eedf443d45165"}, - {file = "propcache-0.4.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2bb07ffd7eaad486576430c89f9b215f9e4be68c4866a96e97db9e97fead85dc"}, - {file = "propcache-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fd6f30fdcf9ae2a70abd34da54f18da086160e4d7d9251f81f3da0ff84fc5a48"}, - {file = "propcache-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fc38cba02d1acba4e2869eef1a57a43dfbd3d49a59bf90dda7444ec2be6a5570"}, - {file = "propcache-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:67fad6162281e80e882fb3ec355398cf72864a54069d060321f6cd0ade95fe85"}, - {file = "propcache-0.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f10207adf04d08bec185bae14d9606a1444715bc99180f9331c9c02093e1959e"}, - {file = "propcache-0.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:e9b0d8d0845bbc4cfcdcbcdbf5086886bc8157aa963c31c777ceff7846c77757"}, - {file = "propcache-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:981333cb2f4c1896a12f4ab92a9cc8f09ea664e9b7dbdc4eff74627af3a11c0f"}, - {file = "propcache-0.4.1-cp311-cp311-win32.whl", hash = "sha256:f1d2f90aeec838a52f1c1a32fe9a619fefd5e411721a9117fbf82aea638fe8a1"}, - {file = "propcache-0.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:364426a62660f3f699949ac8c621aad6977be7126c5807ce48c0aeb8e7333ea6"}, - {file = "propcache-0.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:e53f3a38d3510c11953f3e6a33f205c6d1b001129f972805ca9b42fc308bc239"}, - {file = "propcache-0.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e153e9cd40cc8945138822807139367f256f89c6810c2634a4f6902b52d3b4e2"}, - {file = "propcache-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cd547953428f7abb73c5ad82cbb32109566204260d98e41e5dfdc682eb7f8403"}, - {file = "propcache-0.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f048da1b4f243fc44f205dfd320933a951b8d89e0afd4c7cacc762a8b9165207"}, - {file = "propcache-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ec17c65562a827bba85e3872ead335f95405ea1674860d96483a02f5c698fa72"}, - {file = "propcache-0.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:405aac25c6394ef275dee4c709be43745d36674b223ba4eb7144bf4d691b7367"}, - {file = "propcache-0.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0013cb6f8dde4b2a2f66903b8ba740bdfe378c943c4377a200551ceb27f379e4"}, - {file = "propcache-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15932ab57837c3368b024473a525e25d316d8353016e7cc0e5ba9eb343fbb1cf"}, - {file = "propcache-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:031dce78b9dc099f4c29785d9cf5577a3faf9ebf74ecbd3c856a7b92768c3df3"}, - {file = "propcache-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ab08df6c9a035bee56e31af99be621526bd237bea9f32def431c656b29e41778"}, - {file = "propcache-0.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4d7af63f9f93fe593afbf104c21b3b15868efb2c21d07d8732c0c4287e66b6a6"}, - {file = "propcache-0.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:cfc27c945f422e8b5071b6e93169679e4eb5bf73bbcbf1ba3ae3a83d2f78ebd9"}, - {file = "propcache-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:35c3277624a080cc6ec6f847cbbbb5b49affa3598c4535a0a4682a697aaa5c75"}, - {file = "propcache-0.4.1-cp312-cp312-win32.whl", hash = "sha256:671538c2262dadb5ba6395e26c1731e1d52534bfe9ae56d0b5573ce539266aa8"}, - {file = "propcache-0.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:cb2d222e72399fcf5890d1d5cc1060857b9b236adff2792ff48ca2dfd46c81db"}, - {file = "propcache-0.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:204483131fb222bdaaeeea9f9e6c6ed0cac32731f75dfc1d4a567fc1926477c1"}, - {file = "propcache-0.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:43eedf29202c08550aac1d14e0ee619b0430aaef78f85864c1a892294fbc28cf"}, - {file = "propcache-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d62cdfcfd89ccb8de04e0eda998535c406bf5e060ffd56be6c586cbcc05b3311"}, - {file = "propcache-0.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cae65ad55793da34db5f54e4029b89d3b9b9490d8abe1b4c7ab5d4b8ec7ebf74"}, - {file = "propcache-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:333ddb9031d2704a301ee3e506dc46b1fe5f294ec198ed6435ad5b6a085facfe"}, - {file = "propcache-0.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fd0858c20f078a32cf55f7e81473d96dcf3b93fd2ccdb3d40fdf54b8573df3af"}, - {file = "propcache-0.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:678ae89ebc632c5c204c794f8dab2837c5f159aeb59e6ed0539500400577298c"}, - {file = "propcache-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d472aeb4fbf9865e0c6d622d7f4d54a4e101a89715d8904282bb5f9a2f476c3f"}, - {file = "propcache-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4d3df5fa7e36b3225954fba85589da77a0fe6a53e3976de39caf04a0db4c36f1"}, - {file = "propcache-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:ee17f18d2498f2673e432faaa71698032b0127ebf23ae5974eeaf806c279df24"}, - {file = "propcache-0.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:580e97762b950f993ae618e167e7be9256b8353c2dcd8b99ec100eb50f5286aa"}, - {file = "propcache-0.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:501d20b891688eb8e7aa903021f0b72d5a55db40ffaab27edefd1027caaafa61"}, - {file = "propcache-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a0bd56e5b100aef69bd8562b74b46254e7c8812918d3baa700c8a8009b0af66"}, - {file = "propcache-0.4.1-cp313-cp313-win32.whl", hash = "sha256:bcc9aaa5d80322bc2fb24bb7accb4a30f81e90ab8d6ba187aec0744bc302ad81"}, - {file = "propcache-0.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:381914df18634f5494334d201e98245c0596067504b9372d8cf93f4bb23e025e"}, - {file = "propcache-0.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:8873eb4460fd55333ea49b7d189749ecf6e55bf85080f11b1c4530ed3034cba1"}, - {file = "propcache-0.4.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:92d1935ee1f8d7442da9c0c4fa7ac20d07e94064184811b685f5c4fada64553b"}, - {file = "propcache-0.4.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:473c61b39e1460d386479b9b2f337da492042447c9b685f28be4f74d3529e566"}, - {file = "propcache-0.4.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c0ef0aaafc66fbd87842a3fe3902fd889825646bc21149eafe47be6072725835"}, - {file = "propcache-0.4.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f95393b4d66bfae908c3ca8d169d5f79cd65636ae15b5e7a4f6e67af675adb0e"}, - {file = "propcache-0.4.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c07fda85708bc48578467e85099645167a955ba093be0a2dcba962195676e859"}, - {file = "propcache-0.4.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:af223b406d6d000830c6f65f1e6431783fc3f713ba3e6cc8c024d5ee96170a4b"}, - {file = "propcache-0.4.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a78372c932c90ee474559c5ddfffd718238e8673c340dc21fe45c5b8b54559a0"}, - {file = "propcache-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:564d9f0d4d9509e1a870c920a89b2fec951b44bf5ba7d537a9e7c1ccec2c18af"}, - {file = "propcache-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:17612831fda0138059cc5546f4d12a2aacfb9e47068c06af35c400ba58ba7393"}, - {file = "propcache-0.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:41a89040cb10bd345b3c1a873b2bf36413d48da1def52f268a055f7398514874"}, - {file = "propcache-0.4.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:e35b88984e7fa64aacecea39236cee32dd9bd8c55f57ba8a75cf2399553f9bd7"}, - {file = "propcache-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6f8b465489f927b0df505cbe26ffbeed4d6d8a2bbc61ce90eb074ff129ef0ab1"}, - {file = "propcache-0.4.1-cp313-cp313t-win32.whl", hash = "sha256:2ad890caa1d928c7c2965b48f3a3815c853180831d0e5503d35cf00c472f4717"}, - {file = "propcache-0.4.1-cp313-cp313t-win_amd64.whl", hash = "sha256:f7ee0e597f495cf415bcbd3da3caa3bd7e816b74d0d52b8145954c5e6fd3ff37"}, - {file = "propcache-0.4.1-cp313-cp313t-win_arm64.whl", hash = "sha256:929d7cbe1f01bb7baffb33dc14eb5691c95831450a26354cd210a8155170c93a"}, - {file = "propcache-0.4.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3f7124c9d820ba5548d431afb4632301acf965db49e666aa21c305cbe8c6de12"}, - {file = "propcache-0.4.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:c0d4b719b7da33599dfe3b22d3db1ef789210a0597bc650b7cee9c77c2be8c5c"}, - {file = "propcache-0.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:9f302f4783709a78240ebc311b793f123328716a60911d667e0c036bc5dcbded"}, - {file = "propcache-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c80ee5802e3fb9ea37938e7eecc307fb984837091d5fd262bb37238b1ae97641"}, - {file = "propcache-0.4.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ed5a841e8bb29a55fb8159ed526b26adc5bdd7e8bd7bf793ce647cb08656cdf4"}, - {file = "propcache-0.4.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:55c72fd6ea2da4c318e74ffdf93c4fe4e926051133657459131a95c846d16d44"}, - {file = "propcache-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8326e144341460402713f91df60ade3c999d601e7eb5ff8f6f7862d54de0610d"}, - {file = "propcache-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:060b16ae65bc098da7f6d25bf359f1f31f688384858204fe5d652979e0015e5b"}, - {file = "propcache-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:89eb3fa9524f7bec9de6e83cf3faed9d79bffa560672c118a96a171a6f55831e"}, - {file = "propcache-0.4.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:dee69d7015dc235f526fe80a9c90d65eb0039103fe565776250881731f06349f"}, - {file = "propcache-0.4.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:5558992a00dfd54ccbc64a32726a3357ec93825a418a401f5cc67df0ac5d9e49"}, - {file = "propcache-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c9b822a577f560fbd9554812526831712c1436d2c046cedee4c3796d3543b144"}, - {file = "propcache-0.4.1-cp314-cp314-win32.whl", hash = "sha256:ab4c29b49d560fe48b696cdcb127dd36e0bc2472548f3bf56cc5cb3da2b2984f"}, - {file = "propcache-0.4.1-cp314-cp314-win_amd64.whl", hash = "sha256:5a103c3eb905fcea0ab98be99c3a9a5ab2de60228aa5aceedc614c0281cf6153"}, - {file = "propcache-0.4.1-cp314-cp314-win_arm64.whl", hash = "sha256:74c1fb26515153e482e00177a1ad654721bf9207da8a494a0c05e797ad27b992"}, - {file = "propcache-0.4.1-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:824e908bce90fb2743bd6b59db36eb4f45cd350a39637c9f73b1c1ea66f5b75f"}, - {file = "propcache-0.4.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:c2b5e7db5328427c57c8e8831abda175421b709672f6cfc3d630c3b7e2146393"}, - {file = "propcache-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:6f6ff873ed40292cd4969ef5310179afd5db59fdf055897e282485043fc80ad0"}, - {file = "propcache-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:49a2dc67c154db2c1463013594c458881a069fcf98940e61a0569016a583020a"}, - {file = "propcache-0.4.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:005f08e6a0529984491e37d8dbc3dd86f84bd78a8ceb5fa9a021f4c48d4984be"}, - {file = "propcache-0.4.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5c3310452e0d31390da9035c348633b43d7e7feb2e37be252be6da45abd1abcc"}, - {file = "propcache-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4c3c70630930447f9ef1caac7728c8ad1c56bc5015338b20fed0d08ea2480b3a"}, - {file = "propcache-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8e57061305815dfc910a3634dcf584f08168a8836e6999983569f51a8544cd89"}, - {file = "propcache-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:521a463429ef54143092c11a77e04056dd00636f72e8c45b70aaa3140d639726"}, - {file = "propcache-0.4.1-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:120c964da3fdc75e3731aa392527136d4ad35868cc556fd09bb6d09172d9a367"}, - {file = "propcache-0.4.1-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:d8f353eb14ee3441ee844ade4277d560cdd68288838673273b978e3d6d2c8f36"}, - {file = "propcache-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ab2943be7c652f09638800905ee1bab2c544e537edb57d527997a24c13dc1455"}, - {file = "propcache-0.4.1-cp314-cp314t-win32.whl", hash = "sha256:05674a162469f31358c30bcaa8883cb7829fa3110bf9c0991fe27d7896c42d85"}, - {file = "propcache-0.4.1-cp314-cp314t-win_amd64.whl", hash = "sha256:990f6b3e2a27d683cb7602ed6c86f15ee6b43b1194736f9baaeb93d0016633b1"}, - {file = "propcache-0.4.1-cp314-cp314t-win_arm64.whl", hash = "sha256:ecef2343af4cc68e05131e45024ba34f6095821988a9d0a02aa7c73fcc448aa9"}, - {file = "propcache-0.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3d233076ccf9e450c8b3bc6720af226b898ef5d051a2d145f7d765e6e9f9bcff"}, - {file = "propcache-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:357f5bb5c377a82e105e44bd3d52ba22b616f7b9773714bff93573988ef0a5fb"}, - {file = "propcache-0.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cbc3b6dfc728105b2a57c06791eb07a94229202ea75c59db644d7d496b698cac"}, - {file = "propcache-0.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:182b51b421f0501952d938dc0b0eb45246a5b5153c50d42b495ad5fb7517c888"}, - {file = "propcache-0.4.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4b536b39c5199b96fc6245eb5fb796c497381d3942f169e44e8e392b29c9ebcc"}, - {file = "propcache-0.4.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:db65d2af507bbfbdcedb254a11149f894169d90488dd3e7190f7cdcb2d6cd57a"}, - {file = "propcache-0.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fd2dbc472da1f772a4dae4fa24be938a6c544671a912e30529984dd80400cd88"}, - {file = "propcache-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:daede9cd44e0f8bdd9e6cc9a607fc81feb80fae7a5fc6cecaff0e0bb32e42d00"}, - {file = "propcache-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:71b749281b816793678ae7f3d0d84bd36e694953822eaad408d682efc5ca18e0"}, - {file = "propcache-0.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:0002004213ee1f36cfb3f9a42b5066100c44276b9b72b4e1504cddd3d692e86e"}, - {file = "propcache-0.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:fe49d0a85038f36ba9e3ffafa1103e61170b28e95b16622e11be0a0ea07c6781"}, - {file = "propcache-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:99d43339c83aaf4d32bda60928231848eee470c6bda8d02599cc4cebe872d183"}, - {file = "propcache-0.4.1-cp39-cp39-win32.whl", hash = "sha256:a129e76735bc792794d5177069691c3217898b9f5cee2b2661471e52ffe13f19"}, - {file = "propcache-0.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:948dab269721ae9a87fd16c514a0a2c2a1bdb23a9a61b969b0f9d9ee2968546f"}, - {file = "propcache-0.4.1-cp39-cp39-win_arm64.whl", hash = "sha256:5fd37c406dd6dc85aa743e214cef35dc54bbdd1419baac4f6ae5e5b1a2976938"}, - {file = "propcache-0.4.1-py3-none-any.whl", hash = "sha256:af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237"}, - {file = "propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d"}, -] - -[[package]] -name = "pydantic" -version = "2.12.5" -description = "Data validation using Python type hints" -optional = false -python-versions = ">=3.9" -files = [ - {file = "pydantic-2.12.5-py3-none-any.whl", hash = "sha256:e561593fccf61e8a20fc46dfc2dfe075b8be7d0188df33f221ad1f0139180f9d"}, - {file = "pydantic-2.12.5.tar.gz", hash = "sha256:4d351024c75c0f085a9febbb665ce8c0c6ec5d30e903bdb6394b7ede26aebb49"}, -] - -[package.dependencies] -annotated-types = ">=0.6.0" -pydantic-core = "2.41.5" -typing-extensions = ">=4.14.1" -typing-inspection = ">=0.4.2" - -[package.extras] -email = ["email-validator (>=2.0.0)"] -timezone = ["tzdata"] - -[[package]] -name = "pydantic-core" -version = "2.41.5" -description = "Core functionality for Pydantic validation and serialization" -optional = false -python-versions = ">=3.9" -files = [ - {file = "pydantic_core-2.41.5-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:77b63866ca88d804225eaa4af3e664c5faf3568cea95360d21f4725ab6e07146"}, - {file = "pydantic_core-2.41.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dfa8a0c812ac681395907e71e1274819dec685fec28273a28905df579ef137e2"}, - {file = "pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5921a4d3ca3aee735d9fd163808f5e8dd6c6972101e4adbda9a4667908849b97"}, - {file = "pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e25c479382d26a2a41b7ebea1043564a937db462816ea07afa8a44c0866d52f9"}, - {file = "pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f547144f2966e1e16ae626d8ce72b4cfa0caedc7fa28052001c94fb2fcaa1c52"}, - {file = "pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f52298fbd394f9ed112d56f3d11aabd0d5bd27beb3084cc3d8ad069483b8941"}, - {file = "pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:100baa204bb412b74fe285fb0f3a385256dad1d1879f0a5cb1499ed2e83d132a"}, - {file = "pydantic_core-2.41.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05a2c8852530ad2812cb7914dc61a1125dc4e06252ee98e5638a12da6cc6fb6c"}, - {file = "pydantic_core-2.41.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:29452c56df2ed968d18d7e21f4ab0ac55e71dc59524872f6fc57dcf4a3249ed2"}, - {file = "pydantic_core-2.41.5-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:d5160812ea7a8a2ffbe233d8da666880cad0cbaf5d4de74ae15c313213d62556"}, - {file = "pydantic_core-2.41.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:df3959765b553b9440adfd3c795617c352154e497a4eaf3752555cfb5da8fc49"}, - {file = "pydantic_core-2.41.5-cp310-cp310-win32.whl", hash = "sha256:1f8d33a7f4d5a7889e60dc39856d76d09333d8a6ed0f5f1190635cbec70ec4ba"}, - {file = "pydantic_core-2.41.5-cp310-cp310-win_amd64.whl", hash = "sha256:62de39db01b8d593e45871af2af9e497295db8d73b085f6bfd0b18c83c70a8f9"}, - {file = "pydantic_core-2.41.5-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a3a52f6156e73e7ccb0f8cced536adccb7042be67cb45f9562e12b319c119da6"}, - {file = "pydantic_core-2.41.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7f3bf998340c6d4b0c9a2f02d6a400e51f123b59565d74dc60d252ce888c260b"}, - {file = "pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:378bec5c66998815d224c9ca994f1e14c0c21cb95d2f52b6021cc0b2a58f2a5a"}, - {file = "pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7b576130c69225432866fe2f4a469a85a54ade141d96fd396dffcf607b558f8"}, - {file = "pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cb58b9c66f7e4179a2d5e0f849c48eff5c1fca560994d6eb6543abf955a149e"}, - {file = "pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:88942d3a3dff3afc8288c21e565e476fc278902ae4d6d134f1eeda118cc830b1"}, - {file = "pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f31d95a179f8d64d90f6831d71fa93290893a33148d890ba15de25642c5d075b"}, - {file = "pydantic_core-2.41.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c1df3d34aced70add6f867a8cf413e299177e0c22660cc767218373d0779487b"}, - {file = "pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4009935984bd36bd2c774e13f9a09563ce8de4abaa7226f5108262fa3e637284"}, - {file = "pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:34a64bc3441dc1213096a20fe27e8e128bd3ff89921706e83c0b1ac971276594"}, - {file = "pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c9e19dd6e28fdcaa5a1de679aec4141f691023916427ef9bae8584f9c2fb3b0e"}, - {file = "pydantic_core-2.41.5-cp311-cp311-win32.whl", hash = "sha256:2c010c6ded393148374c0f6f0bf89d206bf3217f201faa0635dcd56bd1520f6b"}, - {file = "pydantic_core-2.41.5-cp311-cp311-win_amd64.whl", hash = "sha256:76ee27c6e9c7f16f47db7a94157112a2f3a00e958bc626e2f4ee8bec5c328fbe"}, - {file = "pydantic_core-2.41.5-cp311-cp311-win_arm64.whl", hash = "sha256:4bc36bbc0b7584de96561184ad7f012478987882ebf9f9c389b23f432ea3d90f"}, - {file = "pydantic_core-2.41.5-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f41a7489d32336dbf2199c8c0a215390a751c5b014c2c1c5366e817202e9cdf7"}, - {file = "pydantic_core-2.41.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:070259a8818988b9a84a449a2a7337c7f430a22acc0859c6b110aa7212a6d9c0"}, - {file = "pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e96cea19e34778f8d59fe40775a7a574d95816eb150850a85a7a4c8f4b94ac69"}, - {file = "pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed2e99c456e3fadd05c991f8f437ef902e00eedf34320ba2b0842bd1c3ca3a75"}, - {file = "pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65840751b72fbfd82c3c640cff9284545342a4f1eb1586ad0636955b261b0b05"}, - {file = "pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e536c98a7626a98feb2d3eaf75944ef6f3dbee447e1f841eae16f2f0a72d8ddc"}, - {file = "pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eceb81a8d74f9267ef4081e246ffd6d129da5d87e37a77c9bde550cb04870c1c"}, - {file = "pydantic_core-2.41.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d38548150c39b74aeeb0ce8ee1d8e82696f4a4e16ddc6de7b1d8823f7de4b9b5"}, - {file = "pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c23e27686783f60290e36827f9c626e63154b82b116d7fe9adba1fda36da706c"}, - {file = "pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:482c982f814460eabe1d3bb0adfdc583387bd4691ef00b90575ca0d2b6fe2294"}, - {file = "pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:bfea2a5f0b4d8d43adf9d7b8bf019fb46fdd10a2e5cde477fbcb9d1fa08c68e1"}, - {file = "pydantic_core-2.41.5-cp312-cp312-win32.whl", hash = "sha256:b74557b16e390ec12dca509bce9264c3bbd128f8a2c376eaa68003d7f327276d"}, - {file = "pydantic_core-2.41.5-cp312-cp312-win_amd64.whl", hash = "sha256:1962293292865bca8e54702b08a4f26da73adc83dd1fcf26fbc875b35d81c815"}, - {file = "pydantic_core-2.41.5-cp312-cp312-win_arm64.whl", hash = "sha256:1746d4a3d9a794cacae06a5eaaccb4b8643a131d45fbc9af23e353dc0a5ba5c3"}, - {file = "pydantic_core-2.41.5-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:941103c9be18ac8daf7b7adca8228f8ed6bb7a1849020f643b3a14d15b1924d9"}, - {file = "pydantic_core-2.41.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:112e305c3314f40c93998e567879e887a3160bb8689ef3d2c04b6cc62c33ac34"}, - {file = "pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cbaad15cb0c90aa221d43c00e77bb33c93e8d36e0bf74760cd00e732d10a6a0"}, - {file = "pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:03ca43e12fab6023fc79d28ca6b39b05f794ad08ec2feccc59a339b02f2b3d33"}, - {file = "pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc799088c08fa04e43144b164feb0c13f9a0bc40503f8df3e9fde58a3c0c101e"}, - {file = "pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97aeba56665b4c3235a0e52b2c2f5ae9cd071b8a8310ad27bddb3f7fb30e9aa2"}, - {file = "pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:406bf18d345822d6c21366031003612b9c77b3e29ffdb0f612367352aab7d586"}, - {file = "pydantic_core-2.41.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b93590ae81f7010dbe380cdeab6f515902ebcbefe0b9327cc4804d74e93ae69d"}, - {file = "pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:01a3d0ab748ee531f4ea6c3e48ad9dac84ddba4b0d82291f87248f2f9de8d740"}, - {file = "pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:6561e94ba9dacc9c61bce40e2d6bdc3bfaa0259d3ff36ace3b1e6901936d2e3e"}, - {file = "pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:915c3d10f81bec3a74fbd4faebe8391013ba61e5a1a8d48c4455b923bdda7858"}, - {file = "pydantic_core-2.41.5-cp313-cp313-win32.whl", hash = "sha256:650ae77860b45cfa6e2cdafc42618ceafab3a2d9a3811fcfbd3bbf8ac3c40d36"}, - {file = "pydantic_core-2.41.5-cp313-cp313-win_amd64.whl", hash = "sha256:79ec52ec461e99e13791ec6508c722742ad745571f234ea6255bed38c6480f11"}, - {file = "pydantic_core-2.41.5-cp313-cp313-win_arm64.whl", hash = "sha256:3f84d5c1b4ab906093bdc1ff10484838aca54ef08de4afa9de0f5f14d69639cd"}, - {file = "pydantic_core-2.41.5-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:3f37a19d7ebcdd20b96485056ba9e8b304e27d9904d233d7b1015db320e51f0a"}, - {file = "pydantic_core-2.41.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1d1d9764366c73f996edd17abb6d9d7649a7eb690006ab6adbda117717099b14"}, - {file = "pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25e1c2af0fce638d5f1988b686f3b3ea8cd7de5f244ca147c777769e798a9cd1"}, - {file = "pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:506d766a8727beef16b7adaeb8ee6217c64fc813646b424d0804d67c16eddb66"}, - {file = "pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4819fa52133c9aa3c387b3328f25c1facc356491e6135b459f1de698ff64d869"}, - {file = "pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b761d210c9ea91feda40d25b4efe82a1707da2ef62901466a42492c028553a2"}, - {file = "pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22f0fb8c1c583a3b6f24df2470833b40207e907b90c928cc8d3594b76f874375"}, - {file = "pydantic_core-2.41.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2782c870e99878c634505236d81e5443092fba820f0373997ff75f90f68cd553"}, - {file = "pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:0177272f88ab8312479336e1d777f6b124537d47f2123f89cb37e0accea97f90"}, - {file = "pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:63510af5e38f8955b8ee5687740d6ebf7c2a0886d15a6d65c32814613681bc07"}, - {file = "pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:e56ba91f47764cc14f1daacd723e3e82d1a89d783f0f5afe9c364b8bb491ccdb"}, - {file = "pydantic_core-2.41.5-cp314-cp314-win32.whl", hash = "sha256:aec5cf2fd867b4ff45b9959f8b20ea3993fc93e63c7363fe6851424c8a7e7c23"}, - {file = "pydantic_core-2.41.5-cp314-cp314-win_amd64.whl", hash = "sha256:8e7c86f27c585ef37c35e56a96363ab8de4e549a95512445b85c96d3e2f7c1bf"}, - {file = "pydantic_core-2.41.5-cp314-cp314-win_arm64.whl", hash = "sha256:e672ba74fbc2dc8eea59fb6d4aed6845e6905fc2a8afe93175d94a83ba2a01a0"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:8566def80554c3faa0e65ac30ab0932b9e3a5cd7f8323764303d468e5c37595a"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:b80aa5095cd3109962a298ce14110ae16b8c1aece8b72f9dafe81cf597ad80b3"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3006c3dd9ba34b0c094c544c6006cc79e87d8612999f1a5d43b769b89181f23c"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:72f6c8b11857a856bcfa48c86f5368439f74453563f951e473514579d44aa612"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5cb1b2f9742240e4bb26b652a5aeb840aa4b417c7748b6f8387927bc6e45e40d"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd3d54f38609ff308209bd43acea66061494157703364ae40c951f83ba99a1a9"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ff4321e56e879ee8d2a879501c8e469414d948f4aba74a2d4593184eb326660"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0d2568a8c11bf8225044aa94409e21da0cb09dcdafe9ecd10250b2baad531a9"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:a39455728aabd58ceabb03c90e12f71fd30fa69615760a075b9fec596456ccc3"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:239edca560d05757817c13dc17c50766136d21f7cd0fac50295499ae24f90fdf"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:2a5e06546e19f24c6a96a129142a75cee553cc018ffee48a460059b1185f4470"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-win32.whl", hash = "sha256:b4ececa40ac28afa90871c2cc2b9ffd2ff0bf749380fbdf57d165fd23da353aa"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-win_amd64.whl", hash = "sha256:80aa89cad80b32a912a65332f64a4450ed00966111b6615ca6816153d3585a8c"}, - {file = "pydantic_core-2.41.5-cp314-cp314t-win_arm64.whl", hash = "sha256:35b44f37a3199f771c3eaa53051bc8a70cd7b54f333531c59e29fd4db5d15008"}, - {file = "pydantic_core-2.41.5-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:8bfeaf8735be79f225f3fefab7f941c712aaca36f1128c9d7e2352ee1aa87bdf"}, - {file = "pydantic_core-2.41.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:346285d28e4c8017da95144c7f3acd42740d637ff41946af5ce6e5e420502dd5"}, - {file = "pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a75dafbf87d6276ddc5b2bf6fae5254e3d0876b626eb24969a574fff9149ee5d"}, - {file = "pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7b93a4d08587e2b7e7882de461e82b6ed76d9026ce91ca7915e740ecc7855f60"}, - {file = "pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8465ab91a4bd96d36dde3263f06caa6a8a6019e4113f24dc753d79a8b3a3f82"}, - {file = "pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:299e0a22e7ae2b85c1a57f104538b2656e8ab1873511fd718a1c1c6f149b77b5"}, - {file = "pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:707625ef0983fcfb461acfaf14de2067c5942c6bb0f3b4c99158bed6fedd3cf3"}, - {file = "pydantic_core-2.41.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f41eb9797986d6ebac5e8edff36d5cef9de40def462311b3eb3eeded1431e425"}, - {file = "pydantic_core-2.41.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0384e2e1021894b1ff5a786dbf94771e2986ebe2869533874d7e43bc79c6f504"}, - {file = "pydantic_core-2.41.5-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:f0cd744688278965817fd0839c4a4116add48d23890d468bc436f78beb28abf5"}, - {file = "pydantic_core-2.41.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:753e230374206729bf0a807954bcc6c150d3743928a73faffee51ac6557a03c3"}, - {file = "pydantic_core-2.41.5-cp39-cp39-win32.whl", hash = "sha256:873e0d5b4fb9b89ef7c2d2a963ea7d02879d9da0da8d9d4933dee8ee86a8b460"}, - {file = "pydantic_core-2.41.5-cp39-cp39-win_amd64.whl", hash = "sha256:e4f4a984405e91527a0d62649ee21138f8e3d0ef103be488c1dc11a80d7f184b"}, - {file = "pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:b96d5f26b05d03cc60f11a7761a5ded1741da411e7fe0909e27a5e6a0cb7b034"}, - {file = "pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:634e8609e89ceecea15e2d61bc9ac3718caaaa71963717bf3c8f38bfde64242c"}, - {file = "pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:93e8740d7503eb008aa2df04d3b9735f845d43ae845e6dcd2be0b55a2da43cd2"}, - {file = "pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f15489ba13d61f670dcc96772e733aad1a6f9c429cc27574c6cdaed82d0146ad"}, - {file = "pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:7da7087d756b19037bc2c06edc6c170eeef3c3bafcb8f532ff17d64dc427adfd"}, - {file = "pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:aabf5777b5c8ca26f7824cb4a120a740c9588ed58df9b2d196ce92fba42ff8dc"}, - {file = "pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c007fe8a43d43b3969e8469004e9845944f1a80e6acd47c150856bb87f230c56"}, - {file = "pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76d0819de158cd855d1cbb8fcafdf6f5cf1eb8e470abe056d5d161106e38062b"}, - {file = "pydantic_core-2.41.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b5819cd790dbf0c5eb9f82c73c16b39a65dd6dd4d1439dcdea7816ec9adddab8"}, - {file = "pydantic_core-2.41.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5a4e67afbc95fa5c34cf27d9089bca7fcab4e51e57278d710320a70b956d1b9a"}, - {file = "pydantic_core-2.41.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ece5c59f0ce7d001e017643d8d24da587ea1f74f6993467d85ae8a5ef9d4f42b"}, - {file = "pydantic_core-2.41.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:16f80f7abe3351f8ea6858914ddc8c77e02578544a0ebc15b4c2e1a0e813b0b2"}, - {file = "pydantic_core-2.41.5-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:33cb885e759a705b426baada1fe68cbb0a2e68e34c5d0d0289a364cf01709093"}, - {file = "pydantic_core-2.41.5-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:c8d8b4eb992936023be7dee581270af5c6e0697a8559895f527f5b7105ecd36a"}, - {file = "pydantic_core-2.41.5-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:242a206cd0318f95cd21bdacff3fcc3aab23e79bba5cac3db5a841c9ef9c6963"}, - {file = "pydantic_core-2.41.5-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d3a978c4f57a597908b7e697229d996d77a6d3c94901e9edee593adada95ce1a"}, - {file = "pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b2379fa7ed44ddecb5bfe4e48577d752db9fc10be00a6b7446e9663ba143de26"}, - {file = "pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:266fb4cbf5e3cbd0b53669a6d1b039c45e3ce651fd5442eff4d07c2cc8d66808"}, - {file = "pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58133647260ea01e4d0500089a8c4f07bd7aa6ce109682b1426394988d8aaacc"}, - {file = "pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:287dad91cfb551c363dc62899a80e9e14da1f0e2b6ebde82c806612ca2a13ef1"}, - {file = "pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:03b77d184b9eb40240ae9fd676ca364ce1085f203e1b1256f8ab9984dca80a84"}, - {file = "pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:a668ce24de96165bb239160b3d854943128f4334822900534f2fe947930e5770"}, - {file = "pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f14f8f046c14563f8eb3f45f499cc658ab8d10072961e07225e507adb700e93f"}, - {file = "pydantic_core-2.41.5-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56121965f7a4dc965bff783d70b907ddf3d57f6eba29b6d2e5dabfaf07799c51"}, - {file = "pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e"}, -] - -[package.dependencies] -typing-extensions = ">=4.14.1" - -[[package]] -name = "pydantic-settings" -version = "2.11.0" -description = "Settings management using Pydantic" -optional = false -python-versions = ">=3.9" -files = [ - {file = "pydantic_settings-2.11.0-py3-none-any.whl", hash = "sha256:fe2cea3413b9530d10f3a5875adffb17ada5c1e1bab0b2885546d7310415207c"}, - {file = "pydantic_settings-2.11.0.tar.gz", hash = "sha256:d0e87a1c7d33593beb7194adb8470fc426e95ba02af83a0f23474a04c9a08180"}, -] - -[package.dependencies] -pydantic = ">=2.7.0" -python-dotenv = ">=0.21.0" -typing-inspection = ">=0.4.0" - -[package.extras] -aws-secrets-manager = ["boto3 (>=1.35.0)", "boto3-stubs[secretsmanager]"] -azure-key-vault = ["azure-identity (>=1.16.0)", "azure-keyvault-secrets (>=4.8.0)"] -gcp-secret-manager = ["google-cloud-secret-manager (>=2.23.1)"] -toml = ["tomli (>=2.0.1)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "pygments" -version = "2.19.2" -description = "Pygments is a syntax highlighting package written in Python." -optional = false -python-versions = ">=3.8" -files = [ - {file = "pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b"}, - {file = "pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887"}, -] - -[package.extras] -windows-terminal = ["colorama (>=0.4.6)"] - -[[package]] -name = "pytest" -version = "8.4.2" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.9" -files = [ - {file = "pytest-8.4.2-py3-none-any.whl", hash = "sha256:872f880de3fc3a5bdc88a11b39c9710c3497a547cfa9320bc3c5e62fbf272e79"}, - {file = "pytest-8.4.2.tar.gz", hash = "sha256:86c0d0b93306b961d58d62a4db4879f27fe25513d4b969df351abdddb3c30e01"}, -] - -[package.dependencies] -colorama = {version = ">=0.4", markers = "sys_platform == \"win32\""} -exceptiongroup = {version = ">=1", markers = "python_version < \"3.11\""} -iniconfig = ">=1" -packaging = ">=20" -pluggy = ">=1.5,<2" -pygments = ">=2.7.2" -tomli = {version = ">=1", markers = "python_version < \"3.11\""} - -[package.extras] -dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "requests", "setuptools", "xmlschema"] - -[[package]] -name = "pytest-asyncio" -version = "1.2.0" -description = "Pytest support for asyncio" -optional = false -python-versions = ">=3.9" -files = [ - {file = "pytest_asyncio-1.2.0-py3-none-any.whl", hash = "sha256:8e17ae5e46d8e7efe51ab6494dd2010f4ca8dae51652aa3c8d55acf50bfb2e99"}, - {file = "pytest_asyncio-1.2.0.tar.gz", hash = "sha256:c609a64a2a8768462d0c99811ddb8bd2583c33fd33cf7f21af1c142e824ffb57"}, -] - -[package.dependencies] -backports-asyncio-runner = {version = ">=1.1,<2", markers = "python_version < \"3.11\""} -pytest = ">=8.2,<9" -typing-extensions = {version = ">=4.12", markers = "python_version < \"3.13\""} - -[package.extras] -docs = ["sphinx (>=5.3)", "sphinx-rtd-theme (>=1)"] -testing = ["coverage (>=6.2)", "hypothesis (>=5.7.1)"] - -[[package]] -name = "pytest-cov" -version = "7.0.0" -description = "Pytest plugin for measuring coverage." -optional = false -python-versions = ">=3.9" -files = [ - {file = "pytest_cov-7.0.0-py3-none-any.whl", hash = "sha256:3b8e9558b16cc1479da72058bdecf8073661c7f57f7d3c5f22a1c23507f2d861"}, - {file = "pytest_cov-7.0.0.tar.gz", hash = "sha256:33c97eda2e049a0c5298e91f519302a1334c26ac65c1a483d6206fd458361af1"}, -] - -[package.dependencies] -coverage = {version = ">=7.10.6", extras = ["toml"]} -pluggy = ">=1.2" -pytest = ">=7" - -[package.extras] -testing = ["process-tests", "pytest-xdist", "virtualenv"] - -[[package]] -name = "python-discovery" -version = "1.1.3" -description = "Python interpreter discovery" -optional = false -python-versions = ">=3.8" -files = [ - {file = "python_discovery-1.1.3-py3-none-any.whl", hash = "sha256:90e795f0121bc84572e737c9aa9966311b9fde44ffb88a5953b3ec9b31c6945e"}, - {file = "python_discovery-1.1.3.tar.gz", hash = "sha256:7acca36e818cd88e9b2ba03e045ad7e93e1713e29c6bbfba5d90202310b7baa5"}, -] - -[package.dependencies] -filelock = ">=3.15.4" -platformdirs = ">=4.3.6,<5" - -[package.extras] -docs = ["furo (>=2025.12.19)", "sphinx (>=9.1)", "sphinx-autodoc-typehints (>=3.6.3)", "sphinxcontrib-mermaid (>=2)"] -testing = ["covdefaults (>=2.3)", "coverage (>=7.5.4)", "pytest (>=8.3.5)", "pytest-mock (>=3.14)", "setuptools (>=75.1)"] - -[[package]] -name = "python-dotenv" -version = "1.2.1" -description = "Read key-value pairs from a .env file and set them as environment variables" -optional = false -python-versions = ">=3.9" -files = [ - {file = "python_dotenv-1.2.1-py3-none-any.whl", hash = "sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61"}, - {file = "python_dotenv-1.2.1.tar.gz", hash = "sha256:42667e897e16ab0d66954af0e60a9caa94f0fd4ecf3aaf6d2d260eec1aa36ad6"}, -] - -[package.extras] -cli = ["click (>=5.0)"] - -[[package]] -name = "pyyaml" -version = "6.0.3" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "PyYAML-6.0.3-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:c2514fceb77bc5e7a2f7adfaa1feb2fb311607c9cb518dbc378688ec73d8292f"}, - {file = "PyYAML-6.0.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9c57bb8c96f6d1808c030b1687b9b5fb476abaa47f0db9c0101f5e9f394e97f4"}, - {file = "PyYAML-6.0.3-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:efd7b85f94a6f21e4932043973a7ba2613b059c4a000551892ac9f1d11f5baf3"}, - {file = "PyYAML-6.0.3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:22ba7cfcad58ef3ecddc7ed1db3409af68d023b7f940da23c6c2a1890976eda6"}, - {file = "PyYAML-6.0.3-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:6344df0d5755a2c9a276d4473ae6b90647e216ab4757f8426893b5dd2ac3f369"}, - {file = "PyYAML-6.0.3-cp38-cp38-win32.whl", hash = "sha256:3ff07ec89bae51176c0549bc4c63aa6202991da2d9a6129d7aef7f1407d3f295"}, - {file = "PyYAML-6.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:5cf4e27da7e3fbed4d6c3d8e797387aaad68102272f8f9752883bc32d61cb87b"}, - {file = "pyyaml-6.0.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:214ed4befebe12df36bcc8bc2b64b396ca31be9304b8f59e25c11cf94a4c033b"}, - {file = "pyyaml-6.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02ea2dfa234451bbb8772601d7b8e426c2bfa197136796224e50e35a78777956"}, - {file = "pyyaml-6.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b30236e45cf30d2b8e7b3e85881719e98507abed1011bf463a8fa23e9c3e98a8"}, - {file = "pyyaml-6.0.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66291b10affd76d76f54fad28e22e51719ef9ba22b29e1d7d03d6777a9174198"}, - {file = "pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c7708761fccb9397fe64bbc0395abcae8c4bf7b0eac081e12b809bf47700d0b"}, - {file = "pyyaml-6.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:418cf3f2111bc80e0933b2cd8cd04f286338bb88bdc7bc8e6dd775ebde60b5e0"}, - {file = "pyyaml-6.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e0b74767e5f8c593e8c9b5912019159ed0533c70051e9cce3e8b6aa699fcd69"}, - {file = "pyyaml-6.0.3-cp310-cp310-win32.whl", hash = "sha256:28c8d926f98f432f88adc23edf2e6d4921ac26fb084b028c733d01868d19007e"}, - {file = "pyyaml-6.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdb2c67c6c1390b63c6ff89f210c8fd09d9a1217a465701eac7316313c915e4c"}, - {file = "pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e"}, - {file = "pyyaml-6.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824"}, - {file = "pyyaml-6.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c"}, - {file = "pyyaml-6.0.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00"}, - {file = "pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d"}, - {file = "pyyaml-6.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a"}, - {file = "pyyaml-6.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4"}, - {file = "pyyaml-6.0.3-cp311-cp311-win32.whl", hash = "sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b"}, - {file = "pyyaml-6.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf"}, - {file = "pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196"}, - {file = "pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0"}, - {file = "pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28"}, - {file = "pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c"}, - {file = "pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc"}, - {file = "pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e"}, - {file = "pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea"}, - {file = "pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5"}, - {file = "pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b"}, - {file = "pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd"}, - {file = "pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8"}, - {file = "pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1"}, - {file = "pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c"}, - {file = "pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5"}, - {file = "pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6"}, - {file = "pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6"}, - {file = "pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be"}, - {file = "pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26"}, - {file = "pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c"}, - {file = "pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb"}, - {file = "pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac"}, - {file = "pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310"}, - {file = "pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7"}, - {file = "pyyaml-6.0.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788"}, - {file = "pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5"}, - {file = "pyyaml-6.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764"}, - {file = "pyyaml-6.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35"}, - {file = "pyyaml-6.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac"}, - {file = "pyyaml-6.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3"}, - {file = "pyyaml-6.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3"}, - {file = "pyyaml-6.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba"}, - {file = "pyyaml-6.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c"}, - {file = "pyyaml-6.0.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702"}, - {file = "pyyaml-6.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c"}, - {file = "pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065"}, - {file = "pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65"}, - {file = "pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9"}, - {file = "pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b"}, - {file = "pyyaml-6.0.3-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:b865addae83924361678b652338317d1bd7e79b1f4596f96b96c77a5a34b34da"}, - {file = "pyyaml-6.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c3355370a2c156cffb25e876646f149d5d68f5e0a3ce86a5084dd0b64a994917"}, - {file = "pyyaml-6.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3c5677e12444c15717b902a5798264fa7909e41153cdf9ef7ad571b704a63dd9"}, - {file = "pyyaml-6.0.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5ed875a24292240029e4483f9d4a4b8a1ae08843b9c54f43fcc11e404532a8a5"}, - {file = "pyyaml-6.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0150219816b6a1fa26fb4699fb7daa9caf09eb1999f3b70fb6e786805e80375a"}, - {file = "pyyaml-6.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:fa160448684b4e94d80416c0fa4aac48967a969efe22931448d853ada8baf926"}, - {file = "pyyaml-6.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:27c0abcb4a5dac13684a37f76e701e054692a9b2d3064b70f5e4eb54810553d7"}, - {file = "pyyaml-6.0.3-cp39-cp39-win32.whl", hash = "sha256:1ebe39cb5fc479422b83de611d14e2c0d3bb2a18bbcb01f229ab3cfbd8fee7a0"}, - {file = "pyyaml-6.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:2e71d11abed7344e42a8849600193d15b6def118602c4c176f748e4583246007"}, - {file = "pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f"}, -] - -[[package]] -name = "requests" -version = "2.32.5" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.9" -files = [ - {file = "requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6"}, - {file = "requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset_normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "requests-cache" -version = "1.3.1" -description = "A persistent cache for python requests" -optional = false -python-versions = ">=3.8" -files = [ - {file = "requests_cache-1.3.1-py3-none-any.whl", hash = "sha256:43a67448c3b2964c631ac7027b84607f2f63438e28104b68ad2211f32d9f606c"}, - {file = "requests_cache-1.3.1.tar.gz", hash = "sha256:784e9d07f72db4fe234830a065230c59eb446489528f271ba288c640897e47c4"}, -] - -[package.dependencies] -attrs = ">=21.2" -cattrs = ">=22.2" -platformdirs = ">=2.5" -requests = ">=2.22" -url-normalize = ">=2.0" -urllib3 = ">=1.25.5" - -[package.extras] -all = ["boto3 (>=1.15)", "botocore (>=1.18)", "itsdangerous (>=2.0)", "orjson (>=3.0)", "pymongo (>=3)", "pyyaml (>=6.0.1)", "redis (>=3)", "ujson (>=5.4)"] -dynamodb = ["boto3 (>=1.15)", "botocore (>=1.18)"] -mongodb = ["pymongo (>=3)"] -redis = ["redis (>=3)"] -security = ["itsdangerous (>=2.0)"] -yaml = ["pyyaml (>=6.0.1)"] - -[[package]] -name = "ruff" -version = "0.15.6" -description = "An extremely fast Python linter and code formatter, written in Rust." -optional = false -python-versions = ">=3.7" -files = [ - {file = "ruff-0.15.6-py3-none-linux_armv6l.whl", hash = "sha256:7c98c3b16407b2cf3d0f2b80c80187384bc92c6774d85fefa913ecd941256fff"}, - {file = "ruff-0.15.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ee7dcfaad8b282a284df4aa6ddc2741b3f4a18b0555d626805555a820ea181c3"}, - {file = "ruff-0.15.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:3bd9967851a25f038fc8b9ae88a7fbd1b609f30349231dffaa37b6804923c4bb"}, - {file = "ruff-0.15.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13f4594b04e42cd24a41da653886b04d2ff87adbf57497ed4f728b0e8a4866f8"}, - {file = "ruff-0.15.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e2ed8aea2f3fe57886d3f00ea5b8aae5bf68d5e195f487f037a955ff9fbaac9e"}, - {file = "ruff-0.15.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70789d3e7830b848b548aae96766431c0dc01a6c78c13381f423bf7076c66d15"}, - {file = "ruff-0.15.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:542aaf1de3154cea088ced5a819ce872611256ffe2498e750bbae5247a8114e9"}, - {file = "ruff-0.15.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c22e6f02c16cfac3888aa636e9eba857254d15bbacc9906c9689fdecb1953ab"}, - {file = "ruff-0.15.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98893c4c0aadc8e448cfa315bd0cc343a5323d740fe5f28ef8a3f9e21b381f7e"}, - {file = "ruff-0.15.6-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:70d263770d234912374493e8cc1e7385c5d49376e41dfa51c5c3453169dc581c"}, - {file = "ruff-0.15.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:55a1ad63c5a6e54b1f21b7514dfadc0c7fb40093fa22e95143cf3f64ebdcd512"}, - {file = "ruff-0.15.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:8dc473ba093c5ec238bb1e7429ee676dca24643c471e11fbaa8a857925b061c0"}, - {file = "ruff-0.15.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:85b042377c2a5561131767974617006f99f7e13c63c111b998f29fc1e58a4cfb"}, - {file = "ruff-0.15.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:cef49e30bc5a86a6a92098a7fbf6e467a234d90b63305d6f3ec01225a9d092e0"}, - {file = "ruff-0.15.6-py3-none-win32.whl", hash = "sha256:bbf67d39832404812a2d23020dda68fee7f18ce15654e96fb1d3ad21a5fe436c"}, - {file = "ruff-0.15.6-py3-none-win_amd64.whl", hash = "sha256:aee25bc84c2f1007ecb5037dff75cef00414fdf17c23f07dc13e577883dca406"}, - {file = "ruff-0.15.6-py3-none-win_arm64.whl", hash = "sha256:c34de3dd0b0ba203be50ae70f5910b17188556630e2178fd7d79fc030eb0d837"}, - {file = "ruff-0.15.6.tar.gz", hash = "sha256:8394c7bb153a4e3811a4ecdacd4a8e6a4fa8097028119160dffecdcdf9b56ae4"}, -] - -[[package]] -name = "simplejson" -version = "3.20.2" -description = "Simple, fast, extensible JSON encoder/decoder for Python" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.5" -files = [ - {file = "simplejson-3.20.2-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:11847093fd36e3f5a4f595ff0506286c54885f8ad2d921dfb64a85bce67f72c4"}, - {file = "simplejson-3.20.2-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:4d291911d23b1ab8eb3241204dd54e3ec60ddcd74dfcb576939d3df327205865"}, - {file = "simplejson-3.20.2-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:da6d16d7108d366bbbf1c1f3274662294859c03266e80dd899fc432598115ea4"}, - {file = "simplejson-3.20.2-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:9ddf9a07694c5bbb4856271cbc4247cc6cf48f224a7d128a280482a2f78bae3d"}, - {file = "simplejson-3.20.2-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:3a0d2337e490e6ab42d65a082e69473717f5cc75c3c3fb530504d3681c4cb40c"}, - {file = "simplejson-3.20.2-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:8ba88696351ed26a8648f8378a1431223f02438f8036f006d23b4f5b572778fa"}, - {file = "simplejson-3.20.2-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:00bcd408a4430af99d1f8b2b103bb2f5133bb688596a511fcfa7db865fbb845e"}, - {file = "simplejson-3.20.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:4fc62feb76f590ccaff6f903f52a01c58ba6423171aa117b96508afda9c210f0"}, - {file = "simplejson-3.20.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6d7286dc11af60a2f76eafb0c2acde2d997e87890e37e24590bb513bec9f1bc5"}, - {file = "simplejson-3.20.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c01379b4861c3b0aa40cba8d44f2b448f5743999aa68aaa5d3ef7049d4a28a2d"}, - {file = "simplejson-3.20.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a16b029ca25645b3bc44e84a4f941efa51bf93c180b31bd704ce6349d1fc77c1"}, - {file = "simplejson-3.20.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e22a5fb7b1437ffb057e02e1936a3bfb19084ae9d221ec5e9f4cf85f69946b6"}, - {file = "simplejson-3.20.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d8b6ff02fc7b8555c906c24735908854819b0d0dc85883d453e23ca4c0445d01"}, - {file = "simplejson-3.20.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2bfc1c396ad972ba4431130b42307b2321dba14d988580c1ac421ec6a6b7cee3"}, - {file = "simplejson-3.20.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a97249ee1aee005d891b5a211faf58092a309f3d9d440bc269043b08f662eda"}, - {file = "simplejson-3.20.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f1036be00b5edaddbddbb89c0f80ed229714a941cfd21e51386dc69c237201c2"}, - {file = "simplejson-3.20.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5d6f5bacb8cdee64946b45f2680afa3f54cd38e62471ceda89f777693aeca4e4"}, - {file = "simplejson-3.20.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8db6841fb796ec5af632f677abf21c6425a1ebea0d9ac3ef1a340b8dc69f52b8"}, - {file = "simplejson-3.20.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c0a341f7cc2aae82ee2b31f8a827fd2e51d09626f8b3accc441a6907c88aedb7"}, - {file = "simplejson-3.20.2-cp310-cp310-win32.whl", hash = "sha256:27f9c01a6bc581d32ab026f515226864576da05ef322d7fc141cd8a15a95ce53"}, - {file = "simplejson-3.20.2-cp310-cp310-win_amd64.whl", hash = "sha256:c0a63ec98a4547ff366871bf832a7367ee43d047bcec0b07b66c794e2137b476"}, - {file = "simplejson-3.20.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:06190b33cd7849efc413a5738d3da00b90e4a5382fd3d584c841ac20fb828c6f"}, - {file = "simplejson-3.20.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4ad4eac7d858947a30d2c404e61f16b84d16be79eb6fb316341885bdde864fa8"}, - {file = "simplejson-3.20.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b392e11c6165d4a0fde41754a0e13e1d88a5ad782b245a973dd4b2bdb4e5076a"}, - {file = "simplejson-3.20.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51eccc4e353eed3c50e0ea2326173acdc05e58f0c110405920b989d481287e51"}, - {file = "simplejson-3.20.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:306e83d7c331ad833d2d43c76a67f476c4b80c4a13334f6e34bb110e6105b3bd"}, - {file = "simplejson-3.20.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f820a6ac2ef0bc338ae4963f4f82ccebdb0824fe9caf6d660670c578abe01013"}, - {file = "simplejson-3.20.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21e7a066528a5451433eb3418184f05682ea0493d14e9aae690499b7e1eb6b81"}, - {file = "simplejson-3.20.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:438680ddde57ea87161a4824e8de04387b328ad51cfdf1eaf723623a3014b7aa"}, - {file = "simplejson-3.20.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cac78470ae68b8d8c41b6fca97f5bf8e024ca80d5878c7724e024540f5cdaadb"}, - {file = "simplejson-3.20.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7524e19c2da5ef281860a3d74668050c6986be15c9dd99966034ba47c68828c2"}, - {file = "simplejson-3.20.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0e9b6d845a603b2eef3394eb5e21edb8626cd9ae9a8361d14e267eb969dbe413"}, - {file = "simplejson-3.20.2-cp311-cp311-win32.whl", hash = "sha256:47d8927e5ac927fdd34c99cc617938abb3624b06ff86e8e219740a86507eb961"}, - {file = "simplejson-3.20.2-cp311-cp311-win_amd64.whl", hash = "sha256:ba4edf3be8e97e4713d06c3d302cba1ff5c49d16e9d24c209884ac1b8455520c"}, - {file = "simplejson-3.20.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4376d5acae0d1e91e78baeba4ee3cf22fbf6509d81539d01b94e0951d28ec2b6"}, - {file = "simplejson-3.20.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f8fe6de652fcddae6dec8f281cc1e77e4e8f3575249e1800090aab48f73b4259"}, - {file = "simplejson-3.20.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:25ca2663d99328d51e5a138f22018e54c9162438d831e26cfc3458688616eca8"}, - {file = "simplejson-3.20.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12a6b2816b6cab6c3fd273d43b1948bc9acf708272074c8858f579c394f4cbc9"}, - {file = "simplejson-3.20.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac20dc3fcdfc7b8415bfc3d7d51beccd8695c3f4acb7f74e3a3b538e76672868"}, - {file = "simplejson-3.20.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db0804d04564e70862ef807f3e1ace2cc212ef0e22deb1b3d6f80c45e5882c6b"}, - {file = "simplejson-3.20.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:979ce23ea663895ae39106946ef3d78527822d918a136dbc77b9e2b7f006237e"}, - {file = "simplejson-3.20.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a2ba921b047bb029805726800819675249ef25d2f65fd0edb90639c5b1c3033c"}, - {file = "simplejson-3.20.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:12d3d4dc33770069b780cc8f5abef909fe4a3f071f18f55f6d896a370fd0f970"}, - {file = "simplejson-3.20.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:aff032a59a201b3683a34be1169e71ddda683d9c3b43b261599c12055349251e"}, - {file = "simplejson-3.20.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:30e590e133b06773f0dc9c3f82e567463df40598b660b5adf53eb1c488202544"}, - {file = "simplejson-3.20.2-cp312-cp312-win32.whl", hash = "sha256:8d7be7c99939cc58e7c5bcf6bb52a842a58e6c65e1e9cdd2a94b697b24cddb54"}, - {file = "simplejson-3.20.2-cp312-cp312-win_amd64.whl", hash = "sha256:2c0b4a67e75b945489052af6590e7dca0ed473ead5d0f3aad61fa584afe814ab"}, - {file = "simplejson-3.20.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:90d311ba8fcd733a3677e0be21804827226a57144130ba01c3c6a325e887dd86"}, - {file = "simplejson-3.20.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:feed6806f614bdf7f5cb6d0123cb0c1c5f40407ef103aa935cffaa694e2e0c74"}, - {file = "simplejson-3.20.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6b1d8d7c3e1a205c49e1aee6ba907dcb8ccea83651e6c3e2cb2062f1e52b0726"}, - {file = "simplejson-3.20.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:552f55745044a24c3cb7ec67e54234be56d5d6d0e054f2e4cf4fb3e297429be5"}, - {file = "simplejson-3.20.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c2da97ac65165d66b0570c9e545786f0ac7b5de5854d3711a16cacbcaa8c472d"}, - {file = "simplejson-3.20.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f59a12966daa356bf68927fca5a67bebac0033cd18b96de9c2d426cd11756cd0"}, - {file = "simplejson-3.20.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:133ae2098a8e162c71da97cdab1f383afdd91373b7ff5fe65169b04167da976b"}, - {file = "simplejson-3.20.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7977640af7b7d5e6a852d26622057d428706a550f7f5083e7c4dd010a84d941f"}, - {file = "simplejson-3.20.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b530ad6d55e71fa9e93e1109cf8182f427a6355848a4ffa09f69cc44e1512522"}, - {file = "simplejson-3.20.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bd96a7d981bf64f0e42345584768da4435c05b24fd3c364663f5fbc8fabf82e3"}, - {file = "simplejson-3.20.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f28ee755fadb426ba2e464d6fcf25d3f152a05eb6b38e0b4f790352f5540c769"}, - {file = "simplejson-3.20.2-cp313-cp313-win32.whl", hash = "sha256:472785b52e48e3eed9b78b95e26a256f59bb1ee38339be3075dad799e2e1e661"}, - {file = "simplejson-3.20.2-cp313-cp313-win_amd64.whl", hash = "sha256:a1a85013eb33e4820286139540accbe2c98d2da894b2dcefd280209db508e608"}, - {file = "simplejson-3.20.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:a135941a50795c934bdc9acc74e172b126e3694fe26de3c0c1bc0b33ea17e6ce"}, - {file = "simplejson-3.20.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25ba488decb18738f5d6bd082018409689ed8e74bc6c4d33a0b81af6edf1c9f4"}, - {file = "simplejson-3.20.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d81f8e982923d5e9841622ff6568be89756428f98a82c16e4158ac32b92a3787"}, - {file = "simplejson-3.20.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cdad497ccb1edc5020bef209e9c3e062a923e8e6fca5b8a39f0fb34380c8a66c"}, - {file = "simplejson-3.20.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a3f1db97bcd9fb592928159af7a405b18df7e847cbcc5682a209c5b2ad5d6b1"}, - {file = "simplejson-3.20.2-cp36-cp36m-musllinux_1_2_aarch64.whl", hash = "sha256:215b65b0dc2c432ab79c430aa4f1e595f37b07a83c1e4c4928d7e22e6b49a748"}, - {file = "simplejson-3.20.2-cp36-cp36m-musllinux_1_2_i686.whl", hash = "sha256:ece4863171ba53f086a3bfd87f02ec3d6abc586f413babfc6cf4de4d84894620"}, - {file = "simplejson-3.20.2-cp36-cp36m-musllinux_1_2_ppc64le.whl", hash = "sha256:4a76d7c47d959afe6c41c88005f3041f583a4b9a1783cf341887a3628a77baa0"}, - {file = "simplejson-3.20.2-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:e9b0523582a57d9ea74f83ecefdffe18b2b0a907df1a9cef06955883341930d8"}, - {file = "simplejson-3.20.2-cp36-cp36m-win32.whl", hash = "sha256:16366591c8e08a4ac76b81d76a3fc97bf2bcc234c9c097b48d32ea6bfe2be2fe"}, - {file = "simplejson-3.20.2-cp36-cp36m-win_amd64.whl", hash = "sha256:732cf4c4ac1a258b4e9334e1e40a38303689f432497d3caeb491428b7547e782"}, - {file = "simplejson-3.20.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6c3a98e21e5f098e4f982ef302ebb1e681ff16a5d530cfce36296bea58fe2396"}, - {file = "simplejson-3.20.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10cf9ca1363dc3711c72f4ec7c1caed2bbd9aaa29a8d9122e31106022dc175c6"}, - {file = "simplejson-3.20.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:106762f8aedf3fc3364649bfe8dc9a40bf5104f872a4d2d86bae001b1af30d30"}, - {file = "simplejson-3.20.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b21659898b7496322e99674739193f81052e588afa8b31b6a1c7733d8829b925"}, - {file = "simplejson-3.20.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78fa1db6a02bca88829f2b2057c76a1d2dc2fccb8c5ff1199e352f213e9ec719"}, - {file = "simplejson-3.20.2-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:156139d94b660448ec8a4ea89f77ec476597f752c2ff66432d3656704c66b40e"}, - {file = "simplejson-3.20.2-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:b2620ac40be04dff08854baf6f4df10272f67079f61ed1b6274c0e840f2e2ae1"}, - {file = "simplejson-3.20.2-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:9ccef5b5d3e3ac5d9da0a0ca1d2de8cf2b0fb56b06aa0ab79325fa4bcc5a1d60"}, - {file = "simplejson-3.20.2-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:f526304c2cc9fd8b8d18afacb75bc171650f83a7097b2c92ad6a431b5d7c1b72"}, - {file = "simplejson-3.20.2-cp37-cp37m-win32.whl", hash = "sha256:e0f661105398121dd48d9987a2a8f7825b8297b3b2a7fe5b0d247370396119d5"}, - {file = "simplejson-3.20.2-cp37-cp37m-win_amd64.whl", hash = "sha256:dab98625b3d6821e77ea59c4d0e71059f8063825a0885b50ed410e5c8bd5cb66"}, - {file = "simplejson-3.20.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b8205f113082e7d8f667d6cd37d019a7ee5ef30b48463f9de48e1853726c6127"}, - {file = "simplejson-3.20.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fc8da64929ef0ff16448b602394a76fd9968a39afff0692e5ab53669df1f047f"}, - {file = "simplejson-3.20.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bfe704864b5fead4f21c8d448a89ee101c9b0fc92a5f40b674111da9272b3a90"}, - {file = "simplejson-3.20.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40ca7cbe7d2f423b97ed4e70989ef357f027a7e487606628c11b79667639dc84"}, - {file = "simplejson-3.20.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0cec1868b237fe9fb2d466d6ce0c7b772e005aadeeda582d867f6f1ec9710cad"}, - {file = "simplejson-3.20.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:792debfba68d8dd61085ffb332d72b9f5b38269cda0c99f92c7a054382f55246"}, - {file = "simplejson-3.20.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e022b2c4c54cb4855e555f64aa3377e3e5ca912c372fa9e3edcc90ebbad93dce"}, - {file = "simplejson-3.20.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5de26f11d5aca575d3825dddc65f69fdcba18f6ca2b4db5cef16f41f969cef15"}, - {file = "simplejson-3.20.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:e2162b2a43614727ec3df75baeda8881ab129824aa1b49410d4b6c64f55a45b4"}, - {file = "simplejson-3.20.2-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:e11a1d6b2f7e72ca546bdb4e6374b237ebae9220e764051b867111df83acbd13"}, - {file = "simplejson-3.20.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:daf7cd18fe99eb427fa6ddb6b437cfde65125a96dc27b93a8969b6fe90a1dbea"}, - {file = "simplejson-3.20.2-cp38-cp38-win32.whl", hash = "sha256:da795ea5f440052f4f497b496010e2c4e05940d449ea7b5c417794ec1be55d01"}, - {file = "simplejson-3.20.2-cp38-cp38-win_amd64.whl", hash = "sha256:6a4b5e7864f952fcce4244a70166797d7b8fd6069b4286d3e8403c14b88656b6"}, - {file = "simplejson-3.20.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b3bf76512ccb07d47944ebdca44c65b781612d38b9098566b4bb40f713fc4047"}, - {file = "simplejson-3.20.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:214e26acf2dfb9ff3314e65c4e168a6b125bced0e2d99a65ea7b0f169db1e562"}, - {file = "simplejson-3.20.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2fb1259ca9c385b0395bad59cdbf79535a5a84fb1988f339a49bfbc57455a35a"}, - {file = "simplejson-3.20.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c34e028a2ba8553a208ded1da5fa8501833875078c4c00a50dffc33622057881"}, - {file = "simplejson-3.20.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b538f9d9e503b0dd43af60496780cb50755e4d8e5b34e5647b887675c1ae9fee"}, - {file = "simplejson-3.20.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ab998e416ded6c58f549a22b6a8847e75a9e1ef98eb9fbb2863e1f9e61a4105b"}, - {file = "simplejson-3.20.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a8f1c307edf5fbf0c6db3396c5d3471409c4a40c7a2a466fbc762f20d46601a"}, - {file = "simplejson-3.20.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5a7bbac80bdb82a44303f5630baee140aee208e5a4618e8b9fde3fc400a42671"}, - {file = "simplejson-3.20.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:5ef70ec8fe1569872e5a3e4720c1e1dcb823879a3c78bc02589eb88fab920b1f"}, - {file = "simplejson-3.20.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:cb11c09c99253a74c36925d461c86ea25f0140f3b98ff678322734ddc0f038d7"}, - {file = "simplejson-3.20.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:66f7c78c6ef776f8bd9afaad455e88b8197a51e95617bcc44b50dd974a7825ba"}, - {file = "simplejson-3.20.2-cp39-cp39-win32.whl", hash = "sha256:619ada86bfe3a5aa02b8222ca6bfc5aa3e1075c1fb5b3263d24ba579382df472"}, - {file = "simplejson-3.20.2-cp39-cp39-win_amd64.whl", hash = "sha256:44a6235e09ca5cc41aa5870a952489c06aa4aee3361ae46daa947d8398e57502"}, - {file = "simplejson-3.20.2-py3-none-any.whl", hash = "sha256:3b6bb7fb96efd673eac2e4235200bfffdc2353ad12c54117e1e4e2fc485ac017"}, - {file = "simplejson-3.20.2.tar.gz", hash = "sha256:5fe7a6ce14d1c300d80d08695b7f7e633de6cd72c80644021874d985b3393649"}, -] - -[[package]] -name = "snowballstemmer" -version = "3.0.1" -description = "This package provides 32 stemmers for 30 languages generated from Snowball algorithms." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*" -files = [ - {file = "snowballstemmer-3.0.1-py3-none-any.whl", hash = "sha256:6cd7b3897da8d6c9ffb968a6781fa6532dce9c3618a4b127d920dab764a19064"}, - {file = "snowballstemmer-3.0.1.tar.gz", hash = "sha256:6d5eeeec8e9f84d4d56b847692bacf79bc2c8e90c7f80ca4444ff8b6f2e52895"}, -] - -[[package]] -name = "sphinx" -version = "7.4.7" -description = "Python documentation generator" -optional = false -python-versions = ">=3.9" -files = [ - {file = "sphinx-7.4.7-py3-none-any.whl", hash = "sha256:c2419e2135d11f1951cd994d6eb18a1835bd8fdd8429f9ca375dc1f3281bd239"}, - {file = "sphinx-7.4.7.tar.gz", hash = "sha256:242f92a7ea7e6c5b406fdc2615413890ba9f699114a9c09192d7dfead2ee9cfe"}, -] - -[package.dependencies] -alabaster = ">=0.7.14,<0.8.0" -babel = ">=2.13" -colorama = {version = ">=0.4.6", markers = "sys_platform == \"win32\""} -docutils = ">=0.20,<0.22" -imagesize = ">=1.3" -importlib-metadata = {version = ">=6.0", markers = "python_version < \"3.10\""} -Jinja2 = ">=3.1" -packaging = ">=23.0" -Pygments = ">=2.17" -requests = ">=2.30.0" -snowballstemmer = ">=2.2" -sphinxcontrib-applehelp = "*" -sphinxcontrib-devhelp = "*" -sphinxcontrib-htmlhelp = ">=2.0.0" -sphinxcontrib-jsmath = "*" -sphinxcontrib-qthelp = "*" -sphinxcontrib-serializinghtml = ">=1.1.9" -tomli = {version = ">=2", markers = "python_version < \"3.11\""} - -[package.extras] -docs = ["sphinxcontrib-websupport"] -lint = ["flake8 (>=6.0)", "importlib-metadata (>=6.0)", "mypy (==1.10.1)", "pytest (>=6.0)", "ruff (==0.5.2)", "sphinx-lint (>=0.9)", "tomli (>=2)", "types-docutils (==0.21.0.20240711)", "types-requests (>=2.30.0)"] -test = ["cython (>=3.0)", "defusedxml (>=0.7.1)", "pytest (>=8.0)", "setuptools (>=70.0)", "typing_extensions (>=4.9)"] - -[[package]] -name = "sphinx-autodoc-typehints" -version = "1.25.3" -description = "Type hints (PEP 484) support for the Sphinx autodoc extension" -optional = false -python-versions = ">=3.8" -files = [ - {file = "sphinx_autodoc_typehints-1.25.3-py3-none-any.whl", hash = "sha256:d3da7fa9a9761eff6ff09f8b1956ae3090a2d4f4ad54aebcade8e458d6340835"}, - {file = "sphinx_autodoc_typehints-1.25.3.tar.gz", hash = "sha256:70db10b391acf4e772019765991d2de0ff30ec0899b9ba137706dc0b3c4835e0"}, -] - -[package.dependencies] -sphinx = ">=7.1.2" - -[package.extras] -docs = ["furo (>=2023.9.10)"] -numpy = ["nptyping (>=2.5)"] -testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8.0.1)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "sphobjinv (>=2.3.1)", "typing-extensions (>=4.8)"] - -[[package]] -name = "sphinx-rtd-theme" -version = "2.0.0" -description = "Read the Docs theme for Sphinx" -optional = false -python-versions = ">=3.6" -files = [ - {file = "sphinx_rtd_theme-2.0.0-py2.py3-none-any.whl", hash = "sha256:ec93d0856dc280cf3aee9a4c9807c60e027c7f7b461b77aeffed682e68f0e586"}, - {file = "sphinx_rtd_theme-2.0.0.tar.gz", hash = "sha256:bd5d7b80622406762073a04ef8fadc5f9151261563d47027de09910ce03afe6b"}, -] - -[package.dependencies] -docutils = "<0.21" -sphinx = ">=5,<8" -sphinxcontrib-jquery = ">=4,<5" - -[package.extras] -dev = ["bump2version", "sphinxcontrib-httpdomain", "transifex-client", "wheel"] - -[[package]] -name = "sphinxcontrib-applehelp" -version = "2.0.0" -description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books" -optional = false -python-versions = ">=3.9" -files = [ - {file = "sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5"}, - {file = "sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1"}, -] - -[package.extras] -lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] -standalone = ["Sphinx (>=5)"] -test = ["pytest"] - -[[package]] -name = "sphinxcontrib-devhelp" -version = "2.0.0" -description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents" -optional = false -python-versions = ">=3.9" -files = [ - {file = "sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2"}, - {file = "sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad"}, -] - -[package.extras] -lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] -standalone = ["Sphinx (>=5)"] -test = ["pytest"] - -[[package]] -name = "sphinxcontrib-htmlhelp" -version = "2.1.0" -description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" -optional = false -python-versions = ">=3.9" -files = [ - {file = "sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8"}, - {file = "sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9"}, -] - -[package.extras] -lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] -standalone = ["Sphinx (>=5)"] -test = ["html5lib", "pytest"] - -[[package]] -name = "sphinxcontrib-jquery" -version = "4.1" -description = "Extension to include jQuery on newer Sphinx releases" -optional = false -python-versions = ">=2.7" -files = [ - {file = "sphinxcontrib-jquery-4.1.tar.gz", hash = "sha256:1620739f04e36a2c779f1a131a2dfd49b2fd07351bf1968ced074365933abc7a"}, - {file = "sphinxcontrib_jquery-4.1-py2.py3-none-any.whl", hash = "sha256:f936030d7d0147dd026a4f2b5a57343d233f1fc7b363f68b3d4f1cb0993878ae"}, -] - -[package.dependencies] -Sphinx = ">=1.8" - -[[package]] -name = "sphinxcontrib-jsmath" -version = "1.0.1" -description = "A sphinx extension which renders display math in HTML via JavaScript" -optional = false -python-versions = ">=3.5" -files = [ - {file = "sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"}, - {file = "sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178"}, -] - -[package.extras] -test = ["flake8", "mypy", "pytest"] - -[[package]] -name = "sphinxcontrib-qthelp" -version = "2.0.0" -description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents" -optional = false -python-versions = ">=3.9" -files = [ - {file = "sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb"}, - {file = "sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab"}, -] - -[package.extras] -lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] -standalone = ["Sphinx (>=5)"] -test = ["defusedxml (>=0.7.1)", "pytest"] - -[[package]] -name = "sphinxcontrib-serializinghtml" -version = "2.0.0" -description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)" -optional = false -python-versions = ">=3.9" -files = [ - {file = "sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331"}, - {file = "sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d"}, -] - -[package.extras] -lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] -standalone = ["Sphinx (>=5)"] -test = ["pytest"] - -[[package]] -name = "tomli" -version = "2.4.0" -description = "A lil' TOML parser" -optional = false -python-versions = ">=3.8" -files = [ - {file = "tomli-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b5ef256a3fd497d4973c11bf142e9ed78b150d36f5773f1ca6088c230ffc5867"}, - {file = "tomli-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5572e41282d5268eb09a697c89a7bee84fae66511f87533a6f88bd2f7b652da9"}, - {file = "tomli-2.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:551e321c6ba03b55676970b47cb1b73f14a0a4dce6a3e1a9458fd6d921d72e95"}, - {file = "tomli-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e3f639a7a8f10069d0e15408c0b96a2a828cfdec6fca05296ebcdcc28ca7c76"}, - {file = "tomli-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1b168f2731796b045128c45982d3a4874057626da0e2ef1fdd722848b741361d"}, - {file = "tomli-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:133e93646ec4300d651839d382d63edff11d8978be23da4cc106f5a18b7d0576"}, - {file = "tomli-2.4.0-cp311-cp311-win32.whl", hash = "sha256:b6c78bdf37764092d369722d9946cb65b8767bfa4110f902a1b2542d8d173c8a"}, - {file = "tomli-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:d3d1654e11d724760cdb37a3d7691f0be9db5fbdaef59c9f532aabf87006dbaa"}, - {file = "tomli-2.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:cae9c19ed12d4e8f3ebf46d1a75090e4c0dc16271c5bce1c833ac168f08fb614"}, - {file = "tomli-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:920b1de295e72887bafa3ad9f7a792f811847d57ea6b1215154030cf131f16b1"}, - {file = "tomli-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7d6d9a4aee98fac3eab4952ad1d73aee87359452d1c086b5ceb43ed02ddb16b8"}, - {file = "tomli-2.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:36b9d05b51e65b254ea6c2585b59d2c4cb91c8a3d91d0ed0f17591a29aaea54a"}, - {file = "tomli-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1c8a885b370751837c029ef9bc014f27d80840e48bac415f3412e6593bbc18c1"}, - {file = "tomli-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8768715ffc41f0008abe25d808c20c3d990f42b6e2e58305d5da280ae7d1fa3b"}, - {file = "tomli-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7b438885858efd5be02a9a133caf5812b8776ee0c969fea02c45e8e3f296ba51"}, - {file = "tomli-2.4.0-cp312-cp312-win32.whl", hash = "sha256:0408e3de5ec77cc7f81960c362543cbbd91ef883e3138e81b729fc3eea5b9729"}, - {file = "tomli-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:685306e2cc7da35be4ee914fd34ab801a6acacb061b6a7abca922aaf9ad368da"}, - {file = "tomli-2.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:5aa48d7c2356055feef06a43611fc401a07337d5b006be13a30f6c58f869e3c3"}, - {file = "tomli-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84d081fbc252d1b6a982e1870660e7330fb8f90f676f6e78b052ad4e64714bf0"}, - {file = "tomli-2.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9a08144fa4cba33db5255f9b74f0b89888622109bd2776148f2597447f92a94e"}, - {file = "tomli-2.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c73add4bb52a206fd0c0723432db123c0c75c280cbd67174dd9d2db228ebb1b4"}, - {file = "tomli-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1fb2945cbe303b1419e2706e711b7113da57b7db31ee378d08712d678a34e51e"}, - {file = "tomli-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bbb1b10aa643d973366dc2cb1ad94f99c1726a02343d43cbc011edbfac579e7c"}, - {file = "tomli-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4cbcb367d44a1f0c2be408758b43e1ffb5308abe0ea222897d6bfc8e8281ef2f"}, - {file = "tomli-2.4.0-cp313-cp313-win32.whl", hash = "sha256:7d49c66a7d5e56ac959cb6fc583aff0651094ec071ba9ad43df785abc2320d86"}, - {file = "tomli-2.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:3cf226acb51d8f1c394c1b310e0e0e61fecdd7adcb78d01e294ac297dd2e7f87"}, - {file = "tomli-2.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:d20b797a5c1ad80c516e41bc1fb0443ddb5006e9aaa7bda2d71978346aeb9132"}, - {file = "tomli-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:26ab906a1eb794cd4e103691daa23d95c6919cc2fa9160000ac02370cc9dd3f6"}, - {file = "tomli-2.4.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:20cedb4ee43278bc4f2fee6cb50daec836959aadaf948db5172e776dd3d993fc"}, - {file = "tomli-2.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:39b0b5d1b6dd03684b3fb276407ebed7090bbec989fa55838c98560c01113b66"}, - {file = "tomli-2.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a26d7ff68dfdb9f87a016ecfd1e1c2bacbe3108f4e0f8bcd2228ef9a766c787d"}, - {file = "tomli-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:20ffd184fb1df76a66e34bd1b36b4a4641bd2b82954befa32fe8163e79f1a702"}, - {file = "tomli-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:75c2f8bbddf170e8effc98f5e9084a8751f8174ea6ccf4fca5398436e0320bc8"}, - {file = "tomli-2.4.0-cp314-cp314-win32.whl", hash = "sha256:31d556d079d72db7c584c0627ff3a24c5d3fb4f730221d3444f3efb1b2514776"}, - {file = "tomli-2.4.0-cp314-cp314-win_amd64.whl", hash = "sha256:43e685b9b2341681907759cf3a04e14d7104b3580f808cfde1dfdb60ada85475"}, - {file = "tomli-2.4.0-cp314-cp314-win_arm64.whl", hash = "sha256:3d895d56bd3f82ddd6faaff993c275efc2ff38e52322ea264122d72729dca2b2"}, - {file = "tomli-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:5b5807f3999fb66776dbce568cc9a828544244a8eb84b84b9bafc080c99597b9"}, - {file = "tomli-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c084ad935abe686bd9c898e62a02a19abfc9760b5a79bc29644463eaf2840cb0"}, - {file = "tomli-2.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f2e3955efea4d1cfbcb87bc321e00dc08d2bcb737fd1d5e398af111d86db5df"}, - {file = "tomli-2.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e0fe8a0b8312acf3a88077a0802565cb09ee34107813bba1c7cd591fa6cfc8d"}, - {file = "tomli-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:413540dce94673591859c4c6f794dfeaa845e98bf35d72ed59636f869ef9f86f"}, - {file = "tomli-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0dc56fef0e2c1c470aeac5b6ca8cc7b640bb93e92d9803ddaf9ea03e198f5b0b"}, - {file = "tomli-2.4.0-cp314-cp314t-win32.whl", hash = "sha256:d878f2a6707cc9d53a1be1414bbb419e629c3d6e67f69230217bb663e76b5087"}, - {file = "tomli-2.4.0-cp314-cp314t-win_amd64.whl", hash = "sha256:2add28aacc7425117ff6364fe9e06a183bb0251b03f986df0e78e974047571fd"}, - {file = "tomli-2.4.0-cp314-cp314t-win_arm64.whl", hash = "sha256:2b1e3b80e1d5e52e40e9b924ec43d81570f0e7d09d11081b797bc4692765a3d4"}, - {file = "tomli-2.4.0-py3-none-any.whl", hash = "sha256:1f776e7d669ebceb01dee46484485f43a4048746235e683bcdffacdf1fb4785a"}, - {file = "tomli-2.4.0.tar.gz", hash = "sha256:aa89c3f6c277dd275d8e243ad24f3b5e701491a860d5121f2cdd399fbb31fc9c"}, -] - -[[package]] -name = "types-docutils" -version = "0.17.7" -description = "Typing stubs for docutils" -optional = false -python-versions = "*" -files = [ - {file = "types-docutils-0.17.7.tar.gz", hash = "sha256:3d856ea26551a998c8e2c99a0bafe5e4d391811955f17dab6c9be73b0fc67b66"}, - {file = "types_docutils-0.17.7-py3-none-any.whl", hash = "sha256:d35acc7e3308b464b82b54a2e641b9f132dfe0b14f199f220c58a696ce585428"}, -] - -[[package]] -name = "types-requests" -version = "2.32.4.20260107" -description = "Typing stubs for requests" -optional = false -python-versions = ">=3.9" -files = [ - {file = "types_requests-2.32.4.20260107-py3-none-any.whl", hash = "sha256:b703fe72f8ce5b31ef031264fe9395cac8f46a04661a79f7ed31a80fb308730d"}, - {file = "types_requests-2.32.4.20260107.tar.gz", hash = "sha256:018a11ac158f801bfa84857ddec1650750e393df8a004a8a9ae2a9bec6fcb24f"}, -] - -[package.dependencies] -urllib3 = ">=2" - -[[package]] -name = "types-simplejson" -version = "3.20.0.20250822" -description = "Typing stubs for simplejson" -optional = false -python-versions = ">=3.9" -files = [ - {file = "types_simplejson-3.20.0.20250822-py3-none-any.whl", hash = "sha256:b5e63ae220ac7a1b0bb9af43b9cb8652237c947981b2708b0c776d3b5d8fa169"}, - {file = "types_simplejson-3.20.0.20250822.tar.gz", hash = "sha256:2b0bfd57a6beed3b932fd2c3c7f8e2f48a7df3978c9bba43023a32b3741a95b0"}, -] - -[[package]] -name = "types-toml" -version = "0.10.8.20240310" -description = "Typing stubs for toml" -optional = false -python-versions = ">=3.8" -files = [ - {file = "types-toml-0.10.8.20240310.tar.gz", hash = "sha256:3d41501302972436a6b8b239c850b26689657e25281b48ff0ec06345b8830331"}, - {file = "types_toml-0.10.8.20240310-py3-none-any.whl", hash = "sha256:627b47775d25fa29977d9c70dc0cbab3f314f32c8d8d0c012f2ef5de7aaec05d"}, -] - -[[package]] -name = "typing-extensions" -version = "4.15.0" -description = "Backported and Experimental Type Hints for Python 3.9+" -optional = false -python-versions = ">=3.9" -files = [ - {file = "typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548"}, - {file = "typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466"}, -] - -[[package]] -name = "typing-inspection" -version = "0.4.2" -description = "Runtime typing introspection tools" -optional = false -python-versions = ">=3.9" -files = [ - {file = "typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7"}, - {file = "typing_inspection-0.4.2.tar.gz", hash = "sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464"}, -] - -[package.dependencies] -typing-extensions = ">=4.12.0" - -[[package]] -name = "url-normalize" -version = "2.2.1" -description = "URL normalization for Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "url_normalize-2.2.1-py3-none-any.whl", hash = "sha256:3deb687587dc91f7b25c9ae5162ffc0f057ae85d22b1e15cf5698311247f567b"}, - {file = "url_normalize-2.2.1.tar.gz", hash = "sha256:74a540a3b6eba1d95bdc610c24f2c0141639f3ba903501e61a52a8730247ff37"}, -] - -[package.dependencies] -idna = ">=3.3" - -[package.extras] -dev = ["mypy", "pre-commit", "pytest", "pytest-cov", "pytest-socket", "ruff"] - -[[package]] -name = "urllib3" -version = "2.6.3" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.9" -files = [ - {file = "urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4"}, - {file = "urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed"}, -] - -[package.extras] -brotli = ["brotli (>=1.2.0)", "brotlicffi (>=1.2.0.0)"] -h2 = ["h2 (>=4,<5)"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["backports-zstd (>=1.0.0)"] - -[[package]] -name = "virtualenv" -version = "21.2.0" -description = "Virtual Python Environment builder" -optional = false -python-versions = ">=3.8" -files = [ - {file = "virtualenv-21.2.0-py3-none-any.whl", hash = "sha256:1bd755b504931164a5a496d217c014d098426cddc79363ad66ac78125f9d908f"}, - {file = "virtualenv-21.2.0.tar.gz", hash = "sha256:1720dc3a62ef5b443092e3f499228599045d7fea4c79199770499df8becf9098"}, -] - -[package.dependencies] -distlib = ">=0.3.7,<1" -filelock = [ - {version = ">=3.24.2,<4", markers = "python_version >= \"3.10\""}, - {version = ">=3.16.1,<=3.19.1", markers = "python_version < \"3.10\""}, -] -platformdirs = ">=3.9.1,<5" -python-discovery = ">=1" -typing-extensions = {version = ">=4.13.2", markers = "python_version < \"3.11\""} - -[[package]] -name = "websockets" -version = "15.0.1" -description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" -optional = false -python-versions = ">=3.9" -files = [ - {file = "websockets-15.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d63efaa0cd96cf0c5fe4d581521d9fa87744540d4bc999ae6e08595a1014b45b"}, - {file = "websockets-15.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ac60e3b188ec7574cb761b08d50fcedf9d77f1530352db4eef1707fe9dee7205"}, - {file = "websockets-15.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5756779642579d902eed757b21b0164cd6fe338506a8083eb58af5c372e39d9a"}, - {file = "websockets-15.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fdfe3e2a29e4db3659dbd5bbf04560cea53dd9610273917799f1cde46aa725e"}, - {file = "websockets-15.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c2529b320eb9e35af0fa3016c187dffb84a3ecc572bcee7c3ce302bfeba52bf"}, - {file = "websockets-15.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac1e5c9054fe23226fb11e05a6e630837f074174c4c2f0fe442996112a6de4fb"}, - {file = "websockets-15.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5df592cd503496351d6dc14f7cdad49f268d8e618f80dce0cd5a36b93c3fc08d"}, - {file = "websockets-15.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0a34631031a8f05657e8e90903e656959234f3a04552259458aac0b0f9ae6fd9"}, - {file = "websockets-15.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3d00075aa65772e7ce9e990cab3ff1de702aa09be3940d1dc88d5abf1ab8a09c"}, - {file = "websockets-15.0.1-cp310-cp310-win32.whl", hash = "sha256:1234d4ef35db82f5446dca8e35a7da7964d02c127b095e172e54397fb6a6c256"}, - {file = "websockets-15.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:39c1fec2c11dc8d89bba6b2bf1556af381611a173ac2b511cf7231622058af41"}, - {file = "websockets-15.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:823c248b690b2fd9303ba00c4f66cd5e2d8c3ba4aa968b2779be9532a4dad431"}, - {file = "websockets-15.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678999709e68425ae2593acf2e3ebcbcf2e69885a5ee78f9eb80e6e371f1bf57"}, - {file = "websockets-15.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d50fd1ee42388dcfb2b3676132c78116490976f1300da28eb629272d5d93e905"}, - {file = "websockets-15.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d99e5546bf73dbad5bf3547174cd6cb8ba7273062a23808ffea025ecb1cf8562"}, - {file = "websockets-15.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66dd88c918e3287efc22409d426c8f729688d89a0c587c88971a0faa2c2f3792"}, - {file = "websockets-15.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8dd8327c795b3e3f219760fa603dcae1dcc148172290a8ab15158cf85a953413"}, - {file = "websockets-15.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8fdc51055e6ff4adeb88d58a11042ec9a5eae317a0a53d12c062c8a8865909e8"}, - {file = "websockets-15.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:693f0192126df6c2327cce3baa7c06f2a117575e32ab2308f7f8216c29d9e2e3"}, - {file = "websockets-15.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:54479983bd5fb469c38f2f5c7e3a24f9a4e70594cd68cd1fa6b9340dadaff7cf"}, - {file = "websockets-15.0.1-cp311-cp311-win32.whl", hash = "sha256:16b6c1b3e57799b9d38427dda63edcbe4926352c47cf88588c0be4ace18dac85"}, - {file = "websockets-15.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:27ccee0071a0e75d22cb35849b1db43f2ecd3e161041ac1ee9d2352ddf72f065"}, - {file = "websockets-15.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:3e90baa811a5d73f3ca0bcbf32064d663ed81318ab225ee4f427ad4e26e5aff3"}, - {file = "websockets-15.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:592f1a9fe869c778694f0aa806ba0374e97648ab57936f092fd9d87f8bc03665"}, - {file = "websockets-15.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0701bc3cfcb9164d04a14b149fd74be7347a530ad3bbf15ab2c678a2cd3dd9a2"}, - {file = "websockets-15.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8b56bdcdb4505c8078cb6c7157d9811a85790f2f2b3632c7d1462ab5783d215"}, - {file = "websockets-15.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0af68c55afbd5f07986df82831c7bff04846928ea8d1fd7f30052638788bc9b5"}, - {file = "websockets-15.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64dee438fed052b52e4f98f76c5790513235efaa1ef7f3f2192c392cd7c91b65"}, - {file = "websockets-15.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d5f6b181bb38171a8ad1d6aa58a67a6aa9d4b38d0f8c5f496b9e42561dfc62fe"}, - {file = "websockets-15.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5d54b09eba2bada6011aea5375542a157637b91029687eb4fdb2dab11059c1b4"}, - {file = "websockets-15.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3be571a8b5afed347da347bfcf27ba12b069d9d7f42cb8c7028b5e98bbb12597"}, - {file = "websockets-15.0.1-cp312-cp312-win32.whl", hash = "sha256:c338ffa0520bdb12fbc527265235639fb76e7bc7faafbb93f6ba80d9c06578a9"}, - {file = "websockets-15.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcd5cf9e305d7b8338754470cf69cf81f420459dbae8a3b40cee57417f4614a7"}, - {file = "websockets-15.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ee443ef070bb3b6ed74514f5efaa37a252af57c90eb33b956d35c8e9c10a1931"}, - {file = "websockets-15.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5a939de6b7b4e18ca683218320fc67ea886038265fd1ed30173f5ce3f8e85675"}, - {file = "websockets-15.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:746ee8dba912cd6fc889a8147168991d50ed70447bf18bcda7039f7d2e3d9151"}, - {file = "websockets-15.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:595b6c3969023ecf9041b2936ac3827e4623bfa3ccf007575f04c5a6aa318c22"}, - {file = "websockets-15.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c714d2fc58b5ca3e285461a4cc0c9a66bd0e24c5da9911e30158286c9b5be7f"}, - {file = "websockets-15.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f3c1e2ab208db911594ae5b4f79addeb3501604a165019dd221c0bdcabe4db8"}, - {file = "websockets-15.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:229cf1d3ca6c1804400b0a9790dc66528e08a6a1feec0d5040e8b9eb14422375"}, - {file = "websockets-15.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:756c56e867a90fb00177d530dca4b097dd753cde348448a1012ed6c5131f8b7d"}, - {file = "websockets-15.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:558d023b3df0bffe50a04e710bc87742de35060580a293c2a984299ed83bc4e4"}, - {file = "websockets-15.0.1-cp313-cp313-win32.whl", hash = "sha256:ba9e56e8ceeeedb2e080147ba85ffcd5cd0711b89576b83784d8605a7df455fa"}, - {file = "websockets-15.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:e09473f095a819042ecb2ab9465aee615bd9c2028e4ef7d933600a8401c79561"}, - {file = "websockets-15.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5f4c04ead5aed67c8a1a20491d54cdfba5884507a48dd798ecaf13c74c4489f5"}, - {file = "websockets-15.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abdc0c6c8c648b4805c5eacd131910d2a7f6455dfd3becab248ef108e89ab16a"}, - {file = "websockets-15.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a625e06551975f4b7ea7102bc43895b90742746797e2e14b70ed61c43a90f09b"}, - {file = "websockets-15.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d591f8de75824cbb7acad4e05d2d710484f15f29d4a915092675ad3456f11770"}, - {file = "websockets-15.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:47819cea040f31d670cc8d324bb6435c6f133b8c7a19ec3d61634e62f8d8f9eb"}, - {file = "websockets-15.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac017dd64572e5c3bd01939121e4d16cf30e5d7e110a119399cf3133b63ad054"}, - {file = "websockets-15.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4a9fac8e469d04ce6c25bb2610dc535235bd4aa14996b4e6dbebf5e007eba5ee"}, - {file = "websockets-15.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363c6f671b761efcb30608d24925a382497c12c506b51661883c3e22337265ed"}, - {file = "websockets-15.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2034693ad3097d5355bfdacfffcbd3ef5694f9718ab7f29c29689a9eae841880"}, - {file = "websockets-15.0.1-cp39-cp39-win32.whl", hash = "sha256:3b1ac0d3e594bf121308112697cf4b32be538fb1444468fb0a6ae4feebc83411"}, - {file = "websockets-15.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:b7643a03db5c95c799b89b31c036d5f27eeb4d259c798e878d6937d71832b1e4"}, - {file = "websockets-15.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0c9e74d766f2818bb95f84c25be4dea09841ac0f734d1966f415e4edfc4ef1c3"}, - {file = "websockets-15.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1009ee0c7739c08a0cd59de430d6de452a55e42d6b522de7aa15e6f67db0b8e1"}, - {file = "websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76d1f20b1c7a2fa82367e04982e708723ba0e7b8d43aa643d3dcd404d74f1475"}, - {file = "websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f29d80eb9a9263b8d109135351caf568cc3f80b9928bccde535c235de55c22d9"}, - {file = "websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b359ed09954d7c18bbc1680f380c7301f92c60bf924171629c5db97febb12f04"}, - {file = "websockets-15.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:cad21560da69f4ce7658ca2cb83138fb4cf695a2ba3e475e0559e05991aa8122"}, - {file = "websockets-15.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7f493881579c90fc262d9cdbaa05a6b54b3811c2f300766748db79f098db9940"}, - {file = "websockets-15.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:47b099e1f4fbc95b701b6e85768e1fcdaf1630f3cbe4765fa216596f12310e2e"}, - {file = "websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67f2b6de947f8c757db2db9c71527933ad0019737ec374a8a6be9a956786aaf9"}, - {file = "websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d08eb4c2b7d6c41da6ca0600c077e93f5adcfd979cd777d747e9ee624556da4b"}, - {file = "websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b826973a4a2ae47ba357e4e82fa44a463b8f168e1ca775ac64521442b19e87f"}, - {file = "websockets-15.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:21c1fa28a6a7e3cbdc171c694398b6df4744613ce9b36b1a498e816787e28123"}, - {file = "websockets-15.0.1-py3-none-any.whl", hash = "sha256:f7a866fbc1e97b5c617ee4116daaa09b722101d4a3c170c787450ba409f9736f"}, - {file = "websockets-15.0.1.tar.gz", hash = "sha256:82544de02076bafba038ce055ee6412d68da13ab47f0c60cab827346de828dee"}, -] - -[[package]] -name = "yarl" -version = "1.22.0" -description = "Yet another URL library" -optional = false -python-versions = ">=3.9" -files = [ - {file = "yarl-1.22.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c7bd6683587567e5a49ee6e336e0612bec8329be1b7d4c8af5687dcdeb67ee1e"}, - {file = "yarl-1.22.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5cdac20da754f3a723cceea5b3448e1a2074866406adeb4ef35b469d089adb8f"}, - {file = "yarl-1.22.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07a524d84df0c10f41e3ee918846e1974aba4ec017f990dc735aad487a0bdfdf"}, - {file = "yarl-1.22.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e1b329cb8146d7b736677a2440e422eadd775d1806a81db2d4cded80a48efc1a"}, - {file = "yarl-1.22.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:75976c6945d85dbb9ee6308cd7ff7b1fb9409380c82d6119bd778d8fcfe2931c"}, - {file = "yarl-1.22.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:80ddf7a5f8c86cb3eb4bc9028b07bbbf1f08a96c5c0bc1244be5e8fefcb94147"}, - {file = "yarl-1.22.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d332fc2e3c94dad927f2112395772a4e4fedbcf8f80efc21ed7cdfae4d574fdb"}, - {file = "yarl-1.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0cf71bf877efeac18b38d3930594c0948c82b64547c1cf420ba48722fe5509f6"}, - {file = "yarl-1.22.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:663e1cadaddae26be034a6ab6072449a8426ddb03d500f43daf952b74553bba0"}, - {file = "yarl-1.22.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:6dcbb0829c671f305be48a7227918cfcd11276c2d637a8033a99a02b67bf9eda"}, - {file = "yarl-1.22.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:f0d97c18dfd9a9af4490631905a3f131a8e4c9e80a39353919e2cfed8f00aedc"}, - {file = "yarl-1.22.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:437840083abe022c978470b942ff832c3940b2ad3734d424b7eaffcd07f76737"}, - {file = "yarl-1.22.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:a899cbd98dce6f5d8de1aad31cb712ec0a530abc0a86bd6edaa47c1090138467"}, - {file = "yarl-1.22.0-cp310-cp310-win32.whl", hash = "sha256:595697f68bd1f0c1c159fcb97b661fc9c3f5db46498043555d04805430e79bea"}, - {file = "yarl-1.22.0-cp310-cp310-win_amd64.whl", hash = "sha256:cb95a9b1adaa48e41815a55ae740cfda005758104049a640a398120bf02515ca"}, - {file = "yarl-1.22.0-cp310-cp310-win_arm64.whl", hash = "sha256:b85b982afde6df99ecc996990d4ad7ccbdbb70e2a4ba4de0aecde5922ba98a0b"}, - {file = "yarl-1.22.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1ab72135b1f2db3fed3997d7e7dc1b80573c67138023852b6efb336a5eae6511"}, - {file = "yarl-1.22.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:669930400e375570189492dc8d8341301578e8493aec04aebc20d4717f899dd6"}, - {file = "yarl-1.22.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:792a2af6d58177ef7c19cbf0097aba92ca1b9cb3ffdd9c7470e156c8f9b5e028"}, - {file = "yarl-1.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3ea66b1c11c9150f1372f69afb6b8116f2dd7286f38e14ea71a44eee9ec51b9d"}, - {file = "yarl-1.22.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3e2daa88dc91870215961e96a039ec73e4937da13cf77ce17f9cad0c18df3503"}, - {file = "yarl-1.22.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ba440ae430c00eee41509353628600212112cd5018d5def7e9b05ea7ac34eb65"}, - {file = "yarl-1.22.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e6438cc8f23a9c1478633d216b16104a586b9761db62bfacb6425bac0a36679e"}, - {file = "yarl-1.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4c52a6e78aef5cf47a98ef8e934755abf53953379b7d53e68b15ff4420e6683d"}, - {file = "yarl-1.22.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3b06bcadaac49c70f4c88af4ffcfbe3dc155aab3163e75777818092478bcbbe7"}, - {file = "yarl-1.22.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:6944b2dc72c4d7f7052683487e3677456050ff77fcf5e6204e98caf785ad1967"}, - {file = "yarl-1.22.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:d5372ca1df0f91a86b047d1277c2aaf1edb32d78bbcefffc81b40ffd18f027ed"}, - {file = "yarl-1.22.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:51af598701f5299012b8416486b40fceef8c26fc87dc6d7d1f6fc30609ea0aa6"}, - {file = "yarl-1.22.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b266bd01fedeffeeac01a79ae181719ff848a5a13ce10075adbefc8f1daee70e"}, - {file = "yarl-1.22.0-cp311-cp311-win32.whl", hash = "sha256:a9b1ba5610a4e20f655258d5a1fdc7ebe3d837bb0e45b581398b99eb98b1f5ca"}, - {file = "yarl-1.22.0-cp311-cp311-win_amd64.whl", hash = "sha256:078278b9b0b11568937d9509b589ee83ef98ed6d561dfe2020e24a9fd08eaa2b"}, - {file = "yarl-1.22.0-cp311-cp311-win_arm64.whl", hash = "sha256:b6a6f620cfe13ccec221fa312139135166e47ae169f8253f72a0abc0dae94376"}, - {file = "yarl-1.22.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e340382d1afa5d32b892b3ff062436d592ec3d692aeea3bef3a5cfe11bbf8c6f"}, - {file = "yarl-1.22.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f1e09112a2c31ffe8d80be1b0988fa6a18c5d5cad92a9ffbb1c04c91bfe52ad2"}, - {file = "yarl-1.22.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:939fe60db294c786f6b7c2d2e121576628468f65453d86b0fe36cb52f987bd74"}, - {file = "yarl-1.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e1651bf8e0398574646744c1885a41198eba53dc8a9312b954073f845c90a8df"}, - {file = "yarl-1.22.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b8a0588521a26bf92a57a1705b77b8b59044cdceccac7151bd8d229e66b8dedb"}, - {file = "yarl-1.22.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:42188e6a615c1a75bcaa6e150c3fe8f3e8680471a6b10150c5f7e83f47cc34d2"}, - {file = "yarl-1.22.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f6d2cb59377d99718913ad9a151030d6f83ef420a2b8f521d94609ecc106ee82"}, - {file = "yarl-1.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50678a3b71c751d58d7908edc96d332af328839eea883bb554a43f539101277a"}, - {file = "yarl-1.22.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1e8fbaa7cec507aa24ea27a01456e8dd4b6fab829059b69844bd348f2d467124"}, - {file = "yarl-1.22.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:433885ab5431bc3d3d4f2f9bd15bfa1614c522b0f1405d62c4f926ccd69d04fa"}, - {file = "yarl-1.22.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:b790b39c7e9a4192dc2e201a282109ed2985a1ddbd5ac08dc56d0e121400a8f7"}, - {file = "yarl-1.22.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:31f0b53913220599446872d757257be5898019c85e7971599065bc55065dc99d"}, - {file = "yarl-1.22.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a49370e8f711daec68d09b821a34e1167792ee2d24d405cbc2387be4f158b520"}, - {file = "yarl-1.22.0-cp312-cp312-win32.whl", hash = "sha256:70dfd4f241c04bd9239d53b17f11e6ab672b9f1420364af63e8531198e3f5fe8"}, - {file = "yarl-1.22.0-cp312-cp312-win_amd64.whl", hash = "sha256:8884d8b332a5e9b88e23f60bb166890009429391864c685e17bd73a9eda9105c"}, - {file = "yarl-1.22.0-cp312-cp312-win_arm64.whl", hash = "sha256:ea70f61a47f3cc93bdf8b2f368ed359ef02a01ca6393916bc8ff877427181e74"}, - {file = "yarl-1.22.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8dee9c25c74997f6a750cd317b8ca63545169c098faee42c84aa5e506c819b53"}, - {file = "yarl-1.22.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:01e73b85a5434f89fc4fe27dcda2aff08ddf35e4d47bbbea3bdcd25321af538a"}, - {file = "yarl-1.22.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:22965c2af250d20c873cdbee8ff958fb809940aeb2e74ba5f20aaf6b7ac8c70c"}, - {file = "yarl-1.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4f15793aa49793ec8d1c708ab7f9eded1aa72edc5174cae703651555ed1b601"}, - {file = "yarl-1.22.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e5542339dcf2747135c5c85f68680353d5cb9ffd741c0f2e8d832d054d41f35a"}, - {file = "yarl-1.22.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5c401e05ad47a75869c3ab3e35137f8468b846770587e70d71e11de797d113df"}, - {file = "yarl-1.22.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:243dda95d901c733f5b59214d28b0120893d91777cb8aa043e6ef059d3cddfe2"}, - {file = "yarl-1.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bec03d0d388060058f5d291a813f21c011041938a441c593374da6077fe21b1b"}, - {file = "yarl-1.22.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0748275abb8c1e1e09301ee3cf90c8a99678a4e92e4373705f2a2570d581273"}, - {file = "yarl-1.22.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:47fdb18187e2a4e18fda2c25c05d8251a9e4a521edaed757fef033e7d8498d9a"}, - {file = "yarl-1.22.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c7044802eec4524fde550afc28edda0dd5784c4c45f0be151a2d3ba017daca7d"}, - {file = "yarl-1.22.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:139718f35149ff544caba20fce6e8a2f71f1e39b92c700d8438a0b1d2a631a02"}, - {file = "yarl-1.22.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e1b51bebd221006d3d2f95fbe124b22b247136647ae5dcc8c7acafba66e5ee67"}, - {file = "yarl-1.22.0-cp313-cp313-win32.whl", hash = "sha256:d3e32536234a95f513bd374e93d717cf6b2231a791758de6c509e3653f234c95"}, - {file = "yarl-1.22.0-cp313-cp313-win_amd64.whl", hash = "sha256:47743b82b76d89a1d20b83e60d5c20314cbd5ba2befc9cda8f28300c4a08ed4d"}, - {file = "yarl-1.22.0-cp313-cp313-win_arm64.whl", hash = "sha256:5d0fcda9608875f7d052eff120c7a5da474a6796fe4d83e152e0e4d42f6d1a9b"}, - {file = "yarl-1.22.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:719ae08b6972befcba4310e49edb1161a88cdd331e3a694b84466bd938a6ab10"}, - {file = "yarl-1.22.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:47d8a5c446df1c4db9d21b49619ffdba90e77c89ec6e283f453856c74b50b9e3"}, - {file = "yarl-1.22.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:cfebc0ac8333520d2d0423cbbe43ae43c8838862ddb898f5ca68565e395516e9"}, - {file = "yarl-1.22.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4398557cbf484207df000309235979c79c4356518fd5c99158c7d38203c4da4f"}, - {file = "yarl-1.22.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2ca6fd72a8cd803be290d42f2dec5cdcd5299eeb93c2d929bf060ad9efaf5de0"}, - {file = "yarl-1.22.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca1f59c4e1ab6e72f0a23c13fca5430f889634166be85dbf1013683e49e3278e"}, - {file = "yarl-1.22.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c5010a52015e7c70f86eb967db0f37f3c8bd503a695a49f8d45700144667708"}, - {file = "yarl-1.22.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d7672ecf7557476642c88497c2f8d8542f8e36596e928e9bcba0e42e1e7d71f"}, - {file = "yarl-1.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:3b7c88eeef021579d600e50363e0b6ee4f7f6f728cd3486b9d0f3ee7b946398d"}, - {file = "yarl-1.22.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:f4afb5c34f2c6fecdcc182dfcfc6af6cccf1aa923eed4d6a12e9d96904e1a0d8"}, - {file = "yarl-1.22.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:59c189e3e99a59cf8d83cbb31d4db02d66cda5a1a4374e8a012b51255341abf5"}, - {file = "yarl-1.22.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:5a3bf7f62a289fa90f1990422dc8dff5a458469ea71d1624585ec3a4c8d6960f"}, - {file = "yarl-1.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:de6b9a04c606978fdfe72666fa216ffcf2d1a9f6a381058d4378f8d7b1e5de62"}, - {file = "yarl-1.22.0-cp313-cp313t-win32.whl", hash = "sha256:1834bb90991cc2999f10f97f5f01317f99b143284766d197e43cd5b45eb18d03"}, - {file = "yarl-1.22.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ff86011bd159a9d2dfc89c34cfd8aff12875980e3bd6a39ff097887520e60249"}, - {file = "yarl-1.22.0-cp313-cp313t-win_arm64.whl", hash = "sha256:7861058d0582b847bc4e3a4a4c46828a410bca738673f35a29ba3ca5db0b473b"}, - {file = "yarl-1.22.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:34b36c2c57124530884d89d50ed2c1478697ad7473efd59cfd479945c95650e4"}, - {file = "yarl-1.22.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:0dd9a702591ca2e543631c2a017e4a547e38a5c0f29eece37d9097e04a7ac683"}, - {file = "yarl-1.22.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:594fcab1032e2d2cc3321bb2e51271e7cd2b516c7d9aee780ece81b07ff8244b"}, - {file = "yarl-1.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f3d7a87a78d46a2e3d5b72587ac14b4c16952dd0887dbb051451eceac774411e"}, - {file = "yarl-1.22.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:852863707010316c973162e703bddabec35e8757e67fcb8ad58829de1ebc8590"}, - {file = "yarl-1.22.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:131a085a53bfe839a477c0845acf21efc77457ba2bcf5899618136d64f3303a2"}, - {file = "yarl-1.22.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:078a8aefd263f4d4f923a9677b942b445a2be970ca24548a8102689a3a8ab8da"}, - {file = "yarl-1.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bca03b91c323036913993ff5c738d0842fc9c60c4648e5c8d98331526df89784"}, - {file = "yarl-1.22.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:68986a61557d37bb90d3051a45b91fa3d5c516d177dfc6dd6f2f436a07ff2b6b"}, - {file = "yarl-1.22.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:4792b262d585ff0dff6bcb787f8492e40698443ec982a3568c2096433660c694"}, - {file = "yarl-1.22.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:ebd4549b108d732dba1d4ace67614b9545b21ece30937a63a65dd34efa19732d"}, - {file = "yarl-1.22.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:f87ac53513d22240c7d59203f25cc3beac1e574c6cd681bbfd321987b69f95fd"}, - {file = "yarl-1.22.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:22b029f2881599e2f1b06f8f1db2ee63bd309e2293ba2d566e008ba12778b8da"}, - {file = "yarl-1.22.0-cp314-cp314-win32.whl", hash = "sha256:6a635ea45ba4ea8238463b4f7d0e721bad669f80878b7bfd1f89266e2ae63da2"}, - {file = "yarl-1.22.0-cp314-cp314-win_amd64.whl", hash = "sha256:0d6e6885777af0f110b0e5d7e5dda8b704efed3894da26220b7f3d887b839a79"}, - {file = "yarl-1.22.0-cp314-cp314-win_arm64.whl", hash = "sha256:8218f4e98d3c10d683584cb40f0424f4b9fd6e95610232dd75e13743b070ee33"}, - {file = "yarl-1.22.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:45c2842ff0e0d1b35a6bf1cd6c690939dacb617a70827f715232b2e0494d55d1"}, - {file = "yarl-1.22.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:d947071e6ebcf2e2bee8fce76e10faca8f7a14808ca36a910263acaacef08eca"}, - {file = "yarl-1.22.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:334b8721303e61b00019474cc103bdac3d7b1f65e91f0bfedeec2d56dfe74b53"}, - {file = "yarl-1.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e7ce67c34138a058fd092f67d07a72b8e31ff0c9236e751957465a24b28910c"}, - {file = "yarl-1.22.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:d77e1b2c6d04711478cb1c4ab90db07f1609ccf06a287d5607fcd90dc9863acf"}, - {file = "yarl-1.22.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4647674b6150d2cae088fc07de2738a84b8bcedebef29802cf0b0a82ab6face"}, - {file = "yarl-1.22.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:efb07073be061c8f79d03d04139a80ba33cbd390ca8f0297aae9cce6411e4c6b"}, - {file = "yarl-1.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e51ac5435758ba97ad69617e13233da53908beccc6cfcd6c34bbed8dcbede486"}, - {file = "yarl-1.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:33e32a0dd0c8205efa8e83d04fc9f19313772b78522d1bdc7d9aed706bfd6138"}, - {file = "yarl-1.22.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:bf4a21e58b9cde0e401e683ebd00f6ed30a06d14e93f7c8fd059f8b6e8f87b6a"}, - {file = "yarl-1.22.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:e4b582bab49ac33c8deb97e058cd67c2c50dac0dd134874106d9c774fd272529"}, - {file = "yarl-1.22.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:0b5bcc1a9c4839e7e30b7b30dd47fe5e7e44fb7054ec29b5bb8d526aa1041093"}, - {file = "yarl-1.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c0232bce2170103ec23c454e54a57008a9a72b5d1c3105dc2496750da8cfa47c"}, - {file = "yarl-1.22.0-cp314-cp314t-win32.whl", hash = "sha256:8009b3173bcd637be650922ac455946197d858b3630b6d8787aa9e5c4564533e"}, - {file = "yarl-1.22.0-cp314-cp314t-win_amd64.whl", hash = "sha256:9fb17ea16e972c63d25d4a97f016d235c78dd2344820eb35bc034bc32012ee27"}, - {file = "yarl-1.22.0-cp314-cp314t-win_arm64.whl", hash = "sha256:9f6d73c1436b934e3f01df1e1b21ff765cd1d28c77dfb9ace207f746d4610ee1"}, - {file = "yarl-1.22.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3aa27acb6de7a23785d81557577491f6c38a5209a254d1191519d07d8fe51748"}, - {file = "yarl-1.22.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:af74f05666a5e531289cb1cc9c883d1de2088b8e5b4de48004e5ca8a830ac859"}, - {file = "yarl-1.22.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:62441e55958977b8167b2709c164c91a6363e25da322d87ae6dd9c6019ceecf9"}, - {file = "yarl-1.22.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b580e71cac3f8113d3135888770903eaf2f507e9421e5697d6ee6d8cd1c7f054"}, - {file = "yarl-1.22.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e81fda2fb4a07eda1a2252b216aa0df23ebcd4d584894e9612e80999a78fd95b"}, - {file = "yarl-1.22.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:99b6fc1d55782461b78221e95fc357b47ad98b041e8e20f47c1411d0aacddc60"}, - {file = "yarl-1.22.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:088e4e08f033db4be2ccd1f34cf29fe994772fb54cfe004bbf54db320af56890"}, - {file = "yarl-1.22.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2e4e1f6f0b4da23e61188676e3ed027ef0baa833a2e633c29ff8530800edccba"}, - {file = "yarl-1.22.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:84fc3ec96fce86ce5aa305eb4aa9358279d1aa644b71fab7b8ed33fe3ba1a7ca"}, - {file = "yarl-1.22.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:5dbeefd6ca588b33576a01b0ad58aa934bc1b41ef89dee505bf2932b22ddffba"}, - {file = "yarl-1.22.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:14291620375b1060613f4aab9ebf21850058b6b1b438f386cc814813d901c60b"}, - {file = "yarl-1.22.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:a4fcfc8eb2c34148c118dfa02e6427ca278bfd0f3df7c5f99e33d2c0e81eae3e"}, - {file = "yarl-1.22.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:029866bde8d7b0878b9c160e72305bbf0a7342bcd20b9999381704ae03308dc8"}, - {file = "yarl-1.22.0-cp39-cp39-win32.whl", hash = "sha256:4dcc74149ccc8bba31ce1944acee24813e93cfdee2acda3c172df844948ddf7b"}, - {file = "yarl-1.22.0-cp39-cp39-win_amd64.whl", hash = "sha256:10619d9fdee46d20edc49d3479e2f8269d0779f1b031e6f7c2aa1c76be04b7ed"}, - {file = "yarl-1.22.0-cp39-cp39-win_arm64.whl", hash = "sha256:dd7afd3f8b0bfb4e0d9fc3c31bfe8a4ec7debe124cfd90619305def3c8ca8cd2"}, - {file = "yarl-1.22.0-py3-none-any.whl", hash = "sha256:1380560bdba02b6b6c90de54133c81c9f2a453dee9912fe58c1dcced1edb7cff"}, - {file = "yarl-1.22.0.tar.gz", hash = "sha256:bebf8557577d4401ba8bd9ff33906f1376c877aa78d1fe216ad01b4d6745af71"}, -] - -[package.dependencies] -idna = ">=2.0" -multidict = ">=4.0" -propcache = ">=0.2.1" - -[[package]] -name = "zipp" -version = "3.23.0" -description = "Backport of pathlib-compatible object wrapper for zip files" -optional = false -python-versions = ">=3.9" -files = [ - {file = "zipp-3.23.0-py3-none-any.whl", hash = "sha256:071652d6115ed432f5ce1d34c336c0adfd6a884660d1e9712a256d3d3bd4b14e"}, - {file = "zipp-3.23.0.tar.gz", hash = "sha256:a07157588a12518c9d4034df3fbbee09c814741a33ff63c05fa29d26a2404166"}, -] - -[package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["big-O", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more_itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] -type = ["pytest-mypy"] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9,<4.0.0" -content-hash = "40a429f2d523620ce2bbc981f2ba90b38d7c96b10887221efcee583ff4de08c8" diff --git a/pyproject.toml b/pyproject.toml index 6e64d0a1..030cbe09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,57 +1,55 @@ [build-system] -build-backend = "poetry.core.masonry.api" -requires = ["poetry-core>=1.0.0"] +build-backend = "hatchling.build" +requires = ["hatchling"] -[tool.poetry] -authors = ["GrandMoff100 "] -description = "Python Wrapper for Homeassistant's REST API" -documentation = "https://homeassistantapi.readthedocs.io" -homepage = "https://github.com/GrandMoff100/HomeAssistantAPI" -license = "GPL-3.0-or-later" +[project] name = "HomeAssistant-API" -readme = "README.md" -include = ["homeassistant_api/py.typed"] -repository = "https://github.com/GrandMoff100/HomeAssistantAPI" version = "5.0.3" -packages = [{ include = "homeassistant_api" }] - -[tool.poetry.dependencies] -aiohttp = "^3" -aiohttp-client-cache = "^0" -pydantic = "^2" -python = "^3.9,<4.0.0" -requests = "^2" -requests-cache = "^1" -simplejson = "^3" -websockets = "^15" - -[tool.poetry.group.docs] -optional = true - -[tool.poetry.group.docs.dependencies] -sphinx-autodoc-typehints = "^1.25.2" -sphinx-rtd-theme = "^2.0.0" -autodoc-pydantic = "^2.0.1" - -[tool.poetry.group.styling] -optional = true +description = "Python Wrapper for Homeassistant's REST API" +readme = "README.md" +license = "GPL-3.0-or-later" +requires-python = ">=3.9,<4.0" +authors = [ + { name = "GrandMoff100", email = "minecraftcrusher100@gmail.com" }, +] +dependencies = [ + "aiohttp>=3,<4", + "aiohttp-client-cache>=0,<1", + "pydantic>=2,<3", + "requests>=2,<3", + "requests-cache>=1,<2", + "ruff>=0.15.7", + "simplejson>=3,<4", + "ty>=0.0.24", + "websockets>=15,<16", +] -[tool.poetry.group.styling.dependencies] -pre-commit = "^2.17.0" -types-docutils = "^0.17.5" -types-requests = "^2.27.9" -types-simplejson = "^3.17.3" -types-toml = "^0.10.4" -mypy = "^1.8.0" -ruff = "^0.15" +[project.urls] +Documentation = "https://homeassistantapi.readthedocs.io" +Homepage = "https://github.com/GrandMoff100/HomeAssistantAPI" +Repository = "https://github.com/GrandMoff100/HomeAssistantAPI" -[tool.poetry.group.testing] -optional = true -[tool.poetry.group.testing.dependencies] -pytest-asyncio = "^1" -pytest-cov = "^7" -pytest = "^8" -aiosqlite = "^0.22" +[dependency-groups] +docs = [ + "sphinx-autodoc-typehints>=1.25.2", + "sphinx-rtd-theme>=2.0.0", + "autodoc-pydantic>=2.0.1", +] +styling = [ + "pre-commit>=2.17.0", + "types-docutils>=0.17.5", + "types-requests>=2.27.9", + "types-simplejson>=3.17.3", + "types-toml>=0.10.4", + "mypy>=1.8.0", + "ruff>=0.15", +] +testing = [ + "pytest-asyncio>=1", + "pytest-cov>=7", + "pytest>=8", + "aiosqlite>=0.22", +] [tool.pytest.ini_options] asyncio_mode = "auto" @@ -98,3 +96,9 @@ disable_error_code = [ "no-untyped-def", "name-defined", ] + +[tool.hatch.build.targets.wheel] +packages = ["homeassistant_api"] + +[tool.hatch.build.targets.sdist] +include = ["homeassistant_api", "homeassistant_api/py.typed"] diff --git a/volumes/config/.storage/core.restore_state b/volumes/config/.storage/core.restore_state index 74c6c01e..cc21ff18 100644 --- a/volumes/config/.storage/core.restore_state +++ b/volumes/config/.storage/core.restore_state @@ -4,17 +4,17 @@ "key": "core.restore_state", "data": [ { - "state": {"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test User"},"last_changed":"2026-03-16T04:15:22.046235+00:00","last_reported":"2026-03-16T04:15:22.812267+00:00","last_updated":"2026-03-16T04:15:22.812267+00:00","context":{"id":"01KKTDP3NWBAH8N001JPZDXJG0","parent_id":null,"user_id":null}}, + "state": {"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test User"},"last_changed":"2026-03-22T16:31:31.712211+00:00","last_reported":"2026-03-22T16:31:32.696411+00:00","last_updated":"2026-03-22T16:31:32.696411+00:00","context":{"id":"01KMB66CARJBA2W2SJVNFAHX3M","parent_id":null,"user_id":null}}, "extra_data": null, - "last_seen": "2026-03-16T04:30:22.813296+00:00" + "last_seen": "2026-03-22T22:01:32.720708+00:00" }, { - "state": {"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup Automatic backup"},"last_changed":"2026-03-16T04:15:22.173909+00:00","last_reported":"2026-03-16T04:15:22.173909+00:00","last_updated":"2026-03-16T04:15:22.173909+00:00","context":{"id":"01KKTDP31XEKR4ZT2TNHKVGE1G","parent_id":null,"user_id":null}}, + "state": {"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup Automatic backup"},"last_changed":"2026-03-22T16:31:32.709444+00:00","last_reported":"2026-03-22T16:31:32.709444+00:00","last_updated":"2026-03-22T16:31:32.709444+00:00","context":{"id":"01KMB66CB50RRBP5FEADY823M3","parent_id":null,"user_id":null}}, "extra_data": { "last_event_type": null, "last_event_attributes": null }, - "last_seen": "2026-03-16T04:30:22.813296+00:00" + "last_seen": "2026-03-22T22:01:32.720708+00:00" } ] } \ No newline at end of file From c31770655b9c3983280906e9ac8034e5acace38a Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Sun, 22 Mar 2026 17:11:13 -0700 Subject: [PATCH 02/34] Replace mypy with zuban and relax development dependency versions Swap type checker from mypy to zuban across CI, pre-commit, and pyproject.toml. Relax pinned versions on docs, styling, and testing dependency groups to use range constraints. Bump requires-python to >=3.10 and websockets to >=16. --- .github/workflows/test-suite.yml | 4 ++-- .pre-commit-config.yaml | 7 ------- homeassistant_api/rawasyncwebsocket.py | 4 ++-- pyproject.toml | 25 ++++++++++++------------- 4 files changed, 16 insertions(+), 24 deletions(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 77435707..64e9e7ed 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -34,8 +34,8 @@ jobs: run: uv run ruff format homeassistant_api - name: Run Ruff linting run: uv run ruff check homeassistant_api - - name: Run MyPy - run: uv run mypy homeassistant_api --show-error-codes + - name: Run Zuban + run: uv run zuban check homeassistant_api code_functionality: name: "Code Functionality" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 674fe974..72dced77 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,11 +1,4 @@ repos: - - repo: https://github.com/pre-commit/mirrors-mypy - hooks: - - id: mypy - additional_dependencies: - - types-requests - - types-simplejson - rev: "v1.17.1" - repo: https://github.com/pre-commit/pre-commit-hooks hooks: - id: trailing-whitespace diff --git a/homeassistant_api/rawasyncwebsocket.py b/homeassistant_api/rawasyncwebsocket.py index 6c99ff6d..91206f2e 100644 --- a/homeassistant_api/rawasyncwebsocket.py +++ b/homeassistant_api/rawasyncwebsocket.py @@ -409,7 +409,7 @@ async def async_listen_events( print(event) """ subscription = await self._async_subscribe_events(event_type) - yield cast(AsyncGenerator[FiredEvent, None], self._async_wait_for(subscription)) + yield cast(AsyncGenerator[FiredEvent, None], self._async_wait_for(subscription)) # type: ignore[unused-coroutine] await self._async_unsubscribe(subscription) async def _async_subscribe_events(self, event_type: Optional[str]) -> int: @@ -461,7 +461,7 @@ async def async_listen_trigger( fired_trigger.variables async for fired_trigger in cast( AsyncGenerator[FiredTrigger, None], - self._async_wait_for(subscription), + self._async_wait_for(subscription), # type: ignore[unused-coroutine] ) ) await self._async_unsubscribe(subscription) diff --git a/pyproject.toml b/pyproject.toml index 030cbe09..7b211d2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "5.0.3" description = "Python Wrapper for Homeassistant's REST API" readme = "README.md" license = "GPL-3.0-or-later" -requires-python = ">=3.9,<4.0" +requires-python = ">=3.10,<4.0" authors = [ { name = "GrandMoff100", email = "minecraftcrusher100@gmail.com" }, ] @@ -18,10 +18,8 @@ dependencies = [ "pydantic>=2,<3", "requests>=2,<3", "requests-cache>=1,<2", - "ruff>=0.15.7", "simplejson>=3,<4", - "ty>=0.0.24", - "websockets>=15,<16", + "websockets>=16,<17", ] [project.urls] @@ -31,17 +29,17 @@ Repository = "https://github.com/GrandMoff100/HomeAssistantAPI" [dependency-groups] docs = [ - "sphinx-autodoc-typehints>=1.25.2", - "sphinx-rtd-theme>=2.0.0", - "autodoc-pydantic>=2.0.1", + "sphinx-autodoc-typehints>=3,<4", + "sphinx-rtd-theme>=3,<4", + "autodoc-pydantic>=2,<3", ] styling = [ - "pre-commit>=2.17.0", - "types-docutils>=0.17.5", - "types-requests>=2.27.9", - "types-simplejson>=3.17.3", - "types-toml>=0.10.4", - "mypy>=1.8.0", + "pre-commit>=4,<5", + "types-docutils>=0.22", + "types-requests>=2,<3", + "types-simplejson>=3.20", + "types-toml>=0.10", + "zuban>=0.6", "ruff>=0.15", ] testing = [ @@ -87,6 +85,7 @@ select = [ [tool.ruff.lint.per-file-ignores] "__init__.py" = ['F401'] "conf.py" = ['E402'] +"tests/*" = ["S101", "ANN202"] [tool.isort] profile = "black" From f9d41119b56ad76a14b50caf306206883df58a1c Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Sun, 29 Mar 2026 23:33:19 -0700 Subject: [PATCH 03/34] Streamline Docker build and merge dev dependency groups --- .gitignore | 2 ++ Dockerfile | 15 ++++++++------- pyproject.toml | 4 +--- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 3c53f063..4ffb46af 100644 --- a/.gitignore +++ b/.gitignore @@ -133,6 +133,8 @@ venv/ ENV/ env.bak/ venv.bak/ +uv.lock +poetry.lock # Spyder project settings .spyderproject diff --git a/Dockerfile b/Dockerfile index d7332538..9586dfbe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,13 @@ -FROM ghcr.io/astral-sh/uv:python3.13-bookworm AS base -ENV PYTHONPATH=. +FROM ghcr.io/astral-sh/uv:python3.13-bookworm AS dependencies WORKDIR /app -COPY ./ /app/ - -FROM base AS dependencies -RUN uv sync --group testing +COPY pyproject.toml README.md ./ +RUN uv sync --group dev -FROM base AS final +FROM python:3.13-bookworm +ENV PYTHONPATH=. +WORKDIR /app COPY --from=dependencies /app/.venv /app/.venv +ENV PATH="/app/.venv/bin:$PATH" +COPY ./ /app/ ENTRYPOINT [ "sh", "entrypoint.sh" ] \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 7b211d2f..145754d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ docs = [ "sphinx-rtd-theme>=3,<4", "autodoc-pydantic>=2,<3", ] -styling = [ +dev = [ "pre-commit>=4,<5", "types-docutils>=0.22", "types-requests>=2,<3", @@ -41,8 +41,6 @@ styling = [ "types-toml>=0.10", "zuban>=0.6", "ruff>=0.15", -] -testing = [ "pytest-asyncio>=1", "pytest-cov>=7", "pytest>=8", From fb7da56aeec79e0c5b595d0145502712f24b0fd3 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Mon, 30 Mar 2026 11:49:34 -0700 Subject: [PATCH 04/34] Flatten client hierarchy and remove Raw prefix Remove the unified Client/WebsocketClient classes that combined sync and async via use_async flag. Promote the Raw* implementations to be the public API: Client, AsyncClient, WebsocketClient, AsyncWebsocketClient. Drop the async_ prefix from async client methods since they now live on separate classes. Move URL scheme validation into base classes. --- homeassistant_api/__init__.py | 4 + .../{rawasyncclient.py => asyncclient.py} | 128 ++-- ...rawasyncwebsocket.py => asyncwebsocket.py} | 164 ++--- .../{rawbaseclient.py => baseclient.py} | 10 +- .../{rawbasewebsocket.py => basewebsocket.py} | 6 +- homeassistant_api/client.py | 442 +++++++++++- homeassistant_api/models/domains.py | 4 +- homeassistant_api/models/entity.py | 6 +- homeassistant_api/models/events.py | 2 +- homeassistant_api/rawclient.py | 423 ------------ homeassistant_api/rawwebsocket.py | 639 ----------------- homeassistant_api/websocket.py | 645 +++++++++++++++++- tests/conftest.py | 16 +- tests/test_client.py | 13 +- tests/test_endpoints.py | 176 ++--- tests/test_errors.py | 35 +- tests/test_events.py | 28 +- tests/test_models.py | 32 +- tests/test_websocket.py | 52 +- 19 files changed, 1374 insertions(+), 1451 deletions(-) rename homeassistant_api/{rawasyncclient.py => asyncclient.py} (79%) rename homeassistant_api/{rawasyncwebsocket.py => asyncwebsocket.py} (80%) rename homeassistant_api/{rawbaseclient.py => baseclient.py} (94%) rename homeassistant_api/{rawbasewebsocket.py => basewebsocket.py} (92%) delete mode 100644 homeassistant_api/rawclient.py delete mode 100644 homeassistant_api/rawwebsocket.py diff --git a/homeassistant_api/__init__.py b/homeassistant_api/__init__.py index cc637912..18e70b77 100644 --- a/homeassistant_api/__init__.py +++ b/homeassistant_api/__init__.py @@ -2,6 +2,7 @@ __all__ = ( "Client", + "AsyncClient", "State", "Context", "Domain", @@ -12,6 +13,7 @@ "Event", "LogbookEntry", "WebsocketClient", + "AsyncWebsocketClient", "AuthInvalid", "AuthOk", "AuthRequired", @@ -21,6 +23,8 @@ "EventResponse", ) +from .asyncclient import AsyncClient +from .asyncwebsocket import AsyncWebsocketClient from .client import Client from .models.domains import Domain, Service from .models.entity import Entity, Group diff --git a/homeassistant_api/rawasyncclient.py b/homeassistant_api/asyncclient.py similarity index 79% rename from homeassistant_api/rawasyncclient.py rename to homeassistant_api/asyncclient.py index 18a9cc88..017e4f93 100644 --- a/homeassistant_api/rawasyncclient.py +++ b/homeassistant_api/asyncclient.py @@ -8,7 +8,6 @@ from datetime import datetime from posixpath import join from typing import ( - TYPE_CHECKING, Any, AsyncGenerator, Dict, @@ -26,20 +25,15 @@ from .errors import BadTemplateError, RequestError, RequestTimeoutError from .models import Domain, Entity, Event, Group, History, LogbookEntry, State from .processing import AsyncResponseType, Processing -from .rawbaseclient import RawBaseClient +from .baseclient import BaseClient from .utils import JSONType, prepare_entity_id -if TYPE_CHECKING: - from homeassistant_api import Client -else: - Client = None # pylint: disable=invalid-name - logger = logging.getLogger(__name__) -class RawAsyncClient(RawBaseClient): +class AsyncClient(BaseClient): """ - The async equivalent of :py:class:`RawClient` + The async equivalent of :py:class:`Client` :param api_url: The location of the api endpoint. e.g. :code:`http://localhost:8123/api` Required. :param token: The refresh or long lived access token to authenticate your requests. Required. @@ -61,7 +55,7 @@ def __init__( verify_ssl: bool = True, **kwargs, ): - RawBaseClient.__init__(self, *args, **kwargs) + BaseClient.__init__(self, *args, **kwargs) connector = aiohttp.TCPConnector(verify_ssl=False) if not verify_ssl else None if async_cache_session is False: self.async_cache_session = aiohttp.ClientSession(connector=connector) @@ -81,7 +75,7 @@ async def __aenter__(self): "Entering cached async requests session %r", self.async_cache_session ) await self.async_cache_session.__aenter__() - await self.async_check_api_running() + await self.check_api_running() return self async def __aexit__(self, _, __, ___): @@ -89,7 +83,7 @@ async def __aexit__(self, _, __, ___): await self.async_cache_session.close() # Very important request function - async def async_request( + async def request( self, path: str, *, @@ -102,7 +96,7 @@ async def async_request( try: if self.global_request_kwargs is not None: kwargs.update(self.global_request_kwargs) - return await self.async_response_logic( + return await self.response_logic( await self.async_cache_session.request( method, self.endpoint(path) + f"?{params}" * bool(params), @@ -116,27 +110,45 @@ async def async_request( self.endpoint(path) + f"?{params}" * bool(params), ) from err + async def _dict_request(self, *args: Any, **kwargs: Any) -> dict: + data = await self.request(*args, **kwargs) + if not isinstance(data, dict): + raise TypeError + return data + + async def _list_request(self, *args: Any, **kwargs: Any) -> list: + data = await self.request(*args, **kwargs) + if not isinstance(data, list): + raise TypeError + return data + + async def _str_request(self, *args: Any, **kwargs: Any) -> str: + data = await self.request(*args, **kwargs) + if not isinstance(data, str): + raise TypeError + return data + @staticmethod - async def async_response_logic(response: AsyncResponseType) -> Any: + async def response_logic(response: AsyncResponseType) -> Any: """Processes custom mimetype content asyncronously.""" return await Processing(response=response).process() # API information methods - async def async_get_error_log(self) -> str: + async def get_error_log(self) -> str: """ Returns the server error log as a string. :code:`GET /api/error_log` """ - return cast(str, await self.async_request("error_log")) + return cast(str, await self.request("error_log")) - async def async_get_config(self) -> dict[str, JSONType]: + async def get_config(self) -> dict[str, JSONType]: """ Returns the yaml configuration of homeassistant. :code:`GET /api/config` """ - return cast(dict[str, JSONType], await self.async_request("config")) + return cast(dict[str, JSONType], await self.request("config")) - async def async_get_logbook_entries( + async def get_logbook_entries( self, *args, **kwargs, @@ -146,13 +158,13 @@ async def async_get_logbook_entries( :code:`GET /api/logbook/` """ params, url = self.prepare_get_logbook_entry_params(*args, **kwargs) - data = await self.async_request( + data = await self.request( url, params=self.construct_params(cast(Dict[str, Optional[str]], params)) ) for entry in data: yield LogbookEntry.model_validate(entry) - async def async_get_entity_histories( + async def get_entity_histories( self, entities: Optional[Tuple[Entity, ...]] = None, start_timestamp: Optional[datetime] = None, @@ -170,14 +182,14 @@ async def async_get_entity_histories( end_timestamp=end_timestamp, significant_changes_only=significant_changes_only, ) - data = await self.async_request( + data = await self.request( url, params=self.construct_params(params), ) for states in data: yield History.model_validate({"states": states}) - async def async_get_rendered_template(self, template: str) -> str: + async def get_rendered_template(self, template: str) -> str: """ Renders a given Jinja2 template string with Home Assistant context data. :code:`POST /api/template` @@ -185,7 +197,7 @@ async def async_get_rendered_template(self, template: str) -> str: try: return cast( str, - await self.async_request( + await self.request( "template", json=dict(template=template), method="POST", @@ -198,12 +210,12 @@ async def async_get_rendered_template(self, template: str) -> str: ) from err # API check methods - async def async_check_api_config(self) -> bool: + async def check_api_config(self) -> bool: """ Asks Home Assistant to validate its configuration file and returns true/false. :code:`POST /api/config/core/check_config` """ - res = await self.async_request("config/core/check_config", method="POST") + res = await self.request("config/core/check_config", method="POST") res = cast(Dict[Any, Any], res) valid = {"valid": True, "invalid": False}.get( cast( @@ -214,29 +226,29 @@ async def async_check_api_config(self) -> bool: ) return valid - async def async_check_api_running(self) -> bool: + async def check_api_running(self) -> bool: """ Asks Home Assistant if its running. :code:`GET /api/` """ - res = cast(Dict[Any, Any], await self.async_request("")) + res = cast(Dict[Any, Any], await self.request("")) return res.get("message") == "API running." # Entity methods - async def async_get_entities(self) -> Dict[str, Group]: + async def get_entities(self) -> Dict[str, Group]: """ Fetches all entities from the api. :code:`GET /api/states` """ entities: Dict[str, Group] = {} - for state in await self.async_get_states(): + for state in await self.get_states(): group_id, entity_slug = state.entity_id.split(".") if group_id not in entities: entities[group_id] = Group(group_id=group_id, _client=self) # type: ignore[arg-type] entities[group_id]._add_entity(entity_slug, state) return entities - async def async_get_entity( + async def get_entity( self, group_id: Optional[str] = None, slug: Optional[str] = None, @@ -247,9 +259,9 @@ async def async_get_entity( :code:`GET /api/states/` """ if group_id is not None and slug is not None: - state = await self.async_get_state(group_id=group_id, slug=slug) + state = await self.get_state(group_id=group_id, slug=slug) elif entity_id is not None: - state = await self.async_get_state(entity_id=entity_id) + state = await self.get_state(entity_id=entity_id) else: help_msg = ( "Use keyword arguments to pass entity_id. " @@ -264,27 +276,29 @@ async def async_get_entity( return group.get_entity(entity_slug) # Services and domain methods - async def async_get_domains(self) -> Dict[str, Domain]: + async def get_domains(self) -> Dict[str, Domain]: """ Fetches all :py:class:`Service` 's from the API. :code:`GET /api/services` """ - data = await self.async_request("services") + data = await self.request("services") domains = map( - lambda json: Domain.from_json_with_client(json, client=cast(Client, self)), + lambda json: Domain.from_json_with_client( + json, client=cast("AsyncClient", self) + ), cast(Tuple[dict[str, JSONType], ...], data), ) return {domain.domain_id: domain for domain in domains} - async def async_get_domain(self, domain_id: str) -> Optional[Domain]: + async def get_domain(self, domain_id: str) -> Optional[Domain]: """ Fetches all :py:class:`Service`'s under a particular service :py:class:`Domain`. Uses cached data from :py:meth:`get_domains` if available. """ - domains = await self.async_get_domains() + domains = await self.get_domains() return domains.get(domain_id) - async def async_trigger_service( + async def trigger_service( self, domain: str, service: str, @@ -294,14 +308,14 @@ async def async_trigger_service( Tells Home Assistant to trigger a service, returns all states changed while in the process of being called. :code:`POST /api/services//` """ - data = await self.async_request( + data = await self.request( f"services/{domain}/{service}", method="POST", json=service_data, ) return tuple(map(State.from_json, cast(List[Dict[Any, Any]], data))) - async def async_trigger_service_with_response( + async def trigger_service_with_response( self, domain: str, service: str, @@ -315,7 +329,7 @@ async def async_trigger_service_with_response( """ data = cast( dict[str, dict[str, JSONType]], - await self.async_request( + await self.request( join("services", domain, service) + "?return_response", method="POST", json=service_data, @@ -330,7 +344,7 @@ async def async_trigger_service_with_response( return states, data.get("service_response", {}) # EntityState methods - async def async_get_state( # pylint: disable=duplicate-code + async def get_state( # pylint: disable=duplicate-code self, *, entity_id: Optional[str] = None, @@ -346,10 +360,10 @@ async def async_get_state( # pylint: disable=duplicate-code slug=slug, entity_id=entity_id, ) - data = await self.async_request(join("states", target_entity_id)) + data = await self.request(join("states", target_entity_id)) return State.from_json(cast(Dict[Any, Any], data)) - async def async_set_state( # pylint: disable=duplicate-code + async def set_state( # pylint: disable=duplicate-code self, state: State, ) -> State: @@ -358,63 +372,63 @@ async def async_set_state( # pylint: disable=duplicate-code To communicate with the device, use :py:meth:`Service.trigger` or :py:meth:`Service.async_trigger`. :code:`POST /api/states/` """ - data = await self.async_request( + data = await self.request( join("states", state.entity_id), method="POST", json=json.loads(state.model_dump_json()), ) return State.from_json(cast(Dict[Any, Any], data)) - async def async_get_states(self) -> Tuple[State, ...]: + async def get_states(self) -> Tuple[State, ...]: """ Gets the states of all entities within homeassistant. :code:`GET /api/states` """ - data = await self.async_request("states") + data = await self.request("states") return tuple(map(State.from_json, cast(List[Dict[Any, Any]], data))) # Event methods - async def async_get_events(self) -> Tuple[Event, ...]: + async def get_events(self) -> Tuple[Event, ...]: """ Gets the Events that happen within homeassistant :code:`GET /api/events` """ - data = await self.async_request("events") + data = await self.request("events") return tuple( map( lambda json: Event.from_json_with_client( - json, client=cast(Client, self) + json, client=cast("AsyncClient", self) ), cast(List[dict[str, JSONType]], data), ) ) - async def async_get_event(self, name: str) -> Optional[Event]: + async def get_event(self, name: str) -> Optional[Event]: """ Gets the :py:class:`Event` with the specified name if it has at least one listener. Uses cached data from :py:meth:`get_events` if available. """ - for event in await self.async_get_events(): + for event in await self.get_events(): if event.event == name.strip().lower(): return event return None - async def async_fire_event(self, event_type: str, **event_data: Any) -> str: + async def fire_event(self, event_type: str, **event_data: Any) -> str: """ Fires a given event_type within homeassistant. Must be an existing event_type. :code:`POST /api/events/` """ - data = await self.async_request( + data = await self.request( join("events", event_type), method="POST", json=event_data, ) return cast(str, data.get("message", "No message provided")) - async def async_get_components(self) -> Tuple[str, ...]: + async def get_components(self) -> Tuple[str, ...]: """ Returns a tuple of all registered components. :code:`GET /api/components` """ - data = await self.async_request("components") + data = await self.request("components") return tuple(cast(List[str], data)) diff --git a/homeassistant_api/rawasyncwebsocket.py b/homeassistant_api/asyncwebsocket.py similarity index 80% rename from homeassistant_api/rawasyncwebsocket.py rename to homeassistant_api/asyncwebsocket.py index 91206f2e..4919c333 100644 --- a/homeassistant_api/rawasyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -3,7 +3,6 @@ import logging import time from typing import ( - TYPE_CHECKING, Any, AsyncGenerator, Dict, @@ -43,18 +42,13 @@ ResultResponse, TemplateEvent, ) -from homeassistant_api.rawbasewebsocket import RawBaseWebsocketClient +from homeassistant_api.basewebsocket import BaseWebsocketClient from homeassistant_api.utils import JSONType, prepare_entity_id -if TYPE_CHECKING: - from homeassistant_api import WebsocketClient -else: - WebsocketClient = None # pylint: disable=invalid-name - logger = logging.getLogger(__name__) -class RawAsyncWebsocketClient(RawBaseWebsocketClient): +class AsyncWebsocketClient(BaseWebsocketClient): _async_conn: Optional[ws.ClientConnection] def __init__(self, api_url: str, token: str) -> None: @@ -64,9 +58,9 @@ def __init__(self, api_url: str, token: str) -> None: async def __aenter__(self): self._async_conn = await ws.connect(self.api_url) await self._async_conn.__aenter__() - okay = await self.async_authentication_phase() + okay = await self.authentication_phase() logging.info("Authenticated with Home Assistant (%s)", okay.ha_version) - await self.async_supported_features_phase() + await self.supported_features_phase() return self async def __aexit__(self, exc_type, exc_value, traceback): @@ -90,7 +84,7 @@ async def _async_recv(self) -> dict[str, JSONType]: logger.debug("Received message: %s", _bytes) return cast(dict[str, JSONType], json.loads(_bytes)) - async def async_send(self, type: str, include_id: bool = True, **data: Any) -> int: + async def send(self, type: str, include_id: bool = True, **data: Any) -> int: """ Send a command message to the websocket server and wait for a "result" response. @@ -116,9 +110,7 @@ async def async_send(self, type: str, include_id: bool = True, **data: Any) -> i return data["id"] return -1 # non-command messages don't have an id - async def async_recv( - self, id: int - ) -> Union[EventResponse, ResultResponse, PingResponse]: + async def recv(self, id: int) -> Union[EventResponse, ResultResponse, PingResponse]: """Receive a response to a message from the websocket server.""" while True: ## have we received a message with the id we're looking for? @@ -135,7 +127,7 @@ async def async_recv( ## if not, keep receiving messages until we do self.handle_recv(await self._async_recv()) - async def async_authentication_phase(self) -> AuthOk: + async def authentication_phase(self) -> AuthOk: """Authenticate with the websocket server.""" # Capture the first message from the server saying we need to authenticate try: @@ -145,7 +137,7 @@ async def async_authentication_phase(self) -> AuthOk: raise ResponseError("Unexpected response during authentication") from e # Send our authentication token - await self.async_send("auth", access_token=self.token, include_id=False) + await self.send("auth", access_token=self.token, include_id=False) logger.debug("Sent auth message") # Check the response @@ -160,10 +152,10 @@ async def async_authentication_phase(self) -> AuthOk: "Unexpected response during authentication", resp["message"] ) from e - async def async_supported_features_phase(self) -> None: + async def supported_features_phase(self) -> None: """Get the supported features from the websocket server.""" - resp = await self.async_recv( - await self.async_send( + resp = await self.recv( + await self.send( "supported_features", features={ # "coalesce_messages": 42, # including this key sets it to True @@ -172,29 +164,27 @@ async def async_supported_features_phase(self) -> None: ) assert cast(ResultResponse, resp).result is None - async def async_ping_latency(self) -> float: + async def ping_latency(self) -> float: """Get the latency (in milliseconds) of the connection by sending a ping message.""" - pong = cast(PingResponse, await self.async_recv(await self.async_send("ping"))) + pong = cast(PingResponse, await self.recv(await self.send("ping"))) assert pong.end is not None return (pong.end - pong.start) / 1_000_000 - async def async_get_rendered_template(self, template: str) -> str: + async def get_rendered_template(self, template: str) -> str: """ Renders a Jinja2 template with Home Assistant context data. See https://www.home-assistant.io/docs/configuration/templating. Sends command :code:`{"type": "render_template", ...}`. """ - id = await self.async_send( - "render_template", template=template, report_errors=True - ) - first = await self.async_recv(id) + id = await self.send("render_template", template=template, report_errors=True) + first = await self.recv(id) assert cast(ResultResponse, first).result is None - second = await self.async_recv(id) + second = await self.recv(id) await self._async_unsubscribe(id) return cast(TemplateEvent, cast(EventResponse, second).event).result - async def async_get_config(self) -> dict[str, JSONType]: + async def get_config(self) -> dict[str, JSONType]: """ Get the Home Assistant configuration. @@ -204,11 +194,11 @@ async def async_get_config(self) -> dict[str, JSONType]: dict[str, JSONType], cast( ResultResponse, - await self.async_recv(await self.async_send("get_config")), + await self.recv(await self.send("get_config")), ).result, ) - async def async_get_states(self) -> Tuple[State, ...]: + async def get_states(self) -> Tuple[State, ...]: """ Get a list of states. @@ -220,12 +210,12 @@ async def async_get_states(self) -> Tuple[State, ...]: list[dict[str, JSONType]], cast( ResultResponse, - await self.async_recv(await self.async_send("get_states")), + await self.recv(await self.send("get_states")), ).result, ) ) - async def async_get_state( # pylint: disable=duplicate-code + async def get_state( # pylint: disable=duplicate-code self, *, entity_id: Optional[str] = None, @@ -244,18 +234,18 @@ async def async_get_state( # pylint: disable=duplicate-code entity_id=entity_id, ) - for state in await self.async_get_states(): + for state in await self.get_states(): if state.entity_id == entity_id: return state raise ValueError(f"Entity {entity_id} not found!") - async def async_get_entities(self) -> Dict[str, Group]: + async def get_entities(self) -> Dict[str, Group]: """ Fetches all entities from the Websocket API and returns them as a dictionary of :py:class:`Group`'s. For example :code:`light.living_room` would be in the group :code:`light` (i.e. :code:`get_entities()["light"].living_room`). """ entities: Dict[str, Group] = {} - for state in await self.async_get_states(): + for state in await self.get_states(): group_id, entity_slug = state.entity_id.split(".") if group_id not in entities: entities[group_id] = Group( @@ -265,7 +255,7 @@ async def async_get_entities(self) -> Dict[str, Group]: entities[group_id]._add_entity(entity_slug, state) return entities - async def async_get_entity( + async def get_entity( self, group_id: Optional[str] = None, slug: Optional[str] = None, @@ -280,9 +270,9 @@ async def async_get_entity( There is a lot of disappointment and frustration in the community because this is not available. """ if group_id is not None and slug is not None: - state = await self.async_get_state(group_id=group_id, slug=slug) + state = await self.get_state(group_id=group_id, slug=slug) elif entity_id is not None: - state = await self.async_get_state(entity_id=entity_id) + state = await self.get_state(entity_id=entity_id) else: help_msg = ( "Use keyword arguments to pass entity_id. " @@ -299,7 +289,7 @@ async def async_get_entity( group._add_entity(split_slug, state) return group.get_entity(split_slug) - async def async_get_domains(self) -> dict[str, Domain]: + async def get_domains(self) -> dict[str, Domain]: """ Get a list of services that Home Assistant offers (organized into a dictionary of service domains). @@ -307,17 +297,17 @@ async def async_get_domains(self) -> dict[str, Domain]: Sends command :code:`{"type": "get_services", ...}`. """ - resp = await self.async_recv(await self.async_send("get_services")) + resp = await self.recv(await self.send("get_services")) domains = map( lambda item: Domain.from_json_with_client( {"domain": item[0], "services": item[1]}, - client=cast(WebsocketClient, self), + client=cast("AsyncWebsocketClient", self), ), cast(dict[str, JSONType], cast(ResultResponse, resp).result).items(), ) return {domain.domain_id: domain for domain in domains} - async def async_get_domain(self, domain: str) -> Domain: + async def get_domain(self, domain: str) -> Domain: """Get a domain. Note: This is not a method in the WS API client... yet. @@ -326,9 +316,9 @@ async def async_get_domain(self, domain: str) -> Domain: For now, just call the :py:meth":`get_domains` method and parsing the result. """ - return (await self.async_get_domains())[domain] + return (await self.get_domains())[domain] - async def async_trigger_service( + async def trigger_service( self, domain: str, service: str, @@ -349,8 +339,8 @@ async def async_trigger_service( if entity_id is not None: params["target"] = {"entity_id": entity_id} - data = await self.async_recv( - await self.async_send("call_service", include_id=True, **params) + data = await self.recv( + await self.send("call_service", include_id=True, **params) ) # TODO: handle data["result"]["context"] ? @@ -363,7 +353,7 @@ async def async_trigger_service( is None ) # should always be None for services without a response - async def async_trigger_service_with_response( + async def trigger_service_with_response( self, domain: str, service: str, @@ -384,8 +374,8 @@ async def async_trigger_service_with_response( if entity_id is not None: params["target"] = {"entity_id": entity_id} - data = await self.async_recv( - await self.async_send("call_service", include_id=True, **params) + data = await self.recv( + await self.send("call_service", include_id=True, **params) ) return cast(dict[str, dict[str, JSONType]], cast(ResultResponse, data).result)[ @@ -393,7 +383,7 @@ async def async_trigger_service_with_response( ] @contextlib.asynccontextmanager - async def async_listen_events( + async def listen_events( self, event_type: Optional[str] = None, ) -> AsyncGenerator[AsyncGenerator[FiredEvent, None], None]: @@ -421,13 +411,13 @@ async def _async_subscribe_events(self, event_type: Optional[str]) -> int: """ params = {"event_type": event_type} if event_type else {} return ( - await self.async_recv( - await self.async_send("subscribe_events", include_id=True, **params) + await self.recv( + await self.send("subscribe_events", include_id=True, **params) ) ).id @contextlib.asynccontextmanager - async def async_listen_trigger( + async def listen_trigger( self, trigger: str, **trigger_fields ) -> AsyncGenerator[AsyncGenerator[dict[str, JSONType], None], None]: """ @@ -473,8 +463,8 @@ async def _async_subscribe_trigger(self, trigger: str, **trigger_fields) -> int: Sends command :code:`{"type": "subscribe_trigger", ...}`. """ return ( - await self.async_recv( - await self.async_send( + await self.recv( + await self.send( "subscribe_trigger", trigger={"platform": trigger, **trigger_fields} ) ) @@ -491,7 +481,7 @@ async def _async_wait_for( Union[ FiredEvent, FiredTrigger ], # we can cast this because TemplateEvent is only used for rendering templates - cast(EventResponse, await self.async_recv(subscription_id)).event, + cast(EventResponse, await self.recv(subscription_id)).event, ) async def _async_unsubscribe(self, subcription_id: int) -> None: @@ -500,19 +490,19 @@ async def _async_unsubscribe(self, subcription_id: int) -> None: Sends command :code:`{"type": "unsubscribe_events", ...}`. """ - resp = await self.async_recv( - await self.async_send("unsubscribe_events", subscription=subcription_id) + resp = await self.recv( + await self.send("unsubscribe_events", subscription=subcription_id) ) assert cast(ResultResponse, resp).result is None self._event_responses.pop(subcription_id) - async def async_get_config_entries(self) -> Tuple[ConfigEntry, ...]: + async def get_config_entries(self) -> Tuple[ConfigEntry, ...]: """ Get all config entries. Sends command :code:`{"type": "config_entries/get", ...}`. """ - resp = await self.async_recv(await self.async_send("config_entries/get")) + resp = await self.recv(await self.send("config_entries/get")) return tuple( ConfigEntry.from_json(entry) for entry in cast( @@ -521,14 +511,14 @@ async def async_get_config_entries(self) -> Tuple[ConfigEntry, ...]: ) ) - async def async_disable_config_entry(self, entry_id: str) -> DisableEnableResult: + async def disable_config_entry(self, entry_id: str) -> DisableEnableResult: """ Disable a config entry. Sends command :code:`{"type": "config_entries/disable", ...}`. """ - resp = await self.async_recv( - await self.async_send( + resp = await self.recv( + await self.send( "config_entries/disable", entry_id=entry_id, disabled_by="user", @@ -538,14 +528,14 @@ async def async_disable_config_entry(self, entry_id: str) -> DisableEnableResult cast(dict[str, JSONType], cast(ResultResponse, resp).result) ) - async def async_enable_config_entry(self, entry_id: str) -> DisableEnableResult: + async def enable_config_entry(self, entry_id: str) -> DisableEnableResult: """ Enable a config entry. Sends command :code:`{"type": "config_entries/disable", ...}`. """ - resp = await self.async_recv( - await self.async_send( + resp = await self.recv( + await self.send( "config_entries/disable", entry_id=entry_id, disabled_by=None, @@ -555,29 +545,27 @@ async def async_enable_config_entry(self, entry_id: str) -> DisableEnableResult: cast(dict[str, JSONType], cast(ResultResponse, resp).result) ) - async def async_ignore_config_flow(self, flow_id: str, title: str) -> None: + async def ignore_config_flow(self, flow_id: str, title: str) -> None: """ Ignore a config flow. Sends command :code:`{"type": "config_entries/ignore_flow", ...}`. """ - await self.async_recv( - await self.async_send( + await self.recv( + await self.send( "config_entries/ignore_flow", flow_id=flow_id, title=title, ) ) - async def async_get_nonuser_flows_in_progress(self) -> Tuple[FlowResult, ...]: + async def get_nonuser_flows_in_progress(self) -> Tuple[FlowResult, ...]: """ Get non-user config flows in progress. Sends command :code:`{"type": "config_entries/flow/progress", ...}`. """ - resp = await self.async_recv( - await self.async_send("config_entries/flow/progress") - ) + resp = await self.recv(await self.send("config_entries/flow/progress")) return tuple( FlowResult.from_json(flow) for flow in cast( @@ -586,16 +574,14 @@ async def async_get_nonuser_flows_in_progress(self) -> Tuple[FlowResult, ...]: ) ) - async def async_get_entry_subentries( - self, entry_id: str - ) -> Tuple[ConfigSubEntry, ...]: + async def get_entry_subentries(self, entry_id: str) -> Tuple[ConfigSubEntry, ...]: """ Get subentries for a config entry. Sends command :code:`{"type": "config_entries/subentries/list", ...}`. """ - resp = await self.async_recv( - await self.async_send("config_entries/subentries/list", entry_id=entry_id) + resp = await self.recv( + await self.send("config_entries/subentries/list", entry_id=entry_id) ) return tuple( ConfigSubEntry.from_json(subentry) @@ -605,16 +591,14 @@ async def async_get_entry_subentries( ) ) - async def async_delete_entry_subentry( - self, entry_id: str, subentry_id: str - ) -> None: + async def delete_entry_subentry(self, entry_id: str, subentry_id: str) -> None: """ Delete a subentry from a config entry. Sends command :code:`{"type": "config_entries/subentries/delete", ...}`. """ - await self.async_recv( - await self.async_send( + await self.recv( + await self.send( "config_entries/subentries/delete", entry_id=entry_id, subentry_id=subentry_id, @@ -622,7 +606,7 @@ async def async_delete_entry_subentry( ) @contextlib.asynccontextmanager - async def async_listen_config_entries( + async def listen_config_entries( self, ) -> AsyncGenerator[AsyncGenerator[list[ConfigEntryEvent], None], None]: """ @@ -630,9 +614,7 @@ async def async_listen_config_entries( Sends command :code:`{"type": "config_entries/subscribe", ...}`. """ - subscription = ( - await self.async_recv(await self.async_send("config_entries/subscribe")) - ).id + subscription = (await self.recv(await self.send("config_entries/subscribe"))).id yield self._async_wait_for_config_entries(subscription) await self._async_unsubscribe(subscription) @@ -641,11 +623,11 @@ async def _async_wait_for_config_entries( ) -> AsyncGenerator[list[ConfigEntryEvent], None]: """An async iterator that waits for config entry events.""" while True: - event_resp = cast(EventResponse, await self.async_recv(subscription_id)) + event_resp = cast(EventResponse, await self.recv(subscription_id)) entries = cast(list[dict[str, JSONType]], event_resp.event) yield [ConfigEntryEvent.from_json(entry) for entry in entries] - async def async_fire_event(self, event_type: str, **event_data) -> Context: + async def fire_event(self, event_type: str, **event_data) -> Context: """ Fire an event. @@ -659,8 +641,8 @@ async def async_fire_event(self, event_type: str, **event_data) -> Context: dict[str, dict[str, JSONType]], cast( ResultResponse, - await self.async_recv( - await self.async_send("fire_event", include_id=True, **params) + await self.recv( + await self.send("fire_event", include_id=True, **params) ), ).result, )["context"] diff --git a/homeassistant_api/rawbaseclient.py b/homeassistant_api/baseclient.py similarity index 94% rename from homeassistant_api/rawbaseclient.py rename to homeassistant_api/baseclient.py index a8a40d1c..67d621b1 100644 --- a/homeassistant_api/rawbaseclient.py +++ b/homeassistant_api/baseclient.py @@ -1,5 +1,6 @@ -"""Module for parent RawWrapper class""" +"""Module for parent BaseClient class""" +import urllib.parse as urlparse from datetime import datetime, timedelta from posixpath import join from typing import Dict, Iterable, Mapping, Optional, Tuple, Union @@ -10,7 +11,7 @@ from .models import Entity -class RawBaseClient: +class BaseClient: """Builds, and makes requests to the API""" api_url: str @@ -24,6 +25,9 @@ def __init__( *, global_request_kwargs: Optional[Mapping[str, str]] = None, ) -> None: + parsed = urlparse.urlparse(api_url) + if parsed.scheme not in {"http", "https"}: + raise ValueError(f"Unknown scheme {parsed.scheme} in {api_url}") if global_request_kwargs is None: global_request_kwargs = {} self.api_url = api_url @@ -85,7 +89,7 @@ def prepare_get_entity_histories_params( significant_changes_only: bool = False, ) -> Tuple[Dict[str, Optional[str]], str]: """ - Pre-logic for :py:meth:`Client.get_entity_histories` and :py:meth:`Client.async_get_entity_histories`. + Pre-logic for :py:meth:`Client.get_entity_histories` and :py:meth:`AsyncClient.get_entity_histories`. Ensure timestamps diff --git a/homeassistant_api/rawbasewebsocket.py b/homeassistant_api/basewebsocket.py similarity index 92% rename from homeassistant_api/rawbasewebsocket.py rename to homeassistant_api/basewebsocket.py index f959d502..cfdd4bea 100644 --- a/homeassistant_api/rawbasewebsocket.py +++ b/homeassistant_api/basewebsocket.py @@ -1,5 +1,6 @@ import logging import time +import urllib.parse as urlparse from typing import Optional, cast from pydantic import ValidationError @@ -19,7 +20,7 @@ logger = logging.getLogger(__name__) -class RawBaseWebsocketClient: +class BaseWebsocketClient: """Shared methods for Websocket clients.""" api_url: str @@ -30,6 +31,9 @@ class RawBaseWebsocketClient: _ping_responses: dict[int, PingResponse] def __init__(self, api_url: str, token: str) -> None: + parsed = urlparse.urlparse(api_url) + if parsed.scheme not in {"ws", "wss"}: + raise ValueError(f"Unknown scheme {parsed.scheme} in {api_url}") self.api_url = api_url self.token = token.strip() diff --git a/homeassistant_api/client.py b/homeassistant_api/client.py index c5ddd6eb..acda98d0 100644 --- a/homeassistant_api/client.py +++ b/homeassistant_api/client.py @@ -1,44 +1,434 @@ -"""Module containing the primary Client class.""" +"""Module for all interaction with homeassistant.""" +from __future__ import annotations + +import json import logging -import urllib.parse as urlparse -from typing import Any +from datetime import datetime +from posixpath import join +from typing import ( + Any, + Dict, + Generator, + List, + Literal, + Optional, + Tuple, + Union, + cast, +) + +import requests +import requests_cache -from .rawasyncclient import RawAsyncClient -from .rawclient import RawClient +from homeassistant_api.errors import BadTemplateError, RequestError, RequestTimeoutError +from homeassistant_api.models import ( + Domain, + Entity, + Event, + Group, + History, + LogbookEntry, + State, +) +from homeassistant_api.processing import Processing, ResponseType +from homeassistant_api.baseclient import BaseClient +from homeassistant_api.utils import JSONType, prepare_entity_id logger = logging.getLogger(__name__) -class Client(RawClient, RawAsyncClient): +class Client(BaseClient): """ - The all-in-one class to interact with Home Assistant! + The base object for interacting with Homeassistant via the REST API. :param api_url: The location of the api endpoint. e.g. :code:`http://localhost:8123/api` Required. :param token: The refresh or long lived access token to authenticate your requests. Required. - :param global_request_kwargs: A dictionary or dict-like object of kwargs to pass to :func:`requests.request` or :meth:`aiohttp.ClientSession.request`. Optional. - :param cache_session: A :py:class:`requests_cache.CachedSession` object to use for caching requests. Optional. - :param async_cache_session: A :py:class:`aiohttp_client_cache.CachedSession` object to use for caching requests. Optional. + :param global_request_kwargs: Kwargs to pass to :func:`requests.request` or :meth:`aiohttp.ClientSession.request`. Optional. """ # pylint: disable=line-too-long + cache_session: Union[requests_cache.CachedSession, requests.Session] + def __init__( self, - api_url: str, - token: str, - use_async: bool = False, + *args, + cache_session: Union[ + requests_cache.CachedSession, + Literal[False], + Literal[None], + ] = None, # Explicitly disable cache with cache_session=False verify_ssl: bool = True, - **kwargs: Any, - ) -> None: - parsed = urlparse.urlparse(api_url) - - if parsed.scheme in {"http", "https"}: - if use_async: - RawAsyncClient.__init__( - self, api_url, token, verify_ssl=verify_ssl, **kwargs - ) - else: - RawClient.__init__( - self, api_url, token, verify_ssl=verify_ssl, **kwargs + **kwargs, + ): + BaseClient.__init__(self, *args, **kwargs) + self.global_request_kwargs["verify"] = verify_ssl + if cache_session is False: + self.cache_session = requests.Session() + elif cache_session is None: + self.cache_session = requests_cache.CachedSession( + cache_name="default_cache", + backend="memory", + expire_after=300, + ) + else: + self.cache_session = cache_session + + def __enter__(self) -> "Client": + logger.debug("Entering cached requests session %r.", self.cache_session) + self.cache_session.__enter__() + self.check_api_running() + return self + + def __exit__(self, _, __, ___) -> None: + logger.debug("Exiting requests session %r", self.cache_session) + self.cache_session.close() + + def request( + self, + path: str, + *, + params: str = "", # should be a string of query parameters from construct_params() + method="GET", + headers: Optional[Dict[str, str]] = None, + decode_bytes: bool = True, + **kwargs, + ) -> Any: + """Base method for making requests to the api""" + try: + if self.global_request_kwargs is not None: + kwargs.update(self.global_request_kwargs) + logger.debug("%s request to %s", method, self.endpoint(path)) + resp = self.cache_session.request( + method, + self.endpoint(path) + f"?{params}" * bool(params), + headers=self.prepare_headers(headers), + **kwargs, + ) + except requests.exceptions.Timeout as err: + raise RequestTimeoutError( + f"Home Assistant did not respond in time (timeout: {kwargs.get('timeout', 300)} sec)", + url=self.endpoint(path) + f"?{params}" * bool(params), + ) from err + return self.response_logic(response=resp, decode_bytes=decode_bytes) + + def _dict_request(self, *args: Any, **kwargs: Any) -> dict: + data = self.request(*args, **kwargs) + if not isinstance(data, dict): + raise TypeError + return data + + def _list_request(self, *args: Any, **kwargs: Any) -> list: + data = self.request(*args, **kwargs) + if not isinstance(data, list): + raise TypeError + return data + + def _str_request(self, *args: Any, **kwargs: Any) -> str: + data = self.request(*args, **kwargs) + if not isinstance(data, str): + raise TypeError + return data + + @classmethod + def response_logic(cls, response: ResponseType, decode_bytes: bool = True) -> Any: + """Processes responses from the API and formats them""" + return Processing(response=response, decode_bytes=decode_bytes).process() + + # API information methods + def get_error_log(self) -> str: + """ + Returns the server error log as a string. + :code:`GET /api/error_log` + """ + return cast(str, self.request("error_log")) + + def get_config(self) -> dict[str, JSONType]: + """ + Returns the yaml configuration of homeassistant. + :code:`GET /api/config` + """ + return cast(dict[str, JSONType], self.request("config")) + + def get_logbook_entries( + self, + *args, + **kwargs, + ) -> Generator[LogbookEntry, None, None]: + """ + Returns a list of logbook entries from homeassistant. + :code:`GET /api/logbook/` + """ + params, url = self.prepare_get_logbook_entry_params(*args, **kwargs) + data = self.request( + url, params=self.construct_params(cast(Dict[str, Optional[str]], params)) + ) + for entry in data: + yield LogbookEntry.model_validate(entry) + + def get_entity_histories( + self, + entities: Optional[Tuple[Entity, ...]] = None, + start_timestamp: Optional[datetime] = None, + # Defaults to 1 day before. https://developers.home-assistant.io/docs/api/rest/ + end_timestamp: Optional[datetime] = None, + significant_changes_only: bool = False, + ) -> Generator[History, None, None]: + """ + Yields entity state histories. See docs on the :py:class:`History` model. + :code:`GET /api/history/period/` + """ + params, url = self.prepare_get_entity_histories_params( + entities=entities, + start_timestamp=start_timestamp, + end_timestamp=end_timestamp, + significant_changes_only=significant_changes_only, + ) + data = self.request( + url, + params=self.construct_params(params), + ) + for states in data: + yield History.model_validate({"states": states}) + + def get_rendered_template(self, template: str) -> str: + """ + Renders a Jinja2 template with Home Assistant context data. + See https://www.home-assistant.io/docs/configuration/templating. + :code:`POST /api/template` + """ + try: + return cast( + str, + self.request( + "template", + json=dict(template=template), + method="POST", + ), + ) + except RequestError as err: + raise BadTemplateError( + "Your template is invalid. " + "Try debugging it in the developer tools page of homeassistant." + ) from err + + # API check methods + def check_api_config(self) -> bool: + """ + Asks Home Assistant to validate its configuration file. + :code:`POST /api/config/core/check_config` + """ + res = cast( + dict[str, str], self.request("config/core/check_config", method="POST") + ) + valid = {"valid": True, "invalid": False}.get(res["result"], False) + return valid + + def check_api_running(self) -> bool: + """ + Asks Home Assistant if it is running. + :code:`GET /api/` + """ + res = self.request("") + return cast(dict[str, JSONType], res).get("message") == "API running." + + # Entity methods + def get_entities(self) -> Dict[str, Group]: + """ + Fetches all entities from the api and returns them as a dictionary of :py:class:`Group`'s. + :code:`GET /api/states` + """ + entities: Dict[str, Group] = {} + for state in self.get_states(): + group_id, entity_slug = state.entity_id.split(".") + if group_id not in entities: + entities[group_id] = Group( + group_id=group_id, + _client=self, # type: ignore[arg-type] ) + entities[group_id]._add_entity(entity_slug, state) + return entities + + def get_entity( + self, + group_id: Optional[str] = None, + slug: Optional[str] = None, + entity_id: Optional[str] = None, + ) -> Optional[Entity]: + """ + Returns an :py:class:`Entity` model for an :code:`entity_id`. + :code:`GET /api/states/` + """ + if group_id is not None and slug is not None: + state = self.get_state(group_id=group_id, slug=slug) + elif entity_id is not None: + state = self.get_state(entity_id=entity_id) else: - raise ValueError(f"Unknown scheme {parsed.scheme} in {api_url}") + help_msg = ( + "Use keyword arguments to pass entity_id. " + "Or you can pass the group_id and slug instead" + ) + raise ValueError( + f"Neither group_id and slug or entity_id provided. {help_msg}" + ) + split_group_id, split_slug = state.entity_id.split(".") + group = Group( + group_id=split_group_id, + _client=self, # type: ignore[arg-type] + ) + group._add_entity(split_slug, state) + return group.get_entity(split_slug) + + # Services and domain methods + def get_domains(self) -> Dict[str, Domain]: + """ + Fetches all :py:class:`Service` 's from the API. + :code:`GET /api/services` + """ + data = self.request("services") + domains = map( + lambda json: Domain.from_json_with_client(json, client=cast(Client, self)), + cast(Tuple[dict[str, JSONType], ...], data), + ) + return {domain.domain_id: domain for domain in domains} + + def get_domain(self, domain_id: str) -> Optional[Domain]: + """ + Fetches all :py:class:`Service`'s under a particular service :py:class:`Domain`. + Uses cached data from :py:meth:`get_domains` if available. + """ + return self.get_domains().get(domain_id) + + def trigger_service( + self, + domain: str, + service: str, + **service_data, + ) -> Tuple[State, ...]: + """ + Tells Home Assistant to trigger a service, returns all states changed while in the process of being called. + :code:`POST /api/services//` + """ + data = self.request( + join("services", domain, service), + method="POST", + json=service_data, + ) + return tuple(map(State.from_json, cast(List[dict[str, JSONType]], data))) + + def trigger_service_with_response( + self, + domain: str, + service: str, + **service_data, + ) -> tuple[tuple[State, ...], dict[str, JSONType]]: + """ + Tells Home Assistant to trigger a service, returns the response from the service call. + :code:`POST /api/services//` + + Returns a list of the states changed and the response from the service call. + """ + data = cast( + dict[str, dict[str, JSONType]], + self.request( + join("services", domain, service) + "?return_response", + method="POST", + json=service_data, + ), + ) + states = tuple( + map( + State.from_json, + cast(List[Dict[Any, Any]], data.get("changed_states", [])), + ) + ) + return states, data.get("service_response", {}) + + # EntityState methods + def get_state( # pylint: disable=duplicate-code + self, + *, + entity_id: Optional[str] = None, + group_id: Optional[str] = None, + slug: Optional[str] = None, + ) -> State: + """ + Fetches the state of the entity specified. + :code:`GET /api/states/` + """ + entity_id = prepare_entity_id( + group_id=group_id, + slug=slug, + entity_id=entity_id, + ) + data = self.request(join("states", entity_id)) + return State.from_json(cast(dict[str, JSONType], data)) + + def set_state( # pylint: disable=duplicate-code + self, + state: State, + ) -> State: + """ + This method sets the representation of a device within Home Assistant and will not communicate with the actual device. + To communicate with the device, use :py:meth:`Service.trigger` or :py:meth:`Service.async_trigger`. + :code:`POST /api/states/` + """ + data = self.request( + join("states", state.entity_id), + method="POST", + json=json.loads(state.model_dump_json()), + ) + return State.from_json(cast(dict[str, JSONType], data)) + + def get_states(self) -> Tuple[State, ...]: + """ + Gets the states of all entities within homeassistant. + :code:`GET /api/states` + """ + data = self.request("states") + states = map(State.from_json, cast(List[dict[str, JSONType]], data)) + return tuple(states) + + # Event methods + def get_events(self) -> Tuple[Event, ...]: + """ + Gets the Events that happen within homeassistant + :code:`GET /api/events` + """ + data = self.request("events") + return tuple( + map( + lambda json: Event.from_json_with_client( + json, client=cast(Client, self) + ), + cast(List[dict[str, JSONType]], data), + ) + ) + + def get_event(self, name: str) -> Optional[Event]: + """ + Gets the :py:class:`Event` with the specified name if it has at least one listener. + Uses cached data from :py:meth:`get_events` if available. + """ + for event in self.get_events(): + if event.event == name.strip().lower(): + return event + return None + + def fire_event(self, event_type: str, **event_data) -> Optional[str]: + """ + Fires a given event_type within homeassistant. Must be an existing event_type. + `POST /api/events/` + """ + data = self.request( + join("events", event_type), + method="POST", + json=event_data, + ) + return cast(dict[str, str], data).get("message") + + def get_components(self) -> Tuple[str, ...]: + """ + Returns a tuple of all registered components. + :code:`GET /api/components` + """ + return tuple(self.request("components")) diff --git a/homeassistant_api/models/domains.py b/homeassistant_api/models/domains.py index 467defe0..aa353b5d 100644 --- a/homeassistant_api/models/domains.py +++ b/homeassistant_api/models/domains.py @@ -622,13 +622,13 @@ async def async_trigger( ]: """Triggers the service associated with this object.""" try: - return await self.domain._client.async_trigger_service_with_response( + return await self.domain._client.trigger_service_with_response( self.domain.domain_id, self.service_id, **service_data, ) except RequestError: - return await self.domain._client.async_trigger_service( + return await self.domain._client.trigger_service( self.domain.domain_id, self.service_id, **service_data, diff --git a/homeassistant_api/models/entity.py b/homeassistant_api/models/entity.py index 70cab66b..84299fd3 100644 --- a/homeassistant_api/models/entity.py +++ b/homeassistant_api/models/entity.py @@ -93,7 +93,7 @@ def get_history( async def async_get_state(self) -> State: """Asks Home Assistant for the state of the entity and sets it locally""" - self.state = await self.group._client.async_get_state( + self.state = await self.group._client.get_state( group_id=self.group.group_id, slug=self.slug, ) @@ -101,7 +101,7 @@ async def async_get_state(self) -> State: async def async_update_state(self) -> State: """Tells Home Assistant to set the current local State object.""" - self.state = await self.group._client.async_set_state(self.state) + self.state = await self.group._client.set_state(self.state) return self.state async def async_get_history( @@ -114,7 +114,7 @@ async def async_get_history( """ Gets the :py:class:`History` of previous :py:class:`State`'s of the :py:class:`Entity`. """ - async for history in self.group._client.async_get_entity_histories( + async for history in self.group._client.get_entity_histories( entities=(self,), start_timestamp=start_timestamp, end_timestamp=end_timestamp, diff --git a/homeassistant_api/models/events.py b/homeassistant_api/models/events.py index a80f9b36..9aaf9c36 100644 --- a/homeassistant_api/models/events.py +++ b/homeassistant_api/models/events.py @@ -38,7 +38,7 @@ def fire(self, **event_data) -> Optional[str]: async def async_fire(self, **event_data) -> str: """Fires the event type in homeassistant. Ex. `on_startup`""" - return await self._client.async_fire_event(self.event, **event_data) + return await self._client.fire_event(self.event, **event_data) @classmethod @override diff --git a/homeassistant_api/rawclient.py b/homeassistant_api/rawclient.py deleted file mode 100644 index afe8e64f..00000000 --- a/homeassistant_api/rawclient.py +++ /dev/null @@ -1,423 +0,0 @@ -"""Module for all interaction with homeassistant.""" - -from __future__ import annotations - -import json -import logging -from datetime import datetime -from posixpath import join -from typing import ( - TYPE_CHECKING, - Any, - Dict, - Generator, - List, - Literal, - Optional, - Tuple, - Union, - cast, -) - -import requests -import requests_cache - -from homeassistant_api.errors import BadTemplateError, RequestError, RequestTimeoutError -from homeassistant_api.models import ( - Domain, - Entity, - Event, - Group, - History, - LogbookEntry, - State, -) -from homeassistant_api.processing import Processing, ResponseType -from homeassistant_api.rawbaseclient import RawBaseClient -from homeassistant_api.utils import JSONType, prepare_entity_id - -if TYPE_CHECKING: - from homeassistant_api import Client -else: - Client = None # pylint: disable=invalid-name - - -logger = logging.getLogger(__name__) - - -class RawClient(RawBaseClient): - """ - The base object for interacting with Homeassistant via the REST API. - - :param api_url: The location of the api endpoint. e.g. :code:`http://localhost:8123/api` Required. - :param token: The refresh or long lived access token to authenticate your requests. Required. - :param global_request_kwargs: Kwargs to pass to :func:`requests.request` or :meth:`aiohttp.ClientSession.request`. Optional. - """ # pylint: disable=line-too-long - - cache_session: Union[requests_cache.CachedSession, requests.Session] - - def __init__( - self, - *args, - cache_session: Union[ - requests_cache.CachedSession, - Literal[False], - Literal[None], - ] = None, # Explicitly disable cache with cache_session=False - verify_ssl: bool = True, - **kwargs, - ): - RawBaseClient.__init__(self, *args, **kwargs) - self.global_request_kwargs["verify"] = verify_ssl - if cache_session is False: - self.cache_session = requests.Session() - elif cache_session is None: - self.cache_session = requests_cache.CachedSession( - cache_name="default_cache", - backend="memory", - expire_after=300, - ) - else: - self.cache_session = cache_session - - def __enter__(self) -> "RawClient": - logger.debug("Entering cached requests session %r.", self.cache_session) - self.cache_session.__enter__() - self.check_api_running() - return self - - def __exit__(self, _, __, ___) -> None: - logger.debug("Exiting requests session %r", self.cache_session) - self.cache_session.close() - - def request( - self, - path: str, - *, - params: str = "", # should be a string of query parameters from construct_params() - method="GET", - headers: Optional[Dict[str, str]] = None, - decode_bytes: bool = True, - **kwargs, - ) -> Any: - """Base method for making requests to the api""" - try: - if self.global_request_kwargs is not None: - kwargs.update(self.global_request_kwargs) - logger.debug("%s request to %s", method, self.endpoint(path)) - resp = self.cache_session.request( - method, - self.endpoint(path) + f"?{params}" * bool(params), - headers=self.prepare_headers(headers), - **kwargs, - ) - except requests.exceptions.Timeout as err: - raise RequestTimeoutError( - f"Home Assistant did not respond in time (timeout: {kwargs.get('timeout', 300)} sec)", - url=self.endpoint(path) + f"?{params}" * bool(params), - ) from err - return self.response_logic(response=resp, decode_bytes=decode_bytes) - - @classmethod - def response_logic(cls, response: ResponseType, decode_bytes: bool = True) -> Any: - """Processes responses from the API and formats them""" - return Processing(response=response, decode_bytes=decode_bytes).process() - - # API information methods - def get_error_log(self) -> str: - """ - Returns the server error log as a string. - :code:`GET /api/error_log` - """ - return cast(str, self.request("error_log")) - - def get_config(self) -> dict[str, JSONType]: - """ - Returns the yaml configuration of homeassistant. - :code:`GET /api/config` - """ - return cast(dict[str, JSONType], self.request("config")) - - def get_logbook_entries( - self, - *args, - **kwargs, - ) -> Generator[LogbookEntry, None, None]: - """ - Returns a list of logbook entries from homeassistant. - :code:`GET /api/logbook/` - """ - params, url = self.prepare_get_logbook_entry_params(*args, **kwargs) - data = self.request( - url, params=self.construct_params(cast(Dict[str, Optional[str]], params)) - ) - for entry in data: - yield LogbookEntry.model_validate(entry) - - def get_entity_histories( - self, - entities: Optional[Tuple[Entity, ...]] = None, - start_timestamp: Optional[datetime] = None, - # Defaults to 1 day before. https://developers.home-assistant.io/docs/api/rest/ - end_timestamp: Optional[datetime] = None, - significant_changes_only: bool = False, - ) -> Generator[History, None, None]: - """ - Yields entity state histories. See docs on the :py:class:`History` model. - :code:`GET /api/history/period/` - """ - params, url = self.prepare_get_entity_histories_params( - entities=entities, - start_timestamp=start_timestamp, - end_timestamp=end_timestamp, - significant_changes_only=significant_changes_only, - ) - data = self.request( - url, - params=self.construct_params(params), - ) - for states in data: - yield History.model_validate({"states": states}) - - def get_rendered_template(self, template: str) -> str: - """ - Renders a Jinja2 template with Home Assistant context data. - See https://www.home-assistant.io/docs/configuration/templating. - :code:`POST /api/template` - """ - try: - return cast( - str, - self.request( - "template", - json=dict(template=template), - method="POST", - ), - ) - except RequestError as err: - raise BadTemplateError( - "Your template is invalid. " - "Try debugging it in the developer tools page of homeassistant." - ) from err - - # API check methods - def check_api_config(self) -> bool: - """ - Asks Home Assistant to validate its configuration file. - :code:`POST /api/config/core/check_config` - """ - res = cast( - dict[str, str], self.request("config/core/check_config", method="POST") - ) - valid = {"valid": True, "invalid": False}.get(res["result"], False) - return valid - - def check_api_running(self) -> bool: - """ - Asks Home Assistant if it is running. - :code:`GET /api/` - """ - res = self.request("") - return cast(dict[str, JSONType], res).get("message") == "API running." - - # Entity methods - def get_entities(self) -> Dict[str, Group]: - """ - Fetches all entities from the api and returns them as a dictionary of :py:class:`Group`'s. - :code:`GET /api/states` - """ - entities: Dict[str, Group] = {} - for state in self.get_states(): - group_id, entity_slug = state.entity_id.split(".") - if group_id not in entities: - entities[group_id] = Group( - group_id=group_id, - _client=self, # type: ignore[arg-type] - ) - entities[group_id]._add_entity(entity_slug, state) - return entities - - def get_entity( - self, - group_id: Optional[str] = None, - slug: Optional[str] = None, - entity_id: Optional[str] = None, - ) -> Optional[Entity]: - """ - Returns an :py:class:`Entity` model for an :code:`entity_id`. - :code:`GET /api/states/` - """ - if group_id is not None and slug is not None: - state = self.get_state(group_id=group_id, slug=slug) - elif entity_id is not None: - state = self.get_state(entity_id=entity_id) - else: - help_msg = ( - "Use keyword arguments to pass entity_id. " - "Or you can pass the group_id and slug instead" - ) - raise ValueError( - f"Neither group_id and slug or entity_id provided. {help_msg}" - ) - split_group_id, split_slug = state.entity_id.split(".") - group = Group( - group_id=split_group_id, - _client=self, # type: ignore[arg-type] - ) - group._add_entity(split_slug, state) - return group.get_entity(split_slug) - - # Services and domain methods - def get_domains(self) -> Dict[str, Domain]: - """ - Fetches all :py:class:`Service` 's from the API. - :code:`GET /api/services` - """ - data = self.request("services") - domains = map( - lambda json: Domain.from_json_with_client(json, client=cast(Client, self)), - cast(Tuple[dict[str, JSONType], ...], data), - ) - return {domain.domain_id: domain for domain in domains} - - def get_domain(self, domain_id: str) -> Optional[Domain]: - """ - Fetches all :py:class:`Service`'s under a particular service :py:class:`Domain`. - Uses cached data from :py:meth:`get_domains` if available. - """ - return self.get_domains().get(domain_id) - - def trigger_service( - self, - domain: str, - service: str, - **service_data, - ) -> Tuple[State, ...]: - """ - Tells Home Assistant to trigger a service, returns all states changed while in the process of being called. - :code:`POST /api/services//` - """ - data = self.request( - join("services", domain, service), - method="POST", - json=service_data, - ) - return tuple(map(State.from_json, cast(List[dict[str, JSONType]], data))) - - def trigger_service_with_response( - self, - domain: str, - service: str, - **service_data, - ) -> tuple[tuple[State, ...], dict[str, JSONType]]: - """ - Tells Home Assistant to trigger a service, returns the response from the service call. - :code:`POST /api/services//` - - Returns a list of the states changed and the response from the service call. - """ - data = cast( - dict[str, dict[str, JSONType]], - self.request( - join("services", domain, service) + "?return_response", - method="POST", - json=service_data, - ), - ) - states = tuple( - map( - State.from_json, - cast(List[Dict[Any, Any]], data.get("changed_states", [])), - ) - ) - return states, data.get("service_response", {}) - - # EntityState methods - def get_state( # pylint: disable=duplicate-code - self, - *, - entity_id: Optional[str] = None, - group_id: Optional[str] = None, - slug: Optional[str] = None, - ) -> State: - """ - Fetches the state of the entity specified. - :code:`GET /api/states/` - """ - entity_id = prepare_entity_id( - group_id=group_id, - slug=slug, - entity_id=entity_id, - ) - data = self.request(join("states", entity_id)) - return State.from_json(cast(dict[str, JSONType], data)) - - def set_state( # pylint: disable=duplicate-code - self, - state: State, - ) -> State: - """ - This method sets the representation of a device within Home Assistant and will not communicate with the actual device. - To communicate with the device, use :py:meth:`Service.trigger` or :py:meth:`Service.async_trigger`. - :code:`POST /api/states/` - """ - data = self.request( - join("states", state.entity_id), - method="POST", - json=json.loads(state.model_dump_json()), - ) - return State.from_json(cast(dict[str, JSONType], data)) - - def get_states(self) -> Tuple[State, ...]: - """ - Gets the states of all entities within homeassistant. - :code:`GET /api/states` - """ - data = self.request("states") - states = map(State.from_json, cast(List[dict[str, JSONType]], data)) - return tuple(states) - - # Event methods - def get_events(self) -> Tuple[Event, ...]: - """ - Gets the Events that happen within homeassistant - :code:`GET /api/events` - """ - data = self.request("events") - return tuple( - map( - lambda json: Event.from_json_with_client( - json, client=cast(Client, self) - ), - cast(List[dict[str, JSONType]], data), - ) - ) - - def get_event(self, name: str) -> Optional[Event]: - """ - Gets the :py:class:`Event` with the specified name if it has at least one listener. - Uses cached data from :py:meth:`get_events` if available. - """ - for event in self.get_events(): - if event.event == name.strip().lower(): - return event - return None - - def fire_event(self, event_type: str, **event_data) -> Optional[str]: - """ - Fires a given event_type within homeassistant. Must be an existing event_type. - `POST /api/events/` - """ - data = self.request( - join("events", event_type), - method="POST", - json=event_data, - ) - return cast(dict[str, str], data).get("message") - - def get_components(self) -> Tuple[str, ...]: - """ - Returns a tuple of all registered components. - :code:`GET /api/components` - """ - return tuple(self.request("components")) diff --git a/homeassistant_api/rawwebsocket.py b/homeassistant_api/rawwebsocket.py deleted file mode 100644 index 3e71d85a..00000000 --- a/homeassistant_api/rawwebsocket.py +++ /dev/null @@ -1,639 +0,0 @@ -import contextlib -import json -import logging -import time -from typing import TYPE_CHECKING, Any, Dict, Generator, Optional, Tuple, Union, cast - -import websockets.sync.client as ws -from pydantic import ValidationError - -from homeassistant_api.errors import ( - ReceivingError, - ResponseError, - UnauthorizedError, -) -from homeassistant_api.models import ( - ConfigEntry, - ConfigEntryEvent, - ConfigSubEntry, - Domain, - Entity, - Group, - State, -) -from homeassistant_api.models.config_entries import DisableEnableResult, FlowResult -from homeassistant_api.models.states import Context -from homeassistant_api.models.websocket import ( - AuthInvalid, - AuthOk, - AuthRequired, - EventResponse, - FiredEvent, - FiredTrigger, - PingResponse, - ResultResponse, - TemplateEvent, -) -from homeassistant_api.rawbasewebsocket import RawBaseWebsocketClient -from homeassistant_api.utils import JSONType, prepare_entity_id - -if TYPE_CHECKING: - from homeassistant_api import WebsocketClient -else: - WebsocketClient = None # pylint: disable=invalid-name - -logger = logging.getLogger(__name__) - - -class RawWebsocketClient(RawBaseWebsocketClient): - _conn: Optional[ws.ClientConnection] - - def __init__(self, api_url: str, token: str) -> None: - super().__init__(api_url, token) - self._conn = None - - self._id_counter = 0 - self._result_responses: dict[ - int, Optional[ResultResponse] - ] = {} # id -> response - self._event_responses: dict[ - int, list[EventResponse] - ] = {} # id -> [response, ...] - self._ping_responses: dict[int, PingResponse] = {} # id -> (sent, received) - - def __repr__(self) -> str: - return f"{self.__class__.__name__}({self.api_url!r})" - - def __enter__(self): - self._conn = ws.connect(self.api_url) - self._conn.__enter__() - okay = self.authentication_phase() - logging.info("Authenticated with Home Assistant (%s)", okay.ha_version) - self.supported_features_phase() - return self - - def __exit__(self, exc_type, exc_value, traceback): - if not self._conn: - raise ReceivingError("Connection is not open!") - self._conn.__exit__(exc_type, exc_value, traceback) - self._conn = None - - def _send(self, data: dict[str, JSONType]) -> None: - """Send a message to the websocket server.""" - logger.debug(f"Sending message: {data}") - if self._conn is None: - raise ReceivingError("Connection is not open!") - self._conn.send(json.dumps(data)) - - def _recv(self) -> dict[str, JSONType]: - """Receive a message from the websocket server.""" - if self._conn is None: - raise ReceivingError("Connection is not open!") - _bytes = self._conn.recv() - logger.debug("Received message: %s", _bytes) - return cast(dict[str, JSONType], json.loads(_bytes)) - - def send(self, type: str, include_id: bool = True, **data: Any) -> int: - """ - Send a command message to the websocket server and wait for a "result" response. - - Returns the id of the message sent. - """ - if include_id: # auth messages don't have an id - data["id"] = self._request_id() - - data["type"] = type - self._send(data) - - if "id" in data: - assert isinstance(data["id"], int) - if data["type"] == "ping": - self._ping_responses[data["id"]] = PingResponse( - start=time.perf_counter_ns(), - id=data["id"], - type="pong", - ) - else: - self._event_responses[data["id"]] = [] - self._result_responses[data["id"]] = None - return data["id"] - return -1 # non-command messages don't have an id - - def recv(self, id: int) -> Union[EventResponse, ResultResponse, PingResponse]: - """Receive a response to a message from the websocket server.""" - while True: - ## have we received a message with the id we're looking for? - if self._result_responses.get(id) is not None: - return cast(dict[int, ResultResponse], self._result_responses).pop( - id - ) # ughhh why can't mypy figure this out - if self._event_responses.get(id, []): - return self._event_responses[id].pop(0) - if self._ping_responses.get(id) is not None: - if self._ping_responses[id].end is not None: - return self._ping_responses.pop(id) - - ## if not, keep receiving messages until we do - self.handle_recv(self._recv()) - - def authentication_phase(self) -> AuthOk: - """Authenticate with the websocket server.""" - # Capture the first message from the server saying we need to authenticate - try: - welcome = AuthRequired.model_validate(self._recv()) - logger.debug(f"Received welcome message: {welcome}") - except ValidationError as e: - raise ResponseError("Unexpected response during authentication") from e - - # Send our authentication token - self.send("auth", access_token=self.token, include_id=False) - logger.debug("Sent auth message") - - # Check the response - resp = self._recv() - try: - return AuthOk.model_validate(resp) - except ValidationError as e: - error_resp = AuthInvalid.model_validate(resp) - raise UnauthorizedError(error_resp.message) from e - except Exception as e: - raise ResponseError( - "Unexpected response during authentication", resp["message"] - ) from e - - def supported_features_phase(self) -> None: - """Get the supported features from the websocket server.""" - resp = self.recv( - self.send( - "supported_features", - features={ - # "coalesce_messages": 42, # including this key sets it to True - }, - ) - ) - assert cast(ResultResponse, resp).result is None - - def ping_latency(self) -> float: - """Get the latency (in milliseconds) of the connection by sending a ping message.""" - pong = cast(PingResponse, self.recv(self.send("ping"))) - assert pong.end is not None - return (pong.end - pong.start) / 1_000_000 - - def get_rendered_template(self, template: str) -> str: - """ - Renders a Jinja2 template with Home Assistant context data. - See https://www.home-assistant.io/docs/configuration/templating. - - Sends command :code:`{"type": "render_template", ...}`. - """ - id = self.send("render_template", template=template, report_errors=True) - first = self.recv(id) - assert cast(ResultResponse, first).result is None - second = self.recv(id) - self._unsubscribe(id) - return cast(TemplateEvent, cast(EventResponse, second).event).result - - def get_config(self) -> dict[str, JSONType]: - """ - Get the Home Assistant configuration. - - Sends command :code:`{"type": "get_config", ...}`. - """ - return cast( - dict[str, JSONType], - cast( - ResultResponse, - self.recv(self.send("get_config")), - ).result, - ) - - def get_states(self) -> Tuple[State, ...]: - """ - Get a list of states. - - Sends command :code:`{"type": "get_states", ...}`. - """ - return tuple( - State.from_json(state) - for state in cast( - list[dict[str, JSONType]], - cast(ResultResponse, self.recv(self.send("get_states"))).result, - ) - ) - - def get_state( # pylint: disable=duplicate-code - self, - *, - entity_id: Optional[str] = None, - group_id: Optional[str] = None, - slug: Optional[str] = None, - ) -> State: - """ - Just calls the :py:meth:`get_states` method and filters the result. - - Please tell home-assistant/core to add a :code:`{"type": "get_state", ...}` command to the WS API! - There is a lot of disappointment and frustration in the community because this is not available. - """ - entity_id = prepare_entity_id( - group_id=group_id, - slug=slug, - entity_id=entity_id, - ) - - for state in self.get_states(): - if state.entity_id == entity_id: - return state - raise ValueError(f"Entity {entity_id} not found!") - - def get_entities(self) -> Dict[str, Group]: - """ - Fetches all entities from the Websocket API and returns them as a dictionary of :py:class:`Group`'s. - For example :code:`light.living_room` would be in the group :code:`light` (i.e. :code:`get_entities()["light"].living_room`). - """ - entities: Dict[str, Group] = {} - for state in self.get_states(): - group_id, entity_slug = state.entity_id.split(".") - if group_id not in entities: - entities[group_id] = Group( - group_id=group_id, - _client=self, # type: ignore[arg-type] - ) - entities[group_id]._add_entity(entity_slug, state) - return entities - - def get_entity( - self, - group_id: Optional[str] = None, - slug: Optional[str] = None, - entity_id: Optional[str] = None, - ) -> Optional[Entity]: - """ - Returns an :py:class:`Entity` model for an :code:`entity_id`. - - Calls :py:meth:`get_states` under the hood. - - Please tell home-assistant/core to add a :code:`{"type": "get_state", ...}` command to the WS API! - There is a lot of disappointment and frustration in the community because this is not available. - """ - if group_id is not None and slug is not None: - state = self.get_state(group_id=group_id, slug=slug) - elif entity_id is not None: - state = self.get_state(entity_id=entity_id) - else: - help_msg = ( - "Use keyword arguments to pass entity_id. " - "Or you can pass the group_id and slug instead" - ) - raise ValueError( - f"Neither group_id and slug or entity_id provided. {help_msg}" - ) - split_group_id, split_slug = state.entity_id.split(".") - group = Group( - group_id=split_group_id, - _client=self, # type: ignore[arg-type] - ) - group._add_entity(split_slug, state) - return group.get_entity(split_slug) - - def get_domains(self) -> dict[str, Domain]: - """ - Get a list of services that Home Assistant offers (organized into a dictionary of service domains). - - For example, the service :code:`light.turn_on` would be in the domain :code:`light`. - - Sends command :code:`{"type": "get_services", ...}`. - """ - resp = self.recv(self.send("get_services")) - domains = map( - lambda item: Domain.from_json_with_client( - {"domain": item[0], "services": item[1]}, - client=cast(WebsocketClient, self), - ), - cast(dict[str, JSONType], cast(ResultResponse, resp).result).items(), - ) - return {domain.domain_id: domain for domain in domains} - - def get_domain(self, domain: str) -> Domain: - """Get a domain. - - Note: This is not a method in the WS API client... yet. - - Please tell home-assistant/core to add a `get_domain` command to the WS API! - - For now, just call the :py:meth":`get_domains` method and parsing the result. - """ - return self.get_domains()[domain] - - def trigger_service( - self, - domain: str, - service: str, - entity_id: Optional[str] = None, - **service_data, - ) -> None: - """ - Trigger a service (that doesn't return a response). - - Sends command :code:`{"type": "call_service", ...}`. - """ - params = { - "domain": domain, - "service": service, - "service_data": service_data, - "return_response": False, - } - if entity_id is not None: - params["target"] = {"entity_id": entity_id} - - data = self.recv(self.send("call_service", include_id=True, **params)) - - # TODO: handle data["result"]["context"] ? - - assert ( - cast( - dict[str, JSONType], - cast(ResultResponse, data).result, - ).get("response") - is None - ) # should always be None for services without a response - - def trigger_service_with_response( - self, - domain: str, - service: str, - entity_id: Optional[str] = None, - **service_data, - ) -> dict[str, JSONType]: - """ - Trigger a service (that returns a response) and return the response. - - Sends command :code:`{"type": "call_service", ...}`. - """ - params = { - "domain": domain, - "service": service, - "service_data": service_data, - "return_response": True, - } - if entity_id is not None: - params["target"] = {"entity_id": entity_id} - - data = self.recv(self.send("call_service", include_id=True, **params)) - - return cast(dict[str, dict[str, JSONType]], cast(ResultResponse, data).result)[ - "response" - ] - - @contextlib.contextmanager - def listen_events( - self, - event_type: Optional[str] = None, - ) -> Generator[Generator[FiredEvent, None, None], None, None]: - """ - Listen for all events of a certain type. - - For example, to listen for all events of type `test_event`: - - .. code-block:: python - - with ws_client.listen_events("test_event") as events: - for i, event in zip(range(2), events): # to only wait for two events to be received - print(event) - """ - subscription = self._subscribe_events(event_type) - yield cast(Generator[FiredEvent, None, None], self._wait_for(subscription)) - self._unsubscribe(subscription) - - def _subscribe_events(self, event_type: Optional[str]) -> int: - """ - Subscribe to all events of a certain type. - - - Sends command :code:`{"type": "subscribe_events", ...}`. - """ - params = {"event_type": event_type} if event_type else {} - return self.recv(self.send("subscribe_events", include_id=True, **params)).id - - @contextlib.contextmanager - def listen_trigger( - self, trigger: str, **trigger_fields - ) -> Generator[Generator[dict[str, JSONType], None, None], None, None]: - """ - Listen to a Home Assistant trigger. - Allows additional trigger keyword parameters with :code:`**kwargs` (i.e. passing :code:`tag_id=...` for NFC tag triggers). - - For example, in Home Assistant Automations we can subscribe to a state trigger for a light entity with YAML: - - .. code-block:: yaml - - triggers: - # ... - - trigger: state - entity_id: light.kitchen - - To subscribe to that same state trigger with :py:class:`WebsocketClient` instead - - .. code-block:: python - - with ws_client.listen_trigger("state", entity_id="light.kitchen") as trigger: - for event in trigger: # will iterate until we manually break out of the loop - print(event) - if : - break - # exiting the context manager unsubscribes from the trigger - - Woohoo! We can now listen to triggers in Python code! - """ - subscription = self._subscribe_trigger(trigger, **trigger_fields) - yield ( - fired_trigger.variables - for fired_trigger in cast( - Generator[FiredTrigger, None, None], - self._wait_for(subscription), - ) - ) - self._unsubscribe(subscription) - - def _subscribe_trigger(self, trigger: str, **trigger_fields) -> int: - """ - Return the subscription id of the trigger we subscribe to. - - Sends command :code:`{"type": "subscribe_trigger", ...}`. - """ - return self.recv( - self.send( - "subscribe_trigger", trigger={"platform": trigger, **trigger_fields} - ) - ).id - - def _wait_for( - self, subscription_id: int - ) -> Generator[Union[FiredEvent, FiredTrigger], None, None]: - """ - An iterator that waits for events of a certain type. - """ - while True: - yield cast( - Union[ - FiredEvent, FiredTrigger - ], # we can cast this because TemplateEvent is only used for rendering templates - cast(EventResponse, self.recv(subscription_id)).event, - ) - - def _unsubscribe(self, subcription_id: int) -> None: - """ - Unsubscribe from all events of a certain type. - - Sends command :code:`{"type": "unsubscribe_events", ...}`. - """ - resp = self.recv(self.send("unsubscribe_events", subscription=subcription_id)) - assert cast(ResultResponse, resp).result is None - self._event_responses.pop(subcription_id) - - def get_config_entries(self) -> Tuple[ConfigEntry, ...]: - """ - Get all config entries. - - Sends command :code:`{"type": "config_entries/get", ...}`. - """ - resp = self.recv(self.send("config_entries/get")) - return tuple( - ConfigEntry.from_json(entry) - for entry in cast( - list[dict[str, JSONType]], - cast(ResultResponse, resp).result, - ) - ) - - def disable_config_entry(self, entry_id: str) -> DisableEnableResult: - """ - Disable a config entry. - - Sends command :code:`{"type": "config_entries/disable", ...}`. - """ - resp = self.recv( - self.send( - "config_entries/disable", - entry_id=entry_id, - disabled_by="user", - ) - ) - return DisableEnableResult.from_json( - cast(dict[str, JSONType], cast(ResultResponse, resp).result) - ) - - def enable_config_entry(self, entry_id: str) -> DisableEnableResult: - """ - Enable a config entry. - - Sends command :code:`{"type": "config_entries/disable", ...}`. - """ - resp = self.recv( - self.send( - "config_entries/disable", - entry_id=entry_id, - disabled_by=None, - ) - ) - return DisableEnableResult.from_json( - cast(dict[str, JSONType], cast(ResultResponse, resp).result) - ) - - def ignore_config_flow(self, flow_id: str, title: str) -> None: - """ - Ignore a config flow. - - Sends command :code:`{"type": "config_entries/ignore_flow", ...}`. - """ - self.recv( - self.send( - "config_entries/ignore_flow", - flow_id=flow_id, - title=title, - ) - ) - - def get_nonuser_flows_in_progress(self) -> Tuple[FlowResult, ...]: - """ - Get non-user config flows in progress. - - Sends command :code:`{"type": "config_entries/flow/progress", ...}`. - """ - resp = self.recv(self.send("config_entries/flow/progress")) - return tuple( - FlowResult.from_json(flow) - for flow in cast( - list[dict[str, JSONType]], - cast(ResultResponse, resp).result, - ) - ) - - def get_entry_subentries(self, entry_id: str) -> Tuple[ConfigSubEntry, ...]: - """ - Get subentries for a config entry. - - Sends command :code:`{"type": "config_entries/subentries/list", ...}`. - """ - resp = self.recv(self.send("config_entries/subentries/list", entry_id=entry_id)) - return tuple( - ConfigSubEntry.from_json(subentry) - for subentry in cast( - list[dict[str, JSONType]], - cast(ResultResponse, resp).result, - ) - ) - - def delete_entry_subentry(self, entry_id: str, subentry_id: str) -> None: - """ - Delete a subentry from a config entry. - - Sends command :code:`{"type": "config_entries/subentries/delete", ...}`. - """ - self.recv( - self.send( - "config_entries/subentries/delete", - entry_id=entry_id, - subentry_id=subentry_id, - ) - ) - - @contextlib.contextmanager - def listen_config_entries( - self, - ) -> Generator[Generator[list[ConfigEntryEvent], None, None], None, None]: - """ - Listen for config entry changes. - - Sends command :code:`{"type": "config_entries/subscribe", ...}`. - """ - subscription = self.recv(self.send("config_entries/subscribe")).id - yield self._wait_for_config_entries(subscription) - self._unsubscribe(subscription) - - def _wait_for_config_entries( - self, subscription_id: int - ) -> Generator[list[ConfigEntryEvent], None, None]: - """An iterator that waits for config entry events.""" - while True: - event_resp = cast(EventResponse, self.recv(subscription_id)) - entries = cast(list[dict[str, JSONType]], event_resp.event) - yield [ConfigEntryEvent.from_json(entry) for entry in entries] - - def fire_event(self, event_type: str, **event_data) -> Context: - """ - Fire an event. - - Sends command :code:`{"type": "fire_event", ...}`. - """ - params: dict[str, JSONType] = {"event_type": event_type} - if event_data: - params["event_data"] = event_data - return Context.from_json( - cast( - dict[str, dict[str, JSONType]], - cast( - ResultResponse, - self.recv(self.send("fire_event", include_id=True, **params)), - ).result, - )["context"] - ) diff --git a/homeassistant_api/websocket.py b/homeassistant_api/websocket.py index 5a4d0d0a..0c57a643 100644 --- a/homeassistant_api/websocket.py +++ b/homeassistant_api/websocket.py @@ -1,45 +1,634 @@ -"""Module containing the primary Client class.""" - +import contextlib +import json import logging -import urllib.parse as urlparse +import time +from typing import Any, Dict, Generator, Optional, Tuple, Union, cast + +import websockets.sync.client as ws +from pydantic import ValidationError -from .rawasyncwebsocket import RawAsyncWebsocketClient -from .rawwebsocket import RawWebsocketClient +from homeassistant_api.errors import ( + ReceivingError, + ResponseError, + UnauthorizedError, +) +from homeassistant_api.models import ( + ConfigEntry, + ConfigEntryEvent, + ConfigSubEntry, + Domain, + Entity, + Group, + State, +) +from homeassistant_api.models.config_entries import DisableEnableResult, FlowResult +from homeassistant_api.models.states import Context +from homeassistant_api.models.websocket import ( + AuthInvalid, + AuthOk, + AuthRequired, + EventResponse, + FiredEvent, + FiredTrigger, + PingResponse, + ResultResponse, + TemplateEvent, +) +from homeassistant_api.basewebsocket import BaseWebsocketClient +from homeassistant_api.utils import JSONType, prepare_entity_id logger = logging.getLogger(__name__) -class WebsocketClient(RawWebsocketClient, RawAsyncWebsocketClient): - """ +class WebsocketClient(BaseWebsocketClient): + _conn: Optional[ws.ClientConnection] + + def __init__(self, api_url: str, token: str) -> None: + super().__init__(api_url, token) + self._conn = None + + self._id_counter = 0 + self._result_responses: dict[ + int, Optional[ResultResponse] + ] = {} # id -> response + self._event_responses: dict[ + int, list[EventResponse] + ] = {} # id -> [response, ...] + self._ping_responses: dict[int, PingResponse] = {} # id -> (sent, received) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.api_url!r})" + + def __enter__(self): + self._conn = ws.connect(self.api_url) + self._conn.__enter__() + okay = self.authentication_phase() + logging.info("Authenticated with Home Assistant (%s)", okay.ha_version) + self.supported_features_phase() + return self - The main class for interacting with the Home Assistant WebSocket API client. + def __exit__(self, exc_type, exc_value, traceback): + if not self._conn: + raise ReceivingError("Connection is not open!") + self._conn.__exit__(exc_type, exc_value, traceback) + self._conn = None - Here's a quick example of how to use the :py:class:`WebsocketClient` class: + def _send(self, data: dict[str, JSONType]) -> None: + """Send a message to the websocket server.""" + logger.debug(f"Sending message: {data}") + if self._conn is None: + raise ReceivingError("Connection is not open!") + self._conn.send(json.dumps(data)) - .. code-block:: python + def _recv(self) -> dict[str, JSONType]: + """Receive a message from the websocket server.""" + if self._conn is None: + raise ReceivingError("Connection is not open!") + _bytes = self._conn.recv() + logger.debug("Received message: %s", _bytes) + return cast(dict[str, JSONType], json.loads(_bytes)) - from homeassistant_api import WebsocketClient + def send(self, type: str, include_id: bool = True, **data: Any) -> int: + """ + Send a command message to the websocket server and wait for a "result" response. - with WebsocketClient( - '', # i.e. 'ws://homeassistant.local:8123/api/websocket' - '' - ) as ws_client: - light = ws_client.trigger_service('light', 'turn_on', entity_id="light.living_room") - """ + Returns the id of the message sent. + """ + if include_id: # auth messages don't have an id + data["id"] = self._request_id() - def __init__(self, api_url: str, token: str, use_async: bool = False) -> None: - parsed = urlparse.urlparse(api_url) + data["type"] = type + self._send(data) - if parsed.scheme in {"ws", "wss"}: - if use_async: - RawAsyncWebsocketClient.__init__(self, api_url, token) - client_type = "Async" + if "id" in data: + assert isinstance(data["id"], int) + if data["type"] == "ping": + self._ping_responses[data["id"]] = PingResponse( + start=time.perf_counter_ns(), + id=data["id"], + type="pong", + ) else: - RawWebsocketClient.__init__(self, api_url, token) - client_type = "" + self._event_responses[data["id"]] = [] + self._result_responses[data["id"]] = None + return data["id"] + return -1 # non-command messages don't have an id + + def recv(self, id: int) -> Union[EventResponse, ResultResponse, PingResponse]: + """Receive a response to a message from the websocket server.""" + while True: + ## have we received a message with the id we're looking for? + if self._result_responses.get(id) is not None: + return cast(dict[int, ResultResponse], self._result_responses).pop( + id + ) # ughhh why can't mypy figure this out + if self._event_responses.get(id, []): + return self._event_responses[id].pop(0) + if self._ping_responses.get(id) is not None: + if self._ping_responses[id].end is not None: + return self._ping_responses.pop(id) + + ## if not, keep receiving messages until we do + self.handle_recv(self._recv()) + + def authentication_phase(self) -> AuthOk: + """Authenticate with the websocket server.""" + # Capture the first message from the server saying we need to authenticate + try: + welcome = AuthRequired.model_validate(self._recv()) + logger.debug(f"Received welcome message: {welcome}") + except ValidationError as e: + raise ResponseError("Unexpected response during authentication") from e + + # Send our authentication token + self.send("auth", access_token=self.token, include_id=False) + logger.debug("Sent auth message") + + # Check the response + resp = self._recv() + try: + return AuthOk.model_validate(resp) + except ValidationError as e: + error_resp = AuthInvalid.model_validate(resp) + raise UnauthorizedError(error_resp.message) from e + except Exception as e: + raise ResponseError( + "Unexpected response during authentication", resp["message"] + ) from e + + def supported_features_phase(self) -> None: + """Get the supported features from the websocket server.""" + resp = self.recv( + self.send( + "supported_features", + features={ + # "coalesce_messages": 42, # including this key sets it to True + }, + ) + ) + assert cast(ResultResponse, resp).result is None + + def ping_latency(self) -> float: + """Get the latency (in milliseconds) of the connection by sending a ping message.""" + pong = cast(PingResponse, self.recv(self.send("ping"))) + assert pong.end is not None + return (pong.end - pong.start) / 1_000_000 + + def get_rendered_template(self, template: str) -> str: + """ + Renders a Jinja2 template with Home Assistant context data. + See https://www.home-assistant.io/docs/configuration/templating. + + Sends command :code:`{"type": "render_template", ...}`. + """ + id = self.send("render_template", template=template, report_errors=True) + first = self.recv(id) + assert cast(ResultResponse, first).result is None + second = self.recv(id) + self._unsubscribe(id) + return cast(TemplateEvent, cast(EventResponse, second).event).result + + def get_config(self) -> dict[str, JSONType]: + """ + Get the Home Assistant configuration. + + Sends command :code:`{"type": "get_config", ...}`. + """ + return cast( + dict[str, JSONType], + cast( + ResultResponse, + self.recv(self.send("get_config")), + ).result, + ) + + def get_states(self) -> Tuple[State, ...]: + """ + Get a list of states. + + Sends command :code:`{"type": "get_states", ...}`. + """ + return tuple( + State.from_json(state) + for state in cast( + list[dict[str, JSONType]], + cast(ResultResponse, self.recv(self.send("get_states"))).result, + ) + ) + + def get_state( # pylint: disable=duplicate-code + self, + *, + entity_id: Optional[str] = None, + group_id: Optional[str] = None, + slug: Optional[str] = None, + ) -> State: + """ + Just calls the :py:meth:`get_states` method and filters the result. + + Please tell home-assistant/core to add a :code:`{"type": "get_state", ...}` command to the WS API! + There is a lot of disappointment and frustration in the community because this is not available. + """ + entity_id = prepare_entity_id( + group_id=group_id, + slug=slug, + entity_id=entity_id, + ) + + for state in self.get_states(): + if state.entity_id == entity_id: + return state + raise ValueError(f"Entity {entity_id} not found!") + + def get_entities(self) -> Dict[str, Group]: + """ + Fetches all entities from the Websocket API and returns them as a dictionary of :py:class:`Group`'s. + For example :code:`light.living_room` would be in the group :code:`light` (i.e. :code:`get_entities()["light"].living_room`). + """ + entities: Dict[str, Group] = {} + for state in self.get_states(): + group_id, entity_slug = state.entity_id.split(".") + if group_id not in entities: + entities[group_id] = Group( + group_id=group_id, + _client=self, # type: ignore[arg-type] + ) + entities[group_id]._add_entity(entity_slug, state) + return entities + + def get_entity( + self, + group_id: Optional[str] = None, + slug: Optional[str] = None, + entity_id: Optional[str] = None, + ) -> Optional[Entity]: + """ + Returns an :py:class:`Entity` model for an :code:`entity_id`. + + Calls :py:meth:`get_states` under the hood. + + Please tell home-assistant/core to add a :code:`{"type": "get_state", ...}` command to the WS API! + There is a lot of disappointment and frustration in the community because this is not available. + """ + if group_id is not None and slug is not None: + state = self.get_state(group_id=group_id, slug=slug) + elif entity_id is not None: + state = self.get_state(entity_id=entity_id) else: - raise ValueError(f"Unknown scheme {parsed.scheme} in {api_url}") + help_msg = ( + "Use keyword arguments to pass entity_id. " + "Or you can pass the group_id and slug instead" + ) + raise ValueError( + f"Neither group_id and slug or entity_id provided. {help_msg}" + ) + split_group_id, split_slug = state.entity_id.split(".") + group = Group( + group_id=split_group_id, + _client=self, # type: ignore[arg-type] + ) + group._add_entity(split_slug, state) + return group.get_entity(split_slug) + + def get_domains(self) -> dict[str, Domain]: + """ + Get a list of services that Home Assistant offers (organized into a dictionary of service domains). + + For example, the service :code:`light.turn_on` would be in the domain :code:`light`. + + Sends command :code:`{"type": "get_services", ...}`. + """ + resp = self.recv(self.send("get_services")) + domains = map( + lambda item: Domain.from_json_with_client( + {"domain": item[0], "services": item[1]}, + client=cast("WebsocketClient", self), + ), + cast(dict[str, JSONType], cast(ResultResponse, resp).result).items(), + ) + return {domain.domain_id: domain for domain in domains} + + def get_domain(self, domain: str) -> Domain: + """Get a domain. + + Note: This is not a method in the WS API client... yet. + + Please tell home-assistant/core to add a `get_domain` command to the WS API! + + For now, just call the :py:meth":`get_domains` method and parsing the result. + """ + return self.get_domains()[domain] + + def trigger_service( + self, + domain: str, + service: str, + entity_id: Optional[str] = None, + **service_data, + ) -> None: + """ + Trigger a service (that doesn't return a response). + + Sends command :code:`{"type": "call_service", ...}`. + """ + params = { + "domain": domain, + "service": service, + "service_data": service_data, + "return_response": False, + } + if entity_id is not None: + params["target"] = {"entity_id": entity_id} + + data = self.recv(self.send("call_service", include_id=True, **params)) + + # TODO: handle data["result"]["context"] ? + + assert ( + cast( + dict[str, JSONType], + cast(ResultResponse, data).result, + ).get("response") + is None + ) # should always be None for services without a response + + def trigger_service_with_response( + self, + domain: str, + service: str, + entity_id: Optional[str] = None, + **service_data, + ) -> dict[str, JSONType]: + """ + Trigger a service (that returns a response) and return the response. + + Sends command :code:`{"type": "call_service", ...}`. + """ + params = { + "domain": domain, + "service": service, + "service_data": service_data, + "return_response": True, + } + if entity_id is not None: + params["target"] = {"entity_id": entity_id} + + data = self.recv(self.send("call_service", include_id=True, **params)) + + return cast(dict[str, dict[str, JSONType]], cast(ResultResponse, data).result)[ + "response" + ] + + @contextlib.contextmanager + def listen_events( + self, + event_type: Optional[str] = None, + ) -> Generator[Generator[FiredEvent, None, None], None, None]: + """ + Listen for all events of a certain type. + + For example, to listen for all events of type `test_event`: + + .. code-block:: python + + with ws_client.listen_events("test_event") as events: + for i, event in zip(range(2), events): # to only wait for two events to be received + print(event) + """ + subscription = self._subscribe_events(event_type) + yield cast(Generator[FiredEvent, None, None], self._wait_for(subscription)) + self._unsubscribe(subscription) + + def _subscribe_events(self, event_type: Optional[str]) -> int: + """ + Subscribe to all events of a certain type. + + + Sends command :code:`{"type": "subscribe_events", ...}`. + """ + params = {"event_type": event_type} if event_type else {} + return self.recv(self.send("subscribe_events", include_id=True, **params)).id + + @contextlib.contextmanager + def listen_trigger( + self, trigger: str, **trigger_fields + ) -> Generator[Generator[dict[str, JSONType], None, None], None, None]: + """ + Listen to a Home Assistant trigger. + Allows additional trigger keyword parameters with :code:`**kwargs` (i.e. passing :code:`tag_id=...` for NFC tag triggers). + + For example, in Home Assistant Automations we can subscribe to a state trigger for a light entity with YAML: + + .. code-block:: yaml + + triggers: + # ... + - trigger: state + entity_id: light.kitchen + + To subscribe to that same state trigger with :py:class:`WebsocketClient` instead + + .. code-block:: python + + with ws_client.listen_trigger("state", entity_id="light.kitchen") as trigger: + for event in trigger: # will iterate until we manually break out of the loop + print(event) + if : + break + # exiting the context manager unsubscribes from the trigger + + Woohoo! We can now listen to triggers in Python code! + """ + subscription = self._subscribe_trigger(trigger, **trigger_fields) + yield ( + fired_trigger.variables + for fired_trigger in cast( + Generator[FiredTrigger, None, None], + self._wait_for(subscription), + ) + ) + self._unsubscribe(subscription) + + def _subscribe_trigger(self, trigger: str, **trigger_fields) -> int: + """ + Return the subscription id of the trigger we subscribe to. + + Sends command :code:`{"type": "subscribe_trigger", ...}`. + """ + return self.recv( + self.send( + "subscribe_trigger", trigger={"platform": trigger, **trigger_fields} + ) + ).id + + def _wait_for( + self, subscription_id: int + ) -> Generator[Union[FiredEvent, FiredTrigger], None, None]: + """ + An iterator that waits for events of a certain type. + """ + while True: + yield cast( + Union[ + FiredEvent, FiredTrigger + ], # we can cast this because TemplateEvent is only used for rendering templates + cast(EventResponse, self.recv(subscription_id)).event, + ) + + def _unsubscribe(self, subcription_id: int) -> None: + """ + Unsubscribe from all events of a certain type. + + Sends command :code:`{"type": "unsubscribe_events", ...}`. + """ + resp = self.recv(self.send("unsubscribe_events", subscription=subcription_id)) + assert cast(ResultResponse, resp).result is None + self._event_responses.pop(subcription_id) + + def get_config_entries(self) -> Tuple[ConfigEntry, ...]: + """ + Get all config entries. + + Sends command :code:`{"type": "config_entries/get", ...}`. + """ + resp = self.recv(self.send("config_entries/get")) + return tuple( + ConfigEntry.from_json(entry) + for entry in cast( + list[dict[str, JSONType]], + cast(ResultResponse, resp).result, + ) + ) + + def disable_config_entry(self, entry_id: str) -> DisableEnableResult: + """ + Disable a config entry. + + Sends command :code:`{"type": "config_entries/disable", ...}`. + """ + resp = self.recv( + self.send( + "config_entries/disable", + entry_id=entry_id, + disabled_by="user", + ) + ) + return DisableEnableResult.from_json( + cast(dict[str, JSONType], cast(ResultResponse, resp).result) + ) + + def enable_config_entry(self, entry_id: str) -> DisableEnableResult: + """ + Enable a config entry. + + Sends command :code:`{"type": "config_entries/disable", ...}`. + """ + resp = self.recv( + self.send( + "config_entries/disable", + entry_id=entry_id, + disabled_by=None, + ) + ) + return DisableEnableResult.from_json( + cast(dict[str, JSONType], cast(ResultResponse, resp).result) + ) + + def ignore_config_flow(self, flow_id: str, title: str) -> None: + """ + Ignore a config flow. + + Sends command :code:`{"type": "config_entries/ignore_flow", ...}`. + """ + self.recv( + self.send( + "config_entries/ignore_flow", + flow_id=flow_id, + title=title, + ) + ) + + def get_nonuser_flows_in_progress(self) -> Tuple[FlowResult, ...]: + """ + Get non-user config flows in progress. + + Sends command :code:`{"type": "config_entries/flow/progress", ...}`. + """ + resp = self.recv(self.send("config_entries/flow/progress")) + return tuple( + FlowResult.from_json(flow) + for flow in cast( + list[dict[str, JSONType]], + cast(ResultResponse, resp).result, + ) + ) + + def get_entry_subentries(self, entry_id: str) -> Tuple[ConfigSubEntry, ...]: + """ + Get subentries for a config entry. + + Sends command :code:`{"type": "config_entries/subentries/list", ...}`. + """ + resp = self.recv(self.send("config_entries/subentries/list", entry_id=entry_id)) + return tuple( + ConfigSubEntry.from_json(subentry) + for subentry in cast( + list[dict[str, JSONType]], + cast(ResultResponse, resp).result, + ) + ) + + def delete_entry_subentry(self, entry_id: str, subentry_id: str) -> None: + """ + Delete a subentry from a config entry. + + Sends command :code:`{"type": "config_entries/subentries/delete", ...}`. + """ + self.recv( + self.send( + "config_entries/subentries/delete", + entry_id=entry_id, + subentry_id=subentry_id, + ) + ) + + @contextlib.contextmanager + def listen_config_entries( + self, + ) -> Generator[Generator[list[ConfigEntryEvent], None, None], None, None]: + """ + Listen for config entry changes. + + Sends command :code:`{"type": "config_entries/subscribe", ...}`. + """ + subscription = self.recv(self.send("config_entries/subscribe")).id + yield self._wait_for_config_entries(subscription) + self._unsubscribe(subscription) + + def _wait_for_config_entries( + self, subscription_id: int + ) -> Generator[list[ConfigEntryEvent], None, None]: + """An iterator that waits for config entry events.""" + while True: + event_resp = cast(EventResponse, self.recv(subscription_id)) + entries = cast(list[dict[str, JSONType]], event_resp.event) + yield [ConfigEntryEvent.from_json(entry) for entry in entries] + + def fire_event(self, event_type: str, **event_data) -> Context: + """ + Fire an event. - logger.debug( - f"{client_type}WebSocketClient initialized with api_url: {api_url}" + Sends command :code:`{"type": "fire_event", ...}`. + """ + params: dict[str, JSONType] = {"event_type": event_type} + if event_data: + params["event_data"] = event_data + return Context.from_json( + cast( + dict[str, dict[str, JSONType]], + cast( + ResultResponse, + self.recv(self.send("fire_event", include_id=True, **params)), + ).result, + )["context"] ) diff --git a/tests/conftest.py b/tests/conftest.py index 78ef2373..3e699256 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -5,7 +5,7 @@ import pytest import pytest_asyncio -from homeassistant_api import Client, WebsocketClient +from homeassistant_api import AsyncClient, AsyncWebsocketClient, Client, WebsocketClient logging.basicConfig(level=logging.INFO) @@ -37,12 +37,11 @@ def setup_cached_client(wait_for_server) -> Generator[Client, None, None]: @pytest_asyncio.fixture(name="async_cached_client", scope="session") async def setup_async_cached_client( wait_for_server: Literal[None], -) -> AsyncGenerator[Client, None]: - """Initializes the Client and enters an async cached session.""" - async with Client( +) -> AsyncGenerator[AsyncClient, None]: + """Initializes the AsyncClient and enters an async cached session.""" + async with AsyncClient( os.environ["HOMEASSISTANTAPI_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], - use_async=True, ) as client: yield client @@ -62,11 +61,10 @@ def setup_websocket_client( @pytest.fixture(name="async_websocket_client", scope="session") async def setup_async_websocket_client( wait_for_server: Literal[None], -) -> AsyncGenerator[WebsocketClient, None]: - """Initializes the Client and enters an async WebSocket session.""" - async with WebsocketClient( +) -> AsyncGenerator[AsyncWebsocketClient, None]: + """Initializes the AsyncWebsocketClient and enters an async WebSocket session.""" + async with AsyncWebsocketClient( os.environ["HOMEASSISTANTAPI_WS_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], - use_async=True, ) as client: yield client diff --git a/tests/test_client.py b/tests/test_client.py index 6a11939b..485553a1 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -3,7 +3,7 @@ import aiohttp_client_cache.session import requests_cache -from homeassistant_api import Client, WebsocketClient +from homeassistant_api import AsyncClient, AsyncWebsocketClient, Client, WebsocketClient def test_custom_cached_session() -> None: @@ -25,7 +25,7 @@ def test_default_session() -> None: async def test_custom_async_cached_session() -> None: - async with Client( + async with AsyncClient( os.environ["HOMEASSISTANTAPI_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], async_cache_session=aiohttp_client_cache.session.CachedSession( @@ -34,17 +34,15 @@ async def test_custom_async_cached_session() -> None: expire_after=10, ), ), - use_async=True, ): pass async def test_default_async_session() -> None: - async with Client( + async with AsyncClient( os.environ["HOMEASSISTANTAPI_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], async_cache_session=False, - use_async=True, ): pass @@ -58,9 +56,8 @@ def test_websocket_client_ping() -> None: async def test_async_websocket_client_ping() -> None: - async with WebsocketClient( + async with AsyncWebsocketClient( os.environ["HOMEASSISTANTAPI_WS_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], - use_async=True, ) as client: - assert (await client.async_ping_latency()) > 0 + assert (await client.ping_latency()) > 0 diff --git a/tests/test_endpoints.py b/tests/test_endpoints.py index 0745600d..0e149906 100644 --- a/tests/test_endpoints.py +++ b/tests/test_endpoints.py @@ -5,12 +5,11 @@ import pytest -from homeassistant_api import Client +from homeassistant_api import AsyncClient, AsyncWebsocketClient, Client, WebsocketClient from homeassistant_api.errors import RequestError from homeassistant_api.models import ConfigEntryDisabler from homeassistant_api.models.events import Event from homeassistant_api.models.states import State -from homeassistant_api.websocket import WebsocketClient def test_get_error_log(cached_client: Client) -> None: @@ -18,9 +17,9 @@ def test_get_error_log(cached_client: Client) -> None: assert cached_client.get_error_log() -async def test_async_get_error_log(async_cached_client: Client) -> None: +async def test_async_get_error_log(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/error_log` endpoint.""" - assert await async_cached_client.async_get_error_log() + assert await async_cached_client.get_error_log() def test_get_config(cached_client: Client) -> None: @@ -28,9 +27,9 @@ def test_get_config(cached_client: Client) -> None: assert cached_client.get_config().get("state") in {"RUNNING", "NOT_RUNNING"} -async def test_async_get_config(async_cached_client: Client) -> None: +async def test_async_get_config(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/config` endpoint.""" - assert (await async_cached_client.async_get_config()).get("state") in { + assert (await async_cached_client.get_config()).get("state") in { "RUNNING", "NOT_RUNNING", } @@ -46,9 +45,9 @@ def test_get_logbook_entries(cached_client: Client) -> None: assert entry -async def test_async_get_logbook_entries(async_cached_client: Client) -> None: +async def test_async_get_logbook_entries(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/logbook/` endpoint.""" - async for entry in async_cached_client.async_get_logbook_entries( + async for entry in async_cached_client.get_logbook_entries( filter_entities="sun.red_sun", start_timestamp=datetime(2020, 1, 1), end_timestamp=datetime.now(), @@ -61,9 +60,9 @@ def test_get_entity(cached_client: Client) -> None: assert cached_client.get_entity(entity_id="sun.sun") -async def test_async_get_entity(async_cached_client: Client) -> None: +async def test_async_get_entity(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/states/` endpoint.""" - assert await async_cached_client.async_get_entity(entity_id="sun.sun") + assert await async_cached_client.get_entity(entity_id="sun.sun") def test_get_entity_histories(cached_client: Client) -> None: @@ -83,13 +82,12 @@ def test_get_entity_histories(cached_client: Client) -> None: assert isinstance(histories[0].states[0], State) -async def test_async_get_entity_histories(async_cached_client: Client) -> None: +async def test_async_get_entity_histories(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/history/period/` endpoint.""" - sun = await async_cached_client.async_get_entity(entity_id="sun.sun") + sun = await async_cached_client.get_entity(entity_id="sun.sun") assert sun is not None histories = [ - history - async for history in async_cached_client.async_get_entity_histories((sun,)) + history async for history in async_cached_client.get_entity_histories((sun,)) ] assert histories, "No history found." assert histories[0].states, "No states in entity history found." @@ -107,9 +105,9 @@ def test_get_rendered_template(cached_client: Client) -> None: } -async def test_async_get_rendered_template(async_cached_client: Client) -> None: +async def test_async_get_rendered_template(async_cached_client: AsyncClient) -> None: """Tests the `POST /api/template` endpoint.""" - rendered_template = await async_cached_client.async_get_rendered_template( + rendered_template = await async_cached_client.get_rendered_template( 'The sun is {{ states("sun.sun").replace("_", " the ") }}.' ) assert rendered_template in { @@ -130,10 +128,10 @@ def test_websocket_get_rendered_template(websocket_client: WebsocketClient) -> N async def test_async_websocket_get_rendered_template( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "render_template"` websocket command.""" - rendered_template = await async_websocket_client.async_get_rendered_template( + rendered_template = await async_websocket_client.get_rendered_template( 'The sun is {{ states("sun.sun").replace("_", " the ") }}.' ) assert rendered_template in { @@ -147,9 +145,9 @@ def test_check_api_config(cached_client: Client) -> None: assert cached_client.check_api_config() -async def test_async_check_api_config(async_cached_client: Client) -> None: +async def test_async_check_api_config(async_cached_client: AsyncClient) -> None: """Tests the `POST /api/config/core/check_config` endpoint.""" - assert await async_cached_client.async_check_api_config() + assert await async_cached_client.check_api_config() def test_get_entities(cached_client: Client) -> None: @@ -158,9 +156,9 @@ def test_get_entities(cached_client: Client) -> None: assert "sun" in entities -async def test_async_get_entities(async_cached_client: Client) -> None: +async def test_async_get_entities(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/states` endpoint.""" - entities = await async_cached_client.async_get_entities() + entities = await async_cached_client.get_entities() assert "sun" in entities @@ -172,10 +170,10 @@ def test_websocket_get_config(websocket_client: WebsocketClient) -> None: async def test_async_websocket_get_config( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "get_config"` websocket command.""" - config = await async_websocket_client.async_get_config() + config = await async_websocket_client.get_config() assert isinstance(config, dict) assert config.get("state") in {"RUNNING", "NOT_RUNNING"} @@ -210,48 +208,48 @@ def test_websocket_get_entity_no_args(websocket_client: WebsocketClient) -> None async def test_async_websocket_get_state( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: - """Tests async WebsocketClient.async_get_state with entity_id.""" - state = await async_websocket_client.async_get_state(entity_id="sun.sun") + """Tests AsyncWebsocketClient.get_state with entity_id.""" + state = await async_websocket_client.get_state(entity_id="sun.sun") assert state.entity_id == "sun.sun" assert state.state in {"above_horizon", "below_horizon"} async def test_async_websocket_get_entity_by_group_slug( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: - """Tests async WebsocketClient.async_get_entity with group_id and slug.""" - entity = await async_websocket_client.async_get_entity(group_id="sun", slug="sun") + """Tests AsyncWebsocketClient.get_entity with group_id and slug.""" + entity = await async_websocket_client.get_entity(group_id="sun", slug="sun") assert entity is not None assert entity.entity_id == "sun.sun" async def test_async_websocket_get_entity_by_entity_id( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: - """Tests async WebsocketClient.async_get_entity with entity_id.""" - entity = await async_websocket_client.async_get_entity(entity_id="sun.sun") + """Tests AsyncWebsocketClient.get_entity with entity_id.""" + entity = await async_websocket_client.get_entity(entity_id="sun.sun") assert entity is not None assert entity.entity_id == "sun.sun" async def test_async_websocket_get_entity_no_args( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: - """Tests async WebsocketClient.async_get_entity raises ValueError with no arguments.""" + """Tests AsyncWebsocketClient.get_entity raises ValueError with no arguments.""" with pytest.raises( ValueError, match="Neither group_id and slug or entity_id provided" ): - await async_websocket_client.async_get_entity() + await async_websocket_client.get_entity() async def test_async_websocket_get_state_not_found( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: - """Tests async WebsocketClient.async_get_state raises ValueError for nonexistent entity.""" + """Tests AsyncWebsocketClient.get_state raises ValueError for nonexistent entity.""" with pytest.raises(ValueError, match="not found"): - await async_websocket_client.async_get_state( + await async_websocket_client.get_state( entity_id="fake.nonexistent_entity_12345" ) @@ -269,10 +267,10 @@ def test_websocket_get_entities(websocket_client: WebsocketClient) -> None: async def test_async_websocket_get_entities( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "get_entities"` websocket command.""" - entities = await async_websocket_client.async_get_entities() + entities = await async_websocket_client.get_entities() assert "sun" in entities @@ -282,9 +280,9 @@ def test_get_domains(cached_client: Client) -> None: assert "homeassistant" in domains -async def test_async_get_domains(async_cached_client: Client) -> None: +async def test_async_get_domains(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/services` endpoint.""" - domains = await async_cached_client.async_get_domains() + domains = await async_cached_client.get_domains() assert "homeassistant" in domains @@ -295,10 +293,10 @@ def test_websocket_get_domains(websocket_client: WebsocketClient) -> None: async def test_async_websocket_get_domains( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "get_domains"` websocket command.""" - domains = await async_websocket_client.async_get_domains() + domains = await async_websocket_client.get_domains() assert "homeassistant" in domains @@ -309,9 +307,9 @@ def test_get_domain(cached_client: Client) -> None: assert domain.services -async def test_async_get_domain(async_cached_client: Client) -> None: +async def test_async_get_domain(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/services` endpoint.""" - domain = await async_cached_client.async_get_domain("homeassistant") + domain = await async_cached_client.get_domain("homeassistant") assert domain is not None assert domain.services @@ -324,10 +322,10 @@ def test_websocket_get_domain(websocket_client: WebsocketClient) -> None: async def test_async_websocket_get_domain( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "get_domain"` websocket command.""" - domain = await async_websocket_client.async_get_domain("homeassistant") + domain = await async_websocket_client.get_domain("homeassistant") assert domain is not None assert domain.services @@ -340,10 +338,10 @@ def test_get_nonuser_flows_in_progress(websocket_client: WebsocketClient) -> Non async def test_async_get_nonuser_flows_in_progress( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "config_entries/flow/progress"` websocket command.""" - flows = await async_websocket_client.async_get_nonuser_flows_in_progress() + flows = await async_websocket_client.get_nonuser_flows_in_progress() assert not flows @@ -369,20 +367,20 @@ def test_disable_enable_config_entry(websocket_client: WebsocketClient) -> None: async def test_async_disable_enable_config_entry( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "config_entries/disable"` websocket command.""" - entry = (await async_websocket_client.async_get_config_entries())[0] + entry = (await async_websocket_client.get_config_entries())[0] assert entry.disabled_by is None - await async_websocket_client.async_disable_config_entry(entry.entry_id) + await async_websocket_client.disable_config_entry(entry.entry_id) - disabled_entry = (await async_websocket_client.async_get_config_entries())[0] + disabled_entry = (await async_websocket_client.get_config_entries())[0] assert disabled_entry.disabled_by is ConfigEntryDisabler.USER - await async_websocket_client.async_enable_config_entry(entry.entry_id) + await async_websocket_client.enable_config_entry(entry.entry_id) - enabled_entry = (await async_websocket_client.async_get_config_entries())[0] + enabled_entry = (await async_websocket_client.get_config_entries())[0] assert enabled_entry.disabled_by is None @@ -394,11 +392,11 @@ def test_ignore_config_flow(websocket_client: WebsocketClient) -> None: async def test_async_ignore_config_flow( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "config_entries/ignore_flow"` websocket command.""" with pytest.raises(RequestError, match="Config entry not found"): - await async_websocket_client.async_ignore_config_flow("", "") + await async_websocket_client.ignore_config_flow("", "") def test_get_config_entries(websocket_client: WebsocketClient) -> None: @@ -431,10 +429,10 @@ def test_get_config_entries(websocket_client: WebsocketClient) -> None: async def test_async_get_config_entries( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "config_entries/get"` websocket command.""" - entries = await async_websocket_client.async_get_config_entries() + entries = await async_websocket_client.get_config_entries() assert len(entries) == 4 sun = entries[0] @@ -456,12 +454,12 @@ def test_get_entry_subentries(websocket_client: WebsocketClient) -> None: async def test_async_get_entry_subentries( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "config_entries/subentries/list"` websocket command.""" - sun = (await async_websocket_client.async_get_config_entries())[0] + sun = (await async_websocket_client.get_config_entries())[0] assert sun - assert not await async_websocket_client.async_get_entry_subentries(sun.entry_id) + assert not await async_websocket_client.get_entry_subentries(sun.entry_id) def test_delete_entry_subentry(websocket_client: WebsocketClient) -> None: @@ -472,11 +470,11 @@ def test_delete_entry_subentry(websocket_client: WebsocketClient) -> None: async def test_async_delete_entry_subentry( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "config_entries/subentries/delete"` websocket command.""" with pytest.raises(RequestError, match="Config entry not found"): - await async_websocket_client.async_delete_entry_subentry("", "") + await async_websocket_client.delete_entry_subentry("", "") def test_trigger_service(cached_client: Client) -> None: @@ -491,9 +489,9 @@ def test_trigger_service(cached_client: Client) -> None: assert isinstance(resp, tuple) -async def test_async_trigger_service(async_cached_client: Client) -> None: +async def test_async_trigger_service(async_cached_client: AsyncClient) -> None: """Tests the `POST /api/services//` endpoint.""" - notify = await async_cached_client.async_get_domain("notify") + notify = await async_cached_client.get_domain("notify") assert notify is not None resp = await notify.persistent_notification( message="Your API Test Suite just said hello!", @@ -514,10 +512,10 @@ def test_websocket_trigger_service(websocket_client: WebsocketClient) -> None: async def test_async_websocket_trigger_service( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "trigger_service"` websocket command.""" - notify = await async_websocket_client.async_get_domain("notify") + notify = await async_websocket_client.get_domain("notify") assert notify is not None resp = await notify.persistent_notification( message="Your API Test Suite just said hello!", title="Test Suite Notifcation" @@ -553,9 +551,11 @@ def test_trigger_service_with_response(cached_client: Client) -> None: assert data is not None -async def test_async_trigger_service_with_response(async_cached_client: Client) -> None: +async def test_async_trigger_service_with_response( + async_cached_client: AsyncClient, +) -> None: """Tests the `POST /api/services//?return_response` endpoint.""" - weather = await async_cached_client.async_get_domain("weather") + weather = await async_cached_client.get_domain("weather") assert weather is not None changed_states, data = await weather.get_forecasts( entity_id="weather.forecast_home", @@ -579,10 +579,10 @@ def test_websocket_trigger_service_with_response( async def test_async_websocket_trigger_service_with_response( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "trigger_service_with_response"` websocket command.""" - weather = await async_websocket_client.async_get_domain("weather") + weather = await async_websocket_client.get_domain("weather") assert weather is not None data = await weather.get_forecasts( entity_id="weather.forecast_home", @@ -599,9 +599,9 @@ def test_get_states(cached_client: Client) -> None: assert isinstance(state, State) -async def test_async_get_states(async_cached_client: Client) -> None: +async def test_async_get_states(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/states` endpoint.""" - states = await async_cached_client.async_get_states() + states = await async_cached_client.get_states() for state in states: assert isinstance(state, State) @@ -614,10 +614,10 @@ def test_websocket_get_states(websocket_client: WebsocketClient) -> None: async def test_async_websocket_get_states( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "get_states"` websocket command.""" - states = await async_websocket_client.async_get_states() + states = await async_websocket_client.get_states() for state in states: assert isinstance(state, State) @@ -628,9 +628,9 @@ def test_get_state(cached_client: Client) -> None: assert state.state in {"above_horizon", "below_horizon"} -async def test_async_get_state(async_cached_client: Client) -> None: +async def test_async_get_state(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/states/` endpoint.""" - state = await async_cached_client.async_get_state(entity_id="sun.sun") + state = await async_cached_client.get_state(entity_id="sun.sun") assert state.state in {"above_horizon", "below_horizon"} @@ -642,9 +642,9 @@ def test_set_state(cached_client: Client) -> None: assert state.state == "beyond_our_solar_system" -async def test_async_set_state(async_cached_client: Client) -> None: +async def test_async_set_state(async_cached_client: AsyncClient) -> None: """Tests the `POST /api/states/` endpoint.""" - state = await async_cached_client.async_set_state( + state = await async_cached_client.set_state( State(state="beyond_our_solar_system", entity_id="sun.red_sun") ) assert state.state == "beyond_our_solar_system" @@ -657,9 +657,9 @@ def test_get_events(cached_client: Client) -> None: assert isinstance(event, Event) -async def test_async_get_events(async_cached_client: Client) -> None: +async def test_async_get_events(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/events` endpoint.""" - events = await async_cached_client.async_get_events() + events = await async_cached_client.get_events() for event in events: assert isinstance(event, Event) @@ -670,9 +670,9 @@ def test_fire_event(cached_client: Client) -> None: assert data == "Event my_new_event fired." -async def test_async_fire_event(async_cached_client: Client) -> None: +async def test_async_fire_event(async_cached_client: AsyncClient) -> None: """Tests the `POST /api/events/` endpoint.""" - data = await async_cached_client.async_fire_event("my_new_event", parameter="123") + data = await async_cached_client.fire_event("my_new_event", parameter="123") assert data == "Event my_new_event fired." @@ -682,7 +682,7 @@ def test_get_components(cached_client: Client) -> None: assert "person" in components -async def test_async_get_components(async_cached_client: Client) -> None: +async def test_async_get_components(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/components` endpoint.""" - components = await async_cached_client.async_get_components() + components = await async_cached_client.get_components() assert "person" in components diff --git a/tests/test_errors.py b/tests/test_errors.py index 471716d4..3d51e8f1 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -10,7 +10,13 @@ import requests from multidict import CIMultiDict, CIMultiDictProxy -from homeassistant_api import Client, Domain +from homeassistant_api import ( + AsyncClient, + AsyncWebsocketClient, + Client, + Domain, + WebsocketClient, +) from homeassistant_api.errors import ( APIConfigurationError, BadTemplateError, @@ -28,7 +34,6 @@ from homeassistant_api.models.websocket import Error from homeassistant_api.processing import Processing from homeassistant_api.utils import prepare_entity_id -from homeassistant_api.websocket import WebsocketClient def test_unauthorized() -> None: @@ -47,20 +52,18 @@ def test_websocket_unauthorized() -> None: async def test_async_websocket_unauthorized() -> None: with pytest.raises(UnauthorizedError): - async with WebsocketClient( + async with AsyncWebsocketClient( os.environ["HOMEASSISTANTAPI_WS_URL"], "lolthisisawrongtokenforsure", - use_async=True, ): pass async def test_async_unauthorized() -> None: with pytest.raises(UnauthorizedError): - async with Client( + async with AsyncClient( os.environ["HOMEASSISTANTAPI_URL"], "lolthisisawrongtokenforsure", - use_async=True, ): pass @@ -77,9 +80,9 @@ def test_endpoint_not_found_error(cached_client: Client) -> None: cached_client.request("qwertyuioasdfghjkzxcvbnm") -async def test_async_endpoint_not_found_error(async_cached_client: Client) -> None: +async def test_async_endpoint_not_found_error(async_cached_client: AsyncClient) -> None: with pytest.raises(EndpointNotFoundError): - await async_cached_client.async_request("qwertyuioasdfghjkzxcvbnm") + await async_cached_client.request("qwertyuioasdfghjkzxcvbnm") def test_method_not_allowed_error(cached_client: Client) -> None: @@ -87,9 +90,9 @@ def test_method_not_allowed_error(cached_client: Client) -> None: cached_client.request("", method="DELETE") -async def test_async_method_not_allowed_error(async_cached_client: Client) -> None: +async def test_async_method_not_allowed_error(async_cached_client: AsyncClient) -> None: with pytest.raises(MethodNotAllowedError): - await async_cached_client.async_request("", method="DELETE") + await async_cached_client.request("", method="DELETE") def test_wrong_headers(cached_client: Client) -> None: @@ -97,9 +100,9 @@ def test_wrong_headers(cached_client: Client) -> None: cached_client.request("", headers=1234567890) # type: ignore[arg-type] -async def test_async_wrong_headers(async_cached_client: Client) -> None: +async def test_async_wrong_headers(async_cached_client: AsyncClient) -> None: with pytest.raises(ValueError): - await async_cached_client.async_request("", headers=1234567890) # type: ignore[arg-type] + await async_cached_client.request("", headers=1234567890) # type: ignore[arg-type] def test_no_entity_information_provided(cached_client: Client) -> None: @@ -109,11 +112,11 @@ def test_no_entity_information_provided(cached_client: Client) -> None: async def test_async_no_entity_information_provided( - async_cached_client: Client, + async_cached_client: AsyncClient, ) -> None: """Tests that the client raises an error if no entity information is provided.""" with pytest.raises(ValueError): - await async_cached_client.async_get_entity() + await async_cached_client.get_entity() def test_invalid_template(cached_client: Client) -> None: @@ -121,9 +124,9 @@ def test_invalid_template(cached_client: Client) -> None: cached_client.get_rendered_template("{{ invalid_template lol") -async def test_async_invalid_template(async_cached_client: Client) -> None: +async def test_async_invalid_template(async_cached_client: AsyncClient) -> None: with pytest.raises(BadTemplateError): - await async_cached_client.async_get_rendered_template("{{ invalid_template lol") + await async_cached_client.get_rendered_template("{{ invalid_template lol") def test_prepare_entity_id(cached_client: Client) -> None: diff --git a/tests/test_events.py b/tests/test_events.py index a8bf6aa4..2c4eea06 100644 --- a/tests/test_events.py +++ b/tests/test_events.py @@ -7,7 +7,7 @@ ConfigEntryDisabler, ConfigEntryState, ) -from homeassistant_api.websocket import WebsocketClient +from homeassistant_api import AsyncWebsocketClient, WebsocketClient def test_listen_events(websocket_client: WebsocketClient) -> None: @@ -22,9 +22,11 @@ def test_listen_events(websocket_client: WebsocketClient) -> None: break -async def test_async_listen_events(async_websocket_client: WebsocketClient) -> None: - async with async_websocket_client.async_listen_events("async_test_event") as events: - await async_websocket_client.async_fire_event( +async def test_async_listen_events( + async_websocket_client: AsyncWebsocketClient, +) -> None: + async with async_websocket_client.listen_events("async_test_event") as events: + await async_websocket_client.fire_event( "async_test_event", message="Triggered by async websocket client" ) # Typing breaks when using zip in an async context, so break instead @@ -88,9 +90,9 @@ def test_listen_config_entries(websocket_client: WebsocketClient) -> None: async def test_async_listen_config_entries( - async_websocket_client: WebsocketClient, + async_websocket_client: AsyncWebsocketClient, ) -> None: - async with async_websocket_client.async_listen_config_entries() as flows: + async with async_websocket_client.listen_config_entries() as flows: i = 0 async for flow in flows: if i == 0: @@ -100,7 +102,7 @@ async def test_async_listen_config_entries( assert flow[0].entry.state == ConfigEntryState.LOADED # Trigger an "updated" event - await async_websocket_client.async_disable_config_entry( + await async_websocket_client.disable_config_entry( flow[0].entry.entry_id ) @@ -115,9 +117,7 @@ async def test_async_listen_config_entries( assert flow[0].entry.state == ConfigEntryState.NOT_LOADED # Restore original state - await async_websocket_client.async_enable_config_entry( - flow[0].entry.entry_id - ) + await async_websocket_client.enable_config_entry(flow[0].entry.entry_id) if i == 3: assert flow[0].type == ConfigEntryChange.UPDATED @@ -133,13 +133,15 @@ async def test_async_listen_config_entries( i += 1 -async def test_async_listen_trigger(async_websocket_client: WebsocketClient) -> None: +async def test_async_listen_trigger( + async_websocket_client: AsyncWebsocketClient, +) -> None: future = datetime.fromisoformat( - await async_websocket_client.async_get_rendered_template( + await async_websocket_client.get_rendered_template( "{{ (now() + timedelta(seconds=1)) }}" ) ) - async with async_websocket_client.async_listen_trigger( + async with async_websocket_client.listen_trigger( "time", at=future.strftime("%H:%M:%S") ) as triggers: # Typing breaks when using zip in an async context, so break instead diff --git a/tests/test_models.py b/tests/test_models.py index 6d1f8d58..47689e30 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -5,7 +5,7 @@ import pytest -from homeassistant_api import Client, Domain +from homeassistant_api import AsyncClient, Client, Domain from homeassistant_api.models.events import Event from homeassistant_api.models.states import State @@ -21,8 +21,8 @@ def test_entity_get_entity(cached_client: Client) -> None: assert person.thispersondoesnotexistplease -async def test_async_entity_get_entity(async_cached_client: Client) -> None: - person_test_suite = await async_cached_client.async_get_entity( +async def test_async_entity_get_entity(async_cached_client: AsyncClient) -> None: + person_test_suite = await async_cached_client.get_entity( group_id="person", slug="test_user", ) @@ -44,8 +44,8 @@ def test_entity_update_state(cached_client: Client) -> None: assert new_state.state == "In the palm of your hand." -async def test_async_entity_update_state(async_cached_client: Client) -> None: - entity = await async_cached_client.async_get_entity(group_id="sun", slug="red_sun") +async def test_async_entity_update_state(async_cached_client: AsyncClient) -> None: + entity = await async_cached_client.get_entity(group_id="sun", slug="red_sun") assert entity is not None entity.state.state = "In the palm of my hand." new_state = await entity.async_update_state() @@ -58,10 +58,8 @@ def test_get_event(cached_client: Client) -> None: assert event is None -async def test_async_get_event(async_cached_client: Client) -> None: - event = await async_cached_client.async_get_event( - "my_favorite_candy_is_mike_and_ikes" - ) +async def test_async_get_event(async_cached_client: AsyncClient) -> None: + event = await async_cached_client.get_event("my_favorite_candy_is_mike_and_ikes") assert event is None @@ -71,8 +69,8 @@ def test_fire_event(cached_client: Client) -> None: assert event.fire() == "Event core_config_updated fired." -async def test_async_fire_event(async_cached_client: Client) -> None: - event = await async_cached_client.async_get_event("core_config_updated") +async def test_async_fire_event(async_cached_client: AsyncClient) -> None: + event = await async_cached_client.get_event("core_config_updated") assert event is not None assert await event.async_fire() == "Event core_config_updated fired." @@ -85,8 +83,8 @@ def test_get_domain(cached_client: Client) -> None: assert notify.thisservicedoesnotexistplease -async def test_async_get_domains(async_cached_client: Client) -> None: - notify = await async_cached_client.async_get_domain("notify") +async def test_async_get_domains(async_cached_client: AsyncClient) -> None: + notify = await async_cached_client.get_domain("notify") assert notify is not None assert notify.domain_id == "notify" with pytest.raises(AttributeError): @@ -102,8 +100,8 @@ def test_entity_get_history(cached_client: Client) -> None: assert isinstance(state, State) -async def test_async_entity_get_history(async_cached_client: Client) -> None: - entity = await async_cached_client.async_get_entity(group_id="sun", slug="sun") +async def test_async_entity_get_history(async_cached_client: AsyncClient) -> None: + entity = await async_cached_client.get_entity(group_id="sun", slug="sun") assert entity is not None history = await entity.async_get_history() assert history is not None @@ -132,8 +130,8 @@ def test_domain_from_json_with_client_missing_keys(cached_client: Client) -> Non Domain.from_json_with_client({"foo": "bar"}, cached_client) -async def test_async_entity_get_history_none(async_cached_client: Client) -> None: - entity = await async_cached_client.async_get_entity(group_id="sun", slug="red_sun") +async def test_async_entity_get_history_none(async_cached_client: AsyncClient) -> None: + entity = await async_cached_client.get_entity(group_id="sun", slug="red_sun") assert entity is not None history = await entity.async_get_history( start_timestamp=datetime(2015, 1, 1), end_timestamp=datetime(2020, 1, 1) diff --git a/tests/test_websocket.py b/tests/test_websocket.py index e86f4d09..30c388e4 100644 --- a/tests/test_websocket.py +++ b/tests/test_websocket.py @@ -1,54 +1,54 @@ -"""Unit tests for RawWebsocketClient, RawAsyncWebsocketClient, and WebsocketClient error paths.""" +"""Unit tests for WebsocketClient, AsyncWebsocketClient error paths.""" import pytest from homeassistant_api.errors import ReceivingError, RequestError, ResponseError -from homeassistant_api.rawasyncwebsocket import RawAsyncWebsocketClient -from homeassistant_api.rawwebsocket import RawWebsocketClient +from homeassistant_api.asyncwebsocket import AsyncWebsocketClient +from homeassistant_api.websocket import WebsocketClient from homeassistant_api.models import websocket as ws_models -def make_raw_client() -> RawWebsocketClient: - """Create a RawWebsocketClient without connecting.""" - return RawWebsocketClient("ws://localhost:8123/api/websocket", "fake_token") +def make_sync_client() -> WebsocketClient: + """Create a WebsocketClient without connecting.""" + return WebsocketClient("ws://localhost:8123/api/websocket", "fake_token") -def make_raw_async_client() -> RawAsyncWebsocketClient: - """Create a RawAsyncWebsocketClient without connecting.""" - return RawAsyncWebsocketClient("ws://localhost:8123/api/websocket", "fake_token") +def make_async_client() -> AsyncWebsocketClient: + """Create an AsyncWebsocketClient without connecting.""" + return AsyncWebsocketClient("ws://localhost:8123/api/websocket", "fake_token") def test_exit_without_connection() -> None: """Tests __exit__ raises ReceivingError when connection is not open.""" - client = make_raw_client() + client = make_sync_client() with pytest.raises(ReceivingError, match="Connection is not open"): client.__exit__(None, None, None) def test_send_without_connection() -> None: """Tests _send raises ReceivingError when connection is not open.""" - client = make_raw_client() + client = make_sync_client() with pytest.raises(ReceivingError, match="Connection is not open"): client._send({"type": "test"}) def test_recv_without_connection() -> None: """Tests _recv raises ReceivingError when connection is not open.""" - client = make_raw_client() + client = make_sync_client() with pytest.raises(ReceivingError, match="Connection is not open"): client._recv() def test_handle_recv_message_without_id() -> None: """Tests handle_recv raises ReceivingError for messages missing an id.""" - client = make_raw_client() + client = make_sync_client() with pytest.raises(ReceivingError, match="without an id"): client.handle_recv({"type": "result", "success": True}) def test_parse_response_error_result() -> None: """Tests parse_response raises RequestError for failed result messages.""" - client = make_raw_client() + client = make_sync_client() client._result_responses[1] = None with pytest.raises(RequestError): client.parse_response( @@ -63,14 +63,14 @@ def test_parse_response_error_result() -> None: def test_parse_response_unexpected_type() -> None: """Tests parse_response raises ReceivingError for unknown message types.""" - client = make_raw_client() + client = make_sync_client() with pytest.raises(ReceivingError, match="unexpected message type"): client.parse_response({"id": 1, "type": "unknown_type"}) def test_authentication_phase_invalid_welcome(monkeypatch) -> None: """Tests authentication_phase raises ResponseError on invalid welcome message.""" - client = make_raw_client() + client = make_sync_client() monkeypatch.setattr(client, "_recv", lambda: {"type": "not_auth_required"}) with pytest.raises( ResponseError, match="Unexpected response during authentication" @@ -89,7 +89,7 @@ def fake_recv(): return {"type": "auth_required", "ha_version": "2024.1.0"} return {"type": "auth_ok", "ha_version": "2024.1.0", "message": "unexpected"} - client = make_raw_client() + client = make_sync_client() monkeypatch.setattr(client, "_recv", fake_recv) monkeypatch.setattr(client, "_send", lambda data: None) @@ -108,28 +108,28 @@ def raise_runtime_error(*args, **kwargs): async def test_async_aexit_without_connection() -> None: """Tests __aexit__ raises ReceivingError when connection is not open.""" - client = make_raw_async_client() + client = make_async_client() with pytest.raises(ReceivingError, match="Connection is not open"): await client.__aexit__(None, None, None) async def test_async_send_without_connection() -> None: """Tests _async_send raises ReceivingError when connection is not open.""" - client = make_raw_async_client() + client = make_async_client() with pytest.raises(ReceivingError, match="Connection is not open"): await client._async_send({"type": "test"}) async def test_async_recv_without_connection() -> None: """Tests _async_recv raises ReceivingError when connection is not open.""" - client = make_raw_async_client() + client = make_async_client() with pytest.raises(ReceivingError, match="Connection is not open"): await client._async_recv() async def test_async_authentication_phase_invalid_welcome(monkeypatch) -> None: - """Tests async_authentication_phase raises ResponseError on invalid welcome message.""" - client = make_raw_async_client() + """Tests authentication_phase raises ResponseError on invalid welcome message.""" + client = make_async_client() async def fake_recv(): return {"type": "not_auth_required"} @@ -138,13 +138,13 @@ async def fake_recv(): with pytest.raises( ResponseError, match="Unexpected response during authentication" ): - await client.async_authentication_phase() + await client.authentication_phase() async def test_async_authentication_phase_unexpected_auth_response( monkeypatch, ) -> None: - """Tests async_authentication_phase raises ResponseError when AuthOk.model_validate raises a non-ValidationError.""" + """Tests authentication_phase raises ResponseError when AuthOk.model_validate raises a non-ValidationError.""" call_count = 0 async def fake_recv(): @@ -154,7 +154,7 @@ async def fake_recv(): return {"type": "auth_required", "ha_version": "2024.1.0"} return {"type": "auth_ok", "ha_version": "2024.1.0", "message": "unexpected"} - client = make_raw_async_client() + client = make_async_client() monkeypatch.setattr(client, "_async_recv", fake_recv) async def fake_send(data): @@ -170,4 +170,4 @@ def raise_runtime_error(*args, **kwargs): with pytest.raises( ResponseError, match="Unexpected response during authentication" ): - await client.async_authentication_phase() + await client.authentication_phase() From 436f747a515f762e6123f602b7d14371e3743aa5 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Tue, 31 Mar 2026 21:49:50 -0700 Subject: [PATCH 05/34] Split models into Base/Sync/Async hierarchies and modernize codebase Introduce Base*/Async* model variants for Domain, Entity, Group, Service, and Event. Replace _client constructor pattern with explicit client field. Bump minimum Python to 3.11, expand ruff rules to ALL, modernize type annotations, and enforce single-line imports. --- .gitignore | 2 + docs/extensions/resourcelinks.py | 24 +- examples/async_get_entities.py | 9 +- examples/basic.py | 24 +- examples/set_sensors.py | 4 +- examples/toggle_light.py | 13 +- homeassistant_api/__init__.py | 81 ++- homeassistant_api/asyncclient.py | 320 +++++----- homeassistant_api/asyncwebsocket.py | 486 +++++++++------- homeassistant_api/baseclient.py | 58 +- homeassistant_api/basewebsocket.py | 41 +- homeassistant_api/client.py | 304 +++++----- homeassistant_api/errors.py | 18 +- homeassistant_api/models/__init__.py | 87 +-- homeassistant_api/models/base.py | 12 +- homeassistant_api/models/config_entries.py | 71 +-- homeassistant_api/models/domains.py | 648 ++++++++++----------- homeassistant_api/models/entity.py | 126 ++-- homeassistant_api/models/events.py | 62 +- homeassistant_api/models/history.py | 13 +- homeassistant_api/models/logbook.py | 26 +- homeassistant_api/models/states.py | 30 +- homeassistant_api/models/websocket.py | 38 +- homeassistant_api/processing.py | 89 ++- homeassistant_api/utils.py | 25 +- homeassistant_api/websocket.py | 472 ++++++++------- pyproject.toml | 37 +- tests/conftest.py | 78 ++- tests/test_client.py | 11 +- tests/test_endpoints.py | 69 ++- tests/test_errors.py | 145 ++--- tests/test_events.py | 40 +- tests/test_models.py | 25 +- tests/test_websocket.py | 49 +- 34 files changed, 1899 insertions(+), 1638 deletions(-) diff --git a/.gitignore b/.gitignore index 4ffb46af..90cf0fbc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +CHANGELOG.draft.md + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] diff --git a/docs/extensions/resourcelinks.py b/docs/extensions/resourcelinks.py index d37af4c9..9c807c93 100644 --- a/docs/extensions/resourcelinks.py +++ b/docs/extensions/resourcelinks.py @@ -2,28 +2,34 @@ # Copyright 2007-2020 by the Sphinx team # Licensed under BSD. -from typing import Any, Dict, List, Tuple +from typing import Any import sphinx -from docutils import nodes, utils -from docutils.nodes import Node, system_message +from docutils import nodes +from docutils import utils +from docutils.nodes import Node +from docutils.nodes import system_message from docutils.parsers.rst.states import Inliner from sphinx.application import Sphinx from sphinx.util.nodes import split_explicit_title from sphinx.util.typing import RoleFunction -def make_link_role(resource_links: Dict[str, str]) -> RoleFunction: +def make_link_role(resource_links: dict[str, str]) -> RoleFunction: def role( typ: str, rawtext: str, text: str, lineno: int, inliner: Inliner, - options: Dict = {}, - content: List[str] = [], - ) -> Tuple[List[Node], List[system_message]]: - + options: dict | None = None, + content: list[str] | None = None, + ) -> tuple[list[Node], list[system_message]]: + + if content is None: + content = [] + if options is None: + options = {} text = utils.unescape(text) has_explicit_title, title, key = split_explicit_title(text) full_url = resource_links[key] @@ -39,7 +45,7 @@ def add_link_role(app: Sphinx) -> None: app.add_role("resource", make_link_role(app.config.resource_links)) -def setup(app: Sphinx) -> Dict[str, Any]: +def setup(app: Sphinx) -> dict[str, Any]: app.add_config_value("resource_links", {}, "env") app.connect("builder-inited", add_link_role) return {"version": sphinx.__display_version__, "parallel_read_safe": True} diff --git a/examples/async_get_entities.py b/examples/async_get_entities.py index d2d5933a..9e047fa0 100644 --- a/examples/async_get_entities.py +++ b/examples/async_get_entities.py @@ -1,20 +1,19 @@ import asyncio import os -from homeassistant_api import Client +from homeassistant_api import AsyncClient url = os.getenv("HOMEASSISTANT_API_ENDPOINT") token = os.getenv("HOMEASSISTANT_API_TOKEN") -async def main(): +async def main() -> None: # Initialize main object - client = Client(url, token, use_async=True) + client = AsyncClient(url, token) # Uses async context manager to ping the server and initialize caching. async with client: # All async methods are prefixed with `async_`. - data = await client.async_get_entities() - print(data) + await client.get_entities() loop = asyncio.get_event_loop() diff --git a/examples/basic.py b/examples/basic.py index 4ffefd9f..d6a7e946 100644 --- a/examples/basic.py +++ b/examples/basic.py @@ -4,17 +4,23 @@ api_url = "https://homeassistant.duckdns.org:8123/api" # Something like http://localhost:8123/api token = os.getenv( - "HOMEASSISTANT_TOKEN" + "HOMEASSISTANT_TOKEN", ) # Used to aunthenticate yourself with homeassistant # See the documentation on how to obtain a Long Lived Access Token -assert token is not None -with Client( - api_url, - token, -) as client: # Create Client object and check that its running. - cover = client.get_domain("cover") +def main() -> None: + with Client( + api_url, + token, + ) as client: # Create Client object and check that its running. + cover = client.get_domain("cover") + if cover is None: + return - # Tells Home Assistant to trigger the toggle service on the given entity_id - cover.toggle(entity_id="cover.garage_door") + # Tells Home Assistant to trigger the toggle service on the given entity_id + cover.toggle(entity_id="cover.garage_door") + + +if __name__ == "__main__": + main() diff --git a/examples/set_sensors.py b/examples/set_sensors.py index 494f2e34..9bc4031d 100644 --- a/examples/set_sensors.py +++ b/examples/set_sensors.py @@ -1,10 +1,10 @@ from homeassistant_api import Client +from homeassistant_api import State with Client( "http://homeassistant.local:8123/api", "myfabulousapikey", ) as client: new_state = client.set_state( - entity_id="sensor.some_variable", state="42 the answer to everything" + state=State(entity_id="some_entity", state="42 the answer to everything"), ) - print(new_state) diff --git a/examples/toggle_light.py b/examples/toggle_light.py index 8ae9f0ec..e647c2fd 100644 --- a/examples/toggle_light.py +++ b/examples/toggle_light.py @@ -6,13 +6,16 @@ token = os.getenv("TOKEN") -if api_url is not None and token is not None: +def main() -> None: # Intitializes the main Client client = Client(api_url, token) # Verifies the extistence of the specified server and opens efficient ClientSessions. with client: - # Gets the cover service domain light = client.get_domain("light") - assert light is not None - # Triggers the service with a specific garage door - print(light.toggle(entity_id="light.light_bulb_1")) + if light is None: + return + print(light.model_dump()) # noqa: T201 + + +if __name__ == "__main__": + main() diff --git a/homeassistant_api/__init__.py b/homeassistant_api/__init__.py index 18e70b77..d38d6664 100644 --- a/homeassistant_api/__init__.py +++ b/homeassistant_api/__init__.py @@ -1,48 +1,79 @@ """Interact with your Homeassistant Instance remotely.""" __all__ = ( - "Client", "AsyncClient", - "State", - "Context", - "Domain", - "Service", - "Group", - "Entity", - "History", - "Event", - "LogbookEntry", - "WebsocketClient", + "AsyncDomain", + "AsyncEntity", + "AsyncEvent", + "AsyncGroup", + "AsyncService", "AsyncWebsocketClient", "AuthInvalid", "AuthOk", "AuthRequired", - "ResultResponse", + "BaseDomain", + "BaseEntity", + "BaseEvent", + "BaseGroup", + "BaseService", + "Client", + "Context", + "Domain", + "Entity", "ErrorResponse", - "PingResponse", + "Event", "EventResponse", + "Group", + "History", + "LogbookEntry", + "PingResponse", + "ResultResponse", + "Service", + "State", + "WebsocketClient", ) from .asyncclient import AsyncClient from .asyncwebsocket import AsyncWebsocketClient from .client import Client -from .models.domains import Domain, Service -from .models.entity import Entity, Group +from .models.domains import AsyncDomain +from .models.domains import AsyncService +from .models.domains import BaseDomain +from .models.domains import BaseService +from .models.domains import Domain +from .models.domains import Service +from .models.entity import AsyncEntity +from .models.entity import AsyncGroup +from .models.entity import BaseEntity +from .models.entity import BaseGroup +from .models.entity import Entity +from .models.entity import Group +from .models.events import AsyncEvent +from .models.events import BaseEvent from .models.events import Event from .models.history import History from .models.logbook import LogbookEntry -from .models.states import Context, State -from .models.websocket import ( - AuthInvalid, - AuthOk, - AuthRequired, - ErrorResponse, - EventResponse, - PingResponse, - ResultResponse, -) +from .models.states import Context +from .models.states import State +from .models.websocket import AuthInvalid +from .models.websocket import AuthOk +from .models.websocket import AuthRequired +from .models.websocket import ErrorResponse +from .models.websocket import EventResponse +from .models.websocket import PingResponse +from .models.websocket import ResultResponse from .websocket import WebsocketClient +AsyncDomain.model_rebuild() +AsyncEntity.model_rebuild() +AsyncEvent.model_rebuild() +AsyncGroup.model_rebuild() +AsyncService.model_rebuild() +BaseDomain.model_rebuild() +BaseEntity.model_rebuild() +BaseEvent.model_rebuild() +BaseGroup.model_rebuild() +BaseService.model_rebuild() Domain.model_rebuild() Entity.model_rebuild() Event.model_rebuild() diff --git a/homeassistant_api/asyncclient.py b/homeassistant_api/asyncclient.py index 017e4f93..75a95d32 100644 --- a/homeassistant_api/asyncclient.py +++ b/homeassistant_api/asyncclient.py @@ -5,28 +5,37 @@ import asyncio import json import logging -from datetime import datetime +from http import HTTPMethod from posixpath import join -from typing import ( - Any, - AsyncGenerator, - Dict, - List, - Literal, - Optional, - Tuple, - Union, - cast, -) - -import aiohttp -import aiohttp_client_cache.session - -from .errors import BadTemplateError, RequestError, RequestTimeoutError -from .models import Domain, Entity, Event, Group, History, LogbookEntry, State -from .processing import AsyncResponseType, Processing +from typing import TYPE_CHECKING +from typing import Any + +from aiohttp import ClientSession +from aiohttp import TCPConnector +from aiohttp_client_cache import CacheBackend +from aiohttp_client_cache.session import CachedSession + from .baseclient import BaseClient -from .utils import JSONType, prepare_entity_id +from .errors import BadTemplateError +from .errors import RequestError +from .errors import RequestTimeoutError +from .models import AsyncDomain +from .models import AsyncEntity +from .models import AsyncEvent +from .models import AsyncGroup +from .models import History +from .models import LogbookEntry +from .models import State +from .processing import AsyncResponseType +from .processing import Processing +from .utils import prepare_entity_id + +if TYPE_CHECKING: + from collections.abc import AsyncGenerator + from datetime import datetime + from types import TracebackType + + from typing_extensions import Self logger = logging.getLogger(__name__) @@ -40,92 +49,90 @@ class AsyncClient(BaseClient): :param global_request_kwargs: A dictionary or dict-like object of kwargs to pass to :func:`requests.request` or :meth:`aiohttp.request`. Optional. """ # pylint: disable=line-too-long - async_cache_session: Union[ - aiohttp_client_cache.session.CachedSession, aiohttp.ClientSession - ] + _session: CachedSession | ClientSession def __init__( self, - *args, - async_cache_session: Union[ - aiohttp_client_cache.session.CachedSession, - Literal[False], - Literal[None], - ] = None, # Explicitly disable cache with async_cache_session=False + *args: Any, + session: CachedSession | None = None, + use_cache: bool = False, verify_ssl: bool = True, - **kwargs, - ): - BaseClient.__init__(self, *args, **kwargs) - connector = aiohttp.TCPConnector(verify_ssl=False) if not verify_ssl else None - if async_cache_session is False: - self.async_cache_session = aiohttp.ClientSession(connector=connector) - elif async_cache_session is None: - self.async_cache_session = aiohttp_client_cache.CachedSession( # type: ignore[attr-defined] - cache=aiohttp_client_cache.CacheBackend( # type: ignore[attr-defined] - cache_name="default_async_cache", - expire_after=300, - ), + **kwargs: Any, + ) -> None: + super().__init__(*args, **kwargs) + connector = TCPConnector(verify_ssl=verify_ssl) + if session is not None: + self._session = session + elif use_cache: + self._session = CachedSession( + cache=CacheBackend(cache_name="default_async_cache", expire_after=300), connector=connector, ) else: - self.async_cache_session = async_cache_session + self._session = ClientSession(connector=connector) - async def __aenter__(self): - logger.debug( - "Entering cached async requests session %r", self.async_cache_session - ) - await self.async_cache_session.__aenter__() + async def __aenter__(self) -> Self: + logger.debug("Entering cached async requests session %r", self._session) + await self._session.__aenter__() await self.check_api_running() return self - async def __aexit__(self, _, __, ___): - logger.debug("Exiting async requests session %r", self.async_cache_session) - await self.async_cache_session.close() + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + logger.debug("Exiting async requests session %r", self._session) + await self._session.close() # Very important request function async def request( self, path: str, *, - params: str = "", # should be a string of query parameters from construct_params() - method: str = "GET", - headers: Optional[Dict[str, str]] = None, - **kwargs, + params: dict[str, Any] | None = None, + method: HTTPMethod = HTTPMethod.GET, + headers: dict[str, str] | None = None, + **kwargs: Any, ) -> Any: """Base method for making requests to the api""" + path = self.endpoint(path) + if params: + path = f"{path}?{self.construct_params(params)}" + if self.global_request_kwargs is not None: + kwargs.update(self.global_request_kwargs) try: - if self.global_request_kwargs is not None: - kwargs.update(self.global_request_kwargs) - return await self.response_logic( - await self.async_cache_session.request( - method, - self.endpoint(path) + f"?{params}" * bool(params), - headers=self.prepare_headers(headers), - **kwargs, - ) + resp = await self._session.request( + method, + path, + headers=self.prepare_headers(headers), + **kwargs, ) except asyncio.exceptions.TimeoutError as err: - raise RequestTimeoutError( - f"Home Assistant did not respond in time (timeout: {kwargs.get('timeout', 300)} sec)", - self.endpoint(path) + f"?{params}" * bool(params), - ) from err + msg = f"Home Assistant did not respond in time (timeout: {kwargs.get('timeout', 300)} sec)" + raise RequestTimeoutError(msg, path) from err + return await self.response_logic(resp) - async def _dict_request(self, *args: Any, **kwargs: Any) -> dict: + async def _dict_request(self, *args: Any, **kwargs: Any) -> dict[str, Any]: data = await self.request(*args, **kwargs) if not isinstance(data, dict): - raise TypeError + msg = f"Expected dict response, got {type(data).__name__}" + raise TypeError(msg) return data async def _list_request(self, *args: Any, **kwargs: Any) -> list: data = await self.request(*args, **kwargs) if not isinstance(data, list): - raise TypeError + msg = f"Expected list response, got {type(data).__name__}" + raise TypeError(msg) return data async def _str_request(self, *args: Any, **kwargs: Any) -> str: data = await self.request(*args, **kwargs) if not isinstance(data, str): - raise TypeError + msg = f"Expected str response, got {type(data).__name__}" + raise TypeError(msg) return data @staticmethod @@ -139,37 +146,36 @@ async def get_error_log(self) -> str: Returns the server error log as a string. :code:`GET /api/error_log` """ - return cast(str, await self.request("error_log")) + return await self._str_request("error_log") - async def get_config(self) -> dict[str, JSONType]: + async def get_config(self) -> dict[str, Any]: """ Returns the yaml configuration of homeassistant. :code:`GET /api/config` """ - return cast(dict[str, JSONType], await self.request("config")) + return await self._dict_request("config") async def get_logbook_entries( self, - *args, - **kwargs, + *args: Any, + **kwargs: Any, ) -> AsyncGenerator[LogbookEntry, None]: """ Returns a list of logbook entries from homeassistant. :code:`GET /api/logbook/` """ params, url = self.prepare_get_logbook_entry_params(*args, **kwargs) - data = await self.request( - url, params=self.construct_params(cast(Dict[str, Optional[str]], params)) - ) + data = await self._list_request(url, params=params) for entry in data: yield LogbookEntry.model_validate(entry) async def get_entity_histories( self, - entities: Optional[Tuple[Entity, ...]] = None, - start_timestamp: Optional[datetime] = None, + entities: tuple[AsyncEntity, ...] | None = None, + start_timestamp: datetime | None = None, # Defaults to 1 day before. https://developers.home-assistant.io/docs/api/rest/ - end_timestamp: Optional[datetime] = None, + end_timestamp: datetime | None = None, + *, significant_changes_only: bool = False, ) -> AsyncGenerator[History, None]: """ @@ -182,10 +188,7 @@ async def get_entity_histories( end_timestamp=end_timestamp, significant_changes_only=significant_changes_only, ) - data = await self.request( - url, - params=self.construct_params(params), - ) + data = await self._list_request(url, params=params) for states in data: yield History.model_validate({"states": states}) @@ -195,19 +198,17 @@ async def get_rendered_template(self, template: str) -> str: :code:`POST /api/template` """ try: - return cast( - str, - await self.request( - "template", - json=dict(template=template), - method="POST", - ), + return await self._str_request( + "template", + json={"template": template}, + method=HTTPMethod.POST, ) except RequestError as err: - raise BadTemplateError( + msg = ( "Your template is invalid. " "Try debugging it in the developer tools page of homeassistant." - ) from err + ) + raise BadTemplateError(msg) from err # API check methods async def check_api_config(self) -> bool: @@ -215,45 +216,40 @@ async def check_api_config(self) -> bool: Asks Home Assistant to validate its configuration file and returns true/false. :code:`POST /api/config/core/check_config` """ - res = await self.request("config/core/check_config", method="POST") - res = cast(Dict[Any, Any], res) - valid = {"valid": True, "invalid": False}.get( - cast( - str, - res["result"], - ), - False, + res = await self._dict_request( + "config/core/check_config", + method=HTTPMethod.POST, ) - return valid + return {"valid": True, "invalid": False}.get(res["result"], False) async def check_api_running(self) -> bool: """ Asks Home Assistant if its running. :code:`GET /api/` """ - res = cast(Dict[Any, Any], await self.request("")) + res = await self._dict_request("") return res.get("message") == "API running." # Entity methods - async def get_entities(self) -> Dict[str, Group]: + async def get_entities(self) -> dict[str, AsyncGroup]: """ Fetches all entities from the api. :code:`GET /api/states` """ - entities: Dict[str, Group] = {} + entities: dict[str, AsyncGroup] = {} for state in await self.get_states(): group_id, entity_slug = state.entity_id.split(".") if group_id not in entities: - entities[group_id] = Group(group_id=group_id, _client=self) # type: ignore[arg-type] - entities[group_id]._add_entity(entity_slug, state) + entities[group_id] = AsyncGroup(group_id=group_id, client=self) + entities[group_id]._add_entity(entity_slug, state) # noqa: SLF001 return entities async def get_entity( self, - group_id: Optional[str] = None, - slug: Optional[str] = None, - entity_id: Optional[str] = None, - ) -> Optional[Entity]: + group_id: str | None = None, + slug: str | None = None, + entity_id: str | None = None, + ) -> AsyncEntity | None: """ Returns a Entity model for an :code:`entity_id`. :code:`GET /api/states/` @@ -267,30 +263,26 @@ async def get_entity( "Use keyword arguments to pass entity_id. " "Or you can pass the group_id and slug instead." ) - raise ValueError( - f"Neither group_id and slug or entity_id provided. {help_msg}" - ) + msg = f"Neither group_id and slug or entity_id provided. {help_msg}" + raise ValueError(msg) group_id, entity_slug = state.entity_id.split(".") - group = Group(group_id=group_id, _client=self) # type: ignore[arg-type] - group._add_entity(entity_slug, state) + group = AsyncGroup(group_id=group_id, client=self) + group._add_entity(entity_slug, state) # noqa: SLF001 return group.get_entity(entity_slug) # Services and domain methods - async def get_domains(self) -> Dict[str, Domain]: + async def get_domains(self) -> dict[str, AsyncDomain]: """ Fetches all :py:class:`Service` 's from the API. :code:`GET /api/services` """ - data = await self.request("services") - domains = map( - lambda json: Domain.from_json_with_client( - json, client=cast("AsyncClient", self) - ), - cast(Tuple[dict[str, JSONType], ...], data), + data = await self._list_request("services") + domains = ( + AsyncDomain.from_json_with_client(json, client=self) for json in data ) return {domain.domain_id: domain for domain in domains} - async def get_domain(self, domain_id: str) -> Optional[Domain]: + async def get_domain(self, domain_id: str) -> AsyncDomain | None: """ Fetches all :py:class:`Service`'s under a particular service :py:class:`Domain`. Uses cached data from :py:meth:`get_domains` if available. @@ -302,44 +294,41 @@ async def trigger_service( self, domain: str, service: str, - **service_data: Union[dict[str, JSONType], List[Any], str], - ) -> Tuple[State, ...]: + **service_data: Any, + ) -> tuple[State, ...]: """ Tells Home Assistant to trigger a service, returns all states changed while in the process of being called. :code:`POST /api/services//` """ - data = await self.request( + data = await self._list_request( f"services/{domain}/{service}", - method="POST", + method=HTTPMethod.POST, json=service_data, ) - return tuple(map(State.from_json, cast(List[Dict[Any, Any]], data))) + return tuple(map(State.from_json, data)) async def trigger_service_with_response( self, domain: str, service: str, - **service_data: Union[dict[str, JSONType], List[Any], str], - ) -> tuple[tuple[State, ...], dict[str, JSONType]]: + **service_data: Any, + ) -> tuple[tuple[State, ...], dict[str, Any]]: """ Tells Home Assistant to trigger a service, returns the response from the service call. :code:`POST /api/services//` Returns a list of the states changed and the response from the service call. """ - data = cast( - dict[str, dict[str, JSONType]], - await self.request( - join("services", domain, service) + "?return_response", - method="POST", - json=service_data, - ), + data = await self._dict_request( + join("services", domain, service) + "?return_response", + method=HTTPMethod.POST, + json=service_data, ) states = tuple( map( State.from_json, - cast(List[Dict[Any, Any]], data.get("changed_states", [])), - ) + data.get("changed_states", []), + ), ) return states, data.get("service_response", {}) @@ -347,9 +336,9 @@ async def trigger_service_with_response( async def get_state( # pylint: disable=duplicate-code self, *, - entity_id: Optional[str] = None, - group_id: Optional[str] = None, - slug: Optional[str] = None, + entity_id: str | None = None, + group_id: str | None = None, + slug: str | None = None, ) -> State: """ Fetches the state of the entity specified. @@ -360,8 +349,8 @@ async def get_state( # pylint: disable=duplicate-code slug=slug, entity_id=entity_id, ) - data = await self.request(join("states", target_entity_id)) - return State.from_json(cast(Dict[Any, Any], data)) + data = await self._dict_request(join("states", target_entity_id)) + return State.from_json(data) async def set_state( # pylint: disable=duplicate-code self, @@ -372,38 +361,33 @@ async def set_state( # pylint: disable=duplicate-code To communicate with the device, use :py:meth:`Service.trigger` or :py:meth:`Service.async_trigger`. :code:`POST /api/states/` """ - data = await self.request( + data = await self._dict_request( join("states", state.entity_id), - method="POST", + method=HTTPMethod.POST, json=json.loads(state.model_dump_json()), ) - return State.from_json(cast(Dict[Any, Any], data)) + return State.from_json(data) - async def get_states(self) -> Tuple[State, ...]: + async def get_states(self) -> tuple[State, ...]: """ Gets the states of all entities within homeassistant. :code:`GET /api/states` """ - data = await self.request("states") - return tuple(map(State.from_json, cast(List[Dict[Any, Any]], data))) + data = await self._list_request("states") + return tuple(map(State.from_json, data)) # Event methods - async def get_events(self) -> Tuple[Event, ...]: + async def get_events(self) -> tuple[AsyncEvent, ...]: """ Gets the Events that happen within homeassistant :code:`GET /api/events` """ - data = await self.request("events") + data = await self._list_request("events") return tuple( - map( - lambda json: Event.from_json_with_client( - json, client=cast("AsyncClient", self) - ), - cast(List[dict[str, JSONType]], data), - ) + AsyncEvent.from_json_with_client(json, client=self) for json in data ) - async def get_event(self, name: str) -> Optional[Event]: + async def get_event(self, name: str) -> AsyncEvent | None: """ Gets the :py:class:`Event` with the specified name if it has at least one listener. Uses cached data from :py:meth:`get_events` if available. @@ -418,17 +402,17 @@ async def fire_event(self, event_type: str, **event_data: Any) -> str: Fires a given event_type within homeassistant. Must be an existing event_type. :code:`POST /api/events/` """ - data = await self.request( + data = await self._dict_request( join("events", event_type), - method="POST", + method=HTTPMethod.POST, json=event_data, ) - return cast(str, data.get("message", "No message provided")) + return data.get("message", "No message provided") - async def get_components(self) -> Tuple[str, ...]: + async def get_components(self) -> tuple[str, ...]: """ Returns a tuple of all registered components. :code:`GET /api/components` """ - data = await self.request("components") - return tuple(cast(List[str], data)) + data = await self._list_request("components") + return tuple(data) diff --git a/homeassistant_api/asyncwebsocket.py b/homeassistant_api/asyncwebsocket.py index 4919c333..709a0e50 100644 --- a/homeassistant_api/asyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -1,90 +1,99 @@ +from __future__ import annotations + import contextlib import json import logging import time -from typing import ( - Any, - AsyncGenerator, - Dict, - Optional, - Tuple, - Union, - cast, -) +from typing import TYPE_CHECKING +from typing import Any import websockets.asyncio.client as ws from pydantic import ValidationError +from typing_extensions import Self -from homeassistant_api.errors import ( - ReceivingError, - ResponseError, - UnauthorizedError, -) -from homeassistant_api.models import ( - ConfigEntry, - ConfigEntryEvent, - ConfigSubEntry, - Domain, - Entity, - Group, - State, -) -from homeassistant_api.models.config_entries import DisableEnableResult, FlowResult -from homeassistant_api.models.states import Context -from homeassistant_api.models.websocket import ( - AuthInvalid, - AuthOk, - AuthRequired, - EventResponse, - FiredEvent, - FiredTrigger, - PingResponse, - ResultResponse, - TemplateEvent, -) from homeassistant_api.basewebsocket import BaseWebsocketClient -from homeassistant_api.utils import JSONType, prepare_entity_id +from homeassistant_api.errors import ReceivingError +from homeassistant_api.errors import ResponseError +from homeassistant_api.errors import UnauthorizedError +from homeassistant_api.models import AsyncDomain +from homeassistant_api.models import AsyncEntity +from homeassistant_api.models import AsyncGroup +from homeassistant_api.models import ConfigEntry +from homeassistant_api.models import ConfigEntryEvent +from homeassistant_api.models import ConfigSubEntry +from homeassistant_api.models import History +from homeassistant_api.models import State +from homeassistant_api.models.config_entries import DisableEnableResult +from homeassistant_api.models.config_entries import FlowResult +from homeassistant_api.models.states import Context +from homeassistant_api.models.websocket import AuthInvalid +from homeassistant_api.models.websocket import AuthOk +from homeassistant_api.models.websocket import AuthRequired +from homeassistant_api.models.websocket import EventResponse +from homeassistant_api.models.websocket import FiredEvent +from homeassistant_api.models.websocket import FiredTrigger +from homeassistant_api.models.websocket import PingResponse +from homeassistant_api.models.websocket import ResultResponse +from homeassistant_api.models.websocket import TemplateEvent +from homeassistant_api.utils import prepare_entity_id + +if TYPE_CHECKING: + from collections.abc import AsyncGenerator + from datetime import datetime + from types import TracebackType logger = logging.getLogger(__name__) class AsyncWebsocketClient(BaseWebsocketClient): - _async_conn: Optional[ws.ClientConnection] + _async_conn: ws.ClientConnection | None def __init__(self, api_url: str, token: str) -> None: super().__init__(api_url, token) self._async_conn = None - async def __aenter__(self): + async def __aenter__(self) -> Self: self._async_conn = await ws.connect(self.api_url) await self._async_conn.__aenter__() okay = await self.authentication_phase() - logging.info("Authenticated with Home Assistant (%s)", okay.ha_version) + logger.info("Authenticated with Home Assistant (%s)", okay.ha_version) await self.supported_features_phase() return self - async def __aexit__(self, exc_type, exc_value, traceback): + async def __aexit__( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + traceback: TracebackType | None, + ) -> None: if not self._async_conn: - raise ReceivingError("Connection is not open!") + msg = "Connection is not open!" + raise ReceivingError(msg) await self._async_conn.__aexit__(exc_type, exc_value, traceback) self._async_conn = None - async def _async_send(self, data: dict[str, JSONType]) -> None: + async def _async_send(self, data: dict[str, Any]) -> None: """Send a message to the websocket server.""" logger.debug(f"Sending message: {data}") if self._async_conn is None: - raise ReceivingError("Connection is not open!") + msg = "Connection is not open!" + raise ReceivingError(msg) await self._async_conn.send(json.dumps(data)) - async def _async_recv(self) -> dict[str, JSONType]: + async def _async_recv(self) -> dict[str, Any]: """Receive a message from the websocket server.""" if self._async_conn is None: - raise ReceivingError("Connection is not open!") + msg = "Connection is not open!" + raise ReceivingError(msg) _bytes = await self._async_conn.recv() logger.debug("Received message: %s", _bytes) - return cast(dict[str, JSONType], json.loads(_bytes)) + r = json.loads(_bytes) + if not isinstance(r, dict): + msg = f"Expected dict, got {type(r).__name__}" + raise TypeError(msg) + return r - async def send(self, type: str, include_id: bool = True, **data: Any) -> int: + async def send(self, msg_type: str, include_id: bool = True, **data: Any) -> int: """ Send a command message to the websocket server and wait for a "result" response. @@ -93,11 +102,13 @@ async def send(self, type: str, include_id: bool = True, **data: Any) -> int: if include_id: # auth messages don't have an id data["id"] = self._request_id() - data["type"] = type + data["type"] = msg_type await self._async_send(data) if "id" in data: - assert isinstance(data["id"], int) + if not isinstance(data["id"], int): + msg = f"Expected int for message id, got {type(data['id'])}" + raise TypeError(msg) if data["type"] == "ping": self._ping_responses[data["id"]] = PingResponse( start=time.perf_counter_ns(), @@ -110,23 +121,66 @@ async def send(self, type: str, include_id: bool = True, **data: Any) -> int: return data["id"] return -1 # non-command messages don't have an id - async def recv(self, id: int) -> Union[EventResponse, ResultResponse, PingResponse]: + async def recv( + self, + msg_id: int, + ) -> EventResponse | ResultResponse | PingResponse | None: """Receive a response to a message from the websocket server.""" while True: ## have we received a message with the id we're looking for? - if self._result_responses.get(id) is not None: - return cast(dict[int, ResultResponse], self._result_responses).pop( - id - ) # ughhh why can't mypy figure this out - if self._event_responses.get(id, []): - return self._event_responses[id].pop(0) - if self._ping_responses.get(id) is not None: - if self._ping_responses[id].end is not None: - return self._ping_responses.pop(id) + if self._result_responses.get(msg_id) is not None: + return self._result_responses.pop(msg_id) + if self._event_responses.get(msg_id, []): + return self._event_responses[msg_id].pop(0) + if ( + self._ping_responses.get(msg_id) is not None + and self._ping_responses[msg_id].end is not None + ): + return self._ping_responses.pop(msg_id) ## if not, keep receiving messages until we do self.handle_recv(await self._async_recv()) + async def recv_result(self, msg_id: int) -> ResultResponse: + """Receive a ResultResponse, raising TypeError if the response is not a ResultResponse.""" + resp = await self.recv(msg_id) + if not isinstance(resp, ResultResponse): + msg = f"Expected ResultResponse, got {type(resp).__name__}" + raise TypeError(msg) + return resp + + async def recv_result_dict(self, msg_id: int) -> dict[str, Any]: + """Receive a ResultResponse and return its result as a dict.""" + resp = await self.recv_result(msg_id) + if not isinstance(resp.result, dict): + msg = f"Expected dict result, got {type(resp.result).__name__}" + raise TypeError(msg) + return resp.result + + async def recv_result_list(self, msg_id: int) -> list[dict[str, Any]]: + """Receive a ResultResponse and return its result as a list.""" + resp = await self.recv_result(msg_id) + if not isinstance(resp.result, list): + msg = f"Expected list result, got {type(resp.result).__name__}" + raise TypeError(msg) + return resp.result + + async def recv_event(self, msg_id: int) -> EventResponse: + """Receive an EventResponse, raising TypeError if the response is not an EventResponse.""" + resp = await self.recv(msg_id) + if not isinstance(resp, EventResponse): + msg = f"Expected EventResponse, got {type(resp).__name__}" + raise TypeError(msg) + return resp + + async def recv_ping(self, msg_id: int) -> PingResponse: + """Receive a PingResponse, raising TypeError if the response is not a PingResponse.""" + resp = await self.recv(msg_id) + if not isinstance(resp, PingResponse): + msg = f"Expected PingResponse, got {type(resp).__name__}" + raise TypeError(msg) + return resp + async def authentication_phase(self) -> AuthOk: """Authenticate with the websocket server.""" # Capture the first message from the server saying we need to authenticate @@ -134,7 +188,8 @@ async def authentication_phase(self) -> AuthOk: welcome = AuthRequired.model_validate(await self._async_recv()) logger.debug(f"Received welcome message: {welcome}") except ValidationError as e: - raise ResponseError("Unexpected response during authentication") from e + msg = "Unexpected response during authentication" + raise ResponseError(msg) from e # Send our authentication token await self.send("auth", access_token=self.token, include_id=False) @@ -148,26 +203,29 @@ async def authentication_phase(self) -> AuthOk: error_resp = AuthInvalid.model_validate(resp) raise UnauthorizedError(error_resp.message) from e except Exception as e: - raise ResponseError( - "Unexpected response during authentication", resp["message"] - ) from e + msg = "Unexpected response during authentication" + raise ResponseError(msg, resp["message"]) from e async def supported_features_phase(self) -> None: """Get the supported features from the websocket server.""" - resp = await self.recv( + resp = await self.recv_result( await self.send( "supported_features", features={ - # "coalesce_messages": 42, # including this key sets it to True + # "coalesce_messages": 42, # including this key sets it to True # noqa: ERA001 }, - ) + ), ) - assert cast(ResultResponse, resp).result is None + if resp.result is not None: + msg = "Expected None result for unsubscribe" + raise ValueError(msg) async def ping_latency(self) -> float: """Get the latency (in milliseconds) of the connection by sending a ping message.""" - pong = cast(PingResponse, await self.recv(await self.send("ping"))) - assert pong.end is not None + pong = await self.recv_ping(await self.send("ping")) + if pong.end is None: + msg = "Pong response missing end timestamp" + raise ValueError(msg) return (pong.end - pong.start) / 1_000_000 async def get_rendered_template(self, template: str) -> str: @@ -177,28 +235,31 @@ async def get_rendered_template(self, template: str) -> str: Sends command :code:`{"type": "render_template", ...}`. """ - id = await self.send("render_template", template=template, report_errors=True) - first = await self.recv(id) - assert cast(ResultResponse, first).result is None - second = await self.recv(id) - await self._async_unsubscribe(id) - return cast(TemplateEvent, cast(EventResponse, second).event).result - - async def get_config(self) -> dict[str, JSONType]: + msg_id = await self.send( + "render_template", + template=template, + report_errors=True, + ) + first = await self.recv_result(msg_id) + if first.result is not None: + msg = "Expected None result for render_template subscription" + raise ValueError(msg) + second = await self.recv_event(msg_id) + await self._async_unsubscribe(msg_id) + if not isinstance(second.event, TemplateEvent): + msg = f"Expected TemplateEvent, got {type(second.event).__name__}" + raise TypeError(msg) + return second.event.result + + async def get_config(self) -> dict[str, Any]: """ Get the Home Assistant configuration. Sends command :code:`{"type": "get_config", ...}`. """ - return cast( - dict[str, JSONType], - cast( - ResultResponse, - await self.recv(await self.send("get_config")), - ).result, - ) + return await self.recv_result_dict(await self.send("get_config")) - async def get_states(self) -> Tuple[State, ...]: + async def get_states(self) -> tuple[State, ...]: """ Get a list of states. @@ -206,21 +267,15 @@ async def get_states(self) -> Tuple[State, ...]: """ return tuple( State.from_json(state) - for state in cast( - list[dict[str, JSONType]], - cast( - ResultResponse, - await self.recv(await self.send("get_states")), - ).result, - ) + for state in await self.recv_result_list(await self.send("get_states")) ) async def get_state( # pylint: disable=duplicate-code self, *, - entity_id: Optional[str] = None, - group_id: Optional[str] = None, - slug: Optional[str] = None, + entity_id: str | None = None, + group_id: str | None = None, + slug: str | None = None, ) -> State: """ Just calls the :py:meth:`get_states` method and filters the result. @@ -237,30 +292,31 @@ async def get_state( # pylint: disable=duplicate-code for state in await self.get_states(): if state.entity_id == entity_id: return state - raise ValueError(f"Entity {entity_id} not found!") + msg = f"Entity {entity_id} not found!" + raise ValueError(msg) - async def get_entities(self) -> Dict[str, Group]: + async def get_entities(self) -> dict[str, AsyncGroup]: """ - Fetches all entities from the Websocket API and returns them as a dictionary of :py:class:`Group`'s. + Fetches all entities from the Websocket API and returns them as a dictionary of :py:class:`AsyncGroup`'s. For example :code:`light.living_room` would be in the group :code:`light` (i.e. :code:`get_entities()["light"].living_room`). """ - entities: Dict[str, Group] = {} + entities: dict[str, AsyncGroup] = {} for state in await self.get_states(): group_id, entity_slug = state.entity_id.split(".") if group_id not in entities: - entities[group_id] = Group( + entities[group_id] = AsyncGroup( group_id=group_id, - _client=self, # type: ignore[arg-type] + client=self, ) - entities[group_id]._add_entity(entity_slug, state) + entities[group_id]._add_entity(entity_slug, state) # noqa: SLF001 return entities async def get_entity( self, - group_id: Optional[str] = None, - slug: Optional[str] = None, - entity_id: Optional[str] = None, - ) -> Optional[Entity]: + group_id: str | None = None, + slug: str | None = None, + entity_id: str | None = None, + ) -> AsyncEntity | None: """ Returns an :py:class:`Entity` model for an :code:`entity_id`. @@ -278,18 +334,34 @@ async def get_entity( "Use keyword arguments to pass entity_id. " "Or you can pass the group_id and slug instead" ) - raise ValueError( - f"Neither group_id and slug or entity_id provided. {help_msg}" - ) + msg = f"Neither group_id and slug or entity_id provided. {help_msg}" + raise ValueError(msg) split_group_id, split_slug = state.entity_id.split(".") - group = Group( + group = AsyncGroup( group_id=split_group_id, - _client=self, # type: ignore[arg-type] + client=self, ) - group._add_entity(split_slug, state) + group._add_entity(split_slug, state) # noqa: SLF001 return group.get_entity(split_slug) - async def get_domains(self) -> dict[str, Domain]: + async def set_state(self, state: State) -> State: + """Not supported over WebSocket. Use the REST :py:class:`AsyncClient` instead.""" + msg = "set_state is not supported over the WebSocket API. Use the REST AsyncClient." + raise NotImplementedError(msg) + + async def get_entity_histories( + self, + entities: tuple[AsyncEntity, ...] | None = None, # noqa: ARG002 + start_timestamp: datetime | None = None, # noqa: ARG002 + end_timestamp: datetime | None = None, # noqa: ARG002 + significant_changes_only: bool = False, # noqa: ARG002 + ) -> AsyncGenerator[History, None]: + """Not supported over WebSocket. Use the REST :py:class:`AsyncClient` instead.""" + msg = "get_entity_histories is not supported over the WebSocket API. Use the REST AsyncClient." + raise NotImplementedError(msg) + yield # unreachable: makes this a true AsyncGenerator for type checkers + + async def get_domains(self) -> dict[str, AsyncDomain]: """ Get a list of services that Home Assistant offers (organized into a dictionary of service domains). @@ -297,17 +369,17 @@ async def get_domains(self) -> dict[str, Domain]: Sends command :code:`{"type": "get_services", ...}`. """ - resp = await self.recv(await self.send("get_services")) - domains = map( - lambda item: Domain.from_json_with_client( + result = await self.recv_result_dict(await self.send("get_services")) + domains = ( + AsyncDomain.from_json_with_client( {"domain": item[0], "services": item[1]}, - client=cast("AsyncWebsocketClient", self), - ), - cast(dict[str, JSONType], cast(ResultResponse, resp).result).items(), + client=self, + ) + for item in result.items() ) return {domain.domain_id: domain for domain in domains} - async def get_domain(self, domain: str) -> Domain: + async def get_domain(self, domain: str) -> AsyncDomain: """Get a domain. Note: This is not a method in the WS API client... yet. @@ -322,8 +394,8 @@ async def trigger_service( self, domain: str, service: str, - entity_id: Optional[str] = None, - **service_data, + entity_id: str | None = None, + **service_data: Any, ) -> None: """ Trigger a service (that doesn't return a response). @@ -339,27 +411,25 @@ async def trigger_service( if entity_id is not None: params["target"] = {"entity_id": entity_id} - data = await self.recv( - await self.send("call_service", include_id=True, **params) + result = await self.recv_result_dict( + await self.send("call_service", include_id=True, **params), ) - # TODO: handle data["result"]["context"] ? + # TODO: handle result["context"] ? - assert ( - cast( - dict[str, JSONType], - cast(ResultResponse, data).result, - ).get("response") - is None - ) # should always be None for services without a response + if result.get("response") is not None: + msg = "Unexpected response from service without response support" + raise ValueError( + msg, + ) async def trigger_service_with_response( self, domain: str, service: str, - entity_id: Optional[str] = None, - **service_data, - ) -> dict[str, JSONType]: + entity_id: str | None = None, + **service_data: Any, + ) -> dict[str, Any]: """ Trigger a service (that returns a response) and return the response. @@ -374,19 +444,17 @@ async def trigger_service_with_response( if entity_id is not None: params["target"] = {"entity_id": entity_id} - data = await self.recv( - await self.send("call_service", include_id=True, **params) + result = await self.recv_result_dict( + await self.send("call_service", include_id=True, **params), ) - return cast(dict[str, dict[str, JSONType]], cast(ResultResponse, data).result)[ - "response" - ] + return result["response"] @contextlib.asynccontextmanager async def listen_events( self, - event_type: Optional[str] = None, - ) -> AsyncGenerator[AsyncGenerator[FiredEvent, None], None]: + event_type: str | None = None, + ) -> AsyncGenerator[AsyncGenerator[FiredEvent | FiredTrigger, None], None]: """ Listen for all events of a certain type. @@ -399,10 +467,10 @@ async def listen_events( print(event) """ subscription = await self._async_subscribe_events(event_type) - yield cast(AsyncGenerator[FiredEvent, None], self._async_wait_for(subscription)) # type: ignore[unused-coroutine] + yield self._async_wait_for(subscription) await self._async_unsubscribe(subscription) - async def _async_subscribe_events(self, event_type: Optional[str]) -> int: + async def _async_subscribe_events(self, event_type: str | None) -> int: """ Subscribe to all events of a certain type. @@ -411,15 +479,17 @@ async def _async_subscribe_events(self, event_type: Optional[str]) -> int: """ params = {"event_type": event_type} if event_type else {} return ( - await self.recv( - await self.send("subscribe_events", include_id=True, **params) + await self.recv_result( + await self.send("subscribe_events", include_id=True, **params), ) ).id @contextlib.asynccontextmanager async def listen_trigger( - self, trigger: str, **trigger_fields - ) -> AsyncGenerator[AsyncGenerator[dict[str, JSONType], None], None]: + self, + trigger: str, + **trigger_fields: Any, + ) -> AsyncGenerator[AsyncGenerator[dict[str, Any], None], None]: """ Listen to a Home Assistant trigger. Allows additional trigger keyword parameters with :code:`**kwargs` (i.e. passing :code:`tag_id=...` for NFC tag triggers). @@ -449,40 +519,42 @@ async def listen_trigger( subscription = await self._async_subscribe_trigger(trigger, **trigger_fields) yield ( fired_trigger.variables - async for fired_trigger in cast( - AsyncGenerator[FiredTrigger, None], - self._async_wait_for(subscription), # type: ignore[unused-coroutine] - ) + async for fired_trigger in self._async_wait_for(subscription) + if isinstance(fired_trigger, FiredTrigger) ) await self._async_unsubscribe(subscription) - async def _async_subscribe_trigger(self, trigger: str, **trigger_fields) -> int: + async def _async_subscribe_trigger( + self, + trigger: str, + **trigger_fields: Any, + ) -> int: """ Return the subscription id of the trigger we subscribe to. Sends command :code:`{"type": "subscribe_trigger", ...}`. """ return ( - await self.recv( + await self.recv_result( await self.send( - "subscribe_trigger", trigger={"platform": trigger, **trigger_fields} - ) + "subscribe_trigger", + trigger={"platform": trigger, **trigger_fields}, + ), ) ).id async def _async_wait_for( - self, subscription_id: int - ) -> AsyncGenerator[Union[FiredEvent, FiredTrigger], None]: + self, + subscription_id: int, + ) -> AsyncGenerator[FiredEvent | FiredTrigger, None]: """ An iterator that waits for events of a certain type. """ while True: - yield cast( - Union[ - FiredEvent, FiredTrigger - ], # we can cast this because TemplateEvent is only used for rendering templates - cast(EventResponse, await self.recv(subscription_id)).event, - ) + event_resp = await self.recv_event(subscription_id) + # TODO: DISCUSS Change of behavior here. before anything received would get yielded + if isinstance(event_resp.event, FiredEvent | FiredTrigger): + yield event_resp.event async def _async_unsubscribe(self, subcription_id: int) -> None: """ @@ -490,24 +562,24 @@ async def _async_unsubscribe(self, subcription_id: int) -> None: Sends command :code:`{"type": "unsubscribe_events", ...}`. """ - resp = await self.recv( - await self.send("unsubscribe_events", subscription=subcription_id) + resp = await self.recv_result( + await self.send("unsubscribe_events", subscription=subcription_id), ) - assert cast(ResultResponse, resp).result is None + if resp.result is not None: + msg = "Expected None result for unsubscribe" + raise ValueError(msg) self._event_responses.pop(subcription_id) - async def get_config_entries(self) -> Tuple[ConfigEntry, ...]: + async def get_config_entries(self) -> tuple[ConfigEntry, ...]: """ Get all config entries. Sends command :code:`{"type": "config_entries/get", ...}`. """ - resp = await self.recv(await self.send("config_entries/get")) return tuple( ConfigEntry.from_json(entry) - for entry in cast( - list[dict[str, JSONType]], - cast(ResultResponse, resp).result, + for entry in await self.recv_result_list( + await self.send("config_entries/get"), ) ) @@ -517,16 +589,14 @@ async def disable_config_entry(self, entry_id: str) -> DisableEnableResult: Sends command :code:`{"type": "config_entries/disable", ...}`. """ - resp = await self.recv( + result = await self.recv_result_dict( await self.send( "config_entries/disable", entry_id=entry_id, disabled_by="user", - ) - ) - return DisableEnableResult.from_json( - cast(dict[str, JSONType], cast(ResultResponse, resp).result) + ), ) + return DisableEnableResult.from_json(result) async def enable_config_entry(self, entry_id: str) -> DisableEnableResult: """ @@ -534,16 +604,14 @@ async def enable_config_entry(self, entry_id: str) -> DisableEnableResult: Sends command :code:`{"type": "config_entries/disable", ...}`. """ - resp = await self.recv( + result = await self.recv_result_dict( await self.send( "config_entries/disable", entry_id=entry_id, disabled_by=None, - ) - ) - return DisableEnableResult.from_json( - cast(dict[str, JSONType], cast(ResultResponse, resp).result) + ), ) + return DisableEnableResult.from_json(result) async def ignore_config_flow(self, flow_id: str, title: str) -> None: """ @@ -556,38 +624,32 @@ async def ignore_config_flow(self, flow_id: str, title: str) -> None: "config_entries/ignore_flow", flow_id=flow_id, title=title, - ) + ), ) - async def get_nonuser_flows_in_progress(self) -> Tuple[FlowResult, ...]: + async def get_nonuser_flows_in_progress(self) -> tuple[FlowResult, ...]: """ Get non-user config flows in progress. Sends command :code:`{"type": "config_entries/flow/progress", ...}`. """ - resp = await self.recv(await self.send("config_entries/flow/progress")) return tuple( FlowResult.from_json(flow) - for flow in cast( - list[dict[str, JSONType]], - cast(ResultResponse, resp).result, + for flow in await self.recv_result_list( + await self.send("config_entries/flow/progress"), ) ) - async def get_entry_subentries(self, entry_id: str) -> Tuple[ConfigSubEntry, ...]: + async def get_entry_subentries(self, entry_id: str) -> tuple[ConfigSubEntry, ...]: """ Get subentries for a config entry. Sends command :code:`{"type": "config_entries/subentries/list", ...}`. """ - resp = await self.recv( - await self.send("config_entries/subentries/list", entry_id=entry_id) - ) return tuple( ConfigSubEntry.from_json(subentry) - for subentry in cast( - list[dict[str, JSONType]], - cast(ResultResponse, resp).result, + for subentry in await self.recv_result_list( + await self.send("config_entries/subentries/list", entry_id=entry_id), ) ) @@ -602,7 +664,7 @@ async def delete_entry_subentry(self, entry_id: str, subentry_id: str) -> None: "config_entries/subentries/delete", entry_id=entry_id, subentry_id=subentry_id, - ) + ), ) @contextlib.asynccontextmanager @@ -614,36 +676,32 @@ async def listen_config_entries( Sends command :code:`{"type": "config_entries/subscribe", ...}`. """ - subscription = (await self.recv(await self.send("config_entries/subscribe"))).id + subscription = ( + await self.recv_result(await self.send("config_entries/subscribe")) + ).id yield self._async_wait_for_config_entries(subscription) await self._async_unsubscribe(subscription) async def _async_wait_for_config_entries( - self, subscription_id: int + self, + subscription_id: int, ) -> AsyncGenerator[list[ConfigEntryEvent], None]: """An async iterator that waits for config entry events.""" while True: - event_resp = cast(EventResponse, await self.recv(subscription_id)) - entries = cast(list[dict[str, JSONType]], event_resp.event) - yield [ConfigEntryEvent.from_json(entry) for entry in entries] + event_resp = await self.recv_event(subscription_id) + if isinstance(event_resp.event, list): + yield [ConfigEntryEvent.from_json(entry) for entry in event_resp.event] - async def fire_event(self, event_type: str, **event_data) -> Context: + async def fire_event(self, event_type: str, **event_data: Any) -> Context: """ Fire an event. Sends command :code:`{"type": "fire_event", ...}`. """ - params: dict[str, JSONType] = {"event_type": event_type} + params: dict[str, Any] = {"event_type": event_type} if event_data: params["event_data"] = event_data - return Context.from_json( - cast( - dict[str, dict[str, JSONType]], - cast( - ResultResponse, - await self.recv( - await self.send("fire_event", include_id=True, **params) - ), - ).result, - )["context"] + result = await self.recv_result_dict( + await self.send("fire_event", include_id=True, **params), ) + return Context.from_json(result["context"]) diff --git a/homeassistant_api/baseclient.py b/homeassistant_api/baseclient.py index 67d621b1..8a7a28f0 100644 --- a/homeassistant_api/baseclient.py +++ b/homeassistant_api/baseclient.py @@ -1,13 +1,15 @@ """Module for parent BaseClient class""" import urllib.parse as urlparse -from datetime import datetime, timedelta +from collections.abc import Iterable +from collections.abc import Mapping +from datetime import datetime +from datetime import timedelta from posixpath import join -from typing import Dict, Iterable, Mapping, Optional, Tuple, Union +from typing import Any from urllib.parse import quote_plus -from homeassistant_api.utils import JSONType - +from .models import AsyncEntity from .models import Entity @@ -16,18 +18,19 @@ class BaseClient: api_url: str token: str - global_request_kwargs: dict[str, JSONType] + global_request_kwargs: dict[str, Any] def __init__( self, api_url: str, token: str, *, - global_request_kwargs: Optional[Mapping[str, str]] = None, + global_request_kwargs: Mapping[str, str] | None = None, ) -> None: parsed = urlparse.urlparse(api_url) if parsed.scheme not in {"http", "https"}: - raise ValueError(f"Unknown scheme {parsed.scheme} in {api_url}") + msg = f"Unknown scheme {parsed.scheme} in {api_url}" + raise ValueError(msg) if global_request_kwargs is None: global_request_kwargs = {} self.api_url = api_url @@ -45,7 +48,7 @@ def endpoint(self, *path: str) -> str: return join(self.api_url, *path) @property - def _headers(self) -> Dict[str, str]: + def _headers(self) -> dict[str, str]: """Constructs the headers to send to the api for every request""" return { "Authorization": f"Bearer {self.token}", @@ -54,21 +57,20 @@ def _headers(self) -> Dict[str, str]: def prepare_headers( self, - headers: Optional[Dict[str, str]] = None, - ) -> Dict[str, str]: + headers: dict[str, str] | None = None, + ) -> dict[str, str]: """Prepares and verifies dictionary headers.""" if headers is None: headers = {} if isinstance(headers, dict): headers.update(self._headers) else: - raise ValueError( - f"headers must be dict or dict subclass, not type {type(headers)!r}" - ) + msg = f"headers must be dict or dict subclass, not type {type(headers)!r}" + raise TypeError(msg) return headers @staticmethod - def construct_params(params: Dict[str, Optional[str]]) -> str: + def construct_params(params: dict[str, str | None]) -> str: """ Custom method for constructing non-standard query strings. @@ -77,17 +79,17 @@ def construct_params(params: Dict[str, Optional[str]]) -> str: To have an empty value use an empty string :code:`""` (i.e. :code:`?key1=&key2=value2`). """ return "&".join( - [k if v is None else f"{k}={quote_plus(v)}" for k, v in params.items()] + [k if v is None else f"{k}={quote_plus(v)}" for k, v in params.items()], ) @staticmethod def prepare_get_entity_histories_params( - entities: Optional[Tuple[Entity, ...]] = None, - start_timestamp: Optional[datetime] = None, + entities: tuple[Entity | AsyncEntity, ...] | None = None, + start_timestamp: datetime | None = None, # Defaults to 1 day before. https://developers.home-assistant.io/docs/api/rest/ - end_timestamp: Optional[datetime] = None, + end_timestamp: datetime | None = None, significant_changes_only: bool = False, - ) -> Tuple[Dict[str, Optional[str]], str]: + ) -> tuple[dict[str, str | None], str]: """ Pre-logic for :py:meth:`Client.get_entity_histories` and :py:meth:`AsyncClient.get_entity_histories`. @@ -97,7 +99,7 @@ def prepare_get_entity_histories_params( * are timezone-aware * are URL-encoded (as :py:meth:`construct_params` is used instead of request's default parameter encoding) """ - params: Dict[str, Optional[str]] = {} + params: dict[str, str | None] = {} if entities is not None: params["filter_entity_id"] = ",".join([ent.entity_id for ent in entities]) if start_timestamp is not None: @@ -118,14 +120,12 @@ def prepare_get_entity_histories_params( @staticmethod def prepare_get_logbook_entry_params( - filter_entities: Optional[Union[str, Iterable[str]]] = None, - start_timestamp: Optional[ - Union[str, datetime] - ] = None, # Defaults to 1 day before - end_timestamp: Optional[Union[str, datetime]] = None, - ) -> Tuple[Dict[str, str], str]: + filter_entities: str | Iterable[str] | None = None, + start_timestamp: str | datetime | None = None, # Defaults to 1 day before + end_timestamp: str | datetime | None = None, + ) -> tuple[dict[str, str], str]: """Prepares the query string and url path for retrieving logbook entries.""" - params: Dict[str, str] = {} + params: dict[str, str] = {} if filter_entities is not None: params.update( { @@ -133,8 +133,8 @@ def prepare_get_logbook_entry_params( filter_entities if isinstance(filter_entities, str) else ",".join(filter_entities) - ) - } + ), + }, ) if end_timestamp is not None: if isinstance(end_timestamp, datetime): diff --git a/homeassistant_api/basewebsocket.py b/homeassistant_api/basewebsocket.py index cfdd4bea..2ddc950f 100644 --- a/homeassistant_api/basewebsocket.py +++ b/homeassistant_api/basewebsocket.py @@ -1,21 +1,17 @@ import logging import time import urllib.parse as urlparse -from typing import Optional, cast +from typing import Any +from typing import cast from pydantic import ValidationError -from homeassistant_api.errors import ( - ReceivingError, - RequestError, -) -from homeassistant_api.models.websocket import ( - ErrorResponse, - EventResponse, - PingResponse, - ResultResponse, -) -from homeassistant_api.utils import JSONType +from homeassistant_api.errors import ReceivingError +from homeassistant_api.errors import RequestError +from homeassistant_api.models.websocket import ErrorResponse +from homeassistant_api.models.websocket import EventResponse +from homeassistant_api.models.websocket import PingResponse +from homeassistant_api.models.websocket import ResultResponse logger = logging.getLogger(__name__) @@ -26,14 +22,15 @@ class BaseWebsocketClient: api_url: str token: str _id_counter: int - _result_responses: dict[int, Optional[ResultResponse]] + _result_responses: dict[int, ResultResponse | None] _event_responses: dict[int, list[EventResponse]] _ping_responses: dict[int, PingResponse] def __init__(self, api_url: str, token: str) -> None: parsed = urlparse.urlparse(api_url) if parsed.scheme not in {"ws", "wss"}: - raise ValueError(f"Unknown scheme {parsed.scheme} in {api_url}") + msg = f"Unknown scheme {parsed.scheme} in {api_url}" + raise ValueError(msg) self.api_url = api_url self.token = token.strip() @@ -50,7 +47,7 @@ def _request_id(self) -> int: self._id_counter += 1 return self._id_counter - def check_success(self, data: dict[str, JSONType]) -> None: + def check_success(self, data: dict[str, Any]) -> None: """Check if a command message was successful.""" try: error_resp = ErrorResponse.model_validate(data) @@ -58,17 +55,16 @@ def check_success(self, data: dict[str, JSONType]) -> None: except ValidationError: pass - def handle_recv(self, data: dict[str, JSONType]) -> None: + def handle_recv(self, data: dict[str, Any]) -> None: """Handle a received message.""" if "id" not in data: - raise ReceivingError( - "Received a message without an id outside the auth phase." - ) + msg = "Received a message without an id outside the auth phase." + raise ReceivingError(msg) self.check_success(data) self.parse_response(data) - def parse_response(self, data: dict[str, JSONType]) -> None: - data_id = cast(int, data["id"]) + def parse_response(self, data: dict[str, Any]) -> None: + data_id = cast("int", data["id"]) if data.get("type") == "pong": logger.info("Received pong message") self._ping_responses[data_id].end = time.perf_counter_ns() @@ -83,4 +79,5 @@ def parse_response(self, data: dict[str, JSONType]) -> None: logger.info("Received event message %s", data["event"]) self._event_responses[data_id].append(EventResponse.model_validate(data)) else: - raise ReceivingError(f"Received unexpected message type: {data}") + msg = f"Received unexpected message type: {data}" + raise ReceivingError(msg) diff --git a/homeassistant_api/client.py b/homeassistant_api/client.py index acda98d0..5a6c76ff 100644 --- a/homeassistant_api/client.py +++ b/homeassistant_api/client.py @@ -4,36 +4,35 @@ import json import logging -from datetime import datetime +from http import HTTPMethod from posixpath import join -from typing import ( - Any, - Dict, - Generator, - List, - Literal, - Optional, - Tuple, - Union, - cast, -) - -import requests -import requests_cache - -from homeassistant_api.errors import BadTemplateError, RequestError, RequestTimeoutError -from homeassistant_api.models import ( - Domain, - Entity, - Event, - Group, - History, - LogbookEntry, - State, -) -from homeassistant_api.processing import Processing, ResponseType +from typing import TYPE_CHECKING +from typing import Any + +from requests import Session +from requests import Timeout +from requests_cache import CachedSession +from typing_extensions import Self + from homeassistant_api.baseclient import BaseClient -from homeassistant_api.utils import JSONType, prepare_entity_id +from homeassistant_api.errors import BadTemplateError +from homeassistant_api.errors import RequestError +from homeassistant_api.errors import RequestTimeoutError +from homeassistant_api.models import Domain +from homeassistant_api.models import Entity +from homeassistant_api.models import Event +from homeassistant_api.models import Group +from homeassistant_api.models import History +from homeassistant_api.models import LogbookEntry +from homeassistant_api.models import State +from homeassistant_api.processing import Processing +from homeassistant_api.processing import ResponseType +from homeassistant_api.utils import prepare_entity_id + +if TYPE_CHECKING: + from collections.abc import Generator + from datetime import datetime + from types import TracebackType logger = logging.getLogger(__name__) @@ -47,86 +46,93 @@ class Client(BaseClient): :param global_request_kwargs: Kwargs to pass to :func:`requests.request` or :meth:`aiohttp.ClientSession.request`. Optional. """ # pylint: disable=line-too-long - cache_session: Union[requests_cache.CachedSession, requests.Session] + _session: CachedSession | Session def __init__( self, - *args, - cache_session: Union[ - requests_cache.CachedSession, - Literal[False], - Literal[None], - ] = None, # Explicitly disable cache with cache_session=False + *args: Any, + session: CachedSession + | None = None, # Explicitly disable cache with cache_session=False + use_cache: bool = False, verify_ssl: bool = True, - **kwargs, - ): + **kwargs: Any, + ) -> None: BaseClient.__init__(self, *args, **kwargs) self.global_request_kwargs["verify"] = verify_ssl - if cache_session is False: - self.cache_session = requests.Session() - elif cache_session is None: - self.cache_session = requests_cache.CachedSession( + if session: + self._session = session + elif use_cache: + self._session = CachedSession( cache_name="default_cache", backend="memory", expire_after=300, ) else: - self.cache_session = cache_session + self._session = Session() - def __enter__(self) -> "Client": - logger.debug("Entering cached requests session %r.", self.cache_session) - self.cache_session.__enter__() + def __enter__(self) -> Self: + logger.debug("Entering cached requests session %r.", self._session) + self._session.__enter__() self.check_api_running() return self - def __exit__(self, _, __, ___) -> None: - logger.debug("Exiting requests session %r", self.cache_session) - self.cache_session.close() + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + logger.debug("Exiting requests session %r", self._session) + self._session.close() def request( self, path: str, *, - params: str = "", # should be a string of query parameters from construct_params() - method="GET", - headers: Optional[Dict[str, str]] = None, + params: dict[str, Any] | None = None, + method: HTTPMethod = HTTPMethod.GET, + headers: dict[str, str] | None = None, decode_bytes: bool = True, - **kwargs, + **kwargs: Any, ) -> Any: """Base method for making requests to the api""" + path = self.endpoint(path) + if params is not None: + path = f"{path}?{self.construct_params(params)}" + if self.global_request_kwargs is not None: + kwargs.update(self.global_request_kwargs) try: - if self.global_request_kwargs is not None: - kwargs.update(self.global_request_kwargs) - logger.debug("%s request to %s", method, self.endpoint(path)) - resp = self.cache_session.request( + logger.debug(f"%s request to {path}") + resp = self._session.request( method, - self.endpoint(path) + f"?{params}" * bool(params), + path, headers=self.prepare_headers(headers), **kwargs, ) - except requests.exceptions.Timeout as err: - raise RequestTimeoutError( - f"Home Assistant did not respond in time (timeout: {kwargs.get('timeout', 300)} sec)", - url=self.endpoint(path) + f"?{params}" * bool(params), - ) from err + except Timeout as err: + msg = f"Home Assistant did not respond in time (timeout: {kwargs.get('timeout', 300)} sec)" + raise RequestTimeoutError(msg, url=path) from err return self.response_logic(response=resp, decode_bytes=decode_bytes) - def _dict_request(self, *args: Any, **kwargs: Any) -> dict: + def _dict_request(self, *args: Any, **kwargs: Any) -> dict[str, Any]: data = self.request(*args, **kwargs) if not isinstance(data, dict): - raise TypeError + msg = f"Expected dict response, got {type(data).__name__}" + raise TypeError(msg) return data def _list_request(self, *args: Any, **kwargs: Any) -> list: data = self.request(*args, **kwargs) if not isinstance(data, list): - raise TypeError + msg = f"Expected list response, got {type(data).__name__}" + raise TypeError(msg) return data def _str_request(self, *args: Any, **kwargs: Any) -> str: data = self.request(*args, **kwargs) if not isinstance(data, str): - raise TypeError + msg = f"Expected str response, got {type(data).__name__}" + raise TypeError(msg) return data @classmethod @@ -140,37 +146,35 @@ def get_error_log(self) -> str: Returns the server error log as a string. :code:`GET /api/error_log` """ - return cast(str, self.request("error_log")) + return self._str_request("error_log") - def get_config(self) -> dict[str, JSONType]: + def get_config(self) -> dict[str, Any]: """ Returns the yaml configuration of homeassistant. :code:`GET /api/config` """ - return cast(dict[str, JSONType], self.request("config")) + return self._dict_request("config") def get_logbook_entries( self, - *args, - **kwargs, + *args: Any, + **kwargs: Any, ) -> Generator[LogbookEntry, None, None]: """ Returns a list of logbook entries from homeassistant. :code:`GET /api/logbook/` """ params, url = self.prepare_get_logbook_entry_params(*args, **kwargs) - data = self.request( - url, params=self.construct_params(cast(Dict[str, Optional[str]], params)) - ) + data = self._list_request(url, params=params) for entry in data: yield LogbookEntry.model_validate(entry) def get_entity_histories( self, - entities: Optional[Tuple[Entity, ...]] = None, - start_timestamp: Optional[datetime] = None, + entities: tuple[Entity, ...] | None = None, + start_timestamp: datetime | None = None, # Defaults to 1 day before. https://developers.home-assistant.io/docs/api/rest/ - end_timestamp: Optional[datetime] = None, + end_timestamp: datetime | None = None, significant_changes_only: bool = False, ) -> Generator[History, None, None]: """ @@ -183,10 +187,7 @@ def get_entity_histories( end_timestamp=end_timestamp, significant_changes_only=significant_changes_only, ) - data = self.request( - url, - params=self.construct_params(params), - ) + data = self._list_request(url, params=params) for states in data: yield History.model_validate({"states": states}) @@ -197,19 +198,17 @@ def get_rendered_template(self, template: str) -> str: :code:`POST /api/template` """ try: - return cast( - str, - self.request( - "template", - json=dict(template=template), - method="POST", - ), + return self._str_request( + "template", + json={"template": template}, + method=HTTPMethod.POST, ) except RequestError as err: - raise BadTemplateError( + msg = ( "Your template is invalid. " "Try debugging it in the developer tools page of homeassistant." - ) from err + ) + raise BadTemplateError(msg) from err # API check methods def check_api_config(self) -> bool: @@ -217,43 +216,40 @@ def check_api_config(self) -> bool: Asks Home Assistant to validate its configuration file. :code:`POST /api/config/core/check_config` """ - res = cast( - dict[str, str], self.request("config/core/check_config", method="POST") - ) - valid = {"valid": True, "invalid": False}.get(res["result"], False) - return valid + res = self._dict_request("config/core/check_config", method=HTTPMethod.POST) + return {"valid": True, "invalid": False}.get(res["result"], False) def check_api_running(self) -> bool: """ Asks Home Assistant if it is running. :code:`GET /api/` """ - res = self.request("") - return cast(dict[str, JSONType], res).get("message") == "API running." + res = self._dict_request("") + return res.get("message") == "API running." # Entity methods - def get_entities(self) -> Dict[str, Group]: + def get_entities(self) -> dict[str, Group]: """ Fetches all entities from the api and returns them as a dictionary of :py:class:`Group`'s. :code:`GET /api/states` """ - entities: Dict[str, Group] = {} + entities: dict[str, Group] = {} for state in self.get_states(): group_id, entity_slug = state.entity_id.split(".") if group_id not in entities: entities[group_id] = Group( group_id=group_id, - _client=self, # type: ignore[arg-type] + client=self, ) - entities[group_id]._add_entity(entity_slug, state) + entities[group_id]._add_entity(entity_slug, state) # noqa: SLF001 return entities def get_entity( self, - group_id: Optional[str] = None, - slug: Optional[str] = None, - entity_id: Optional[str] = None, - ) -> Optional[Entity]: + group_id: str | None = None, + slug: str | None = None, + entity_id: str | None = None, + ) -> Entity | None: """ Returns an :py:class:`Entity` model for an :code:`entity_id`. :code:`GET /api/states/` @@ -267,31 +263,27 @@ def get_entity( "Use keyword arguments to pass entity_id. " "Or you can pass the group_id and slug instead" ) - raise ValueError( - f"Neither group_id and slug or entity_id provided. {help_msg}" - ) + msg = f"Neither group_id and slug or entity_id provided. {help_msg}" + raise ValueError(msg) split_group_id, split_slug = state.entity_id.split(".") group = Group( group_id=split_group_id, - _client=self, # type: ignore[arg-type] + client=self, ) - group._add_entity(split_slug, state) + group._add_entity(split_slug, state) # noqa: SLF001 return group.get_entity(split_slug) # Services and domain methods - def get_domains(self) -> Dict[str, Domain]: + def get_domains(self) -> dict[str, Domain]: """ Fetches all :py:class:`Service` 's from the API. :code:`GET /api/services` """ - data = self.request("services") - domains = map( - lambda json: Domain.from_json_with_client(json, client=cast(Client, self)), - cast(Tuple[dict[str, JSONType], ...], data), - ) + data = self._list_request("services") + domains = (Domain.from_json_with_client(json, client=self) for json in data) return {domain.domain_id: domain for domain in domains} - def get_domain(self, domain_id: str) -> Optional[Domain]: + def get_domain(self, domain_id: str) -> Domain | None: """ Fetches all :py:class:`Service`'s under a particular service :py:class:`Domain`. Uses cached data from :py:meth:`get_domains` if available. @@ -302,44 +294,41 @@ def trigger_service( self, domain: str, service: str, - **service_data, - ) -> Tuple[State, ...]: + **service_data: Any, + ) -> tuple[State, ...]: """ Tells Home Assistant to trigger a service, returns all states changed while in the process of being called. :code:`POST /api/services//` """ - data = self.request( + data = self._list_request( join("services", domain, service), - method="POST", + method=HTTPMethod.POST, json=service_data, ) - return tuple(map(State.from_json, cast(List[dict[str, JSONType]], data))) + return tuple(map(State.from_json, data)) def trigger_service_with_response( self, domain: str, service: str, - **service_data, - ) -> tuple[tuple[State, ...], dict[str, JSONType]]: + **service_data: Any, + ) -> tuple[tuple[State, ...], dict[str, Any]]: """ Tells Home Assistant to trigger a service, returns the response from the service call. :code:`POST /api/services//` Returns a list of the states changed and the response from the service call. """ - data = cast( - dict[str, dict[str, JSONType]], - self.request( - join("services", domain, service) + "?return_response", - method="POST", - json=service_data, - ), + data = self._dict_request( + join("services", domain, service) + "?return_response", + method=HTTPMethod.POST, + json=service_data, ) states = tuple( map( State.from_json, - cast(List[Dict[Any, Any]], data.get("changed_states", [])), - ) + data.get("changed_states", []), + ), ) return states, data.get("service_response", {}) @@ -347,9 +336,9 @@ def trigger_service_with_response( def get_state( # pylint: disable=duplicate-code self, *, - entity_id: Optional[str] = None, - group_id: Optional[str] = None, - slug: Optional[str] = None, + entity_id: str | None = None, + group_id: str | None = None, + slug: str | None = None, ) -> State: """ Fetches the state of the entity specified. @@ -360,8 +349,8 @@ def get_state( # pylint: disable=duplicate-code slug=slug, entity_id=entity_id, ) - data = self.request(join("states", entity_id)) - return State.from_json(cast(dict[str, JSONType], data)) + data = self._dict_request(join("states", entity_id)) + return State.from_json(data) def set_state( # pylint: disable=duplicate-code self, @@ -372,39 +361,32 @@ def set_state( # pylint: disable=duplicate-code To communicate with the device, use :py:meth:`Service.trigger` or :py:meth:`Service.async_trigger`. :code:`POST /api/states/` """ - data = self.request( + data = self._dict_request( join("states", state.entity_id), - method="POST", + method=HTTPMethod.POST, json=json.loads(state.model_dump_json()), ) - return State.from_json(cast(dict[str, JSONType], data)) + return State.from_json(data) - def get_states(self) -> Tuple[State, ...]: + def get_states(self) -> tuple[State, ...]: """ Gets the states of all entities within homeassistant. :code:`GET /api/states` """ - data = self.request("states") - states = map(State.from_json, cast(List[dict[str, JSONType]], data)) + data = self._list_request("states") + states = map(State.from_json, data) return tuple(states) # Event methods - def get_events(self) -> Tuple[Event, ...]: + def get_events(self) -> tuple[Event, ...]: """ Gets the Events that happen within homeassistant :code:`GET /api/events` """ - data = self.request("events") - return tuple( - map( - lambda json: Event.from_json_with_client( - json, client=cast(Client, self) - ), - cast(List[dict[str, JSONType]], data), - ) - ) + data = self._list_request("events") + return tuple(Event.from_json_with_client(json, client=self) for json in data) - def get_event(self, name: str) -> Optional[Event]: + def get_event(self, name: str) -> Event | None: """ Gets the :py:class:`Event` with the specified name if it has at least one listener. Uses cached data from :py:meth:`get_events` if available. @@ -414,21 +396,21 @@ def get_event(self, name: str) -> Optional[Event]: return event return None - def fire_event(self, event_type: str, **event_data) -> Optional[str]: + def fire_event(self, event_type: str, **event_data: Any) -> str | None: """ Fires a given event_type within homeassistant. Must be an existing event_type. `POST /api/events/` """ - data = self.request( + data = self._dict_request( join("events", event_type), - method="POST", + method=HTTPMethod.POST, json=event_data, ) - return cast(dict[str, str], data).get("message") + return data.get("message") - def get_components(self) -> Tuple[str, ...]: + def get_components(self) -> tuple[str, ...]: """ Returns a tuple of all registered components. :code:`GET /api/components` """ - return tuple(self.request("components")) + return tuple(self._list_request("components")) diff --git a/homeassistant_api/errors.py b/homeassistant_api/errors.py index 01136260..4e84c5fd 100644 --- a/homeassistant_api/errors.py +++ b/homeassistant_api/errors.py @@ -1,7 +1,5 @@ """Module for custom error classes""" -from typing import Optional, Union - class HomeassistantAPIError(Exception): """Base class for custom errors""" @@ -11,19 +9,23 @@ class RequestError(HomeassistantAPIError): """Error raised when an issue occurs when requesting to Homeassistant.""" def __init__( - self, data: Optional[str], /, url: str, message: Optional[str] = None + self, + data: str | None, + /, + url: str, + message: str | None = None, ) -> None: if message is not None: super().__init__( message + f" {url!r}" - + (f" with data: {data!r}" if data is not None else "") + + (f" with data: {data!r}" if data is not None else ""), ) elif data is None: super().__init__(f"An error occurred while making the request to {url!r}") else: super().__init__( - f"An error occurred while making the request to {url!r} with data: {data!r}" + f"An error occurred while making the request to {url!r} with data: {data!r}", ) @@ -61,20 +63,20 @@ class ParameterMissingError(HomeassistantAPIError): class InternalServerError(HomeassistantAPIError): """Error raised when Home Assistant says that it got itself in trouble.""" - def __init__(self, status_code: int, content: Union[str, bytes]) -> None: + def __init__(self, status_code: int, content: str | bytes) -> None: super().__init__( f"Home Assistant returned a response with an error status code {status_code!r}.\n" f"{content!r}\n" "If this happened, " "please report it at https://github.com/GrandMoff100/HomeAssistantAPI/issues " - "with the request status code and the request content. Thanks!" + "with the request status code and the request content. Thanks!", ) class UnauthorizedError(HomeassistantAPIError): """Error raised when an invalid token in used to authenticate with homeassistant.""" - def __init__(self, message: Optional[str] = None) -> None: + def __init__(self, message: str | None = None) -> None: super().__init__(message or "Invalid authentication token") diff --git a/homeassistant_api/models/__init__.py b/homeassistant_api/models/__init__.py index 6e66038d..113542a7 100644 --- a/homeassistant_api/models/__init__.py +++ b/homeassistant_api/models/__init__.py @@ -1,52 +1,71 @@ """The Model objects for the entire library.""" from .base import BaseModel -from .config_entries import ( - ConfigEntry, - ConfigEntryChange, - ConfigEntryDisabler, - ConfigEntryEvent, - ConfigEntryState, - ConfigFlowContext, - ConfigSubEntry, - DisableEnableResult, - DiscoveryKey, - FlowContext, - FlowResult, - FlowResultType, - IntegrationTypes, -) -from .domains import Domain, Service, ServiceField -from .entity import Entity, Group +from .config_entries import ConfigEntry +from .config_entries import ConfigEntryChange +from .config_entries import ConfigEntryDisabler +from .config_entries import ConfigEntryEvent +from .config_entries import ConfigEntryState +from .config_entries import ConfigFlowContext +from .config_entries import ConfigSubEntry +from .config_entries import DisableEnableResult +from .config_entries import DiscoveryKey +from .config_entries import FlowContext +from .config_entries import FlowResult +from .config_entries import FlowResultType +from .config_entries import IntegrationTypes +from .domains import AsyncDomain +from .domains import AsyncService +from .domains import BaseDomain +from .domains import BaseService +from .domains import Domain +from .domains import Service +from .domains import ServiceField +from .entity import AsyncEntity +from .entity import AsyncGroup +from .entity import BaseEntity +from .entity import BaseGroup +from .entity import Entity +from .entity import Group +from .events import AsyncEvent +from .events import BaseEvent from .events import Event from .history import History from .logbook import LogbookEntry from .states import State __all__ = ( - "Domain", - "Service", + "AsyncDomain", + "AsyncEntity", + "AsyncEvent", + "AsyncGroup", + "AsyncService", + "BaseDomain", + "BaseEntity", + "BaseEvent", + "BaseGroup", "BaseModel", + "BaseService", + "ConfigEntry", + "ConfigEntryChange", + "ConfigEntryDisabler", + "ConfigEntryEvent", + "ConfigEntryState", + "ConfigFlowContext", + "ConfigSubEntry", + "DisableEnableResult", + "DiscoveryKey", "Domain", - "Service", - "ServiceField", "Entity", - "Group", "Event", - "History", - "LogbookEntry", - "State", - "DisableEnableResult", - "DiscoveryKey", "FlowContext", - "ConfigFlowContext", "FlowResult", "FlowResultType", + "Group", + "History", "IntegrationTypes", - "ConfigEntryDisabler", - "ConfigEntryState", - "ConfigEntry", - "ConfigSubEntry", - "ConfigEntryChange", - "ConfigEntryEvent", + "LogbookEntry", + "Service", + "ServiceField", + "State", ) diff --git a/homeassistant_api/models/base.py b/homeassistant_api/models/base.py index 6ef6818c..0b4c0eef 100644 --- a/homeassistant_api/models/base.py +++ b/homeassistant_api/models/base.py @@ -1,14 +1,14 @@ """Module for Global Base Model Configuration inheritance.""" from datetime import datetime -from typing import Annotated, Any, Union +from typing import Annotated +from typing import Any from pydantic import BaseModel as PydanticBaseModel -from pydantic import ConfigDict, PlainSerializer +from pydantic import ConfigDict +from pydantic import PlainSerializer from typing_extensions import Self -from homeassistant_api.utils import JSONType - __all__ = ( "BaseModel", "DatetimeIsoField", @@ -27,10 +27,12 @@ class BaseModel(PydanticBaseModel): arbitrary_types_allowed=True, validate_assignment=True, protected_namespaces=(), + populate_by_name=True, + serialize_by_alias=True, ) # TODO: Any being accepted is not ideal. Narrow it down. @classmethod - def from_json(cls, json: Union[dict[str, JSONType], Any, None]) -> Self: + def from_json(cls, json: dict[str, Any] | Any | None) -> Self: """Constructs Self model from json data""" return cls.model_validate(json) diff --git a/homeassistant_api/models/config_entries.py b/homeassistant_api/models/config_entries.py index 48b4fc6a..de93a6e6 100644 --- a/homeassistant_api/models/config_entries.py +++ b/homeassistant_api/models/config_entries.py @@ -1,8 +1,9 @@ """File for models used in responses from config entries.""" import asyncio +from collections.abc import Container from enum import Enum -from typing import Any, Container, Dict, Optional, Tuple, Union +from typing import Any from .base import BaseModel @@ -24,54 +25,54 @@ class DiscoveryKey(BaseModel): """Serializable discovery key.""" domain: str - key: Union[str, Tuple[str, ...]] + key: str | tuple[str, ...] version: int class FlowContext(BaseModel): """Base flow context""" - show_advanced_options: Union[bool, None] = None + show_advanced_options: bool | None = None source: str class ConfigFlowContext(FlowContext): """Context for config flow.""" - alternative_domain: Optional[str] = None - configuration_url: Optional[str] = None - confirm_only: Optional[bool] = None + alternative_domain: str | None = None + configuration_url: str | None = None + confirm_only: bool | None = None discovery_key: DiscoveryKey - entry_id: Optional[str] = None - title_placeholders: Optional[Dict[str, str]] = None - unique_id: Optional[str] = None + entry_id: str | None = None + title_placeholders: dict[str, str] | None = None + unique_id: str | None = None class FlowResult(BaseModel): """Base flow result .""" context: ConfigFlowContext - data_schema: Optional[Any] = None - data: Optional[Dict[str, Any]] = None - description_placeholders: Optional[Dict[str, str]] = None - description: Optional[str] = None - errors: Optional[Dict[str, str]] = None - extra: Optional[str] = None + data_schema: Any | None = None + data: dict[str, Any] | None = None + description_placeholders: dict[str, str] | None = None + description: str | None = None + errors: dict[str, str] | None = None + extra: str | None = None flow_id: str handler: str - last_step: Optional[bool] = None - menu_options: Optional[Container[str]] = None - preview: Optional[str] = None - progress_action: Optional[str] = None - progress_task: Optional[asyncio.Task[Any]] = None - reason: Optional[str] = None - required: Optional[bool] = None - result: Optional[Any] = None - step_id: Optional[str] = None - title: Optional[str] = None - translation_domain: Optional[str] = None - type: Optional[FlowResultType] = None - url: Optional[str] = None + last_step: bool | None = None + menu_options: Container[str] | None = None + preview: str | None = None + progress_action: str | None = None + progress_task: asyncio.Task[Any] | None = None + reason: str | None = None + required: bool | None = None + result: Any | None = None + step_id: str | None = None + title: str | None = None + translation_domain: str | None = None + type: FlowResultType | None = None + url: str | None = None class DisableEnableResult(BaseModel): @@ -126,13 +127,13 @@ class ConfigEntry(BaseModel): supports_remove_device: bool supports_unload: bool supports_reconfigure: bool - supported_subentry_types: Dict[str, Dict[str, bool]] + supported_subentry_types: dict[str, dict[str, bool]] pref_disable_new_entities: bool pref_disable_polling: bool - disabled_by: Optional[ConfigEntryDisabler] - reason: Optional[str] - error_reason_translation_key: Optional[str] - error_reason_translation_placeholders: Optional[Dict[str, Any]] + disabled_by: ConfigEntryDisabler | None + reason: str | None + error_reason_translation_key: str | None + error_reason_translation_placeholders: dict[str, Any] | None num_subentries: int @@ -142,7 +143,7 @@ class ConfigSubEntry(BaseModel): subentry_id: str subentry_type: str title: str - unique_id: Optional[str] + unique_id: str | None class ConfigEntryChange(str, Enum): @@ -154,5 +155,5 @@ class ConfigEntryChange(str, Enum): class ConfigEntryEvent(BaseModel): - type: Optional[ConfigEntryChange] + type: ConfigEntryChange | None entry: ConfigEntry diff --git a/homeassistant_api/models/domains.py b/homeassistant_api/models/domains.py index aa353b5d..602c9a11 100644 --- a/homeassistant_api/models/domains.py +++ b/homeassistant_api/models/domains.py @@ -2,98 +2,71 @@ from __future__ import annotations -import gc -import inspect from enum import Enum -from typing import ( - TYPE_CHECKING, - Any, - Coroutine, - Dict, - List, - Optional, - Tuple, - Union, - cast, -) +from typing import TYPE_CHECKING +from typing import Any +from typing import cast from pydantic import Field -from typing_extensions import Self, override +from typing_extensions import Self +from typing_extensions import override from homeassistant_api.errors import RequestError -from homeassistant_api.utils import JSONType from .base import BaseModel -from .states import State if TYPE_CHECKING: - from homeassistant_api import Client, WebsocketClient + from homeassistant_api import AsyncClient + from homeassistant_api import AsyncWebsocketClient + from homeassistant_api import Client + from homeassistant_api import WebsocketClient + from .states import State -class Domain(BaseModel): + +class BaseDomain(BaseModel): """Model representing the domain that services belong to.""" - def __init__( - self, - *args, - _client: Optional[Union["Client", "WebsocketClient"]] = None, - **kwargs, - ) -> None: - super().__init__(*args, **kwargs) - if _client is None: - raise ValueError("No client passed.") - object.__setattr__(self, "_client", _client) - - _client: Union["Client", "WebsocketClient"] domain_id: str = Field( ..., description="The name of the domain that services belong to. " "(e.g. :code:`frontend` in :code:`frontend.reload_themes`", ) - services: Dict[str, "Service"] = Field( - {}, + services: dict[str, BaseService] = Field( + default_factory=dict, description="A dictionary of all services belonging to the domain indexed by their names", ) @classmethod @override - def from_json(cls, json: Union[dict[str, JSONType], Any, None], **kwargs) -> Self: - raise ValueError( - f"`{cls.__name__}` does not support `from_json()`. Use `from_json_with_client()`" - ) + def from_json(cls, json: dict[str, Any] | Any | None, **kwargs: Any) -> Self: + msg = f"`{cls.__name__}` does not support `from_json()`. Use `from_json_with_client()`" + raise NotImplementedError(msg) @classmethod - def from_json_with_client( - cls, json: Dict[str, JSONType], client: Union["Client", "WebsocketClient"] - ) -> "Domain": - """Constructs Domain and Service models from json data.""" + def _build_from_json(cls, json: dict[str, Any], **model_kwargs: Any) -> Self: + """Shared construction logic for Domain models from json data.""" if "domain" not in json or "services" not in json: - raise ValueError("Missing services or domain attribute in json argument.") - domain = cls(domain_id=cast(str, json.get("domain")), _client=client) - services = cast(dict[str, dict[str, JSONType]], json.get("services")) - assert isinstance(services, dict) + msg = "Missing services or domain attribute in json argument." + raise ValueError(msg) + domain = cls(domain_id=cast("str", json.get("domain")), **model_kwargs) + services = cast("dict[str, dict[str, Any]]", json.get("services")) + if not isinstance(services, dict): + msg = f"Expected dict for services, got {type(services)}" + raise TypeError(msg) for service_id, data in services.items(): domain._add_service(service_id, **data) return domain - def _add_service(self, service_id: str, **data) -> None: + def _add_service(self, service_id: str, **data: Any) -> None: """Registers services into a domain to be used or accessed. Used internally.""" - # raise ValueError(data) - self.services.update( - { - service_id: Service( - service_id=service_id, - domain=self, - **data, - ) - } - ) + raise NotImplementedError - def get_service(self, service_id: str) -> Optional["Service"]: + def get_service(self, service_id: str) -> BaseService | None: """Return a Service with the given service_id, returns None if no such service exists""" return self.services.get(service_id) - def __getattr__(self, attr: str): + def __getattr__(self, attr: str) -> Any: """Allows services accessible as attributes""" if attr in self.services: return self.get_service(attr) @@ -106,6 +79,50 @@ def __getattr__(self, attr: str): raise e from err +class Domain(BaseDomain): + """Sync domain that creates sync Service instances.""" + + client: Client | WebsocketClient = Field(exclude=True, repr=False) + + @classmethod + def from_json_with_client( + cls, + json: dict[str, Any], + client: Client | WebsocketClient, + ) -> Domain: + """Constructs Domain and Service models from json data.""" + return cls._build_from_json(json, client=client) + + def _add_service(self, service_id: str, **data: Any) -> None: + self.services[service_id] = Service( + service_id=service_id, + domain=self, + **data, + ) + + +class AsyncDomain(BaseDomain): + """Async domain that creates async Service instances.""" + + client: AsyncClient | AsyncWebsocketClient = Field(exclude=True, repr=False) + + @classmethod + def from_json_with_client( + cls, + json: dict[str, Any], + client: AsyncClient | AsyncWebsocketClient, + ) -> AsyncDomain: + """Constructs Domain and Service models from json data.""" + return cls._build_from_json(json, client=client) + + def _add_service(self, service_id: str, **data: Any) -> None: + self.services[service_id] = AsyncService( + service_id=service_id, + domain=self, + **data, + ) + + # Sources: # https://developers.home-assistant.io/docs/dev_101_services/ # https://www.home-assistant.io/docs/blueprint/selectors/#date-selector @@ -115,30 +132,30 @@ def __getattr__(self, attr: str): # Helpers class ServiceFieldSelectorEntityFilter(BaseModel): - integration: Optional[str] = None - domain: Optional[Union[List[str], str]] = None - device_class: Optional[Union[List[str], str]] = None - supported_features: Optional[Union[List[int], int]] = None + integration: str | None = None + domain: list[str] | str | None = None + device_class: list[str] | str | None = None + supported_features: list[int] | int | None = None class ServiceFieldSelectorDeviceFilter(BaseModel): - integration: Optional[str] = None - manufacturer: Optional[str] = None - model: Optional[str] = None - model_id: Optional[str] = None + integration: str | None = None + manufacturer: str | None = None + model: str | None = None + model_id: str | None = None class CropOptions(BaseModel): round: bool - type: Optional[str] = None # "image/jpeg" / "image/png" - quality: Optional[Union[int, float]] = None - aspectRatio: Optional[Union[int, float]] = None + type: str | None = None # "image/jpeg" / "image/png" + quality: int | float | None = None + aspect_ratio: int | float | None = Field(default=None, alias="aspectRatio") class SelectBoxOptionImage(BaseModel): src: str - src_dark: Optional[str] = None - flip_rtl: Optional[bool] = None + src_dark: str | None = None + flip_rtl: bool | None = None class ServiceFieldSelectorNumberMode(str, Enum): @@ -166,7 +183,7 @@ class ServiceFieldSelectorTextType(str, Enum): TEL = "tel" URL = "url" EMAIL = "email" - PASSWORD = "password" + PASSWORD = "password" # noqa: S105 DATE = "date" MONTH = "month" WEEK = "week" @@ -177,22 +194,22 @@ class ServiceFieldSelectorTextType(str, Enum): # Selectors class ServiceFieldSelectorAction(BaseModel): - optionsInSidebar: Optional[bool] = None + options_in_sidebar: bool | None = Field(default=None, alias="optionsInSidebar") class ServiceFieldSelectorAddon(BaseModel): - name: Optional[str] = None - slug: Optional[str] = None + name: str | None = None + slug: str | None = None class ServiceFieldSelectorArea(BaseModel): - entity: Optional[ - Union[List[ServiceFieldSelectorEntityFilter], ServiceFieldSelectorEntityFilter] - ] = None - device: Optional[ - Union[List[ServiceFieldSelectorDeviceFilter], ServiceFieldSelectorDeviceFilter] - ] = None - multiple: Optional[bool] = None + entity: ( + list[ServiceFieldSelectorEntityFilter] | ServiceFieldSelectorEntityFilter | None + ) = None + device: ( + list[ServiceFieldSelectorDeviceFilter] | ServiceFieldSelectorDeviceFilter | None + ) = None + multiple: bool | None = None class ServiceFieldSelectorAreasDisplay(BaseModel): @@ -200,17 +217,17 @@ class ServiceFieldSelectorAreasDisplay(BaseModel): class ServiceFieldSelectorAttribute(BaseModel): - entity_id: Optional[Union[List[str], str]] = None - hide_attributes: Optional[List[str]] = None + entity_id: list[str] | str | None = None + hide_attributes: list[str] | None = None class ServiceFieldSelectorAssistPipeline(BaseModel): - include_last_used: Optional[bool] = None + include_last_used: bool | None = None class ServiceFieldSelectorBackground(BaseModel): - original: Optional[bool] = None - crop: Optional[CropOptions] = None + original: bool | None = None + crop: CropOptions | None = None class ServiceFieldSelectorBackupLocation(BaseModel): @@ -222,9 +239,9 @@ class ServiceFieldSelectorBoolean(BaseModel): class ServiceFieldSelectorButtonToggle(BaseModel): - options: List[Union[str, ServiceFieldSelectorSelectOption]] - translation_key: Optional[str] = None - sort: Optional[bool] = None + options: list[str | ServiceFieldSelectorSelectOption] + translation_key: str | None = None + sort: bool | None = None class ServiceFieldSelectorColorRGB(BaseModel): @@ -232,34 +249,34 @@ class ServiceFieldSelectorColorRGB(BaseModel): class ServiceFieldSelectorColorTemp(BaseModel): - unit: Optional[str] = None - min: Optional[Union[int, float]] = None - max: Optional[Union[int, float]] = None - min_mireds: Optional[Union[int, float]] = None - max_mireds: Optional[Union[int, float]] = None + unit: str | None = None + min: int | float | None = None + max: int | float | None = None + min_mireds: int | float | None = None + max_mireds: int | float | None = None class ServiceFieldSelectorCondition(BaseModel): - optionsInSidebar: Optional[bool] = None + options_in_sidebar: bool | None = Field(default=None, alias="optionsInSidebar") class ServiceFieldSelectorConfigEntry(BaseModel): - integration: Optional[str] = None + integration: str | None = None class ServiceFieldSelectorConstant(BaseModel): - label: Optional[str] = None - value: Union[str, int, float, bool] - translation_key: Optional[str] = None + label: str | None = None + value: str | int | float | bool + translation_key: str | None = None class ServiceFieldSelectorConversationAgent(BaseModel): - language: Optional[str] = None # filtering by language not supported + language: str | None = None # filtering by language not supported class ServiceFieldSelectorCountry(BaseModel): - countries: List[str] - no_sort: Optional[bool] = None + countries: list[str] + no_sort: bool | None = None class ServiceFieldSelectorDate(BaseModel): @@ -271,50 +288,50 @@ class ServiceFieldSelectorDateTime(BaseModel): class ServiceFieldSelectorDevice(BaseModel): - entity: Optional[ - Union[List[ServiceFieldSelectorEntityFilter], ServiceFieldSelectorEntityFilter] - ] = None - filter: Optional[ - Union[List[ServiceFieldSelectorDeviceFilter], ServiceFieldSelectorDeviceFilter] - ] = None - multiple: Optional[bool] = None + entity: ( + list[ServiceFieldSelectorEntityFilter] | ServiceFieldSelectorEntityFilter | None + ) = None + filter: ( + list[ServiceFieldSelectorDeviceFilter] | ServiceFieldSelectorDeviceFilter | None + ) = None + multiple: bool | None = None class ServiceFieldSelectorDeviceLegacy(ServiceFieldSelectorDevice): - integration: Optional[str] = None - manufacturer: Optional[str] = None - model: Optional[str] = None + integration: str | None = None + manufacturer: str | None = None + model: str | None = None class ServiceFieldSelectorDuration(BaseModel): - enable_day: Optional[bool] = None - enable_millisecond: Optional[bool] = None + enable_day: bool | None = None + enable_millisecond: bool | None = None class ServiceFieldSelectorEntity(BaseModel): - multiple: Optional[bool] = None - include_entities: Optional[List[str]] = None - exclude_entities: Optional[List[str]] = None - filter: Optional[ - Union[List[ServiceFieldSelectorEntityFilter], ServiceFieldSelectorEntityFilter] - ] = None - reorder: Optional[bool] = None + multiple: bool | None = None + include_entities: list[str] | None = None + exclude_entities: list[str] | None = None + filter: ( + list[ServiceFieldSelectorEntityFilter] | ServiceFieldSelectorEntityFilter | None + ) = None + reorder: bool | None = None class ServiceFieldSelectorEntityLegacy(ServiceFieldSelectorEntity): - integration: Optional[str] = None - domain: Optional[Union[List[str], str]] = None - device_class: Optional[Union[List[str], str]] = None + integration: str | None = None + domain: list[str] | str | None = None + device_class: list[str] | str | None = None class ServiceFieldSelectorFloor(BaseModel): - entity: Optional[ - Union[List[ServiceFieldSelectorEntityFilter], ServiceFieldSelectorEntityFilter] - ] = None - device: Optional[ - Union[List[ServiceFieldSelectorDeviceFilter], ServiceFieldSelectorDeviceFilter] - ] = None - multiple: Optional[bool] = None + entity: ( + list[ServiceFieldSelectorEntityFilter] | ServiceFieldSelectorEntityFilter | None + ) = None + device: ( + list[ServiceFieldSelectorDeviceFilter] | ServiceFieldSelectorDeviceFilter | None + ) = None + multiple: bool | None = None class ServiceFieldSelectorFile(BaseModel): @@ -322,33 +339,33 @@ class ServiceFieldSelectorFile(BaseModel): class ServiceFieldSelectorIcon(BaseModel): - placeholder: Optional[str] = None - fallbackPath: Optional[str] = None + placeholder: str | None = None + fallback_path: str | None = Field(default=None, alias="fallbackPath") class ServiceFieldSelectorImage(BaseModel): - original: Optional[bool] = None - crop: Optional[CropOptions] = None + original: bool | None = None + crop: CropOptions | None = None class ServiceFieldSelectorLabel(BaseModel): - multiple: Optional[bool] = None + multiple: bool | None = None class ServiceFieldSelectorLanguage(BaseModel): - languages: Optional[List[str]] = None - native_name: Optional[bool] = None - no_sort: Optional[bool] = None + languages: list[str] | None = None + native_name: bool | None = None + no_sort: bool | None = None class ServiceFieldSelectorLocation(BaseModel): - radius: Optional[bool] = None - radius_readonly: Optional[bool] = None - icon: Optional[str] = None + radius: bool | None = None + radius_readonly: bool | None = None + icon: str | None = None class ServiceFieldSelectorMedia(BaseModel): - accept: Optional[List[str]] = None + accept: list[str] | None = None multiple: bool = False @@ -357,55 +374,53 @@ class ServiceFieldSelectorNavigation(BaseModel): class ServiceFieldSelectorNumber(BaseModel): - min: Optional[Union[int, float]] = None - max: Optional[Union[int, float]] = None - step: Optional[Union[Union[int, float], str]] = None - unit_of_measurement: Optional[str] = None - mode: Optional[ServiceFieldSelectorNumberMode] = None - slider_ticks: Optional[bool] = None - translation_key: Optional[str] = None + min: int | float | None = None + max: int | float | None = None + step: int | float | str | None = None + unit_of_measurement: str | None = None + mode: ServiceFieldSelectorNumberMode | None = None + slider_ticks: bool | None = None + translation_key: str | None = None class ServiceFieldSelectorObjectField(BaseModel): selector: ServiceFieldSelector - label: Optional[str] = None - required: Optional[bool] = None + label: str | None = None + required: bool | None = None class ServiceFieldSelectorObject(BaseModel): - label_field: Optional[str] = None - description_field: Optional[str] = None - translation_key: Optional[str] = None - fields: Optional[Dict[str, ServiceFieldSelectorObjectField]] = None - multiple: Optional[bool] = None + label_field: str | None = None + description_field: str | None = None + translation_key: str | None = None + fields: dict[str, ServiceFieldSelectorObjectField] | None = None + multiple: bool | None = None class ServiceFieldSelectorQRCode(BaseModel): data: str - scale: Optional[Union[int, float]] = None - error_correction_level: Optional[ServiceFieldSelectorQRCodeErrorCorrectionLevel] = ( - None - ) - center_image: Optional[str] = None + scale: int | float | None = None + error_correction_level: ServiceFieldSelectorQRCodeErrorCorrectionLevel | None = None + center_image: str | None = None class ServiceFieldSelectorSelectOption(BaseModel): label: str value: Any - description: Optional[str] = None - image: Optional[Union[str, SelectBoxOptionImage]] = None - disable: Optional[bool] = None + description: str | None = None + image: str | SelectBoxOptionImage | None = None + disable: bool | None = None class ServiceFieldSelectorSelect(BaseModel): - multiple: Optional[bool] = None - custom_value: Optional[bool] = None - mode: Optional[ServiceFieldSelectorSelectMode] = None - options: List[Union[str, ServiceFieldSelectorSelectOption]] - translation_key: Optional[str] = None - sort: Optional[bool] = None - reorder: Optional[bool] = None - box_max_columns: Optional[int] = None + multiple: bool | None = None + custom_value: bool | None = None + mode: ServiceFieldSelectorSelectMode | None = None + options: list[str | ServiceFieldSelectorSelectOption] + translation_key: str | None = None + sort: bool | None = None + reorder: bool | None = None + box_max_columns: int | None = None class ServiceFieldSelectorSelector(BaseModel): @@ -418,25 +433,25 @@ class ServiceFieldSelectorStateOption(BaseModel): class ServiceFieldSelectorState(BaseModel): - extra_options: Optional[List[ServiceFieldSelectorStateOption]] = None - entity_id: Optional[Union[str, List[str]]] = None - attribute: Optional[str] = None - hide_states: Optional[List[str]] = None - multiple: Optional[bool] = None + extra_options: list[ServiceFieldSelectorStateOption] | None = None + entity_id: str | list[str] | None = None + attribute: str | None = None + hide_states: list[str] | None = None + multiple: bool | None = None class ServiceFieldSelectorStatistic(BaseModel): - device_class: Optional[str] = None - multiple: Optional[bool] = None + device_class: str | None = None + multiple: bool | None = None class ServiceFieldSelectorTarget(BaseModel): - entity: Optional[ - Union[List[ServiceFieldSelectorEntityFilter], ServiceFieldSelectorEntityFilter] - ] = None - device: Optional[ - Union[List[ServiceFieldSelectorDeviceFilter], ServiceFieldSelectorDeviceFilter] - ] = None + entity: ( + list[ServiceFieldSelectorEntityFilter] | ServiceFieldSelectorEntityFilter | None + ) = None + device: ( + list[ServiceFieldSelectorDeviceFilter] | ServiceFieldSelectorDeviceFilter | None + ) = None class ServiceFieldSelectorTemplate(BaseModel): @@ -444,24 +459,24 @@ class ServiceFieldSelectorTemplate(BaseModel): class ServiceFieldSelectorSTT(BaseModel): - language: Optional[str] = None + language: str | None = None class ServiceFieldSelectorText(BaseModel): - multiline: Optional[bool] = None - type: Optional[ServiceFieldSelectorTextType] = None - prefix: Optional[str] = None - suffix: Optional[str] = None - autocomplete: Optional[str] = None - multiple: Optional[bool] = None + multiline: bool | None = None + type: ServiceFieldSelectorTextType | None = None + prefix: str | None = None + suffix: str | None = None + autocomplete: str | None = None + multiple: bool | None = None class ServiceFieldSelectorTheme(BaseModel): - include_default: Optional[bool] = None + include_default: bool | None = None class ServiceFieldSelectorTime(BaseModel): - no_second: Optional[bool] = None + no_second: bool | None = None class ServiceFieldSelectorTrigger(BaseModel): @@ -469,12 +484,12 @@ class ServiceFieldSelectorTrigger(BaseModel): class ServiceFieldSelectorTTS(BaseModel): - language: Optional[str] = None + language: str | None = None class ServiceFieldSelectorTTSVoice(BaseModel): - engineId: Optional[str] = None - language: Optional[str] = None + engine_id: str | None = Field(default=None, alias="engineId") + language: str | None = None class ServiceFieldSelectorUIAction(BaseModel): @@ -482,188 +497,163 @@ class ServiceFieldSelectorUIAction(BaseModel): class ServiceFieldSelectorUIColor(BaseModel): - default_color: Optional[str] = None - include_none: Optional[bool] = None - include_state: Optional[bool] = None + default_color: str | None = None + include_none: bool | None = None + include_state: bool | None = None class ServiceFieldSelectorUIStateContext(BaseModel): - entity_id: Optional[str] = None - allow_name: Optional[bool] = None + entity_id: str | None = None + allow_name: bool | None = None class ServiceFieldSelector(BaseModel): - action: Optional[ServiceFieldSelectorAction] = None - addon: Optional[ServiceFieldSelectorAddon] = None - area: Optional[ServiceFieldSelectorArea] = None - areas_display: Optional[ServiceFieldSelectorAreasDisplay] = None - attribute: Optional[ServiceFieldSelectorAttribute] = None - assist_pipeline: Optional[ServiceFieldSelectorAssistPipeline] = None - backup_location: Optional[ServiceFieldSelectorBackupLocation] = None - background: Optional[ServiceFieldSelectorBackground] = None - boolean: Optional[ServiceFieldSelectorBoolean] = None - button_toggle: Optional[ServiceFieldSelectorButtonToggle] = None - color_rgb: Optional[ServiceFieldSelectorColorRGB] = None - color_temp: Optional[ServiceFieldSelectorColorTemp] = None - condition: Optional[ServiceFieldSelectorCondition] = None - config_entry: Optional[ServiceFieldSelectorConfigEntry] = None - constant: Optional[ServiceFieldSelectorConstant] = None - conversation_agent: Optional[ServiceFieldSelectorConversationAgent] = None - country: Optional[ServiceFieldSelectorCountry] = None - date: Optional[ServiceFieldSelectorDate] = None - datetime: Optional[ServiceFieldSelectorDateTime] = None - device: Optional[ - Union[ServiceFieldSelectorDevice, ServiceFieldSelectorDeviceLegacy] - ] = None - duration: Optional[ServiceFieldSelectorDuration] = None - entity: Optional[ - Union[ServiceFieldSelectorEntity, ServiceFieldSelectorEntityLegacy] - ] = None - floor: Optional[ServiceFieldSelectorFloor] = None - file: Optional[ServiceFieldSelectorFile] = None - icon: Optional[ServiceFieldSelectorIcon] = None - image: Optional[ServiceFieldSelectorImage] = None - label: Optional[ServiceFieldSelectorLabel] = None - language: Optional[ServiceFieldSelectorLanguage] = None - location: Optional[ServiceFieldSelectorLocation] = None - media: Optional[ServiceFieldSelectorMedia] = None - navigation: Optional[ServiceFieldSelectorNavigation] = None - number: Optional[ServiceFieldSelectorNumber] = None - object: Optional[ServiceFieldSelectorObject] = None - qr_code: Optional[ServiceFieldSelectorQRCode] = None - select: Optional[ServiceFieldSelectorSelect] = None - selector: Optional[ServiceFieldSelectorSelector] = None - state: Optional[ServiceFieldSelectorState] = None - statistic: Optional[ServiceFieldSelectorStatistic] = None - target: Optional[ServiceFieldSelectorTarget] = None - template: Optional[ServiceFieldSelectorTemplate] = None - stt: Optional[ServiceFieldSelectorSTT] = None - text: Optional[ServiceFieldSelectorText] = None - theme: Optional[ServiceFieldSelectorTheme] = None - time: Optional[ServiceFieldSelectorTime] = None - trigger: Optional[ServiceFieldSelectorTrigger] = None - tts: Optional[ServiceFieldSelectorTTS] = None - tts_voice: Optional[ServiceFieldSelectorTTSVoice] = None - ui_action: Optional[ServiceFieldSelectorUIAction] = None - ui_color: Optional[ServiceFieldSelectorUIColor] = None - ui_state_content: Optional[ServiceFieldSelectorUIStateContext] = None + action: ServiceFieldSelectorAction | None = None + addon: ServiceFieldSelectorAddon | None = None + area: ServiceFieldSelectorArea | None = None + areas_display: ServiceFieldSelectorAreasDisplay | None = None + attribute: ServiceFieldSelectorAttribute | None = None + assist_pipeline: ServiceFieldSelectorAssistPipeline | None = None + backup_location: ServiceFieldSelectorBackupLocation | None = None + background: ServiceFieldSelectorBackground | None = None + boolean: ServiceFieldSelectorBoolean | None = None + button_toggle: ServiceFieldSelectorButtonToggle | None = None + color_rgb: ServiceFieldSelectorColorRGB | None = None + color_temp: ServiceFieldSelectorColorTemp | None = None + condition: ServiceFieldSelectorCondition | None = None + config_entry: ServiceFieldSelectorConfigEntry | None = None + constant: ServiceFieldSelectorConstant | None = None + conversation_agent: ServiceFieldSelectorConversationAgent | None = None + country: ServiceFieldSelectorCountry | None = None + date: ServiceFieldSelectorDate | None = None + datetime: ServiceFieldSelectorDateTime | None = None + device: ServiceFieldSelectorDevice | ServiceFieldSelectorDeviceLegacy | None = None + duration: ServiceFieldSelectorDuration | None = None + entity: ServiceFieldSelectorEntity | ServiceFieldSelectorEntityLegacy | None = None + floor: ServiceFieldSelectorFloor | None = None + file: ServiceFieldSelectorFile | None = None + icon: ServiceFieldSelectorIcon | None = None + image: ServiceFieldSelectorImage | None = None + label: ServiceFieldSelectorLabel | None = None + language: ServiceFieldSelectorLanguage | None = None + location: ServiceFieldSelectorLocation | None = None + media: ServiceFieldSelectorMedia | None = None + navigation: ServiceFieldSelectorNavigation | None = None + number: ServiceFieldSelectorNumber | None = None + object: ServiceFieldSelectorObject | None = None + qr_code: ServiceFieldSelectorQRCode | None = None + select: ServiceFieldSelectorSelect | None = None + selector: ServiceFieldSelectorSelector | None = None + state: ServiceFieldSelectorState | None = None + statistic: ServiceFieldSelectorStatistic | None = None + target: ServiceFieldSelectorTarget | None = None + template: ServiceFieldSelectorTemplate | None = None + stt: ServiceFieldSelectorSTT | None = None + text: ServiceFieldSelectorText | None = None + theme: ServiceFieldSelectorTheme | None = None + time: ServiceFieldSelectorTime | None = None + trigger: ServiceFieldSelectorTrigger | None = None + tts: ServiceFieldSelectorTTS | None = None + tts_voice: ServiceFieldSelectorTTSVoice | None = None + ui_action: ServiceFieldSelectorUIAction | None = None + ui_color: ServiceFieldSelectorUIColor | None = None + ui_state_content: ServiceFieldSelectorUIStateContext | None = None # Service bases class ServiceFieldFilter(BaseModel): - supported_features: Optional[Union[List[int], int]] = ( + supported_features: list[int] | int | None = ( None # Bitset (any needs to be supported [or all within specified list]) ) - attribute: Optional[Dict[str, Union[List[str], str]]] = None + attribute: dict[str, list[str] | str] | None = None class ServiceField(BaseModel): """Model for service parameters/fields.""" - description: Optional[str] = None - example: Optional[JSONType] = None - default: Optional[JSONType] = None - name: Optional[str] = None - required: Optional[bool] = None - advanced: Optional[bool] = None - selector: Optional[ServiceFieldSelector] = None - filter: Optional[ServiceFieldFilter] = None + description: str | None = None + example: Any | None = None + default: Any | None = None + name: str | None = None + required: bool | None = None + advanced: bool | None = None + selector: ServiceFieldSelector | None = None + filter: ServiceFieldFilter | None = None class ServiceFieldCollection(BaseModel): - collapsed: Optional[bool] = None - fields: Dict[str, ServiceField] + collapsed: bool | None = None + fields: dict[str, ServiceField] class ServiceResponse(BaseModel): - optional: Optional[bool] = None + optional: bool | None = None -class Service(BaseModel): +class BaseService(BaseModel): """Model representing services from homeassistant""" service_id: str + name: str | None = None + description: str | None = None + fields: dict[str, ServiceField | ServiceFieldCollection] | None = None + target: ServiceFieldSelectorTarget | None = None + response: ServiceResponse | None = None + + +class Service(BaseService): + """Sync service with sync trigger method.""" + domain: Domain = Field(exclude=True, repr=False) - name: Optional[str] = None - description: Optional[str] = None - fields: Optional[Dict[str, Union[ServiceField, ServiceFieldCollection]]] = None - target: Optional[ServiceFieldSelectorTarget] = None - response: Optional[ServiceResponse] = None def trigger( - self, **service_data - ) -> Union[ - Tuple[State, ...], - Tuple[Tuple[State, ...], dict[str, JSONType]], - dict[str, JSONType], - None, - ]: + self, + **service_data: Any, + ) -> ( + tuple[State, ...] + | tuple[tuple[State, ...], dict[str, Any]] + | dict[str, Any] + | None + ): """Triggers the service associated with this object.""" try: - return self.domain._client.trigger_service_with_response( + return self.domain.client.trigger_service_with_response( self.domain.domain_id, self.service_id, **service_data, ) except RequestError: - return self.domain._client.trigger_service( + return self.domain.client.trigger_service( self.domain.domain_id, self.service_id, **service_data, ) - async def async_trigger( - self, **service_data - ) -> Union[ - Tuple[State, ...], - None, - dict[str, JSONType], - tuple[tuple[State, ...], dict[str, JSONType]], - ]: + +class AsyncService(BaseService): + """Async service with async trigger method.""" + + domain: AsyncDomain = Field(exclude=True, repr=False) + + async def trigger( + self, + **service_data: Any, + ) -> ( + tuple[State, ...] + | tuple[tuple[State, ...], dict[str, Any]] + | dict[str, Any] + | None + ): """Triggers the service associated with this object.""" try: - return await self.domain._client.trigger_service_with_response( + return await self.domain.client.trigger_service_with_response( self.domain.domain_id, self.service_id, **service_data, ) except RequestError: - return await self.domain._client.trigger_service( + return await self.domain.client.trigger_service( self.domain.domain_id, self.service_id, **service_data, ) - - def __call__( - self, **service_data - ) -> Union[ - Union[ - Tuple[State, ...], - Tuple[Tuple[State, ...], dict[str, JSONType]], - dict[str, JSONType], - None, - ], - Coroutine[ - Any, - Any, - Union[ - Tuple[State, ...], - Tuple[Tuple[State, ...], dict[str, JSONType]], - dict[str, JSONType], - None, - ], - ], - ]: - """ - Triggers the service associated with this object. - """ - assert (frame := inspect.currentframe()) is not None - assert (parent_frame := frame.f_back) is not None - try: - if inspect.iscoroutinefunction( - caller := gc.get_referrers(parent_frame.f_code)[0] - ) or inspect.iscoroutine(caller): - return self.async_trigger(**service_data) - except IndexError: # pragma: no cover - pass - return self.trigger(**service_data) diff --git a/homeassistant_api/models/entity.py b/homeassistant_api/models/entity.py index 84299fd3..3efbaa8d 100644 --- a/homeassistant_api/models/entity.py +++ b/homeassistant_api/models/entity.py @@ -1,7 +1,10 @@ """Module for Entity and entity Group data models""" from datetime import datetime -from typing import TYPE_CHECKING, Any, Dict, Optional +from typing import TYPE_CHECKING +from typing import Any +from typing import Optional +from typing import Union from pydantic import Field @@ -10,29 +13,45 @@ from .states import State if TYPE_CHECKING: + from homeassistant_api import AsyncClient + from homeassistant_api import AsyncWebsocketClient from homeassistant_api import Client + from homeassistant_api import WebsocketClient -class Group(BaseModel): +class BaseGroup(BaseModel): """Represents the groups that entities belong to.""" - def __init__(self, *args, _client: Optional["Client"] = None, **kwargs) -> None: - super().__init__(*args, **kwargs) - object.__setattr__(self, "_client", _client) - group_id: str = Field( ..., description="A unique string identifying different types/groups of entities.", ) - _client: "Client" - entities: Dict[str, "Entity"] = Field( - {}, + entities: dict[str, "BaseEntity"] = Field( + default_factory=dict, description="A dictionary of all entities belonging to the group " "indexed by their :code:`entity_id`.", ) def _add_entity(self, slug: str, state: State) -> None: """Registers entities to this Group object""" + raise NotImplementedError + + def get_entity(self, slug: str) -> Optional["BaseEntity"]: + """Returns Entity with the given name if it exists. Otherwise returns None""" + return self.entities.get(slug) + + def __getattr__(self, key: str) -> Any: + if key in self.entities: + return self.get_entity(key) + return super().__getattribute__(key) + + +class Group(BaseGroup): + """Sync group that creates sync Entity instances.""" + + client: Union["Client", "WebsocketClient"] = Field(exclude=True, repr=False) + + def _add_entity(self, slug: str, state: State) -> None: self.entities[slug] = Entity( slug=slug, state=state, @@ -41,24 +60,58 @@ def _add_entity(self, slug: str, state: State) -> None: def get_entity(self, slug: str) -> Optional["Entity"]: """Returns Entity with the given name if it exists. Otherwise returns None""" - return self.entities.get(slug) + entity = self.entities.get(slug) + if entity is not None and not isinstance(entity, Entity): + msg = f"Expected Entity, got {type(entity)}" + raise TypeError(msg) + return entity - def __getattr__(self, key: str) -> Any: - if key in self.entities: - return self.get_entity(key) - return super().__getattribute__(key) + +class AsyncGroup(BaseGroup): + """Async group that creates async Entity instances.""" + + client: Union["AsyncClient", "AsyncWebsocketClient"] = Field( + exclude=True, + repr=False, + ) + + def _add_entity(self, slug: str, state: State) -> None: + self.entities[slug] = AsyncEntity( + slug=slug, + state=state, + group=self, + ) + + def get_entity(self, slug: str) -> Optional["AsyncEntity"]: + """Returns Entity with the given name if it exists. Otherwise returns None""" + entity = self.entities.get(slug) + if entity is not None and not isinstance(entity, AsyncEntity): + msg = f"Expected AsyncEntity, got {type(entity)}" + raise TypeError(msg) + return entity -class Entity(BaseModel): +class BaseEntity(BaseModel): """Represents entities inside of homeassistant""" slug: str state: State + group: "BaseGroup" = Field(exclude=True, repr=False) + + @property + def entity_id(self) -> str: + """Constructs the :code:`entity_id` string from its group and slug""" + return f"{self.group.group_id}.{self.slug}".strip() + + +class Entity(BaseEntity): + """Sync entity with sync client methods.""" + group: Group = Field(exclude=True, repr=False) def get_state(self) -> State: """Asks Home Assistant for the state of the entity and updates it locally""" - self.state = self.group._client.get_state(entity_id=self.entity_id) + self.state = self.group.client.get_state(entity_id=self.entity_id) return self.state def update_state(self) -> State: @@ -66,23 +119,17 @@ def update_state(self) -> State: Tells Home Assistant to set its current local State object. (You can modify the local state object yourself.) """ - self.state = self.group._client.set_state(self.state) + self.state = self.group.client.set_state(self.state) return self.state - @property - def entity_id(self) -> str: - """Constructs the :code:`entity_id` string from its group and slug""" - return f"{self.group.group_id}.{self.slug}".strip() - def get_history( self, - start_timestamp: Optional[datetime] = None, - # Defaults to 1 day before. https://developers.home-assistant.io/docs/api/rest/ - end_timestamp: Optional[datetime] = None, + start_timestamp: datetime | None = None, + end_timestamp: datetime | None = None, significant_changes_only: bool = False, - ) -> Optional[History]: + ) -> History | None: """Gets the previous :py:class:`State`'s of the :py:class:`Entity`""" - for history in self.group._client.get_entity_histories( + for history in self.group.client.get_entity_histories( entities=(self,), start_timestamp=start_timestamp, end_timestamp=end_timestamp, @@ -91,30 +138,35 @@ def get_history( return history return None - async def async_get_state(self) -> State: + +class AsyncEntity(BaseEntity): + """Async entity with async client methods.""" + + group: AsyncGroup = Field(exclude=True, repr=False) + + async def get_state(self) -> State: """Asks Home Assistant for the state of the entity and sets it locally""" - self.state = await self.group._client.get_state( + self.state = await self.group.client.get_state( group_id=self.group.group_id, slug=self.slug, ) return self.state - async def async_update_state(self) -> State: + async def update_state(self) -> State: """Tells Home Assistant to set the current local State object.""" - self.state = await self.group._client.set_state(self.state) + self.state = await self.group.client.set_state(self.state) return self.state - async def async_get_history( + async def get_history( self, - start_timestamp: Optional[datetime] = None, - # Defaults to 1 day before. https://developers.home-assistant.io/docs/api/rest/ - end_timestamp: Optional[datetime] = None, + start_timestamp: datetime | None = None, + end_timestamp: datetime | None = None, significant_changes_only: bool = False, - ) -> Optional[History]: + ) -> History | None: """ Gets the :py:class:`History` of previous :py:class:`State`'s of the :py:class:`Entity`. """ - async for history in self.group._client.get_entity_histories( + async for history in self.group.client.get_entity_histories( entities=(self,), start_timestamp=start_timestamp, end_timestamp=end_timestamp, diff --git a/homeassistant_api/models/events.py b/homeassistant_api/models/events.py index 9aaf9c36..307c5f59 100644 --- a/homeassistant_api/models/events.py +++ b/homeassistant_api/models/events.py @@ -1,19 +1,20 @@ """Event Model File""" -from typing import TYPE_CHECKING, Any, Optional, Union -from typing_extensions import Self +from typing import TYPE_CHECKING +from typing import Any + from pydantic import Field +from typing_extensions import Self from typing_extensions import override -from homeassistant_api.utils import JSONType - from .base import BaseModel if TYPE_CHECKING: + from homeassistant_api import AsyncClient from homeassistant_api import Client -class Event(BaseModel): +class BaseEvent(BaseModel): """ Event class for Home Assistant Event Triggers @@ -21,35 +22,48 @@ class Event(BaseModel): https://data.home-assistant.io/docs/events """ - _client: "Client" event: str = Field(..., description="The event name/type.") listener_count: int = Field( ..., - description="How many listeners are interesting in this event in Home Assistant.", + description="How many listeners are interested in this event in Home Assistant.", ) - def __init__(self, *args, _client: Optional["Client"] = None, **kwargs) -> None: - super().__init__(*args, **kwargs) - object.__setattr__(self, "_client", _client) + @classmethod + @override + def from_json(cls, json: dict[str, Any] | Any | None, **kwargs: Any) -> Self: + msg = f"`{cls.__name__}` does not support `from_json()`. Use `from_json_with_client()`" + raise NotImplementedError(msg) - def fire(self, **event_data) -> Optional[str]: - """Fires the corresponding event in Home Assistant.""" - return self._client.fire_event(self.event, **event_data) - async def async_fire(self, **event_data) -> str: - """Fires the event type in homeassistant. Ex. `on_startup`""" - return await self._client.fire_event(self.event, **event_data) +class Event(BaseEvent): + """Sync event with sync fire method.""" + + client: "Client" = Field(exclude=True, repr=False) @classmethod - @override - def from_json(cls, json: Union[dict[str, JSONType], Any, None], **kwargs) -> Self: - raise ValueError( - f"`{cls.__name__}` does not support `from_json()`. Use `from_json_with_client()`" - ) + def from_json_with_client(cls, json: dict[str, Any], client: "Client") -> "Event": + """Constructs Event model from json data""" + return cls(**json, client=client) + + def fire(self, **event_data: Any) -> str | None: + """Fires the corresponding event in Home Assistant.""" + return self.client.fire_event(self.event, **event_data) + + +class AsyncEvent(BaseEvent): + """Async event with async fire method.""" + + client: "AsyncClient" = Field(exclude=True, repr=False) @classmethod def from_json_with_client( - cls, json: dict[str, JSONType], client: "Client" - ) -> "Event": + cls, + json: dict[str, Any], + client: "AsyncClient", + ) -> "AsyncEvent": """Constructs Event model from json data""" - return cls(**json, _client=client) + return cls(**json, client=client) + + async def fire(self, **event_data: Any) -> str: + """Fires the event type in homeassistant.""" + return await self.client.fire_event(self.event, **event_data) diff --git a/homeassistant_api/models/history.py b/homeassistant_api/models/history.py index f683d471..835d9c2a 100644 --- a/homeassistant_api/models/history.py +++ b/homeassistant_api/models/history.py @@ -1,6 +1,6 @@ """Module for the History model.""" -from typing import Tuple +from typing import Any from pydantic import Field @@ -11,13 +11,16 @@ class History(BaseModel): """Model representing past :py:class:`State`'s of an entity.""" - states: Tuple[State, ...] = Field( - ..., description="A tuple of previous states of an entity." + states: tuple[State, ...] = Field( + ..., + description="A tuple of previous states of an entity.", ) - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args: Any, **kwargs: Any) -> None: super().__init__(*args, **kwargs) - assert self.entity_id is not None + if self.entity_id is None: + msg = "History requires states with a non-null entity_id" + raise ValueError(msg) @property def entity_id(self) -> str: diff --git a/homeassistant_api/models/logbook.py b/homeassistant_api/models/logbook.py index 08e21c7d..a3b160e2 100644 --- a/homeassistant_api/models/logbook.py +++ b/homeassistant_api/models/logbook.py @@ -1,10 +1,9 @@ """Module for the Logbook Entry model.""" -from typing import Optional - from pydantic import Field -from .base import BaseModel, DatetimeIsoField +from .base import BaseModel +from .base import DatetimeIsoField class LogbookEntry(BaseModel): @@ -12,15 +11,18 @@ class LogbookEntry(BaseModel): when: DatetimeIsoField = Field(..., description="When the entry was logged.") name: str = Field(..., description="The name of the entry.") - message: Optional[str] = Field(None, description="Optional message for the entry.") - entity_id: Optional[str] = Field(None, description="Optional relevant entity_id.") - state: Optional[str] = Field( - None, description="The new state information of the entity_id." + message: str | None = Field(None, description="Optional message for the entry.") + entity_id: str | None = Field(None, description="Optional relevant entity_id.") + state: str | None = Field( + None, + description="The new state information of the entity_id.", ) - domain: Optional[str] = Field(None, description="When the entry was logged.") - context_id: Optional[str] = Field( - None, description="Optional relevant context instead of an entity." + domain: str | None = Field(None, description="When the entry was logged.") + context_id: str | None = Field( + None, + description="Optional relevant context instead of an entity.", ) - icon: Optional[str] = Field( - None, description="An MDI icon associated with the entity_id." + icon: str | None = Field( + None, + description="An MDI icon associated with the entity_id.", ) diff --git a/homeassistant_api/models/states.py b/homeassistant_api/models/states.py index 00e80051..36b0b728 100644 --- a/homeassistant_api/models/states.py +++ b/homeassistant_api/models/states.py @@ -1,12 +1,13 @@ """Module for the Entity State model.""" -from datetime import datetime, timezone -from typing import Optional +from datetime import datetime +from datetime import timezone +from typing import Any from pydantic import Field -from homeassistant_api.models.base import BaseModel, DatetimeIsoField -from homeassistant_api.utils import JSONType +from homeassistant_api.models.base import BaseModel +from homeassistant_api.models.base import DatetimeIsoField __all__ = ( "Context", @@ -21,11 +22,11 @@ class Context(BaseModel): max_length=128, # arbitrary limit description="Unique string identifying the context.", ) - parent_id: Optional[str] = Field( + parent_id: str | None = Field( max_length=128, description="Unique string identifying the parent context.", ) - user_id: Optional[str] = Field( + user_id: str | None = Field( max_length=128, description="Unique string identifying the user.", ) @@ -36,23 +37,26 @@ class State(BaseModel): entity_id: str = Field(..., description="The entity_id this state corresponds to.") state: str = Field( - ..., description="The string representation of the state of the entity." + ..., + description="The string representation of the state of the entity.", ) - attributes: dict[str, JSONType] = Field( - {}, description="A dictionary of extra attributes of the state." + attributes: dict[str, Any] = Field( + default_factory=dict, + description="A dictionary of extra attributes of the state.", ) last_changed: DatetimeIsoField = Field( default_factory=lambda: datetime.now(timezone.utc), description="The last time the state was changed.", ) - last_updated: Optional[DatetimeIsoField] = Field( + last_updated: DatetimeIsoField | None = Field( default_factory=lambda: datetime.now(timezone.utc), description="The last time the state updated.", ) - last_reported: Optional[DatetimeIsoField] = Field( + last_reported: DatetimeIsoField | None = Field( default_factory=lambda: datetime.now(timezone.utc), description="The last time the state was reported to the server. Only used by some integrations.", ) - context: Optional[Context] = Field( - None, description="Provides information about the context of the state." + context: Context | None = Field( + default=None, + description="Provides information about the context of the state.", ) diff --git a/homeassistant_api/models/websocket.py b/homeassistant_api/models/websocket.py index 0cb8de7f..7021c520 100644 --- a/homeassistant_api/models/websocket.py +++ b/homeassistant_api/models/websocket.py @@ -1,21 +1,21 @@ """A module defining the responses we expect from the websocket API.""" -from typing import Any, List, Literal, Optional, Union +from typing import Any +from typing import Literal -from homeassistant_api.utils import JSONType - -from .base import BaseModel, DatetimeIsoField +from .base import BaseModel +from .base import DatetimeIsoField from .config_entries import ConfigEntryEvent from .states import Context __all__ = ( - "AuthRequired", - "AuthOk", "AuthInvalid", - "PingResponse", + "AuthOk", + "AuthRequired", "ErrorResponse", - "ResultResponse", "EventResponse", + "PingResponse", + "ResultResponse", ) @@ -40,15 +40,15 @@ class PingResponse(BaseModel): id: int type: Literal["pong"] start: int # added by the client, nanoseconds - end: Optional[int] = None # added by the client, nanoseconds + end: int | None = None # added by the client, nanoseconds class Error(BaseModel): code: str message: str - translation_key: Optional[str] = None - translation_placeholders: Optional[dict[str, str]] = None - translation_domain: Optional[str] = None + translation_key: str | None = None + translation_placeholders: dict[str, str] | None = None + translation_domain: str | None = None class ErrorResponse(BaseModel): @@ -66,33 +66,33 @@ class ResultResponse(BaseModel): id: int success: Literal[True] type: Literal["result"] - result: Optional[Any] + result: Any | None class FiredEvent(BaseModel): """A model to parse the `event` key of fired event websocket responses.""" event_type: str - data: dict[str, JSONType] + data: dict[str, Any] origin: Literal["LOCAL", "REMOTE"] # REMOTE if another API client or webhook fired the event # LOCAL if Home Assistant (or the auth token we used) fired the event time_fired: DatetimeIsoField # datetime.datetime - context: Optional[Context] + context: Context | None class TemplateEvent(BaseModel): result: str - listeners: dict[str, JSONType] + listeners: dict[str, Any] class FiredTrigger(BaseModel): """A model to parse the `trigger` key of fired event websocket responses.""" - context: Optional[Context] - variables: dict[str, JSONType] + context: Context | None + variables: dict[str, Any] class EventResponse(BaseModel): @@ -100,4 +100,4 @@ class EventResponse(BaseModel): id: int type: Literal["event"] - event: Union[FiredEvent, FiredTrigger, TemplateEvent, List[ConfigEntryEvent]] + event: FiredEvent | FiredTrigger | TemplateEvent | list[ConfigEntryEvent] diff --git a/homeassistant_api/processing.py b/homeassistant_api/processing.py index 1e430c71..49738f24 100644 --- a/homeassistant_api/processing.py +++ b/homeassistant_api/processing.py @@ -3,7 +3,11 @@ import inspect import json import logging -from typing import Any, Callable, ClassVar, Dict, Tuple, Union, cast +from collections.abc import Callable +from http import HTTPStatus +from typing import Any +from typing import ClassVar +from typing import cast import simplejson from aiohttp import ClientResponse @@ -11,24 +15,21 @@ from requests import Response from requests_cache.models.response import CachedResponse -from homeassistant_api.errors import ( - EndpointNotFoundError, - InternalServerError, - MalformedDataError, - MethodNotAllowedError, - ProcessorNotFoundError, - RequestError, - UnauthorizedError, - UnexpectedStatusCodeError, -) -from homeassistant_api.utils import JSONType +from homeassistant_api.errors import EndpointNotFoundError +from homeassistant_api.errors import InternalServerError +from homeassistant_api.errors import MalformedDataError +from homeassistant_api.errors import MethodNotAllowedError +from homeassistant_api.errors import ProcessorNotFoundError +from homeassistant_api.errors import RequestError +from homeassistant_api.errors import UnauthorizedError +from homeassistant_api.errors import UnexpectedStatusCodeError logger = logging.getLogger(__name__) -AsyncResponseType = Union[AsyncCachedResponse, ClientResponse] -ResponseType = Union[Response, CachedResponse] -AllResponseType = Union[AsyncCachedResponse, ClientResponse, Response, CachedResponse] +AsyncResponseType = AsyncCachedResponse | ClientResponse +ResponseType = Response | CachedResponse +AllResponseType = AsyncCachedResponse | ClientResponse | Response | CachedResponse ProcessorType = Callable[[AllResponseType], Any] @@ -36,7 +37,7 @@ class Processing: """Uses to processor functions to convert json data into common python data types.""" _response: AllResponseType - _processors: ClassVar[Dict[str, Tuple[ProcessorType, ...]]] = {} + _processors: ClassVar[dict[str, tuple[ProcessorType, ...]]] = {} def __init__(self, response: AllResponseType, decode_bytes: bool = True) -> None: self._response = response @@ -48,7 +49,7 @@ def processor(mimetype: str) -> Callable[[ProcessorType], ProcessorType]: def register_processor(processor: ProcessorType) -> ProcessorType: if mimetype not in Processing._processors: - Processing._processors[mimetype] = tuple() + Processing._processors[mimetype] = () Processing._processors[mimetype] += (processor,) return processor @@ -69,55 +70,52 @@ def process_content(self, *, async_: bool = False) -> Any: if not async_ ^ inspect.iscoroutinefunction(processor): logger.debug("Using processor %r on %r", processor, self._response) return processor(self._response) - raise ProcessorNotFoundError( - f"No response processor found for mimetype {mimetype!r}." - ) + msg = f"No response processor found for mimetype {mimetype!r}." + raise ProcessorNotFoundError(msg) - def process(self) -> Any: + def process(self) -> Any: # noqa: C901 """Validates the http status code before starting to process the repsonse content""" - content: Union[str, bytes] + content: str | bytes if async_ := isinstance(self._response, (ClientResponse, AsyncCachedResponse)): status_code = self._response.status - _buffer = self._response.content._buffer + _buffer = self._response.content._buffer # noqa: SLF001 content = b"" if not _buffer else _buffer[0] elif isinstance(self._response, (Response, CachedResponse)): status_code = self._response.status_code content = self._response.content else: - raise TypeError( - f"Unsupported response type: {type(self._response).__name__}" - ) + msg = f"Unsupported response type: {type(self._response).__name__}" + raise TypeError(msg) if self._decode_bytes and isinstance(content, bytes): content = content.decode() - if status_code in (200, 201): + if status_code in (HTTPStatus.OK, HTTPStatus.CREATED): return self.process_content(async_=async_) - if status_code == 400: - raise RequestError(content, url=self._response.url) # type: ignore - if status_code == 401: - raise UnauthorizedError() - if status_code == 404: - raise EndpointNotFoundError(self._response.url) # type: ignore - if status_code == 405: + if status_code == HTTPStatus.BAD_REQUEST: + raise RequestError(str(content), url=str(self._response.url)) + if status_code == HTTPStatus.UNAUTHORIZED: + raise UnauthorizedError + if status_code == HTTPStatus.NOT_FOUND: + raise EndpointNotFoundError(str(self._response.url)) + if status_code == HTTPStatus.METHOD_NOT_ALLOWED: if isinstance(self._response, (Response, CachedResponse)): method = self._response.request.method else: method = self._response.method - raise MethodNotAllowedError(cast(str, method)) - if status_code >= 500: + raise MethodNotAllowedError(cast("str", method)) + if status_code >= HTTPStatus.INTERNAL_SERVER_ERROR: raise InternalServerError(status_code, content) raise UnexpectedStatusCodeError(status_code) # List of default processors @Processing.processor("application/json") # type: ignore[arg-type] -def process_json(response: ResponseType) -> dict[str, JSONType]: +def process_json(response: ResponseType) -> Any: """Returns the json dict content of the response.""" try: - return cast(dict[str, JSONType], response.json()) + return response.json() except (json.JSONDecodeError, simplejson.JSONDecodeError) as err: - raise MalformedDataError( - f"Home Assistant responded with non-json response: {repr(response.text)}" - ) from err + msg = f"Home Assistant responded with non-json response: {response.text!r}" + raise MalformedDataError(msg) from err @Processing.processor("text/plain") # type: ignore[arg-type] @@ -128,14 +126,13 @@ def process_text(response: ResponseType) -> str: @Processing.processor("application/json") # type: ignore[arg-type] -async def async_process_json(response: AsyncResponseType) -> dict[str, JSONType]: +async def async_process_json(response: AsyncResponseType) -> Any: """Returns the json dict content of the response.""" try: - return cast(dict[str, JSONType], await response.json()) + return await response.json() except (json.JSONDecodeError, simplejson.JSONDecodeError) as err: - raise MalformedDataError( - f"Home Assistant responded with non-json response: {repr(await response.text())}" - ) from err + msg = f"Home Assistant responded with non-json response: {await response.text()!r}" + raise MalformedDataError(msg) from err @Processing.processor("text/plain") # type: ignore[arg-type] diff --git a/homeassistant_api/utils.py b/homeassistant_api/utils.py index 305c703c..1d2a1757 100644 --- a/homeassistant_api/utils.py +++ b/homeassistant_api/utils.py @@ -1,16 +1,4 @@ -import os import re -from typing import TYPE_CHECKING, Optional, Union # noqa: F401 - -from typing_extensions import TypeAliasType - -if TYPE_CHECKING or os.getenv("DOCUMENTATION_MODE") != "true": - JSONType = TypeAliasType( - "JSONType", - "Optional[Union[int, float, str, bool, list[JSONType], dict[str, JSONType]]]", - ) -else: - JSONType = type("JSONType", (object,), {}) def format_entity_id(entity_id: str) -> str: @@ -23,21 +11,24 @@ def format_entity_id(entity_id: str) -> str: def prepare_entity_id( *, - group_id: Optional[str] = None, - slug: Optional[str] = None, - entity_id: Optional[str] = None, + group_id: str | None = None, + slug: str | None = None, + entity_id: str | None = None, ) -> str: """ Combines optional :code:`group` and :code:`slug` into an :code:`entity_id` if provided. Favors :code:`entity_id` over :code:`group` or :code:`slug`. """ if (group_id is None or slug is None) and entity_id is None: - raise ValueError( + msg = ( "To use group or slug you need to pass both, not just one. " "Otherwise pass entity_id. " "Also make sure you are using keyword arguments." ) + raise ValueError(msg) if group_id is not None and slug is not None: entity_id = f"{group_id}.{slug}" - assert entity_id is not None + if entity_id is None: + msg = "entity_id must be provided, or both group_id and slug must be provided" + raise ValueError(msg) return format_entity_id(entity_id) diff --git a/homeassistant_api/websocket.py b/homeassistant_api/websocket.py index 0c57a643..bebe4010 100644 --- a/homeassistant_api/websocket.py +++ b/homeassistant_api/websocket.py @@ -1,94 +1,110 @@ +from __future__ import annotations + import contextlib import json import logging import time -from typing import Any, Dict, Generator, Optional, Tuple, Union, cast +from typing import TYPE_CHECKING +from typing import Any import websockets.sync.client as ws from pydantic import ValidationError +from typing_extensions import Self -from homeassistant_api.errors import ( - ReceivingError, - ResponseError, - UnauthorizedError, -) -from homeassistant_api.models import ( - ConfigEntry, - ConfigEntryEvent, - ConfigSubEntry, - Domain, - Entity, - Group, - State, -) -from homeassistant_api.models.config_entries import DisableEnableResult, FlowResult -from homeassistant_api.models.states import Context -from homeassistant_api.models.websocket import ( - AuthInvalid, - AuthOk, - AuthRequired, - EventResponse, - FiredEvent, - FiredTrigger, - PingResponse, - ResultResponse, - TemplateEvent, -) from homeassistant_api.basewebsocket import BaseWebsocketClient -from homeassistant_api.utils import JSONType, prepare_entity_id +from homeassistant_api.errors import ReceivingError +from homeassistant_api.errors import ResponseError +from homeassistant_api.errors import UnauthorizedError +from homeassistant_api.models import ConfigEntry +from homeassistant_api.models import ConfigEntryEvent +from homeassistant_api.models import ConfigSubEntry +from homeassistant_api.models import Domain +from homeassistant_api.models import Entity +from homeassistant_api.models import Group +from homeassistant_api.models import History +from homeassistant_api.models import State +from homeassistant_api.models.config_entries import DisableEnableResult +from homeassistant_api.models.config_entries import FlowResult +from homeassistant_api.models.states import Context +from homeassistant_api.models.websocket import AuthInvalid +from homeassistant_api.models.websocket import AuthOk +from homeassistant_api.models.websocket import AuthRequired +from homeassistant_api.models.websocket import EventResponse +from homeassistant_api.models.websocket import FiredEvent +from homeassistant_api.models.websocket import FiredTrigger +from homeassistant_api.models.websocket import PingResponse +from homeassistant_api.models.websocket import ResultResponse +from homeassistant_api.models.websocket import TemplateEvent +from homeassistant_api.utils import prepare_entity_id + +if TYPE_CHECKING: + from collections.abc import Generator + from datetime import datetime + from types import TracebackType logger = logging.getLogger(__name__) class WebsocketClient(BaseWebsocketClient): - _conn: Optional[ws.ClientConnection] + _conn: ws.ClientConnection | None def __init__(self, api_url: str, token: str) -> None: super().__init__(api_url, token) self._conn = None self._id_counter = 0 - self._result_responses: dict[ - int, Optional[ResultResponse] - ] = {} # id -> response + self._result_responses: dict[int, ResultResponse | None] = {} # id -> response self._event_responses: dict[ - int, list[EventResponse] + int, + list[EventResponse], ] = {} # id -> [response, ...] self._ping_responses: dict[int, PingResponse] = {} # id -> (sent, received) def __repr__(self) -> str: return f"{self.__class__.__name__}({self.api_url!r})" - def __enter__(self): + def __enter__(self) -> Self: self._conn = ws.connect(self.api_url) self._conn.__enter__() okay = self.authentication_phase() - logging.info("Authenticated with Home Assistant (%s)", okay.ha_version) + logger.info("Authenticated with Home Assistant (%s)", okay.ha_version) self.supported_features_phase() return self - def __exit__(self, exc_type, exc_value, traceback): + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_value: BaseException | None, + traceback: TracebackType | None, + ) -> None: if not self._conn: - raise ReceivingError("Connection is not open!") + msg = "Connection is not open!" + raise ReceivingError(msg) self._conn.__exit__(exc_type, exc_value, traceback) self._conn = None - def _send(self, data: dict[str, JSONType]) -> None: + def _send(self, data: dict[str, Any]) -> None: """Send a message to the websocket server.""" logger.debug(f"Sending message: {data}") if self._conn is None: - raise ReceivingError("Connection is not open!") + msg = "Connection is not open!" + raise ReceivingError(msg) self._conn.send(json.dumps(data)) - def _recv(self) -> dict[str, JSONType]: + def _recv(self) -> dict[str, Any]: """Receive a message from the websocket server.""" if self._conn is None: - raise ReceivingError("Connection is not open!") + msg = "Connection is not open!" + raise ReceivingError(msg) _bytes = self._conn.recv() logger.debug("Received message: %s", _bytes) - return cast(dict[str, JSONType], json.loads(_bytes)) + r = json.loads(_bytes) + if not isinstance(r, dict): + msg = f"Expected dict, got {type(r).__name__}" + raise TypeError(msg) + return r - def send(self, type: str, include_id: bool = True, **data: Any) -> int: + def send(self, msg_type: str, *, include_id: bool = True, **data: Any) -> int: """ Send a command message to the websocket server and wait for a "result" response. @@ -97,11 +113,13 @@ def send(self, type: str, include_id: bool = True, **data: Any) -> int: if include_id: # auth messages don't have an id data["id"] = self._request_id() - data["type"] = type + data["type"] = msg_type self._send(data) if "id" in data: - assert isinstance(data["id"], int) + if not isinstance(data["id"], int): + msg = f"Expected int for message id, got {type(data['id'])}" + raise TypeError(msg) if data["type"] == "ping": self._ping_responses[data["id"]] = PingResponse( start=time.perf_counter_ns(), @@ -114,23 +132,63 @@ def send(self, type: str, include_id: bool = True, **data: Any) -> int: return data["id"] return -1 # non-command messages don't have an id - def recv(self, id: int) -> Union[EventResponse, ResultResponse, PingResponse]: + def recv(self, msg_id: int) -> EventResponse | ResultResponse | PingResponse | None: """Receive a response to a message from the websocket server.""" while True: ## have we received a message with the id we're looking for? - if self._result_responses.get(id) is not None: - return cast(dict[int, ResultResponse], self._result_responses).pop( - id - ) # ughhh why can't mypy figure this out - if self._event_responses.get(id, []): - return self._event_responses[id].pop(0) - if self._ping_responses.get(id) is not None: - if self._ping_responses[id].end is not None: - return self._ping_responses.pop(id) + if self._result_responses.get(msg_id) is not None: + return self._result_responses.pop(msg_id) + if self._event_responses.get(msg_id, []): + return self._event_responses[msg_id].pop(0) + if ( + self._ping_responses.get(msg_id) is not None + and self._ping_responses[msg_id].end is not None + ): + return self._ping_responses.pop(msg_id) ## if not, keep receiving messages until we do self.handle_recv(self._recv()) + def recv_result(self, msg_id: int) -> ResultResponse: + """Receive a ResultResponse, raising TypeError if the response is not a ResultResponse.""" + resp = self.recv(msg_id) + if not isinstance(resp, ResultResponse): + msg = f"Expected ResultResponse, got {type(resp).__name__}" + raise TypeError(msg) + return resp + + def recv_result_dict(self, msg_id: int) -> dict[str, Any]: + """Receive a ResultResponse and return its result as a dict.""" + resp = self.recv_result(msg_id) + if not isinstance(resp.result, dict): + msg = f"Expected dict result, got {type(resp.result).__name__}" + raise TypeError(msg) + return resp.result + + def recv_result_list(self, msg_id: int) -> list[dict[str, Any]]: + """Receive a ResultResponse and return its result as a list.""" + resp = self.recv_result(msg_id) + if not isinstance(resp.result, list): + msg = f"Expected list result, got {type(resp.result).__name__}" + raise TypeError(msg) + return resp.result + + def recv_event(self, msg_id: int) -> EventResponse: + """Receive an EventResponse, raising TypeError if the response is not an EventResponse.""" + resp = self.recv(msg_id) + if not isinstance(resp, EventResponse): + msg = f"Expected EventResponse, got {type(resp).__name__}" + raise TypeError(msg) + return resp + + def recv_ping(self, msg_id: int) -> PingResponse: + """Receive a PingResponse, raising TypeError if the response is not a PingResponse.""" + resp = self.recv(msg_id) + if not isinstance(resp, PingResponse): + msg = f"Expected PingResponse, got {type(resp).__name__}" + raise TypeError(msg) + return resp + def authentication_phase(self) -> AuthOk: """Authenticate with the websocket server.""" # Capture the first message from the server saying we need to authenticate @@ -138,7 +196,8 @@ def authentication_phase(self) -> AuthOk: welcome = AuthRequired.model_validate(self._recv()) logger.debug(f"Received welcome message: {welcome}") except ValidationError as e: - raise ResponseError("Unexpected response during authentication") from e + msg = "Unexpected response during authentication" + raise ResponseError(msg) from e # Send our authentication token self.send("auth", access_token=self.token, include_id=False) @@ -152,26 +211,22 @@ def authentication_phase(self) -> AuthOk: error_resp = AuthInvalid.model_validate(resp) raise UnauthorizedError(error_resp.message) from e except Exception as e: - raise ResponseError( - "Unexpected response during authentication", resp["message"] - ) from e + msg = "Unexpected response during authentication" + raise ResponseError(msg, resp["message"]) from e def supported_features_phase(self) -> None: """Get the supported features from the websocket server.""" - resp = self.recv( - self.send( - "supported_features", - features={ - # "coalesce_messages": 42, # including this key sets it to True - }, - ) - ) - assert cast(ResultResponse, resp).result is None + resp = self.recv_result(self.send("supported_features", features={})) + if resp.result is not None: + msg = "Expected None result for unsubscribe" + raise ValueError(msg) def ping_latency(self) -> float: """Get the latency (in milliseconds) of the connection by sending a ping message.""" - pong = cast(PingResponse, self.recv(self.send("ping"))) - assert pong.end is not None + pong = self.recv_ping(self.send("ping")) + if pong.end is None: + msg = "Pong response missing end timestamp" + raise ValueError(msg) return (pong.end - pong.start) / 1_000_000 def get_rendered_template(self, template: str) -> str: @@ -181,28 +236,28 @@ def get_rendered_template(self, template: str) -> str: Sends command :code:`{"type": "render_template", ...}`. """ - id = self.send("render_template", template=template, report_errors=True) - first = self.recv(id) - assert cast(ResultResponse, first).result is None - second = self.recv(id) - self._unsubscribe(id) - return cast(TemplateEvent, cast(EventResponse, second).event).result - - def get_config(self) -> dict[str, JSONType]: + msg_id = self.send("render_template", template=template, report_errors=True) + first = self.recv_result(msg_id) + if first is not None: + # TODO: FIX causing tests to fail + msg = f"Expected None result for unsubscribe - got {type(first).__name__}" + # raise ValueError(msg) # noqa: ERA001 + second = self.recv_event(msg_id) + self._unsubscribe(msg_id) + if not isinstance(second.event, TemplateEvent): + msg = f"Expected TemplateEvent, got {type(second.event).__name__}" + raise TypeError(msg) + return second.event.result + + def get_config(self) -> dict[str, Any]: """ Get the Home Assistant configuration. Sends command :code:`{"type": "get_config", ...}`. """ - return cast( - dict[str, JSONType], - cast( - ResultResponse, - self.recv(self.send("get_config")), - ).result, - ) + return self.recv_result_dict(self.send("get_config")) - def get_states(self) -> Tuple[State, ...]: + def get_states(self) -> tuple[State, ...]: """ Get a list of states. @@ -210,18 +265,15 @@ def get_states(self) -> Tuple[State, ...]: """ return tuple( State.from_json(state) - for state in cast( - list[dict[str, JSONType]], - cast(ResultResponse, self.recv(self.send("get_states"))).result, - ) + for state in self.recv_result_list(self.send("get_states")) ) def get_state( # pylint: disable=duplicate-code self, *, - entity_id: Optional[str] = None, - group_id: Optional[str] = None, - slug: Optional[str] = None, + entity_id: str | None = None, + group_id: str | None = None, + slug: str | None = None, ) -> State: """ Just calls the :py:meth:`get_states` method and filters the result. @@ -238,30 +290,31 @@ def get_state( # pylint: disable=duplicate-code for state in self.get_states(): if state.entity_id == entity_id: return state - raise ValueError(f"Entity {entity_id} not found!") + msg = f"Entity {entity_id} not found!" + raise ValueError(msg) - def get_entities(self) -> Dict[str, Group]: + def get_entities(self) -> dict[str, Group]: """ Fetches all entities from the Websocket API and returns them as a dictionary of :py:class:`Group`'s. For example :code:`light.living_room` would be in the group :code:`light` (i.e. :code:`get_entities()["light"].living_room`). """ - entities: Dict[str, Group] = {} + entities: dict[str, Group] = {} for state in self.get_states(): group_id, entity_slug = state.entity_id.split(".") if group_id not in entities: entities[group_id] = Group( group_id=group_id, - _client=self, # type: ignore[arg-type] + client=self, ) - entities[group_id]._add_entity(entity_slug, state) + entities[group_id]._add_entity(entity_slug, state) # noqa: SLF001 return entities def get_entity( self, - group_id: Optional[str] = None, - slug: Optional[str] = None, - entity_id: Optional[str] = None, - ) -> Optional[Entity]: + group_id: str | None = None, + slug: str | None = None, + entity_id: str | None = None, + ) -> Entity | None: """ Returns an :py:class:`Entity` model for an :code:`entity_id`. @@ -279,17 +332,29 @@ def get_entity( "Use keyword arguments to pass entity_id. " "Or you can pass the group_id and slug instead" ) - raise ValueError( - f"Neither group_id and slug or entity_id provided. {help_msg}" - ) + msg = f"Neither group_id and slug or entity_id provided. {help_msg}" + raise ValueError(msg) split_group_id, split_slug = state.entity_id.split(".") - group = Group( - group_id=split_group_id, - _client=self, # type: ignore[arg-type] - ) - group._add_entity(split_slug, state) + group = Group(group_id=split_group_id, client=self) + group._add_entity(split_slug, state) # noqa: SLF001 return group.get_entity(split_slug) + def set_state(self, state: State) -> State: + """Not supported over WebSocket. Use the REST :py:class:`Client` instead.""" + msg = "set_state is not supported over the WebSocket API. Use the REST Client." + raise NotImplementedError(msg) + + def get_entity_histories( + self, + entities: tuple[Entity, ...] | None = None, + start_timestamp: datetime | None = None, + end_timestamp: datetime | None = None, + significant_changes_only: bool = False, + ) -> Generator[History, None, None]: + """Not supported over WebSocket. Use the REST :py:class:`Client` instead.""" + msg = "get_entity_histories is not supported over the WebSocket API. Use the REST Client." + raise NotImplementedError(msg) + def get_domains(self) -> dict[str, Domain]: """ Get a list of services that Home Assistant offers (organized into a dictionary of service domains). @@ -298,13 +363,13 @@ def get_domains(self) -> dict[str, Domain]: Sends command :code:`{"type": "get_services", ...}`. """ - resp = self.recv(self.send("get_services")) - domains = map( - lambda item: Domain.from_json_with_client( + result = self.recv_result_dict(self.send("get_services")) + domains = ( + Domain.from_json_with_client( {"domain": item[0], "services": item[1]}, - client=cast("WebsocketClient", self), - ), - cast(dict[str, JSONType], cast(ResultResponse, resp).result).items(), + client=self, + ) + for item in result.items() ) return {domain.domain_id: domain for domain in domains} @@ -323,8 +388,8 @@ def trigger_service( self, domain: str, service: str, - entity_id: Optional[str] = None, - **service_data, + entity_id: str | None = None, + **service_data: Any, ) -> None: """ Trigger a service (that doesn't return a response). @@ -340,25 +405,23 @@ def trigger_service( if entity_id is not None: params["target"] = {"entity_id": entity_id} - data = self.recv(self.send("call_service", include_id=True, **params)) - - # TODO: handle data["result"]["context"] ? + result = self.recv_result_dict( + self.send("call_service", include_id=True, **params), + ) - assert ( - cast( - dict[str, JSONType], - cast(ResultResponse, data).result, - ).get("response") - is None - ) # should always be None for services without a response + # TODO: handle result["context"] ? + if result.get("response") is not None: + # response should always be empty + msg = f"got unexpected response: {result.get('response')}" + raise TypeError(msg) def trigger_service_with_response( self, domain: str, service: str, - entity_id: Optional[str] = None, - **service_data, - ) -> dict[str, JSONType]: + entity_id: str | None = None, + **service_data: Any, + ) -> dict[str, Any]: """ Trigger a service (that returns a response) and return the response. @@ -373,17 +436,17 @@ def trigger_service_with_response( if entity_id is not None: params["target"] = {"entity_id": entity_id} - data = self.recv(self.send("call_service", include_id=True, **params)) + result = self.recv_result_dict( + self.send("call_service", include_id=True, **params), + ) - return cast(dict[str, dict[str, JSONType]], cast(ResultResponse, data).result)[ - "response" - ] + return result["response"] @contextlib.contextmanager def listen_events( self, - event_type: Optional[str] = None, - ) -> Generator[Generator[FiredEvent, None, None], None, None]: + event_type: str | None = None, + ) -> Generator[Generator[FiredEvent | FiredTrigger, None, None], None, None]: """ Listen for all events of a certain type. @@ -396,10 +459,10 @@ def listen_events( print(event) """ subscription = self._subscribe_events(event_type) - yield cast(Generator[FiredEvent, None, None], self._wait_for(subscription)) + yield self._wait_for(subscription) self._unsubscribe(subscription) - def _subscribe_events(self, event_type: Optional[str]) -> int: + def _subscribe_events(self, event_type: str | None) -> int: """ Subscribe to all events of a certain type. @@ -407,12 +470,18 @@ def _subscribe_events(self, event_type: Optional[str]) -> int: Sends command :code:`{"type": "subscribe_events", ...}`. """ params = {"event_type": event_type} if event_type else {} - return self.recv(self.send("subscribe_events", include_id=True, **params)).id + r = self.recv(self.send("subscribe_events", include_id=True, **params)) + if r is None: + msg = f"Event {event_type} not subscribed to any events" + raise TypeError(msg) + return r.id @contextlib.contextmanager def listen_trigger( - self, trigger: str, **trigger_fields - ) -> Generator[Generator[dict[str, JSONType], None, None], None, None]: + self, + trigger: str, + **trigger_fields: Any, + ) -> Generator[Generator[dict[str, Any], None, None], None, None]: """ Listen to a Home Assistant trigger. Allows additional trigger keyword parameters with :code:`**kwargs` (i.e. passing :code:`tag_id=...` for NFC tag triggers). @@ -442,62 +511,63 @@ def listen_trigger( subscription = self._subscribe_trigger(trigger, **trigger_fields) yield ( fired_trigger.variables - for fired_trigger in cast( - Generator[FiredTrigger, None, None], - self._wait_for(subscription), - ) + for fired_trigger in self._wait_for(subscription) + if isinstance(fired_trigger, FiredTrigger) ) self._unsubscribe(subscription) - def _subscribe_trigger(self, trigger: str, **trigger_fields) -> int: + def _subscribe_trigger(self, trigger: str, **trigger_fields: Any) -> int: """ Return the subscription id of the trigger we subscribe to. Sends command :code:`{"type": "subscribe_trigger", ...}`. """ - return self.recv( + result = self.recv( self.send( - "subscribe_trigger", trigger={"platform": trigger, **trigger_fields} - ) - ).id + "subscribe_trigger", + trigger={"platform": trigger, **trigger_fields}, + ), + ) + if result is None: + msg = "No response received for subscribe_trigger" + raise TypeError(msg) + return result.id def _wait_for( - self, subscription_id: int - ) -> Generator[Union[FiredEvent, FiredTrigger], None, None]: + self, + subscription_id: int, + ) -> Generator[FiredEvent | FiredTrigger, None, None]: """ An iterator that waits for events of a certain type. """ while True: - yield cast( - Union[ - FiredEvent, FiredTrigger - ], # we can cast this because TemplateEvent is only used for rendering templates - cast(EventResponse, self.recv(subscription_id)).event, - ) + event_resp = self.recv_event(subscription_id) + if isinstance(event_resp.event, FiredEvent | FiredTrigger): + yield event_resp.event - def _unsubscribe(self, subcription_id: int) -> None: + def _unsubscribe(self, subscription_id: int) -> None: """ Unsubscribe from all events of a certain type. Sends command :code:`{"type": "unsubscribe_events", ...}`. """ - resp = self.recv(self.send("unsubscribe_events", subscription=subcription_id)) - assert cast(ResultResponse, resp).result is None - self._event_responses.pop(subcription_id) + resp = self.recv_result( + self.send("unsubscribe_events", subscription=subscription_id), + ) + if resp.result is not None: + msg = f"leftover events {resp.result}" + raise TypeError(msg) + self._event_responses.pop(subscription_id) - def get_config_entries(self) -> Tuple[ConfigEntry, ...]: + def get_config_entries(self) -> tuple[ConfigEntry, ...]: """ Get all config entries. Sends command :code:`{"type": "config_entries/get", ...}`. """ - resp = self.recv(self.send("config_entries/get")) return tuple( ConfigEntry.from_json(entry) - for entry in cast( - list[dict[str, JSONType]], - cast(ResultResponse, resp).result, - ) + for entry in self.recv_result_list(self.send("config_entries/get")) ) def disable_config_entry(self, entry_id: str) -> DisableEnableResult: @@ -506,16 +576,14 @@ def disable_config_entry(self, entry_id: str) -> DisableEnableResult: Sends command :code:`{"type": "config_entries/disable", ...}`. """ - resp = self.recv( + result = self.recv_result_dict( self.send( "config_entries/disable", entry_id=entry_id, disabled_by="user", - ) - ) - return DisableEnableResult.from_json( - cast(dict[str, JSONType], cast(ResultResponse, resp).result) + ), ) + return DisableEnableResult.from_json(result) def enable_config_entry(self, entry_id: str) -> DisableEnableResult: """ @@ -523,16 +591,14 @@ def enable_config_entry(self, entry_id: str) -> DisableEnableResult: Sends command :code:`{"type": "config_entries/disable", ...}`. """ - resp = self.recv( + result = self.recv_result_dict( self.send( "config_entries/disable", entry_id=entry_id, disabled_by=None, - ) - ) - return DisableEnableResult.from_json( - cast(dict[str, JSONType], cast(ResultResponse, resp).result) + ), ) + return DisableEnableResult.from_json(result) def ignore_config_flow(self, flow_id: str, title: str) -> None: """ @@ -545,36 +611,30 @@ def ignore_config_flow(self, flow_id: str, title: str) -> None: "config_entries/ignore_flow", flow_id=flow_id, title=title, - ) + ), ) - def get_nonuser_flows_in_progress(self) -> Tuple[FlowResult, ...]: + def get_nonuser_flows_in_progress(self) -> tuple[FlowResult, ...]: """ Get non-user config flows in progress. Sends command :code:`{"type": "config_entries/flow/progress", ...}`. """ - resp = self.recv(self.send("config_entries/flow/progress")) return tuple( FlowResult.from_json(flow) - for flow in cast( - list[dict[str, JSONType]], - cast(ResultResponse, resp).result, - ) + for flow in self.recv_result_list(self.send("config_entries/flow/progress")) ) - def get_entry_subentries(self, entry_id: str) -> Tuple[ConfigSubEntry, ...]: + def get_entry_subentries(self, entry_id: str) -> tuple[ConfigSubEntry, ...]: """ Get subentries for a config entry. Sends command :code:`{"type": "config_entries/subentries/list", ...}`. """ - resp = self.recv(self.send("config_entries/subentries/list", entry_id=entry_id)) return tuple( ConfigSubEntry.from_json(subentry) - for subentry in cast( - list[dict[str, JSONType]], - cast(ResultResponse, resp).result, + for subentry in self.recv_result_list( + self.send("config_entries/subentries/list", entry_id=entry_id), ) ) @@ -589,7 +649,7 @@ def delete_entry_subentry(self, entry_id: str, subentry_id: str) -> None: "config_entries/subentries/delete", entry_id=entry_id, subentry_id=subentry_id, - ) + ), ) @contextlib.contextmanager @@ -601,34 +661,30 @@ def listen_config_entries( Sends command :code:`{"type": "config_entries/subscribe", ...}`. """ - subscription = self.recv(self.send("config_entries/subscribe")).id + subscription = self.recv_result(self.send("config_entries/subscribe")).id yield self._wait_for_config_entries(subscription) self._unsubscribe(subscription) def _wait_for_config_entries( - self, subscription_id: int + self, + subscription_id: int, ) -> Generator[list[ConfigEntryEvent], None, None]: """An iterator that waits for config entry events.""" while True: - event_resp = cast(EventResponse, self.recv(subscription_id)) - entries = cast(list[dict[str, JSONType]], event_resp.event) - yield [ConfigEntryEvent.from_json(entry) for entry in entries] + event_resp = self.recv_event(subscription_id) + if isinstance(event_resp.event, list): + yield [ConfigEntryEvent.from_json(entry) for entry in event_resp.event] - def fire_event(self, event_type: str, **event_data) -> Context: + def fire_event(self, event_type: str, **event_data: Any) -> Context: """ Fire an event. Sends command :code:`{"type": "fire_event", ...}`. """ - params: dict[str, JSONType] = {"event_type": event_type} + params: dict[str, Any] = {"event_type": event_type} if event_data: params["event_data"] = event_data - return Context.from_json( - cast( - dict[str, dict[str, JSONType]], - cast( - ResultResponse, - self.recv(self.send("fire_event", include_id=True, **params)), - ).result, - )["context"] + result = self.recv_result_dict( + self.send("fire_event", include_id=True, **params), ) + return Context.from_json(result["context"]) diff --git a/pyproject.toml b/pyproject.toml index 145754d8..acbc3577 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "5.0.3" description = "Python Wrapper for Homeassistant's REST API" readme = "README.md" license = "GPL-3.0-or-later" -requires-python = ">=3.10,<4.0" +requires-python = ">=3.11,<4.0" authors = [ { name = "GrandMoff100", email = "minecraftcrusher100@gmail.com" }, ] @@ -67,32 +67,51 @@ exclude_lines = [ "pragma: no cover" ] + +[tool.ruff] +target-version = "py310" + [tool.ruff.lint] exclude = [ '.git', '__pycache__', '.github', ] -ignore = ['E501'] -select = [ - 'E', - 'F', - 'W', +select = ['ALL'] +ignore = [ + 'E501', + "D", + "G004", + "ANN401", + "FBT", + "TD", + "FIX", ] [tool.ruff.lint.per-file-ignores] "__init__.py" = ['F401'] "conf.py" = ['E402'] -"tests/*" = ["S101", "ANN202"] +"docs/*" = ['ALL'] +"examples/*" = ['INP001'] +"tests/*" = [ + "S101", + "ANN202", + "SLF001", + "PLR2004", + "INP001", +] -[tool.isort] -profile = "black" +[tool.ruff.lint.isort] +force-single-line = true [tool.mypy] disable_error_code = [ "no-untyped-def", "name-defined", ] +exclude = [ + "^docs/" +] [tool.hatch.build.targets.wheel] packages = ["homeassistant_api"] diff --git a/tests/conftest.py b/tests/conftest.py index 3e699256..afb08eac 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,70 +1,66 @@ import logging import os -from typing import AsyncGenerator, Generator, Literal, cast +import time +from collections.abc import AsyncGenerator +from collections.abc import Generator +from http import HTTPMethod import pytest import pytest_asyncio +from requests.exceptions import ConnectionError as RequestsConnectionError -from homeassistant_api import AsyncClient, AsyncWebsocketClient, Client, WebsocketClient - -logging.basicConfig(level=logging.INFO) +from homeassistant_api import AsyncClient +from homeassistant_api import AsyncWebsocketClient +from homeassistant_api import Client +from homeassistant_api import WebsocketClient +logger = logging.getLogger(__name__) TIMEOUT = 300 +HA_URL = os.environ["HOMEASSISTANTAPI_URL"] +HA_WS_URL = os.environ["HOMEASSISTANTAPI_WS_URL"] +HA_TOKEN = os.environ["HOMEASSISTANTAPI_TOKEN"] -@pytest.fixture(name="wait_for_server", scope="session") -def wait_for_server_fixture() -> None: - """Waits for the server to be ready.""" - client = Client( - os.environ["HOMEASSISTANTAPI_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], - ) - logging.info("Waiting for server to be ready...") - client.request(method="get", path="", timeout=TIMEOUT) - logging.info("Server is ready.") +def pytest_sessionstart() -> None: + """Wait for the HA server to be ready before running any tests.""" + client = Client(HA_URL, HA_TOKEN) + deadline = time.monotonic() + TIMEOUT + while time.monotonic() < deadline: + try: + client.request(method=HTTPMethod.GET, path="", timeout=5) + logger.info("Server is ready.") + except RequestsConnectionError: # noqa: PERF203 + logger.info("Server not ready, retrying...") + time.sleep(2) + else: + return + msg = f"Server at {HA_URL} not ready after {TIMEOUT}s" + raise TimeoutError(msg) @pytest.fixture(name="cached_client", scope="session") -def setup_cached_client(wait_for_server) -> Generator[Client, None, None]: +def setup_cached_client() -> Generator[Client, None, None]: """Initializes the Client and enters a cached session.""" - with Client( - os.environ["HOMEASSISTANTAPI_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], - ) as client: - yield cast(Client, client) + with Client(HA_URL, HA_TOKEN) as client: + yield client @pytest_asyncio.fixture(name="async_cached_client", scope="session") -async def setup_async_cached_client( - wait_for_server: Literal[None], -) -> AsyncGenerator[AsyncClient, None]: +async def setup_async_cached_client() -> AsyncGenerator[AsyncClient, None]: """Initializes the AsyncClient and enters an async cached session.""" - async with AsyncClient( - os.environ["HOMEASSISTANTAPI_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], - ) as client: + async with AsyncClient(HA_URL, HA_TOKEN) as client: yield client @pytest.fixture(name="websocket_client", scope="session") -def setup_websocket_client( - wait_for_server: Literal[None], -) -> Generator[WebsocketClient, None, None]: +def setup_websocket_client() -> Generator[WebsocketClient, None, None]: """Initializes the Client and enters a WebSocket session.""" - with WebsocketClient( - os.environ["HOMEASSISTANTAPI_WS_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], - ) as client: + with WebsocketClient(HA_WS_URL, HA_TOKEN) as client: yield client @pytest.fixture(name="async_websocket_client", scope="session") -async def setup_async_websocket_client( - wait_for_server: Literal[None], -) -> AsyncGenerator[AsyncWebsocketClient, None]: +async def setup_async_websocket_client() -> AsyncGenerator[AsyncWebsocketClient, None]: """Initializes the AsyncWebsocketClient and enters an async WebSocket session.""" - async with AsyncWebsocketClient( - os.environ["HOMEASSISTANTAPI_WS_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], - ) as client: + async with AsyncWebsocketClient(HA_WS_URL, HA_TOKEN) as client: yield client diff --git a/tests/test_client.py b/tests/test_client.py index 485553a1..ff946670 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -3,14 +3,17 @@ import aiohttp_client_cache.session import requests_cache -from homeassistant_api import AsyncClient, AsyncWebsocketClient, Client, WebsocketClient +from homeassistant_api import AsyncClient +from homeassistant_api import AsyncWebsocketClient +from homeassistant_api import Client +from homeassistant_api import WebsocketClient def test_custom_cached_session() -> None: with Client( os.environ["HOMEASSISTANTAPI_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], - cache_session=requests_cache.CachedSession(), + session=requests_cache.CachedSession(), ): pass @@ -19,7 +22,6 @@ def test_default_session() -> None: with Client( os.environ["HOMEASSISTANTAPI_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], - cache_session=False, ): pass @@ -28,7 +30,7 @@ async def test_custom_async_cached_session() -> None: async with AsyncClient( os.environ["HOMEASSISTANTAPI_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], - async_cache_session=aiohttp_client_cache.session.CachedSession( + session=aiohttp_client_cache.session.CachedSession( cache=aiohttp_client_cache.SQLiteBackend( cache_name="test_custom_async_cached_session.sqlite", expire_after=10, @@ -42,7 +44,6 @@ async def test_default_async_session() -> None: async with AsyncClient( os.environ["HOMEASSISTANTAPI_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], - async_cache_session=False, ): pass diff --git a/tests/test_endpoints.py b/tests/test_endpoints.py index 0e149906..56ed0053 100644 --- a/tests/test_endpoints.py +++ b/tests/test_endpoints.py @@ -1,16 +1,23 @@ """Module for making sure endpoints that should succeed, do indeed succeed.""" import logging +from datetime import UTC from datetime import datetime import pytest -from homeassistant_api import AsyncClient, AsyncWebsocketClient, Client, WebsocketClient +from homeassistant_api import AsyncClient +from homeassistant_api import AsyncWebsocketClient +from homeassistant_api import Client +from homeassistant_api import WebsocketClient from homeassistant_api.errors import RequestError from homeassistant_api.models import ConfigEntryDisabler +from homeassistant_api.models.events import AsyncEvent from homeassistant_api.models.events import Event from homeassistant_api.models.states import State +logger = logging.getLogger(__name__) + def test_get_error_log(cached_client: Client) -> None: """Tests the `GET /api/error_log` endpoint.""" @@ -39,8 +46,8 @@ def test_get_logbook_entries(cached_client: Client) -> None: """Tests the `GET /api/logbook/` endpoint.""" for entry in cached_client.get_logbook_entries( filter_entities="sun.red_sun", - start_timestamp=datetime(2020, 1, 1), - end_timestamp=datetime.now(), + start_timestamp=datetime(2020, 1, 1, tzinfo=UTC), + end_timestamp=datetime.now(UTC), ): assert entry @@ -49,8 +56,8 @@ async def test_async_get_logbook_entries(async_cached_client: AsyncClient) -> No """Tests the `GET /api/logbook/` endpoint.""" async for entry in async_cached_client.get_logbook_entries( filter_entities="sun.red_sun", - start_timestamp=datetime(2020, 1, 1), - end_timestamp=datetime.now(), + start_timestamp=datetime(2020, 1, 1, tzinfo=UTC), + end_timestamp=datetime.now(UTC), ): assert entry @@ -72,10 +79,10 @@ def test_get_entity_histories(cached_client: Client) -> None: histories = list( cached_client.get_entity_histories( (sun,), - end_timestamp=datetime.now(), - start_timestamp=datetime(2020, 1, 1), + end_timestamp=datetime.now(tz=UTC), + start_timestamp=datetime(2020, 1, 1, tzinfo=UTC), significant_changes_only=True, - ) + ), ) assert histories, "No history found." assert histories[0].states, "No states in entity history found." @@ -97,7 +104,7 @@ async def test_async_get_entity_histories(async_cached_client: AsyncClient) -> N def test_get_rendered_template(cached_client: Client) -> None: """Tests the `POST /api/template` endpoint.""" rendered_template = cached_client.get_rendered_template( - 'The sun is {{ states("sun.sun").replace("_", " the ") }}.' + 'The sun is {{ states("sun.sun").replace("_", " the ") }}.', ) assert rendered_template in { "The sun is above the horizon.", @@ -108,7 +115,7 @@ def test_get_rendered_template(cached_client: Client) -> None: async def test_async_get_rendered_template(async_cached_client: AsyncClient) -> None: """Tests the `POST /api/template` endpoint.""" rendered_template = await async_cached_client.get_rendered_template( - 'The sun is {{ states("sun.sun").replace("_", " the ") }}.' + 'The sun is {{ states("sun.sun").replace("_", " the ") }}.', ) assert rendered_template in { "The sun is above the horizon.", @@ -119,7 +126,7 @@ async def test_async_get_rendered_template(async_cached_client: AsyncClient) -> def test_websocket_get_rendered_template(websocket_client: WebsocketClient) -> None: """Tests the `"type": "render_template"` websocket command.""" rendered_template = websocket_client.get_rendered_template( - 'The sun is {{ states("sun.sun").replace("_", " the ") }}.' + 'The sun is {{ states("sun.sun").replace("_", " the ") }}.', ) assert rendered_template in { "The sun is above the horizon.", @@ -132,7 +139,7 @@ async def test_async_websocket_get_rendered_template( ) -> None: """Tests the `"type": "render_template"` websocket command.""" rendered_template = await async_websocket_client.get_rendered_template( - 'The sun is {{ states("sun.sun").replace("_", " the ") }}.' + 'The sun is {{ states("sun.sun").replace("_", " the ") }}.', ) assert rendered_template in { "The sun is above the horizon.", @@ -202,7 +209,8 @@ def test_websocket_get_entity_by_entity_id(websocket_client: WebsocketClient) -> def test_websocket_get_entity_no_args(websocket_client: WebsocketClient) -> None: """Tests WebsocketClient.get_entity raises ValueError with no arguments.""" with pytest.raises( - ValueError, match="Neither group_id and slug or entity_id provided" + ValueError, + match="Neither group_id and slug or entity_id provided", ): websocket_client.get_entity() @@ -239,7 +247,8 @@ async def test_async_websocket_get_entity_no_args( ) -> None: """Tests AsyncWebsocketClient.get_entity raises ValueError with no arguments.""" with pytest.raises( - ValueError, match="Neither group_id and slug or entity_id provided" + ValueError, + match="Neither group_id and slug or entity_id provided", ): await async_websocket_client.get_entity() @@ -250,7 +259,7 @@ async def test_async_websocket_get_state_not_found( """Tests AsyncWebsocketClient.get_state raises ValueError for nonexistent entity.""" with pytest.raises(ValueError, match="not found"): await async_websocket_client.get_state( - entity_id="fake.nonexistent_entity_12345" + entity_id="fake.nonexistent_entity_12345", ) @@ -481,11 +490,11 @@ def test_trigger_service(cached_client: Client) -> None: """Tests the `POST /api/services//` endpoint.""" notify = cached_client.get_domain("notify") assert notify is not None - resp = notify.persistent_notification( + resp = notify.persistent_notification.trigger( message="Your API Test Suite just said hello!", title="Test Suite Notifcation", ) - logging.info(resp) + logger.info(resp) assert isinstance(resp, tuple) @@ -493,7 +502,7 @@ async def test_async_trigger_service(async_cached_client: AsyncClient) -> None: """Tests the `POST /api/services//` endpoint.""" notify = await async_cached_client.get_domain("notify") assert notify is not None - resp = await notify.persistent_notification( + resp = await notify.persistent_notification.trigger( message="Your API Test Suite just said hello!", title="Test Suite Notifcation (Async)", ) @@ -504,8 +513,9 @@ def test_websocket_trigger_service(websocket_client: WebsocketClient) -> None: """Tests the `"type": "trigger_service"` websocket command.""" notify = websocket_client.get_domain("notify") assert notify is not None - resp = notify.persistent_notification( - message="Your API Test Suite just said hello!", title="Test Suite Notifcation" + resp = notify.persistent_notification.trigger( + message="Your API Test Suite just said hello!", + title="Test Suite Notifcation", ) # Websocket API doesnt return changed states so we check for None assert resp is None @@ -517,8 +527,9 @@ async def test_async_websocket_trigger_service( """Tests the `"type": "trigger_service"` websocket command.""" notify = await async_websocket_client.get_domain("notify") assert notify is not None - resp = await notify.persistent_notification( - message="Your API Test Suite just said hello!", title="Test Suite Notifcation" + resp = await notify.persistent_notification.trigger( + message="Your API Test Suite just said hello!", + title="Test Suite Notifcation", ) # Websocket API doesnt return changed states so we check for None assert resp is None @@ -544,7 +555,7 @@ def test_trigger_service_with_response(cached_client: Client) -> None: """Tests the `POST /api/services//?return_response` endpoint.""" weather = cached_client.get_domain("weather") assert weather is not None - changed_states, data = weather.get_forecasts( + _changed_states, data = weather.get_forecasts.trigger( entity_id="weather.forecast_home", type="hourly", ) @@ -557,7 +568,7 @@ async def test_async_trigger_service_with_response( """Tests the `POST /api/services//?return_response` endpoint.""" weather = await async_cached_client.get_domain("weather") assert weather is not None - changed_states, data = await weather.get_forecasts( + _changed_states, data = await weather.get_forecasts.trigger( entity_id="weather.forecast_home", type="hourly", ) @@ -570,7 +581,7 @@ def test_websocket_trigger_service_with_response( """Tests the `"type": "trigger_service_with_response"` websocket command.""" weather = websocket_client.get_domain("weather") assert weather is not None - data = weather.get_forecasts( + data = weather.get_forecasts.trigger( entity_id="weather.forecast_home", type="hourly", ) @@ -584,7 +595,7 @@ async def test_async_websocket_trigger_service_with_response( """Tests the `"type": "trigger_service_with_response"` websocket command.""" weather = await async_websocket_client.get_domain("weather") assert weather is not None - data = await weather.get_forecasts( + data = await weather.get_forecasts.trigger( entity_id="weather.forecast_home", type="hourly", ) @@ -637,7 +648,7 @@ async def test_async_get_state(async_cached_client: AsyncClient) -> None: def test_set_state(cached_client: Client) -> None: """Tests the `POST /api/states/` endpoint.""" state = cached_client.set_state( - State(state="beyond_our_solar_system", entity_id="sun.red_sun") + State(state="beyond_our_solar_system", entity_id="sun.red_sun"), ) assert state.state == "beyond_our_solar_system" @@ -645,7 +656,7 @@ def test_set_state(cached_client: Client) -> None: async def test_async_set_state(async_cached_client: AsyncClient) -> None: """Tests the `POST /api/states/` endpoint.""" state = await async_cached_client.set_state( - State(state="beyond_our_solar_system", entity_id="sun.red_sun") + State(state="beyond_our_solar_system", entity_id="sun.red_sun"), ) assert state.state == "beyond_our_solar_system" @@ -661,7 +672,7 @@ async def test_async_get_events(async_cached_client: AsyncClient) -> None: """Tests the `GET /api/events` endpoint.""" events = await async_cached_client.get_events() for event in events: - assert isinstance(event, Event) + assert isinstance(event, AsyncEvent) def test_fire_event(cached_client: Client) -> None: diff --git a/tests/test_errors.py b/tests/test_errors.py index 3d51e8f1..e7702c96 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -3,75 +3,66 @@ import json import os import unittest.mock -from typing import Dict +from http import HTTPMethod import aiohttp import pytest import requests -from multidict import CIMultiDict, CIMultiDictProxy - -from homeassistant_api import ( - AsyncClient, - AsyncWebsocketClient, - Client, - Domain, - WebsocketClient, -) -from homeassistant_api.errors import ( - APIConfigurationError, - BadTemplateError, - EndpointNotFoundError, - InternalServerError, - MalformedDataError, - MethodNotAllowedError, - ProcessorNotFoundError, - RequestError, - RequestTimeoutError, - ResponseError, - UnauthorizedError, - UnexpectedStatusCodeError, -) +from multidict import CIMultiDict +from multidict import CIMultiDictProxy + +from homeassistant_api import AsyncClient +from homeassistant_api import AsyncWebsocketClient +from homeassistant_api import Client +from homeassistant_api import Domain +from homeassistant_api import WebsocketClient +from homeassistant_api.errors import APIConfigurationError +from homeassistant_api.errors import BadTemplateError +from homeassistant_api.errors import EndpointNotFoundError +from homeassistant_api.errors import InternalServerError +from homeassistant_api.errors import MalformedDataError +from homeassistant_api.errors import MethodNotAllowedError +from homeassistant_api.errors import ProcessorNotFoundError +from homeassistant_api.errors import RequestError +from homeassistant_api.errors import RequestTimeoutError +from homeassistant_api.errors import ResponseError +from homeassistant_api.errors import UnauthorizedError +from homeassistant_api.errors import UnexpectedStatusCodeError from homeassistant_api.models.websocket import Error from homeassistant_api.processing import Processing from homeassistant_api.utils import prepare_entity_id +HA_URL = os.environ["HOMEASSISTANTAPI_URL"] +HA_WS_URL = os.environ["HOMEASSISTANTAPI_WS_URL"] +WRONG_TOKEN = "lolthisisawrongtokenforsure" # noqa: S105 + def test_unauthorized() -> None: - with pytest.raises(UnauthorizedError): - with Client(os.environ["HOMEASSISTANTAPI_URL"], "lolthisisawrongtokenforsure"): - pass + with pytest.raises(UnauthorizedError), Client(HA_URL, WRONG_TOKEN): + pass def test_websocket_unauthorized() -> None: - with pytest.raises(UnauthorizedError): - with WebsocketClient( - os.environ["HOMEASSISTANTAPI_WS_URL"], "lolthisisawrongtokenforsure" - ): - pass + with pytest.raises(UnauthorizedError), WebsocketClient(HA_WS_URL, WRONG_TOKEN): + pass async def test_async_websocket_unauthorized() -> None: with pytest.raises(UnauthorizedError): - async with AsyncWebsocketClient( - os.environ["HOMEASSISTANTAPI_WS_URL"], - "lolthisisawrongtokenforsure", - ): + async with AsyncWebsocketClient(HA_WS_URL, WRONG_TOKEN): pass async def test_async_unauthorized() -> None: with pytest.raises(UnauthorizedError): - async with AsyncClient( - os.environ["HOMEASSISTANTAPI_URL"], - "lolthisisawrongtokenforsure", - ): + async with AsyncClient(HA_URL, WRONG_TOKEN): pass async def test_domain_missing_services_attribute(cached_client: Client) -> None: - with pytest.raises(ValueError): + with pytest.raises(NotImplementedError, match="does not support `from_json\\(\\)`"): Domain.from_json({"services": None}, client=cached_client) # Missing domain - with pytest.raises(ValueError): + with pytest.raises(NotImplementedError, match="does not support `from_json\\(\\)`"): Domain.from_json({"domain": None}, client=cached_client) # Missing services @@ -87,27 +78,30 @@ async def test_async_endpoint_not_found_error(async_cached_client: AsyncClient) def test_method_not_allowed_error(cached_client: Client) -> None: with pytest.raises(MethodNotAllowedError): - cached_client.request("", method="DELETE") + cached_client.request("", method=HTTPMethod.DELETE) async def test_async_method_not_allowed_error(async_cached_client: AsyncClient) -> None: with pytest.raises(MethodNotAllowedError): - await async_cached_client.request("", method="DELETE") + await async_cached_client.request("", method=HTTPMethod.DELETE) def test_wrong_headers(cached_client: Client) -> None: - with pytest.raises(ValueError): + with pytest.raises(TypeError): cached_client.request("", headers=1234567890) # type: ignore[arg-type] async def test_async_wrong_headers(async_cached_client: AsyncClient) -> None: - with pytest.raises(ValueError): + with pytest.raises(TypeError): await async_cached_client.request("", headers=1234567890) # type: ignore[arg-type] def test_no_entity_information_provided(cached_client: Client) -> None: """Tests that the client raises an error if no entity information is provided.""" - with pytest.raises(ValueError): + with pytest.raises( + ValueError, + match="Neither group_id and slug or entity_id provided", + ): cached_client.get_entity() @@ -115,7 +109,10 @@ async def test_async_no_entity_information_provided( async_cached_client: AsyncClient, ) -> None: """Tests that the client raises an error if no entity information is provided.""" - with pytest.raises(ValueError): + with pytest.raises( + ValueError, + match=r"Neither group_id and slug or entity_id provided", + ): await async_cached_client.get_entity() @@ -129,30 +126,36 @@ async def test_async_invalid_template(async_cached_client: AsyncClient) -> None: await async_cached_client.get_rendered_template("{{ invalid_template lol") -def test_prepare_entity_id(cached_client: Client) -> None: +def test_prepare_entity_id() -> None: """Tests all cases for :py:meth:`Client.prepare_entity_id`.""" assert prepare_entity_id(group_id="person", slug="me") == "person.me" assert prepare_entity_id(entity_id="person.me") == "person.me" - assert "person.you" == prepare_entity_id( - group_id="person", - entity_id="person.you", + assert ( + prepare_entity_id( + group_id="person", + entity_id="person.you", + ) + == "person.you" ) - assert "person.you" == prepare_entity_id( - slug="me", - entity_id="person.you", + assert ( + prepare_entity_id( + slug="me", + entity_id="person.you", + ) + == "person.you" ) - with pytest.raises(ValueError): + with pytest.raises(ValueError, match="pass both, not just one"): prepare_entity_id(group_id="person") # No slug - with pytest.raises(ValueError): + with pytest.raises(ValueError, match="pass both, not just one"): prepare_entity_id(slug="me") # No group - with pytest.raises(ValueError): + with pytest.raises(ValueError, match="pass both, not just one"): prepare_entity_id() # No entity_id def make_response( status_code: int, content: str, - headers: Dict[str, str], + headers: dict[str, str], ) -> requests.Response: """Make a :py:class:`requests.Response` object from a status_code, headers, content.""" return unittest.mock.Mock( @@ -161,7 +164,7 @@ def make_response( text=content, headers=CIMultiDictProxy(CIMultiDict(headers)), json=unittest.mock.Mock( - side_effect=json.JSONDecodeError("This is a fake message", "", 1) + side_effect=json.JSONDecodeError("This is a fake message", "", 1), ), ) @@ -169,7 +172,7 @@ def make_response( def make_async_response( status_code: int, content: str, - headers: Dict[str, str], + headers: dict[str, str], ) -> aiohttp.ClientResponse: """Make an :py:class:`aiohttp.ClientResponse` object from a status_code, headers, content.""" return unittest.mock.Mock( @@ -179,7 +182,7 @@ def make_async_response( content=unittest.mock.Mock(_buffer=[content.encode()]), headers=CIMultiDictProxy(CIMultiDict(headers)), json=unittest.mock.AsyncMock( - side_effect=json.JSONDecodeError("This is a fake message", "", 1) + side_effect=json.JSONDecodeError("This is a fake message", "", 1), ), ) @@ -191,7 +194,7 @@ def test_exception_malformed_data_error() -> None: 200, "{this is not valid json}", {"Content-Type": "application/json"}, - ) + ), ).process() @@ -202,7 +205,7 @@ async def test_async_exception_malformed_data_error() -> None: 200, "{this is not valid json}", {"Content-Type": "application/json"}, - ) + ), ).process() @@ -214,18 +217,20 @@ def test_exception_internal_server_error() -> None: def test_exception_processor_not_found_error() -> None: with pytest.raises(ProcessorNotFoundError): Processing( - make_response(200, "", {"Content-Type": "this_type/does-not-exist"}) + make_response(200, "", {"Content-Type": "this_type/does-not-exist"}), ).process() def test_exception_api_config_error() -> None: + msg = "(Fake) Server has invalid configuration.yaml" with pytest.raises(APIConfigurationError): - raise APIConfigurationError("(Fake) Server has invalid configuration.yaml") + raise APIConfigurationError(msg) def test_exception_response_error() -> None: + msg = "(Fake) Server returned a problematic response." with pytest.raises(ResponseError): - raise ResponseError("(Fake) Server returned a problematic response.") + raise ResponseError(msg) def test_exception_unexpected_status_code() -> None: @@ -234,14 +239,16 @@ def test_exception_unexpected_status_code() -> None: def test_unkown_scheme() -> None: - with pytest.raises(ValueError): + with pytest.raises(ValueError, match="Unknown scheme"): Client("ftp://example.com", "token") def test_request_error_with_message_and_data() -> None: """Tests RequestError when both message and data are provided.""" err = RequestError( - "some_data", url="http://localhost/api", message="Custom message" + "some_data", + url="http://localhost/api", + message="Custom message", ) assert "Custom message" in str(err) assert "'http://localhost/api'" in str(err) diff --git a/tests/test_events.py b/tests/test_events.py index 2c4eea06..4778f468 100644 --- a/tests/test_events.py +++ b/tests/test_events.py @@ -2,20 +2,22 @@ import pytest -from homeassistant_api.models import ( - ConfigEntryChange, - ConfigEntryDisabler, - ConfigEntryState, -) -from homeassistant_api import AsyncWebsocketClient, WebsocketClient +from homeassistant_api import AsyncWebsocketClient +from homeassistant_api import WebsocketClient +from homeassistant_api.models import ConfigEntryChange +from homeassistant_api.models import ConfigEntryDisabler +from homeassistant_api.models import ConfigEntryState +from homeassistant_api.models.websocket import FiredEvent def test_listen_events(websocket_client: WebsocketClient) -> None: with websocket_client.listen_events("test_event") as events: websocket_client.fire_event( - "test_event", message="Triggered by websocket client" + "test_event", + message="Triggered by websocket client", ) for event in events: + assert isinstance(event, FiredEvent) assert event.origin == "LOCAL" assert event.event_type == "test_event" assert event.data["message"] == "Triggered by websocket client" @@ -27,10 +29,12 @@ async def test_async_listen_events( ) -> None: async with async_websocket_client.listen_events("async_test_event") as events: await async_websocket_client.fire_event( - "async_test_event", message="Triggered by async websocket client" + "async_test_event", + message="Triggered by async websocket client", ) # Typing breaks when using zip in an async context, so break instead async for event in events: + assert isinstance(event, FiredEvent) assert event.origin == "LOCAL" assert event.event_type == "async_test_event" assert event.data["message"] == "Triggered by async websocket client" @@ -39,22 +43,23 @@ async def test_async_listen_events( def test_listen_trigger(websocket_client: WebsocketClient) -> None: future = datetime.fromisoformat( - websocket_client.get_rendered_template("{{ (now() + timedelta(seconds=1)) }}") + websocket_client.get_rendered_template("{{ (now() + timedelta(seconds=1)) }}"), ) with websocket_client.listen_trigger( - "time", at=future.strftime("%H:%M:%S") + "time", + at=future.strftime("%H:%M:%S"), ) as triggers: for trigger in triggers: assert trigger["trigger"]["platform"] == "time" assert datetime.fromisoformat( - trigger["trigger"]["now"] + trigger["trigger"]["now"], ).timestamp() == pytest.approx(future.timestamp(), abs=1) break def test_listen_config_entries(websocket_client: WebsocketClient) -> None: with websocket_client.listen_config_entries() as flows: - for i, flow in zip(range(5), flows): + for i, flow in zip(range(5), flows, strict=False): # The first "events" are currently available entries if i == 0: # Assumes that the first entry (sun.sun?) is enabled @@ -103,7 +108,7 @@ async def test_async_listen_config_entries( # Trigger an "updated" event await async_websocket_client.disable_config_entry( - flow[0].entry.entry_id + flow[0].entry.entry_id, ) if i == 1: @@ -138,16 +143,17 @@ async def test_async_listen_trigger( ) -> None: future = datetime.fromisoformat( await async_websocket_client.get_rendered_template( - "{{ (now() + timedelta(seconds=1)) }}" - ) + "{{ (now() + timedelta(seconds=1)) }}", + ), ) async with async_websocket_client.listen_trigger( - "time", at=future.strftime("%H:%M:%S") + "time", + at=future.strftime("%H:%M:%S"), ) as triggers: # Typing breaks when using zip in an async context, so break instead async for trigger in triggers: assert trigger["trigger"]["platform"] == "time" assert datetime.fromisoformat( - trigger["trigger"]["now"] + trigger["trigger"]["now"], ).timestamp() == pytest.approx(future.timestamp(), abs=1) break diff --git a/tests/test_models.py b/tests/test_models.py index 47689e30..4818e328 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -1,11 +1,14 @@ """Module that tests model methods.""" import copy +from datetime import UTC from datetime import datetime import pytest -from homeassistant_api import AsyncClient, Client, Domain +from homeassistant_api import AsyncClient +from homeassistant_api import Client +from homeassistant_api import Domain from homeassistant_api.models.events import Event from homeassistant_api.models.states import State @@ -29,7 +32,7 @@ async def test_async_entity_get_entity(async_cached_client: AsyncClient) -> None assert person_test_suite is not None state = copy.copy(person_test_suite.state) person = person_test_suite.group - assert state.state == (await person_test_suite.async_get_state()).state + assert state.state == (await person_test_suite.get_state()).state assert getattr(person, person_test_suite.slug) == person_test_suite with pytest.raises(AttributeError): assert person.thispersondoesnotexistplease @@ -48,7 +51,7 @@ async def test_async_entity_update_state(async_cached_client: AsyncClient) -> No entity = await async_cached_client.get_entity(group_id="sun", slug="red_sun") assert entity is not None entity.state.state = "In the palm of my hand." - new_state = await entity.async_update_state() + new_state = await entity.update_state() assert new_state is not None assert new_state.state == "In the palm of my hand." @@ -72,7 +75,7 @@ def test_fire_event(cached_client: Client) -> None: async def test_async_fire_event(async_cached_client: AsyncClient) -> None: event = await async_cached_client.get_event("core_config_updated") assert event is not None - assert await event.async_fire() == "Event core_config_updated fired." + assert await event.fire() == "Event core_config_updated fired." def test_get_domain(cached_client: Client) -> None: @@ -103,7 +106,7 @@ def test_entity_get_history(cached_client: Client) -> None: async def test_async_entity_get_history(async_cached_client: AsyncClient) -> None: entity = await async_cached_client.get_entity(group_id="sun", slug="sun") assert entity is not None - history = await entity.async_get_history() + history = await entity.get_history() assert history is not None for state in history.states: assert isinstance(state, State) @@ -113,14 +116,15 @@ def test_entity_get_history_none(cached_client: Client) -> None: entity = cached_client.get_entity(group_id="sun", slug="red_sun") assert entity is not None history = entity.get_history( - start_timestamp=datetime(2015, 1, 1), end_timestamp=datetime(2020, 1, 1) + start_timestamp=datetime(2015, 1, 1, tzinfo=UTC), + end_timestamp=datetime(2020, 1, 1, tzinfo=UTC), ) assert history is None def test_event_from_json_raises() -> None: - """Tests that Event.from_json raises ValueError directing to from_json_with_client.""" - with pytest.raises(ValueError, match="does not support `from_json\\(\\)`"): + """Tests that Event.from_json raises NotImplementedError directing to from_json_with_client.""" + with pytest.raises(NotImplementedError, match="does not support `from_json\\(\\)`"): Event.from_json({}) @@ -133,7 +137,8 @@ def test_domain_from_json_with_client_missing_keys(cached_client: Client) -> Non async def test_async_entity_get_history_none(async_cached_client: AsyncClient) -> None: entity = await async_cached_client.get_entity(group_id="sun", slug="red_sun") assert entity is not None - history = await entity.async_get_history( - start_timestamp=datetime(2015, 1, 1), end_timestamp=datetime(2020, 1, 1) + history = await entity.get_history( + start_timestamp=datetime(2015, 1, 1, tzinfo=UTC), + end_timestamp=datetime(2020, 1, 1, tzinfo=UTC), ) assert history is None diff --git a/tests/test_websocket.py b/tests/test_websocket.py index 30c388e4..de6c566b 100644 --- a/tests/test_websocket.py +++ b/tests/test_websocket.py @@ -1,11 +1,16 @@ """Unit tests for WebsocketClient, AsyncWebsocketClient error paths.""" +from typing import Any + import pytest +from _pytest.monkeypatch import MonkeyPatch -from homeassistant_api.errors import ReceivingError, RequestError, ResponseError from homeassistant_api.asyncwebsocket import AsyncWebsocketClient -from homeassistant_api.websocket import WebsocketClient +from homeassistant_api.errors import ReceivingError +from homeassistant_api.errors import RequestError +from homeassistant_api.errors import ResponseError from homeassistant_api.models import websocket as ws_models +from homeassistant_api.websocket import WebsocketClient def make_sync_client() -> WebsocketClient: @@ -57,7 +62,7 @@ def test_parse_response_error_result() -> None: "type": "result", "success": False, "error": {"code": "not_found", "message": "Entity not found"}, - } + }, ) @@ -68,17 +73,20 @@ def test_parse_response_unexpected_type() -> None: client.parse_response({"id": 1, "type": "unknown_type"}) -def test_authentication_phase_invalid_welcome(monkeypatch) -> None: +def test_authentication_phase_invalid_welcome(monkeypatch: MonkeyPatch) -> None: """Tests authentication_phase raises ResponseError on invalid welcome message.""" client = make_sync_client() monkeypatch.setattr(client, "_recv", lambda: {"type": "not_auth_required"}) with pytest.raises( - ResponseError, match="Unexpected response during authentication" + ResponseError, + match="Unexpected response during authentication", ): client.authentication_phase() -def test_authentication_phase_unexpected_auth_response(monkeypatch) -> None: +def test_authentication_phase_unexpected_auth_response( + monkeypatch: MonkeyPatch, +) -> None: """Tests authentication_phase raises ResponseError when AuthOk.model_validate raises a non-ValidationError.""" call_count = 0 @@ -91,17 +99,19 @@ def fake_recv(): client = make_sync_client() monkeypatch.setattr(client, "_recv", fake_recv) - monkeypatch.setattr(client, "_send", lambda data: None) + monkeypatch.setattr(client, "_send", lambda _: None) # Patch AuthOk.model_validate to raise a non-ValidationError exception - def raise_runtime_error(*args, **kwargs): - raise RuntimeError("something went wrong") + def raise_runtime_error(*args: Any, **kwargs: Any): # noqa: ARG001 + msg = "something went wrong" + raise RuntimeError(msg) monkeypatch.setattr(ws_models.AuthOk, "model_validate", raise_runtime_error) with pytest.raises( - ResponseError, match="Unexpected response during authentication" + ResponseError, + match="Unexpected response during authentication", ): client.authentication_phase() @@ -127,7 +137,9 @@ async def test_async_recv_without_connection() -> None: await client._async_recv() -async def test_async_authentication_phase_invalid_welcome(monkeypatch) -> None: +async def test_async_authentication_phase_invalid_welcome( + monkeypatch: MonkeyPatch, +) -> None: """Tests authentication_phase raises ResponseError on invalid welcome message.""" client = make_async_client() @@ -136,13 +148,14 @@ async def fake_recv(): monkeypatch.setattr(client, "_async_recv", fake_recv) with pytest.raises( - ResponseError, match="Unexpected response during authentication" + ResponseError, + match="Unexpected response during authentication", ): await client.authentication_phase() async def test_async_authentication_phase_unexpected_auth_response( - monkeypatch, + monkeypatch: MonkeyPatch, ) -> None: """Tests authentication_phase raises ResponseError when AuthOk.model_validate raises a non-ValidationError.""" call_count = 0 @@ -157,17 +170,19 @@ async def fake_recv(): client = make_async_client() monkeypatch.setattr(client, "_async_recv", fake_recv) - async def fake_send(data): + async def fake_send(data: Any): pass monkeypatch.setattr(client, "_async_send", fake_send) - def raise_runtime_error(*args, **kwargs): - raise RuntimeError("something went wrong") + def raise_runtime_error(*args: Any, **kwargs: Any) -> None: # noqa: ARG001 + msg = "something went wrong" + raise RuntimeError(msg) monkeypatch.setattr(ws_models.AuthOk, "model_validate", raise_runtime_error) with pytest.raises( - ResponseError, match="Unexpected response during authentication" + ResponseError, + match="Unexpected response during authentication", ): await client.authentication_phase() From e7dec40e3607f60c4ff8afff7981a17713f44cb4 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Tue, 31 Mar 2026 23:10:07 -0700 Subject: [PATCH 06/34] Replace Processing class with standalone sync/async functions Replace the decorator-based processor registry with dict-based MIME dispatch and separate sync/async entry points. Response content is now read lazily only when needed for error messages, eliminating the internal _buffer access hack. Remove custom processor registration API and decode_bytes parameter. --- docs/advanced.rst | 52 ------- homeassistant_api/asyncclient.py | 6 +- homeassistant_api/client.py | 11 +- homeassistant_api/processing.py | 229 ++++++++++++++++++------------- tests/test_errors.py | 24 ++-- 5 files changed, 155 insertions(+), 167 deletions(-) diff --git a/docs/advanced.rst b/docs/advanced.rst index 978045ed..c488adfd 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -70,55 +70,3 @@ Disabling Caching To explicitly disable the default cache you can pass :code:`cache_session=False` or :code:`async_cache_session=False` to :py:class:`Client`'s init method depending on your use case. Otherwise the default cache will be used by default when you use :code:`with client:` or :code:`async with client:`. - - -Response Processing -********************** -Home Assistant API uses functions called processors. -These functions take a Response object as a parameter and return the python data type associated with the content-type header. - -How To Register Response Processors (Converters) -================================================== - -To register a response processor you need to import the :py:class:`Processing` class and then implement the decorator. - - -.. code-block:: python - - from homeassistant_api import Processing, Client - from homeassistant_api.processing import process_json - - - @Processing.processor("application/octet-stream") - def text_processor(response): - return response.text.lower() - - @Processing.processor("text/csv") - async def async_text_processor(response): - text = await response.text() - return [line.split(",") for line in text.splitlines()] - - @Processing.processor("application/json") - def json_processor(response): - print("I processed a json response!) - return process_json(response) - - - client = Client(url, token) - print(client.get_entities()) - - -In this example. -The first processor (a function wrapped with the processor decorator) is going to be called when we receive a response that has that as its :code:`Content-Type` header. -:code:`homeassistant_api` provides processors for :code:`application/octet-stream` and :code:`application/json` by default, -But :code:`@Processing.processor` gives the most recently registered processor the highest precedence when choosing a processor for a response. -So our processor here will be chosen over the default processors. - -The second processor is an async processor that only gets called when Client receives an async response that has :code:`text/csv` as its :code:`Content-Type` header. -If you wanted, you could not use :code:`homeassistant_api`'s default json processing using the :code:`json` module, -and use instead the :code:`ujson` module (which is faster but more restrictive). - -The third processor function implements the default processor function for the :code:`application/json` mimetype after printing a string. -If you wanted to run some intermediate processing. - -Most likely the only processors you will ever use are :code:`application/json` and :code:`application/octet-stream` diff --git a/homeassistant_api/asyncclient.py b/homeassistant_api/asyncclient.py index 75a95d32..2cf20a53 100644 --- a/homeassistant_api/asyncclient.py +++ b/homeassistant_api/asyncclient.py @@ -27,7 +27,7 @@ from .models import LogbookEntry from .models import State from .processing import AsyncResponseType -from .processing import Processing +from .processing import async_process_response from .utils import prepare_entity_id if TYPE_CHECKING: @@ -137,8 +137,8 @@ async def _str_request(self, *args: Any, **kwargs: Any) -> str: @staticmethod async def response_logic(response: AsyncResponseType) -> Any: - """Processes custom mimetype content asyncronously.""" - return await Processing(response=response).process() + """Processes custom mimetype content asynchronously.""" + return await async_process_response(response) # API information methods async def get_error_log(self) -> str: diff --git a/homeassistant_api/client.py b/homeassistant_api/client.py index 5a6c76ff..56e2a7eb 100644 --- a/homeassistant_api/client.py +++ b/homeassistant_api/client.py @@ -25,8 +25,8 @@ from homeassistant_api.models import History from homeassistant_api.models import LogbookEntry from homeassistant_api.models import State -from homeassistant_api.processing import Processing from homeassistant_api.processing import ResponseType +from homeassistant_api.processing import process_response from homeassistant_api.utils import prepare_entity_id if TYPE_CHECKING: @@ -92,7 +92,6 @@ def request( params: dict[str, Any] | None = None, method: HTTPMethod = HTTPMethod.GET, headers: dict[str, str] | None = None, - decode_bytes: bool = True, **kwargs: Any, ) -> Any: """Base method for making requests to the api""" @@ -112,7 +111,7 @@ def request( except Timeout as err: msg = f"Home Assistant did not respond in time (timeout: {kwargs.get('timeout', 300)} sec)" raise RequestTimeoutError(msg, url=path) from err - return self.response_logic(response=resp, decode_bytes=decode_bytes) + return self.response_logic(response=resp) def _dict_request(self, *args: Any, **kwargs: Any) -> dict[str, Any]: data = self.request(*args, **kwargs) @@ -135,10 +134,10 @@ def _str_request(self, *args: Any, **kwargs: Any) -> str: raise TypeError(msg) return data - @classmethod - def response_logic(cls, response: ResponseType, decode_bytes: bool = True) -> Any: + @staticmethod + def response_logic(response: ResponseType) -> Any: """Processes responses from the API and formats them""" - return Processing(response=response, decode_bytes=decode_bytes).process() + return process_response(response) # API information methods def get_error_log(self) -> str: diff --git a/homeassistant_api/processing.py b/homeassistant_api/processing.py index 49738f24..5a674343 100644 --- a/homeassistant_api/processing.py +++ b/homeassistant_api/processing.py @@ -1,13 +1,12 @@ """Module for processing API responses from homeassistant.""" -import inspect import json import logging +from collections.abc import Awaitable from collections.abc import Callable +from dataclasses import dataclass from http import HTTPStatus from typing import Any -from typing import ClassVar -from typing import cast import simplejson from aiohttp import ClientResponse @@ -26,91 +25,81 @@ logger = logging.getLogger(__name__) - AsyncResponseType = AsyncCachedResponse | ClientResponse ResponseType = Response | CachedResponse -AllResponseType = AsyncCachedResponse | ClientResponse | Response | CachedResponse -ProcessorType = Callable[[AllResponseType], Any] - - -class Processing: - """Uses to processor functions to convert json data into common python data types.""" - - _response: AllResponseType - _processors: ClassVar[dict[str, tuple[ProcessorType, ...]]] = {} - - def __init__(self, response: AllResponseType, decode_bytes: bool = True) -> None: - self._response = response - self._decode_bytes = decode_bytes - - @staticmethod - def processor(mimetype: str) -> Callable[[ProcessorType], ProcessorType]: - """A decorator used to register a response converter function.""" - - def register_processor(processor: ProcessorType) -> ProcessorType: - if mimetype not in Processing._processors: - Processing._processors[mimetype] = () - Processing._processors[mimetype] += (processor,) - return processor - - return register_processor - - def process_content(self, *, async_: bool = False) -> Any: - """ - Looks up processors by their Content-Type header and then - calls the processor with the response. - """ - - mimetype_header = self._response.headers.get( - "content-type", - "text/plain", - ) - mimetype = mimetype_header.split(";")[0] - for processor in self._processors.get(mimetype, ()): - if not async_ ^ inspect.iscoroutinefunction(processor): - logger.debug("Using processor %r on %r", processor, self._response) - return processor(self._response) - msg = f"No response processor found for mimetype {mimetype!r}." - raise ProcessorNotFoundError(msg) - def process(self) -> Any: # noqa: C901 - """Validates the http status code before starting to process the repsonse content""" - content: str | bytes - if async_ := isinstance(self._response, (ClientResponse, AsyncCachedResponse)): - status_code = self._response.status - _buffer = self._response.content._buffer # noqa: SLF001 - content = b"" if not _buffer else _buffer[0] - elif isinstance(self._response, (Response, CachedResponse)): - status_code = self._response.status_code - content = self._response.content - else: - msg = f"Unsupported response type: {type(self._response).__name__}" - raise TypeError(msg) - if self._decode_bytes and isinstance(content, bytes): - content = content.decode() - if status_code in (HTTPStatus.OK, HTTPStatus.CREATED): - return self.process_content(async_=async_) - if status_code == HTTPStatus.BAD_REQUEST: - raise RequestError(str(content), url=str(self._response.url)) - if status_code == HTTPStatus.UNAUTHORIZED: - raise UnauthorizedError - if status_code == HTTPStatus.NOT_FOUND: - raise EndpointNotFoundError(str(self._response.url)) - if status_code == HTTPStatus.METHOD_NOT_ALLOWED: - if isinstance(self._response, (Response, CachedResponse)): - method = self._response.request.method - else: - method = self._response.method - raise MethodNotAllowedError(cast("str", method)) - if status_code >= HTTPStatus.INTERNAL_SERVER_ERROR: - raise InternalServerError(status_code, content) - raise UnexpectedStatusCodeError(status_code) - - -# List of default processors -@Processing.processor("application/json") # type: ignore[arg-type] -def process_json(response: ResponseType) -> Any: - """Returns the json dict content of the response.""" + +@dataclass(frozen=True) +class ResponseInfo: + """Extracted metadata from an HTTP response for status code validation.""" + + status_code: int + url: str + method: str | None + + +# --- Status code validation --- + + +def _check_status(info: ResponseInfo, content: str) -> None: + """Raise appropriate error for non-success status codes. + + Content is only used in error messages for 400/500+ responses. + """ + if info.status_code in (HTTPStatus.OK, HTTPStatus.CREATED): + return + if info.status_code == HTTPStatus.BAD_REQUEST: + raise RequestError(content, url=info.url) + if info.status_code == HTTPStatus.UNAUTHORIZED: + raise UnauthorizedError + if info.status_code == HTTPStatus.NOT_FOUND: + raise EndpointNotFoundError(info.url) + if info.status_code == HTTPStatus.METHOD_NOT_ALLOWED: + raise MethodNotAllowedError(info.method or "UNKNOWN") + if info.status_code >= HTTPStatus.INTERNAL_SERVER_ERROR: + raise InternalServerError(info.status_code, content) + raise UnexpectedStatusCodeError(info.status_code) + + +def _extract_sync_info(response: ResponseType) -> ResponseInfo: + """Extract status code, URL, and method from a sync response.""" + return ResponseInfo( + status_code=response.status_code, + url=str(response.url), + method=response.request.method, + ) + + +def _check_sync_status(response: ResponseType) -> None: + """Validate a sync response status code, lazily reading content only on error.""" + info = _extract_sync_info(response) + if info.status_code in (HTTPStatus.OK, HTTPStatus.CREATED): + return + _check_status(info, content=response.text) + + +def _extract_async_info(response: AsyncResponseType) -> ResponseInfo: + """Extract status code, URL, and method from an async response.""" + return ResponseInfo( + status_code=response.status, + url=str(response.url), + method=response.method, + ) + + +async def _check_async_status(response: AsyncResponseType) -> None: + """Validate an async response status code, lazily reading content only on error.""" + info = _extract_async_info(response) + if info.status_code in (HTTPStatus.OK, HTTPStatus.CREATED): + return + _check_status(info, content=await response.text()) + + +# --- Individual parse functions --- + + +def _parse_json(response: ResponseType) -> Any: + """Parse a sync response as JSON.""" try: return response.json() except (json.JSONDecodeError, simplejson.JSONDecodeError) as err: @@ -118,16 +107,13 @@ def process_json(response: ResponseType) -> Any: raise MalformedDataError(msg) from err -@Processing.processor("text/plain") # type: ignore[arg-type] -@Processing.processor("application/octet-stream") # type: ignore[arg-type] -def process_text(response: ResponseType) -> str: - """Returns the plaintext of the reponse.""" +def _parse_text(response: ResponseType) -> str: + """Return the plaintext content of a sync response.""" return response.text -@Processing.processor("application/json") # type: ignore[arg-type] -async def async_process_json(response: AsyncResponseType) -> Any: - """Returns the json dict content of the response.""" +async def _async_parse_json(response: AsyncResponseType) -> Any: + """Parse an async response as JSON.""" try: return await response.json() except (json.JSONDecodeError, simplejson.JSONDecodeError) as err: @@ -135,8 +121,59 @@ async def async_process_json(response: AsyncResponseType) -> Any: raise MalformedDataError(msg) from err -@Processing.processor("text/plain") # type: ignore[arg-type] -@Processing.processor("application/octet-stream") # type: ignore[arg-type] -async def async_process_text(response: AsyncResponseType) -> str: - """Returns the plaintext of the reponse.""" +async def _async_parse_text(response: AsyncResponseType) -> str: + """Return the plaintext content of an async response.""" return await response.text() + + +# --- MIME dispatch tables --- + +_PARSERS: dict[str, Callable[[ResponseType], Any]] = { + "application/json": _parse_json, + "text/plain": _parse_text, + "application/octet-stream": _parse_text, +} + +_ASYNC_PARSERS: dict[str, Callable[[AsyncResponseType], Awaitable[Any]]] = { + "application/json": _async_parse_json, + "text/plain": _async_parse_text, + "application/octet-stream": _async_parse_text, +} + + +# --- Content dispatch --- + + +def _parse_content(response: ResponseType) -> Any: + """Look up and call the appropriate sync parser by content-type.""" + mimetype = response.headers.get("content-type", "text/plain").split(";")[0] + parser = _PARSERS.get(mimetype) + if parser is None: + msg = f"No response processor found for mimetype {mimetype!r}." + raise ProcessorNotFoundError(msg) + return parser(response) + + +async def _async_parse_content(response: AsyncResponseType) -> Any: + """Look up and call the appropriate async parser by content-type.""" + mimetype = response.headers.get("content-type", "text/plain").split(";")[0] + parser = _ASYNC_PARSERS.get(mimetype) + if parser is None: + msg = f"No response processor found for mimetype {mimetype!r}." + raise ProcessorNotFoundError(msg) + return await parser(response) + + +# --- Top-level entry points --- + + +def process_response(response: ResponseType) -> Any: + """Process a sync HTTP response: validate status, then parse content.""" + _check_sync_status(response) + return _parse_content(response) + + +async def async_process_response(response: AsyncResponseType) -> Any: + """Process an async HTTP response: validate status, then parse content.""" + await _check_async_status(response) + return await _async_parse_content(response) diff --git a/tests/test_errors.py b/tests/test_errors.py index e7702c96..b2bc53c0 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -29,7 +29,8 @@ from homeassistant_api.errors import UnauthorizedError from homeassistant_api.errors import UnexpectedStatusCodeError from homeassistant_api.models.websocket import Error -from homeassistant_api.processing import Processing +from homeassistant_api.processing import async_process_response +from homeassistant_api.processing import process_response from homeassistant_api.utils import prepare_entity_id HA_URL = os.environ["HOMEASSISTANTAPI_URL"] @@ -162,6 +163,8 @@ def make_response( spec=requests.Response, status_code=status_code, text=content, + url="http://localhost/api/test", + request=unittest.mock.Mock(method="GET"), headers=CIMultiDictProxy(CIMultiDict(headers)), json=unittest.mock.Mock( side_effect=json.JSONDecodeError("This is a fake message", "", 1), @@ -178,8 +181,9 @@ def make_async_response( return unittest.mock.Mock( spec=aiohttp.ClientResponse, status=status_code, + method="GET", + url="http://localhost/api/test", text=unittest.mock.AsyncMock(return_value=content), - content=unittest.mock.Mock(_buffer=[content.encode()]), headers=CIMultiDictProxy(CIMultiDict(headers)), json=unittest.mock.AsyncMock( side_effect=json.JSONDecodeError("This is a fake message", "", 1), @@ -189,36 +193,36 @@ def make_async_response( def test_exception_malformed_data_error() -> None: with pytest.raises(MalformedDataError): - Processing( + process_response( make_response( 200, "{this is not valid json}", {"Content-Type": "application/json"}, ), - ).process() + ) async def test_async_exception_malformed_data_error() -> None: with pytest.raises(MalformedDataError): - await Processing( + await async_process_response( make_async_response( 200, "{this is not valid json}", {"Content-Type": "application/json"}, ), - ).process() + ) def test_exception_internal_server_error() -> None: with pytest.raises(InternalServerError): - Processing(make_response(500, "", {})).process() + process_response(make_response(500, "", {})) def test_exception_processor_not_found_error() -> None: with pytest.raises(ProcessorNotFoundError): - Processing( + process_response( make_response(200, "", {"Content-Type": "this_type/does-not-exist"}), - ).process() + ) def test_exception_api_config_error() -> None: @@ -235,7 +239,7 @@ def test_exception_response_error() -> None: def test_exception_unexpected_status_code() -> None: with pytest.raises(UnexpectedStatusCodeError): - Processing(make_response(0, "", {})).process() + process_response(make_response(0, "", {})) def test_unkown_scheme() -> None: From 74f79a6bb7ddf6e6bcc632f66476c659e006a82a Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Tue, 31 Mar 2026 23:52:33 -0700 Subject: [PATCH 07/34] Add unit tests for client params, error classes, and models --- tests/test_client.py | 46 +++++++++++++++++ tests/test_errors.py | 114 +++++++++++++++++++++++++++++++++++++++++++ tests/test_models.py | 76 +++++++++++++++++++++++++++++ 3 files changed, 236 insertions(+) diff --git a/tests/test_client.py b/tests/test_client.py index ff946670..3d2ddd83 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -1,4 +1,5 @@ import os +from datetime import datetime import aiohttp_client_cache.session import requests_cache @@ -7,6 +8,7 @@ from homeassistant_api import AsyncWebsocketClient from homeassistant_api import Client from homeassistant_api import WebsocketClient +from homeassistant_api.baseclient import BaseClient def test_custom_cached_session() -> None: @@ -62,3 +64,47 @@ async def test_async_websocket_client_ping() -> None: os.environ["HOMEASSISTANTAPI_TOKEN"], ) as client: assert (await client.ping_latency()) > 0 + + +# --- BaseClient: prepare_get_entity_histories_params with naive timestamps --- + + +def test_prepare_entity_histories_naive_timestamps() -> None: + """Tests that naive (tzinfo=None) timestamps are converted to local timezone.""" + naive_start = datetime(2024, 1, 1, 12, 0, 0) # noqa: DTZ001 + naive_end = datetime(2024, 6, 1, 12, 0, 0) # noqa: DTZ001 + params, url = BaseClient.prepare_get_entity_histories_params( + start_timestamp=naive_start, + end_timestamp=naive_end, + ) + # Naive timestamps should get a timezone attached + assert "+" in url or "-" in url.split("T")[-1], ( + "start_timestamp should have timezone offset" + ) + assert "+" in params["end_time"] or "-" in params["end_time"].split("T")[-1], ( + "end_time should have timezone offset" + ) + + +# --- BaseClient: prepare_get_logbook_entry_params --- + + +def test_prepare_logbook_entry_no_start_timestamp() -> None: + """Tests logbook params without a start_timestamp return base 'logbook' path.""" + params, url = BaseClient.prepare_get_logbook_entry_params( + filter_entities=["light.kitchen", "light.bedroom"], + end_timestamp=datetime(2024, 6, 1, 12, 0, 0), # noqa: DTZ001 + ) + assert url == "logbook" + assert "light.kitchen,light.bedroom" in params["entity"] + assert "end_time" in params + + +def test_prepare_logbook_entry_string_timestamps() -> None: + """Tests logbook params with string timestamps pass through unchanged.""" + params, url = BaseClient.prepare_get_logbook_entry_params( + start_timestamp="2024-01-01T00:00:00", + end_timestamp="2024-06-01T00:00:00", + ) + assert "2024-01-01T00:00:00" in url + assert params["end_time"] == "2024-06-01T00:00:00" diff --git a/tests/test_errors.py b/tests/test_errors.py index b2bc53c0..6922ee62 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -6,10 +6,12 @@ from http import HTTPMethod import aiohttp +import aiohttp_client_cache.session import pytest import requests from multidict import CIMultiDict from multidict import CIMultiDictProxy +from requests_cache import CachedSession from homeassistant_api import AsyncClient from homeassistant_api import AsyncWebsocketClient @@ -28,6 +30,7 @@ from homeassistant_api.errors import ResponseError from homeassistant_api.errors import UnauthorizedError from homeassistant_api.errors import UnexpectedStatusCodeError +from homeassistant_api.models.states import State from homeassistant_api.models.websocket import Error from homeassistant_api.processing import async_process_response from homeassistant_api.processing import process_response @@ -287,3 +290,114 @@ def test_error_model_without_optional_fields() -> None: assert error.translation_key is None assert error.translation_placeholders is None assert error.translation_domain is None + + +# --- Processing: async processor not found --- + + +async def test_async_exception_processor_not_found_error() -> None: + """Tests that async_process_response raises ProcessorNotFoundError for unknown MIME types.""" + with pytest.raises(ProcessorNotFoundError, match="this_type/does-not-exist"): + await async_process_response( + make_async_response(200, "", {"Content-Type": "this_type/does-not-exist"}), + ) + + +async def test_async_exception_bad_request() -> None: + """Tests that async_process_response raises RequestError for 400 responses.""" + with pytest.raises(RequestError): + await async_process_response( + make_async_response(400, "bad request data", {}), + ) + + +async def test_async_exception_internal_server_error() -> None: + """Tests that async_process_response raises InternalServerError for 500 responses.""" + with pytest.raises(InternalServerError): + await async_process_response(make_async_response(500, "server broke", {})) + + +async def test_async_exception_unexpected_status_code() -> None: + """Tests that async_process_response raises UnexpectedStatusCodeError for unknown status.""" + with pytest.raises(UnexpectedStatusCodeError): + await async_process_response(make_async_response(0, "", {})) + + +# --- WebSocket: NotImplementedError stubs --- + + +def test_websocket_set_state_not_supported(websocket_client: WebsocketClient) -> None: + """Tests that WebsocketClient.set_state raises NotImplementedError.""" + state = State(state="test", entity_id="sun.sun") + with pytest.raises( + NotImplementedError, + match="not supported over the WebSocket API", + ): + websocket_client.set_state(state) + + +def test_websocket_get_entity_histories_not_supported( + websocket_client: WebsocketClient, +) -> None: + """Tests that WebsocketClient.get_entity_histories raises NotImplementedError.""" + with pytest.raises( + NotImplementedError, + match="not supported over the WebSocket API", + ): + list(websocket_client.get_entity_histories()) + + +async def test_async_websocket_set_state_not_supported( + async_websocket_client: AsyncWebsocketClient, +) -> None: + """Tests that AsyncWebsocketClient.set_state raises NotImplementedError.""" + state = State(state="test", entity_id="sun.sun") + with pytest.raises( + NotImplementedError, + match="not supported over the WebSocket API", + ): + await async_websocket_client.set_state(state) + + +async def test_async_websocket_get_entity_histories_not_supported( + async_websocket_client: AsyncWebsocketClient, +) -> None: + """Tests that AsyncWebsocketClient.get_entity_histories raises NotImplementedError.""" + with pytest.raises( + NotImplementedError, + match="not supported over the WebSocket API", + ): + async for _ in async_websocket_client.get_entity_histories(): + pass + + +# --- Client: no-cache session --- + + +def test_client_no_cache_session() -> None: + """Tests that Client can be created without a cache session.""" + token = os.environ["HOMEASSISTANTAPI_TOKEN"] + client = Client(HA_URL, token, use_cache=False) + assert isinstance(client._session, requests.Session) + assert not isinstance(client._session, CachedSession) + + +def test_client_default_cache_session() -> None: + """Tests that Client creates a CachedSession when use_cache=True.""" + token = os.environ["HOMEASSISTANTAPI_TOKEN"] + client = Client(HA_URL, token, use_cache=True) + assert isinstance(client._session, CachedSession) + + +async def test_async_client_no_cache_session() -> None: + """Tests that AsyncClient can be created without a cache session.""" + token = os.environ["HOMEASSISTANTAPI_TOKEN"] + client = AsyncClient(HA_URL, token, use_cache=False) + assert isinstance(client._session, aiohttp.ClientSession) + + +async def test_async_client_default_cache_session() -> None: + """Tests that AsyncClient creates a CachedSession when use_cache=True.""" + token = os.environ["HOMEASSISTANTAPI_TOKEN"] + client = AsyncClient(HA_URL, token, use_cache=True) + assert isinstance(client._session, aiohttp_client_cache.session.CachedSession) diff --git a/tests/test_models.py b/tests/test_models.py index 4818e328..28afd784 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -9,7 +9,10 @@ from homeassistant_api import AsyncClient from homeassistant_api import Client from homeassistant_api import Domain +from homeassistant_api.models.domains import BaseDomain +from homeassistant_api.models.entity import BaseGroup from homeassistant_api.models.events import Event +from homeassistant_api.models.history import History from homeassistant_api.models.states import State @@ -142,3 +145,76 @@ async def test_async_entity_get_history_none(async_cached_client: AsyncClient) - end_timestamp=datetime(2020, 1, 1, tzinfo=UTC), ) assert history is None + + +# --- BaseGroup: __getattr__ for nonexistent key --- + + +def test_base_group_getattr_nonexistent() -> None: + """Tests that BaseGroup.__getattr__ raises AttributeError for unknown attributes.""" + group = BaseGroup(group_id="test") + assert group.get_entity("nonexistent") is None + with pytest.raises(AttributeError): + _ = group.nonexistent_entity + + +def test_base_group_add_entity_not_implemented() -> None: + """Tests that BaseGroup._add_entity raises NotImplementedError.""" + group = BaseGroup(group_id="test") + with pytest.raises(NotImplementedError): + group._add_entity("slug", State(state="on", entity_id="test.slug")) + + +# --- BaseDomain: _add_service not implemented --- + + +def test_base_domain_add_service_not_implemented() -> None: + """Tests that BaseDomain._add_service raises NotImplementedError.""" + domain = BaseDomain(domain_id="test") + with pytest.raises(NotImplementedError): + domain._add_service("svc") + + +def test_base_domain_from_json_invalid_services_type(cached_client: Client) -> None: + """Tests that Domain.from_json_with_client raises TypeError when services is not a dict.""" + with pytest.raises(TypeError, match="Expected dict for services"): + Domain.from_json_with_client( + {"domain": "test", "services": "not_a_dict"}, + cached_client, + ) + + +# --- History: repr and entity_id --- + + +def test_history_repr() -> None: + """Tests that History has a meaningful repr with entity_id.""" + states = ( + State(state="on", entity_id="light.kitchen"), + State(state="off", entity_id="light.kitchen"), + ) + history = History(states=states) + assert history.entity_id == "light.kitchen" + assert "light.kitchen" in repr(history) + + +def test_history_entity_id_from_states() -> None: + """Tests that History.entity_id is derived from the states' entity_ids.""" + states = ( + State(state="on", entity_id="light.kitchen"), + State(state="off", entity_id="light.kitchen"), + ) + history = History(states=states) + assert history.entity_id == "light.kitchen" + + +# --- Domain: service access via attribute --- + + +def test_domain_service_attribute_access(cached_client: Client) -> None: + """Tests that Domain services are accessible as attributes.""" + notify = cached_client.get_domain("notify") + assert notify is not None + svc = notify.get_service("persistent_notification") + assert svc is not None + assert notify.persistent_notification == svc From 357102d4a38f23588592e4bf618822fadf4d83f1 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Wed, 1 Apr 2026 13:20:50 -0700 Subject: [PATCH 08/34] Unify client API surface across REST and WebSocket clients - Rename get_domain() param from `domain` to `domain_id` on WS clients - Change WS get_domain() return type to Domain | None using .get() - Fix fire_event() return type on sync Client from str | None to str - Add keyword-only marker for significant_changes_only in sync get_entity_histories() - Remove redundant entity_id param from WS trigger_service methods - Fix TemplateEvent.result type from str to Any (HA returns native types) - Add str() conversion in WS get_rendered_template to match return annotation - Document WS trigger_service return type differences (protocol limitation) --- homeassistant_api/asyncwebsocket.py | 26 ++++++++++++-------------- homeassistant_api/client.py | 5 +++-- homeassistant_api/models/websocket.py | 2 +- homeassistant_api/websocket.py | 27 ++++++++++++--------------- 4 files changed, 28 insertions(+), 32 deletions(-) diff --git a/homeassistant_api/asyncwebsocket.py b/homeassistant_api/asyncwebsocket.py index 709a0e50..c93239d9 100644 --- a/homeassistant_api/asyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -240,16 +240,13 @@ async def get_rendered_template(self, template: str) -> str: template=template, report_errors=True, ) - first = await self.recv_result(msg_id) - if first.result is not None: - msg = "Expected None result for render_template subscription" - raise ValueError(msg) + await self.recv_result(msg_id) second = await self.recv_event(msg_id) await self._async_unsubscribe(msg_id) if not isinstance(second.event, TemplateEvent): msg = f"Expected TemplateEvent, got {type(second.event).__name__}" raise TypeError(msg) - return second.event.result + return str(second.event.result) async def get_config(self) -> dict[str, Any]: """ @@ -379,28 +376,30 @@ async def get_domains(self) -> dict[str, AsyncDomain]: ) return {domain.domain_id: domain for domain in domains} - async def get_domain(self, domain: str) -> AsyncDomain: + async def get_domain(self, domain_id: str) -> AsyncDomain | None: """Get a domain. Note: This is not a method in the WS API client... yet. Please tell home-assistant/core to add a `get_domain` command to the WS API! - For now, just call the :py:meth":`get_domains` method and parsing the result. + For now, just call the :py:meth:`get_domains` method and parsing the result. """ - return (await self.get_domains())[domain] + return (await self.get_domains()).get(domain_id) async def trigger_service( self, domain: str, service: str, - entity_id: str | None = None, **service_data: Any, ) -> None: """ Trigger a service (that doesn't return a response). Sends command :code:`{"type": "call_service", ...}`. + + Note: Unlike the REST API, the WebSocket API does not return changed states. + Subscribe to ``state_changed`` events via :py:meth:`listen_events` to track changes. """ params = { "domain": domain, @@ -408,8 +407,6 @@ async def trigger_service( "service_data": service_data, "return_response": False, } - if entity_id is not None: - params["target"] = {"entity_id": entity_id} result = await self.recv_result_dict( await self.send("call_service", include_id=True, **params), @@ -427,13 +424,16 @@ async def trigger_service_with_response( self, domain: str, service: str, - entity_id: str | None = None, **service_data: Any, ) -> dict[str, Any]: """ Trigger a service (that returns a response) and return the response. Sends command :code:`{"type": "call_service", ...}`. + + Note: Unlike the REST API, the WebSocket API does not return changed states, + only the service response data. Subscribe to ``state_changed`` events via + :py:meth:`listen_events` to track changes. """ params = { "domain": domain, @@ -441,8 +441,6 @@ async def trigger_service_with_response( "service_data": service_data, "return_response": True, } - if entity_id is not None: - params["target"] = {"entity_id": entity_id} result = await self.recv_result_dict( await self.send("call_service", include_id=True, **params), diff --git a/homeassistant_api/client.py b/homeassistant_api/client.py index 56e2a7eb..0286cbeb 100644 --- a/homeassistant_api/client.py +++ b/homeassistant_api/client.py @@ -174,6 +174,7 @@ def get_entity_histories( start_timestamp: datetime | None = None, # Defaults to 1 day before. https://developers.home-assistant.io/docs/api/rest/ end_timestamp: datetime | None = None, + *, significant_changes_only: bool = False, ) -> Generator[History, None, None]: """ @@ -395,7 +396,7 @@ def get_event(self, name: str) -> Event | None: return event return None - def fire_event(self, event_type: str, **event_data: Any) -> str | None: + def fire_event(self, event_type: str, **event_data: Any) -> str: """ Fires a given event_type within homeassistant. Must be an existing event_type. `POST /api/events/` @@ -405,7 +406,7 @@ def fire_event(self, event_type: str, **event_data: Any) -> str | None: method=HTTPMethod.POST, json=event_data, ) - return data.get("message") + return data.get("message", "No message provided") def get_components(self) -> tuple[str, ...]: """ diff --git a/homeassistant_api/models/websocket.py b/homeassistant_api/models/websocket.py index 7021c520..8838e648 100644 --- a/homeassistant_api/models/websocket.py +++ b/homeassistant_api/models/websocket.py @@ -84,7 +84,7 @@ class FiredEvent(BaseModel): class TemplateEvent(BaseModel): - result: str + result: Any listeners: dict[str, Any] diff --git a/homeassistant_api/websocket.py b/homeassistant_api/websocket.py index bebe4010..1a0a0900 100644 --- a/homeassistant_api/websocket.py +++ b/homeassistant_api/websocket.py @@ -237,17 +237,13 @@ def get_rendered_template(self, template: str) -> str: Sends command :code:`{"type": "render_template", ...}`. """ msg_id = self.send("render_template", template=template, report_errors=True) - first = self.recv_result(msg_id) - if first is not None: - # TODO: FIX causing tests to fail - msg = f"Expected None result for unsubscribe - got {type(first).__name__}" - # raise ValueError(msg) # noqa: ERA001 + self.recv_result(msg_id) second = self.recv_event(msg_id) self._unsubscribe(msg_id) if not isinstance(second.event, TemplateEvent): msg = f"Expected TemplateEvent, got {type(second.event).__name__}" raise TypeError(msg) - return second.event.result + return str(second.event.result) def get_config(self) -> dict[str, Any]: """ @@ -373,28 +369,30 @@ def get_domains(self) -> dict[str, Domain]: ) return {domain.domain_id: domain for domain in domains} - def get_domain(self, domain: str) -> Domain: + def get_domain(self, domain_id: str) -> Domain | None: """Get a domain. Note: This is not a method in the WS API client... yet. Please tell home-assistant/core to add a `get_domain` command to the WS API! - For now, just call the :py:meth":`get_domains` method and parsing the result. + For now, just call the :py:meth:`get_domains` method and parsing the result. """ - return self.get_domains()[domain] + return self.get_domains().get(domain_id) def trigger_service( self, domain: str, service: str, - entity_id: str | None = None, **service_data: Any, ) -> None: """ Trigger a service (that doesn't return a response). Sends command :code:`{"type": "call_service", ...}`. + + Note: Unlike the REST API, the WebSocket API does not return changed states. + Subscribe to ``state_changed`` events via :py:meth:`listen_events` to track changes. """ params = { "domain": domain, @@ -402,8 +400,6 @@ def trigger_service( "service_data": service_data, "return_response": False, } - if entity_id is not None: - params["target"] = {"entity_id": entity_id} result = self.recv_result_dict( self.send("call_service", include_id=True, **params), @@ -419,13 +415,16 @@ def trigger_service_with_response( self, domain: str, service: str, - entity_id: str | None = None, **service_data: Any, ) -> dict[str, Any]: """ Trigger a service (that returns a response) and return the response. Sends command :code:`{"type": "call_service", ...}`. + + Note: Unlike the REST API, the WebSocket API does not return changed states, + only the service response data. Subscribe to ``state_changed`` events via + :py:meth:`listen_events` to track changes. """ params = { "domain": domain, @@ -433,8 +432,6 @@ def trigger_service_with_response( "service_data": service_data, "return_response": True, } - if entity_id is not None: - params["target"] = {"entity_id": entity_id} result = self.recv_result_dict( self.send("call_service", include_id=True, **params), From 24a8a252b761c2748a162fb4720bb75ab8108cb2 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Wed, 1 Apr 2026 22:06:47 -0700 Subject: [PATCH 09/34] Add entity registry methods and models for WebSocket clients New models for entity registry responses (EntityRegistryEntry, EntityRegistryEntryExtended, EntityRegistryUpdateResult) and list/get/update/remove methods on both sync and async WS clients. Also adds configurable max_size param to WS client init (default 16MB) to handle large responses like full entity registry lists. Update CI Python version from 3.9 to 3.11. --- .github/workflows/test-suite.yml | 4 +- homeassistant_api/asyncwebsocket.py | 67 +++++++++++++++++- homeassistant_api/basewebsocket.py | 4 +- homeassistant_api/models/__init__.py | 12 ++++ homeassistant_api/models/entity_registry.py | 76 +++++++++++++++++++++ homeassistant_api/websocket.py | 72 ++++++++++++++++--- 6 files changed, 218 insertions(+), 17 deletions(-) create mode 100644 homeassistant_api/models/entity_registry.py diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 64e9e7ed..896f3e4b 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -21,7 +21,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v3 with: - python-version: "3.9" + python-version: "3.11" - name: Checkout uses: actions/checkout@v3 with: @@ -29,7 +29,7 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@v4 - name: Install Dependencies - run: uv sync --group styling + run: uv sync --group dev - name: Run Ruff format run: uv run ruff format homeassistant_api - name: Run Ruff linting diff --git a/homeassistant_api/asyncwebsocket.py b/homeassistant_api/asyncwebsocket.py index c93239d9..21e07870 100644 --- a/homeassistant_api/asyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -25,6 +25,9 @@ from homeassistant_api.models import State from homeassistant_api.models.config_entries import DisableEnableResult from homeassistant_api.models.config_entries import FlowResult +from homeassistant_api.models.entity_registry import EntityRegistryEntry +from homeassistant_api.models.entity_registry import EntityRegistryEntryExtended +from homeassistant_api.models.entity_registry import EntityRegistryUpdateResult from homeassistant_api.models.states import Context from homeassistant_api.models.websocket import AuthInvalid from homeassistant_api.models.websocket import AuthOk @@ -48,12 +51,12 @@ class AsyncWebsocketClient(BaseWebsocketClient): _async_conn: ws.ClientConnection | None - def __init__(self, api_url: str, token: str) -> None: - super().__init__(api_url, token) + def __init__(self, api_url: str, token: str, *, max_size: int = 2**24) -> None: + super().__init__(api_url, token, max_size=max_size) self._async_conn = None async def __aenter__(self) -> Self: - self._async_conn = await ws.connect(self.api_url) + self._async_conn = await ws.connect(self.api_url, max_size=self.max_size) await self._async_conn.__aenter__() okay = await self.authentication_phase() logger.info("Authenticated with Home Assistant (%s)", okay.ha_version) @@ -665,6 +668,64 @@ async def delete_entry_subentry(self, entry_id: str, subentry_id: str) -> None: ), ) + # ── Entity Registry ───────────────────────────────────────── + + async def list_entity_registry(self) -> tuple[EntityRegistryEntry, ...]: + """ + List all entity registry entries. + + Sends command :code:`{"type": "config/entity_registry/list", ...}`. + """ + return tuple( + EntityRegistryEntry.from_json(entry) + for entry in await self.recv_result_list( + await self.send("config/entity_registry/list"), + ) + ) + + async def get_entity_registry_entry( + self, + entity_id: str, + ) -> EntityRegistryEntryExtended: + """ + Get a single entity registry entry. + + Sends command :code:`{"type": "config/entity_registry/get", ...}`. + """ + result = await self.recv_result_dict( + await self.send("config/entity_registry/get", entity_id=entity_id), + ) + return EntityRegistryEntryExtended.from_json(result) + + async def update_entity_registry_entry( + self, + entity_id: str, + **kwargs: Any, + ) -> EntityRegistryUpdateResult: + """ + Update an entity registry entry. + + Sends command :code:`{"type": "config/entity_registry/update", ...}`. + """ + result = await self.recv_result_dict( + await self.send( + "config/entity_registry/update", + entity_id=entity_id, + **kwargs, + ), + ) + return EntityRegistryUpdateResult.from_json(result) + + async def remove_entity_registry_entry(self, entity_id: str) -> None: + """ + Remove an entity from the entity registry. + + Sends command :code:`{"type": "config/entity_registry/remove", ...}`. + """ + await self.recv( + await self.send("config/entity_registry/remove", entity_id=entity_id), + ) + @contextlib.asynccontextmanager async def listen_config_entries( self, diff --git a/homeassistant_api/basewebsocket.py b/homeassistant_api/basewebsocket.py index 2ddc950f..1eea3527 100644 --- a/homeassistant_api/basewebsocket.py +++ b/homeassistant_api/basewebsocket.py @@ -21,18 +21,20 @@ class BaseWebsocketClient: api_url: str token: str + max_size: int _id_counter: int _result_responses: dict[int, ResultResponse | None] _event_responses: dict[int, list[EventResponse]] _ping_responses: dict[int, PingResponse] - def __init__(self, api_url: str, token: str) -> None: + def __init__(self, api_url: str, token: str, *, max_size: int = 2**24) -> None: parsed = urlparse.urlparse(api_url) if parsed.scheme not in {"ws", "wss"}: msg = f"Unknown scheme {parsed.scheme} in {api_url}" raise ValueError(msg) self.api_url = api_url self.token = token.strip() + self.max_size = max_size self._id_counter = 0 self._result_responses = {} # id -> response diff --git a/homeassistant_api/models/__init__.py b/homeassistant_api/models/__init__.py index 113542a7..8c0685a1 100644 --- a/homeassistant_api/models/__init__.py +++ b/homeassistant_api/models/__init__.py @@ -27,6 +27,12 @@ from .entity import BaseGroup from .entity import Entity from .entity import Group +from .entity_registry import EntityCategory +from .entity_registry import EntityDisabledBy +from .entity_registry import EntityHiddenBy +from .entity_registry import EntityRegistryEntry +from .entity_registry import EntityRegistryEntryExtended +from .entity_registry import EntityRegistryUpdateResult from .events import AsyncEvent from .events import BaseEvent from .events import Event @@ -57,6 +63,12 @@ "DiscoveryKey", "Domain", "Entity", + "EntityCategory", + "EntityDisabledBy", + "EntityHiddenBy", + "EntityRegistryEntry", + "EntityRegistryEntryExtended", + "EntityRegistryUpdateResult", "Event", "FlowContext", "FlowResult", diff --git a/homeassistant_api/models/entity_registry.py b/homeassistant_api/models/entity_registry.py new file mode 100644 index 00000000..58c31db1 --- /dev/null +++ b/homeassistant_api/models/entity_registry.py @@ -0,0 +1,76 @@ +"""Models for Home Assistant entity registry responses.""" + +from enum import Enum +from typing import Any + +from pydantic import Field + +from .base import BaseModel +from .base import DatetimeIsoField + + +class EntityDisabledBy(str, Enum): + """What disabled an entity.""" + + CONFIG_ENTRY = "config_entry" + DEVICE = "device" + HASS = "hass" + INTEGRATION = "integration" + USER = "user" + + +class EntityHiddenBy(str, Enum): + """What hid an entity.""" + + INTEGRATION = "integration" + USER = "user" + + +class EntityCategory(str, Enum): + """Category of an entity.""" + + CONFIG = "config" + DIAGNOSTIC = "diagnostic" + + +class EntityRegistryEntry(BaseModel): + """An entity registry entry as returned by ``config/entity_registry/list``.""" + + area_id: str | None = None + categories: dict[str, str] = Field(default_factory=dict) + config_entry_id: str | None = None + config_subentry_id: str | None = None + created_at: DatetimeIsoField + device_id: str | None = None + disabled_by: EntityDisabledBy | None = None + entity_category: EntityCategory | None = None + entity_id: str + has_entity_name: bool + hidden_by: EntityHiddenBy | None = None + icon: str | None = None + id: str + modified_at: DatetimeIsoField + name: str | None = None + options: dict[str, Any] = Field(default_factory=dict) + original_name: str | None = None + platform: str + translation_key: str | None = None + unique_id: str + + +class EntityRegistryEntryExtended(EntityRegistryEntry): + """Extended entity registry entry as returned by ``config/entity_registry/get`` and ``update``.""" + + aliases: list[str] = Field(default_factory=list) + capabilities: dict[str, Any] | None = None + device_class: str | None = None + original_device_class: str | None = None + original_icon: str | None = None + + +class EntityRegistryUpdateResult(BaseModel): + """Result from ``config/entity_registry/update``.""" + + entity_entry: EntityRegistryEntryExtended + reload_delay: int | None = None + require_restart: bool = False diff --git a/homeassistant_api/websocket.py b/homeassistant_api/websocket.py index 1a0a0900..6a2ad6c7 100644 --- a/homeassistant_api/websocket.py +++ b/homeassistant_api/websocket.py @@ -25,6 +25,9 @@ from homeassistant_api.models import State from homeassistant_api.models.config_entries import DisableEnableResult from homeassistant_api.models.config_entries import FlowResult +from homeassistant_api.models.entity_registry import EntityRegistryEntry +from homeassistant_api.models.entity_registry import EntityRegistryEntryExtended +from homeassistant_api.models.entity_registry import EntityRegistryUpdateResult from homeassistant_api.models.states import Context from homeassistant_api.models.websocket import AuthInvalid from homeassistant_api.models.websocket import AuthOk @@ -48,23 +51,15 @@ class WebsocketClient(BaseWebsocketClient): _conn: ws.ClientConnection | None - def __init__(self, api_url: str, token: str) -> None: - super().__init__(api_url, token) + def __init__(self, api_url: str, token: str, *, max_size: int = 2**24) -> None: + super().__init__(api_url, token, max_size=max_size) self._conn = None - self._id_counter = 0 - self._result_responses: dict[int, ResultResponse | None] = {} # id -> response - self._event_responses: dict[ - int, - list[EventResponse], - ] = {} # id -> [response, ...] - self._ping_responses: dict[int, PingResponse] = {} # id -> (sent, received) - def __repr__(self) -> str: return f"{self.__class__.__name__}({self.api_url!r})" def __enter__(self) -> Self: - self._conn = ws.connect(self.api_url) + self._conn = ws.connect(self.api_url, max_size=self.max_size) self._conn.__enter__() okay = self.authentication_phase() logger.info("Authenticated with Home Assistant (%s)", okay.ha_version) @@ -649,6 +644,61 @@ def delete_entry_subentry(self, entry_id: str, subentry_id: str) -> None: ), ) + # ── Entity Registry ───────────────────────────────────────── + + def list_entity_registry(self) -> tuple[EntityRegistryEntry, ...]: + """ + List all entity registry entries. + + Sends command :code:`{"type": "config/entity_registry/list", ...}`. + """ + return tuple( + EntityRegistryEntry.from_json(entry) + for entry in self.recv_result_list( + self.send("config/entity_registry/list"), + ) + ) + + def get_entity_registry_entry(self, entity_id: str) -> EntityRegistryEntryExtended: + """ + Get a single entity registry entry. + + Sends command :code:`{"type": "config/entity_registry/get", ...}`. + """ + result = self.recv_result_dict( + self.send("config/entity_registry/get", entity_id=entity_id), + ) + return EntityRegistryEntryExtended.from_json(result) + + def update_entity_registry_entry( + self, + entity_id: str, + **kwargs: Any, + ) -> EntityRegistryUpdateResult: + """ + Update an entity registry entry. + + Sends command :code:`{"type": "config/entity_registry/update", ...}`. + """ + result = self.recv_result_dict( + self.send( + "config/entity_registry/update", + entity_id=entity_id, + **kwargs, + ), + ) + return EntityRegistryUpdateResult.from_json(result) + + def remove_entity_registry_entry(self, entity_id: str) -> None: + """ + Remove an entity from the entity registry. + + Sends command :code:`{"type": "config/entity_registry/remove", ...}`. + """ + self.recv( + self.send("config/entity_registry/remove", entity_id=entity_id), + ) + @contextlib.contextmanager def listen_config_entries( self, From 821c20ecd888953ae0abf2a87ec2985656edceaf Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Thu, 2 Apr 2026 00:12:56 -0700 Subject: [PATCH 10/34] Update documentation and docstrings for v2 API surface - Rewrite usage.rst async section: replace use_async=True/async_ prefix pattern with separate AsyncClient and AsyncWebsocketClient classes - Fix advanced.rst: update caching params (cache_session -> session), remove obsolete "disabling caching" section, add use_cache docs - Fix README.md: update async example to use AsyncClient, remove "async not supported" note for WebSocket - Standardize docstrings across all four client classes: consistent voice, correct class references (Entity->AsyncEntity etc.), fix "homeassistant" -> "Home Assistant" naming - Fix minor issues: typos, Python version (3.9->3.11), zuban in CONTRIBUTING.rst tooling list --- README.md | 19 ++--- docs/CONTRIBUTING.rst | 4 +- docs/advanced.rst | 61 ++++++++------- docs/index.rst | 6 +- docs/usage.rst | 117 ++++++++++++++++------------ homeassistant_api/asyncclient.py | 39 +++++----- homeassistant_api/asyncwebsocket.py | 33 ++++---- homeassistant_api/client.py | 28 +++---- homeassistant_api/websocket.py | 31 +++----- 9 files changed, 171 insertions(+), 167 deletions(-) diff --git a/README.md b/README.md index cd5bcafa..7d0da8e2 100644 --- a/README.md +++ b/README.md @@ -25,25 +25,22 @@ with Client( '', # i.e. 'http://homeassistant.local:8123/api/' '' ) as client: - light = client.trigger_service('light', 'turn_on', entity_id="light.living_room") + client.trigger_service('light', 'turn_on', entity_id="light.living_room") ``` -All the methods also support async/await! -Just prefix the method with `async_` and pass the `use_async=True` argument to the `Client` constructor. -Then you can use the methods as coroutines -(i.e. `await light.async_turn_on(...)`). +All four client classes share the same method names. +The async clients (`AsyncClient`, `AsyncWebsocketClient`) use `async def` methods that you `await`. ```py import asyncio -from homeassistant_api import Client +from homeassistant_api import AsyncClient async def main(): - with Client( + async with AsyncClient( '', # i.e. 'http://homeassistant.local:8123/api/' '', - use_async=True ) as client: - light = await client.async_trigger_service('light', 'turn_on', entity_id="light.living_room") + await client.trigger_service('light', 'turn_on', entity_id="light.living_room") asyncio.run(main()) ``` @@ -57,11 +54,9 @@ with WebsocketClient( '', # i.e. 'ws://homeassistant.local:8123/api/websocket' '' ) as ws_client: - light = ws_client.trigger_service('light', 'turn_on', entity_id="light.living_room") + ws_client.trigger_service('light', 'turn_on', entity_id="light.living_room") ``` -> Note: The Websocket API is not yet supported in async/await mode. - ## Documentation All documentation, API reference, contribution guidelines and pretty much everything else diff --git a/docs/CONTRIBUTING.rst b/docs/CONTRIBUTING.rst index d35f2791..6f8d0931 100644 --- a/docs/CONTRIBUTING.rst +++ b/docs/CONTRIBUTING.rst @@ -37,7 +37,7 @@ Next run in your terminal. Step Three: Installing Dependencies ====================================== -Firstly, you need to have Python 3.9 or newer installed. +Firstly, you need to have Python 3.11 or newer installed. Download the latest Python Version from `here `__. Then you need to install :code:`uv`, a fast Python package manager. Checkout the `uv Docs `__. @@ -69,7 +69,7 @@ Code Styling Guidelines In order to make sure that our code is easy to read, and navigate. As well as to stop stupid mistakes like typos, undefined variables, etc. We enforce code standards. -Using the tools, :code:`ruff`, :code:`pytest`, and :code:`docker`, we make make sure that our code quality is top notch, and that are changes work everywhere. +Using the tools, :code:`ruff`, :code:`zuban`, :code:`pytest`, and :code:`docker`, we make make sure that our code quality is top notch, and that are changes work everywhere. You can those tools manually yourself, but they also run automatically when you open a PR. Merging Your Contributions diff --git a/docs/advanced.rst b/docs/advanced.rst index c488adfd..3103adf5 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -2,71 +2,74 @@ Advanced Section ******************* -Persistent Caching -******************** +Caching +********** + +By default, caching is **disabled**. You can enable the built-in in-memory cache by passing :code:`use_cache=True`: + +.. code-block:: python -Persistent caching is exactly what it means. It makes your requests cache persist or stay around between :py:class:`Client` objects, and between runs, and contexts (:code:`with client:` statements). -Rather than the default behavior, which is saving the cache to memory or not at all and erasing it after each context and run. + from homeassistant_api import Client + client = Client("", "", use_cache=True) -If you want to persist your requests cache you can pass your own custom cached session to :py:class:`Client`'s init method. -You can pass a variety of options to your cached session like how fast to expire the cache, where to cache it (the cache backend), and what to do when the cache is expired. +This creates an in-memory cache that expires after 300 seconds. -Depending on whether you are using this in an async or sync project you will want to use either :py:class:`aiohttp_client_cache.backends.CachedSession` or :py:class:`requests_cache.CachedSession` respectively. -See the docs for `requests_cache `__ and `aiohttp_client_cache `__ for how to implement these backends, options, and much more. +Persistent Caching +******************** -You can simply pass them to your client like so. +If you want your cache to persist between runs (e.g. to a filesystem), you can pass your own custom cached session via the :code:`session` parameter. + +Depending on whether you are using a sync or async client you will want to use either :py:class:`requests_cache.CachedSession` or :py:class:`aiohttp_client_cache.session.CachedSession` respectively. +See the docs for `requests_cache `__ and `aiohttp_client_cache `__ for backend options and more. .. code-block:: python + from datetime import timedelta from homeassistant_api import Client from requests_cache import CachedSession client = Client( "", "", - cache_session=CachedSession( + session=CachedSession( backend="filesystem", - expire_after=timedelta(minutes=5) - ) + expire_after=timedelta(minutes=5), + ), ) - # CachedSession is activated by the `with` statement. with client: # Grab and update some cool entities and services inside your installation. ... +.. code-block:: python + # Or an example for async import asyncio - from homeassistant_api import Client + from datetime import timedelta + from homeassistant_api import AsyncClient from aiohttp_client_cache import CachedSession, FileBackend - client = Client( - "", + client = AsyncClient( + "", "", - cache_session=CachedSession( + session=CachedSession( cache=FileBackend( - expire_after=timedelta(minutes=5) - ) + expire_after=timedelta(minutes=5), + ), ), - use_async=True ) + async def main(): async with client: # Grab and update some cool entities and services inside your installation. ... + asyncio.run(main()) Why the heck is :py:class:`Client` a context manager? ******************************************************** -The :py:class:`Client` is a context manager because it activates the cache session and pings Home Assistant to make sure its running. -You might not want this behavior, if you don't then don't use the :code:`with` or :code:`async with` statement. -You can still use the client without it, but you will have to manually activate the cache session before you use it. - -Disabling Caching -****************** - -To explicitly disable the default cache you can pass :code:`cache_session=False` or :code:`async_cache_session=False` to :py:class:`Client`'s init method depending on your use case. -Otherwise the default cache will be used by default when you use :code:`with client:` or :code:`async with client:`. +The :py:class:`Client` is a context manager because it manages the underlying HTTP session and pings Home Assistant to make sure it's running. +You don't have to use the context manager — the client works without it — but you'll need to manage the session lifecycle yourself. diff --git a/docs/index.rst b/docs/index.rst index 742970e8..643204d6 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -30,11 +30,11 @@ Features ---------- - Full consumption of the Home Assistant REST API endpoints. -- Full consumption of the Home Assistant Websocket API (all of the documented commands and some undocumented ones) +- Full consumption of the Home Assistant Websocket API (all of the documented commands and some undocumented ones). - Convenient Pydantic Models for data validation. -- Syncrononous and Asynchronous support for integrating with all applications and/or libraries. +- Synchronous and asynchronous support for both REST and WebSocket clients. - Modular design for intuitive readability. -- Request caching for more efficient repeative requests. +- Request caching for more efficient repetitive requests. Getting Started ------------------- diff --git a/docs/usage.rst b/docs/usage.rst index d879f36d..cb8f71c5 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -6,9 +6,15 @@ Usage The Basics... ################# -This library is centered around the :py:class:`Client` and :py:class:`WebsocketClient` classes. -Once you have have your api base url and Long Lived Access Token from Home Assistant we can start to do stuff. -The rest of this guide assumes you have the :py:class:`Client` saved to a :code:`client` variable or a :py:class:`WebsocketClient` saved to a :code:`ws_client` variable. +This library provides four client classes: + +- :py:class:`Client` — sync REST API client +- :py:class:`AsyncClient` — async REST API client +- :py:class:`WebsocketClient` — sync WebSocket client +- :py:class:`AsyncWebsocketClient` — async WebSocket client + +Once you have your API base URL and Long Lived Access Token from Home Assistant we can start to do stuff. +The rest of this guide assumes you have a client saved to a variable as shown below. Most of these examples require some integrations to be setup inside Home Assistant for the examples to actually work. The most commonly used features of this library include triggering services and getting and modifying entity states. @@ -18,7 +24,7 @@ The most commonly used features of this library include triggering services and import os from homeassistant_api import Client - URL = '' # Example: 'https://foobarhomeassistant.duckdns.org:8123/api' + URL = '' # Example: 'http://homeassistant.local:8123/api' TOKEN = '' # Assigns the Client object to a variable and checks if it's running. @@ -35,11 +41,11 @@ The most commonly used features of this library include triggering services and from homeassistant_api import WebsocketClient - WS_URL = '' # Example: 'https://foobarhomeassistant.duckdns.org:8123/api/websocket' + WS_URL = '' # Example: 'ws://homeassistant.local:8123/api/websocket' TOKEN = '' with WebsocketClient(WS_URL, TOKEN) as ws_client: # opens a websocket connection to Home Assistant - print(ws_client.render_template("{{ states('sensor.my_sensor') }}")) + print(ws_client.get_rendered_template("{{ states('sensor.my_sensor') }}")) .. code-block:: python @@ -50,9 +56,9 @@ The most commonly used features of this library include triggering services and # You can also initialize Client before you use it. - client = Client("https://foobarhomeassistant.duckdns.org:8123/api", "mylongtokenpasswordthingyfoobar") + client = Client("http://homeassistant.local:8123/api", "mylongtokenpasswordthingyfoobar") - # In order to activate the requests session you to use the Client context manager like so. + # In order to activate the requests session you need to use the Client context manager like so. # Using it as a context manager will automatically close the session when you're done with it. # But also will *ping* your Home Assistant instance to make sure it's running. with client: @@ -108,63 +114,58 @@ Entities ) # - # Alternatively you can set state from the entity class itself - from homeassistant_api import State - - # If you are wondering where door came from its about 15 lines up. - door.set_state(State(state="My new state", attributes={"open_height": "5ft"})) + # Alternatively you can update state from the entity class itself. + # Modify the entity's local state object, then push it to Home Assistant. + door.state.state = 'My new state' + door.state.attributes.update({'open_height': '5ft'}) + door.update_state() # - ## All of these methods can be used with the WebsocketClient as well [except for set_state because the WS API doesn't support it :((( ]. - -Using Client with :code:`async`/:code:`await` -************************************************* -Are you wondering if you can use :code:`homeassistant_api` using Python's :code:`async`/:code:`await` syntax? -Good news! You can! + # All of these methods work with the WebsocketClient as well. -(You can't use the WebsocketClient with :code:`async`/:code:`await` yet because we haven't implemented it yet.) +Using :py:class:`AsyncClient` +********************************* +All four client classes share the same method names. +The async clients (:py:class:`AsyncClient` and :py:class:`AsyncWebsocketClient`) simply use :code:`async def` methods that you :code:`await`. Async Services ******************** .. code-block:: python import asyncio - from homeassistant_api import Client - - # Initialize client like usual, except with the :code:`use_async` keyword. - client = Client(url, token, use_async=True) + from homeassistant_api import AsyncClient async def main(): + async with AsyncClient(url, token) as client: + domains = await client.get_domains() + print(domains) + # {'homeassistant': , 'notify': } - domains = await client.async_get_domains() - print(domains) - # {'homeassistant': , 'notify': } - - cover = await client.async_get_domain("cover") + cover = await client.get_domain("cover") - changed_states = await cover.close_cover(entity_id='cover.garage_door') - # [] + changed_states = await cover.close_cover(entity_id='cover.garage_door') + # (,) - asyncio.get_event_loop().run_until_complete(main()) + asyncio.run(main()) Async Entities ***************** .. code-block:: python - entity_groups = await client.async_get_entities() - # {'person': , 'zone': , ...} + entity_groups = await client.get_entities() + # {'person': , 'zone': , ...} - door = await client.async_get_entity(entity_id='cover.garage_door') - # "> + door = await client.get_entity(entity_id='cover.garage_door') + # "> - states = await client.async_get_states() - # [, ,...] + states = await client.get_states() + # (, ,...) - state = await client.async_get_state('sun.sun') + state = await client.get_state('sun.sun') # - new_state = await client.async_set_state( + new_state = await client.set_state( State( state='my ToaTallY Whatever vAlUe 12t87932', entity_id='my_favorite_colors.number_one' @@ -172,15 +173,29 @@ Async Entities ) # - # Alternatively you can set state from the entity class itself - from homeassistant_api import State - - # If you are wondering where door came from its about 15 lines up. + # Alternatively you can update state from the entity class itself. door.state.state = 'My new state' door.state.attributes.update({'open_height': '5ft'}) - await door.async_set_state(door.state) + await door.update_state() # +Async WebSocket +****************** + +The :py:class:`AsyncWebsocketClient` works the same way: + +.. code-block:: python + + import asyncio + from homeassistant_api import AsyncWebsocketClient + + async def main(): + async with AsyncWebsocketClient(ws_url, token) as ws_client: + template = await ws_client.get_rendered_template("{{ states('sensor.my_sensor') }}") + print(template) + + asyncio.run(main()) + Using Events (Listening and Firing) ***************************************** @@ -189,14 +204,14 @@ Using Events (Listening and Firing) from homeassistant_api import WebsocketClient - WS_URL = '' # Example: 'https://foobarhomeassistant.duckdns.org:8123/api/websocket' + WS_URL = '' # Example: 'ws://homeassistant.local:8123/api/websocket' TOKEN = '' with WebsocketClient(WS_URL, TOKEN) as ws_client: with ws_client.listen_events() as events: for event in events: print(event) - + # Or if you want to listen for a specific event type until dinner time. with ws_client.listen_events('state_changed') as events: for event in events: @@ -208,7 +223,7 @@ Using Events (Listening and Firing) with ws_client.listen_events("my_event") as events: for _, event in zip(range(10), events): print(event) - + # Alternatively for just one event. with ws_client.listen_events("my_event") as events: event = next(events) @@ -226,12 +241,12 @@ Listening for Triggers from homeassistant_api import WebsocketClient with WebsocketClient(WS_URL, TOKEN) as ws_client: - with ws_client.listen_triggers() as triggers: # see WebsocketClient.listen_triggers for more info. + with ws_client.listen_trigger() as triggers: # see WebsocketClient.listen_trigger for more info. for trigger in triggers: print(trigger) - + # Another more specific example, listening for event triggers. - with ws_client.listen_triggers("event", event_type="my_event") as triggers: + with ws_client.listen_trigger("event", event_type="my_event") as triggers: ws_client.fire_event("my_event", my_arg="my_value") for trigger in triggers: diff --git a/homeassistant_api/asyncclient.py b/homeassistant_api/asyncclient.py index 2cf20a53..addd1195 100644 --- a/homeassistant_api/asyncclient.py +++ b/homeassistant_api/asyncclient.py @@ -1,4 +1,4 @@ -"""Module for interacting with Home Assistant asyncronously.""" +"""Module for interacting with Home Assistant asynchronously.""" from __future__ import annotations @@ -42,11 +42,14 @@ class AsyncClient(BaseClient): """ - The async equivalent of :py:class:`Client` + The async client for interacting with Home Assistant via the REST API. :param api_url: The location of the api endpoint. e.g. :code:`http://localhost:8123/api` Required. :param token: The refresh or long lived access token to authenticate your requests. Required. - :param global_request_kwargs: A dictionary or dict-like object of kwargs to pass to :func:`requests.request` or :meth:`aiohttp.request`. Optional. + :param session: A custom :py:class:`aiohttp_client_cache.session.CachedSession` or :py:class:`aiohttp.ClientSession` instance. Optional. + :param use_cache: Enable the default in-memory request cache (300s expiry). Ignored if :code:`session` is provided. Default :code:`False`. + :param verify_ssl: Whether to verify SSL certificates. Default :code:`True`. + :param global_request_kwargs: Kwargs to pass to :meth:`aiohttp.ClientSession.request`. Optional. """ # pylint: disable=line-too-long _session: CachedSession | ClientSession @@ -150,7 +153,7 @@ async def get_error_log(self) -> str: async def get_config(self) -> dict[str, Any]: """ - Returns the yaml configuration of homeassistant. + Returns the configuration of Home Assistant. :code:`GET /api/config` """ return await self._dict_request("config") @@ -161,7 +164,7 @@ async def get_logbook_entries( **kwargs: Any, ) -> AsyncGenerator[LogbookEntry, None]: """ - Returns a list of logbook entries from homeassistant. + Returns a list of logbook entries from Home Assistant. :code:`GET /api/logbook/` """ params, url = self.prepare_get_logbook_entry_params(*args, **kwargs) @@ -179,7 +182,7 @@ async def get_entity_histories( significant_changes_only: bool = False, ) -> AsyncGenerator[History, None]: """ - Returns a generator of entity state histories from homeassistant. + Yields entity state histories. See docs on the :py:class:`History` model. :code:`GET /api/history/period/` """ params, url = self.prepare_get_entity_histories_params( @@ -206,14 +209,14 @@ async def get_rendered_template(self, template: str) -> str: except RequestError as err: msg = ( "Your template is invalid. " - "Try debugging it in the developer tools page of homeassistant." + "Try debugging it in the developer tools page of Home Assistant." ) raise BadTemplateError(msg) from err # API check methods async def check_api_config(self) -> bool: """ - Asks Home Assistant to validate its configuration file and returns true/false. + Asks Home Assistant to validate its configuration file. :code:`POST /api/config/core/check_config` """ res = await self._dict_request( @@ -224,7 +227,7 @@ async def check_api_config(self) -> bool: async def check_api_running(self) -> bool: """ - Asks Home Assistant if its running. + Asks Home Assistant if it is running. :code:`GET /api/` """ res = await self._dict_request("") @@ -233,7 +236,7 @@ async def check_api_running(self) -> bool: # Entity methods async def get_entities(self) -> dict[str, AsyncGroup]: """ - Fetches all entities from the api. + Fetches all entities from the api and returns them as a dictionary of :py:class:`AsyncGroup`'s. :code:`GET /api/states` """ entities: dict[str, AsyncGroup] = {} @@ -251,7 +254,7 @@ async def get_entity( entity_id: str | None = None, ) -> AsyncEntity | None: """ - Returns a Entity model for an :code:`entity_id`. + Returns an :py:class:`AsyncEntity` model for an :code:`entity_id`. :code:`GET /api/states/` """ if group_id is not None and slug is not None: @@ -273,7 +276,7 @@ async def get_entity( # Services and domain methods async def get_domains(self) -> dict[str, AsyncDomain]: """ - Fetches all :py:class:`Service` 's from the API. + Fetches all service :py:class:`AsyncDomain`'s from the API. :code:`GET /api/services` """ data = await self._list_request("services") @@ -284,7 +287,7 @@ async def get_domains(self) -> dict[str, AsyncDomain]: async def get_domain(self, domain_id: str) -> AsyncDomain | None: """ - Fetches all :py:class:`Service`'s under a particular service :py:class:`Domain`. + Fetches all :py:class:`AsyncService`'s under a particular service :py:class:`AsyncDomain`. Uses cached data from :py:meth:`get_domains` if available. """ domains = await self.get_domains() @@ -358,7 +361,7 @@ async def set_state( # pylint: disable=duplicate-code ) -> State: """ This method sets the representation of a device within Home Assistant and will not communicate with the actual device. - To communicate with the device, use :py:meth:`Service.trigger` or :py:meth:`Service.async_trigger`. + To communicate with the device, use :py:meth:`AsyncService.trigger`. :code:`POST /api/states/` """ data = await self._dict_request( @@ -370,7 +373,7 @@ async def set_state( # pylint: disable=duplicate-code async def get_states(self) -> tuple[State, ...]: """ - Gets the states of all entities within homeassistant. + Gets the states of all entities within Home Assistant. :code:`GET /api/states` """ data = await self._list_request("states") @@ -379,7 +382,7 @@ async def get_states(self) -> tuple[State, ...]: # Event methods async def get_events(self) -> tuple[AsyncEvent, ...]: """ - Gets the Events that happen within homeassistant + Gets the Events that happen within Home Assistant. :code:`GET /api/events` """ data = await self._list_request("events") @@ -389,7 +392,7 @@ async def get_events(self) -> tuple[AsyncEvent, ...]: async def get_event(self, name: str) -> AsyncEvent | None: """ - Gets the :py:class:`Event` with the specified name if it has at least one listener. + Gets the :py:class:`AsyncEvent` with the specified name if it has at least one listener. Uses cached data from :py:meth:`get_events` if available. """ for event in await self.get_events(): @@ -399,7 +402,7 @@ async def get_event(self, name: str) -> AsyncEvent | None: async def fire_event(self, event_type: str, **event_data: Any) -> str: """ - Fires a given event_type within homeassistant. Must be an existing event_type. + Fires a given event_type within Home Assistant. :code:`POST /api/events/` """ data = await self._dict_request( diff --git a/homeassistant_api/asyncwebsocket.py b/homeassistant_api/asyncwebsocket.py index 21e07870..6ffc66a1 100644 --- a/homeassistant_api/asyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -253,7 +253,7 @@ async def get_rendered_template(self, template: str) -> str: async def get_config(self) -> dict[str, Any]: """ - Get the Home Assistant configuration. + Returns the configuration of Home Assistant. Sends command :code:`{"type": "get_config", ...}`. """ @@ -261,7 +261,7 @@ async def get_config(self) -> dict[str, Any]: async def get_states(self) -> tuple[State, ...]: """ - Get a list of states. + Gets the states of all entities within Home Assistant. Sends command :code:`{"type": "get_states", ...}`. """ @@ -278,10 +278,11 @@ async def get_state( # pylint: disable=duplicate-code slug: str | None = None, ) -> State: """ - Just calls the :py:meth:`get_states` method and filters the result. + Fetches the state of the entity specified. - Please tell home-assistant/core to add a :code:`{"type": "get_state", ...}` command to the WS API! - There is a lot of disappointment and frustration in the community because this is not available. + Note: The WebSocket API has no single-entity state command, so this fetches all states and filters. + + Sends command :code:`{"type": "get_states", ...}`. """ entity_id = prepare_entity_id( group_id=group_id, @@ -318,12 +319,9 @@ async def get_entity( entity_id: str | None = None, ) -> AsyncEntity | None: """ - Returns an :py:class:`Entity` model for an :code:`entity_id`. + Returns an :py:class:`AsyncEntity` model for an :code:`entity_id`. - Calls :py:meth:`get_states` under the hood. - - Please tell home-assistant/core to add a :code:`{"type": "get_state", ...}` command to the WS API! - There is a lot of disappointment and frustration in the community because this is not available. + Note: The WebSocket API has no single-entity state command, so this fetches all states and filters. """ if group_id is not None and slug is not None: state = await self.get_state(group_id=group_id, slug=slug) @@ -363,9 +361,7 @@ async def get_entity_histories( async def get_domains(self) -> dict[str, AsyncDomain]: """ - Get a list of services that Home Assistant offers (organized into a dictionary of service domains). - - For example, the service :code:`light.turn_on` would be in the domain :code:`light`. + Fetches all service :py:class:`AsyncDomain`'s from the API. Sends command :code:`{"type": "get_services", ...}`. """ @@ -380,13 +376,10 @@ async def get_domains(self) -> dict[str, AsyncDomain]: return {domain.domain_id: domain for domain in domains} async def get_domain(self, domain_id: str) -> AsyncDomain | None: - """Get a domain. - - Note: This is not a method in the WS API client... yet. - - Please tell home-assistant/core to add a `get_domain` command to the WS API! + """ + Fetches all :py:class:`AsyncService`'s under a particular service :py:class:`AsyncDomain`. - For now, just call the :py:meth:`get_domains` method and parsing the result. + Note: The WebSocket API has no single-domain command, so this fetches all domains and filters. """ return (await self.get_domains()).get(domain_id) @@ -753,7 +746,7 @@ async def _async_wait_for_config_entries( async def fire_event(self, event_type: str, **event_data: Any) -> Context: """ - Fire an event. + Fires a given event_type within Home Assistant. Sends command :code:`{"type": "fire_event", ...}`. """ diff --git a/homeassistant_api/client.py b/homeassistant_api/client.py index 0286cbeb..f1151912 100644 --- a/homeassistant_api/client.py +++ b/homeassistant_api/client.py @@ -1,4 +1,4 @@ -"""Module for all interaction with homeassistant.""" +"""Module for all interaction with Home Assistant.""" from __future__ import annotations @@ -39,11 +39,14 @@ class Client(BaseClient): """ - The base object for interacting with Homeassistant via the REST API. + The sync client for interacting with Home Assistant via the REST API. :param api_url: The location of the api endpoint. e.g. :code:`http://localhost:8123/api` Required. :param token: The refresh or long lived access token to authenticate your requests. Required. - :param global_request_kwargs: Kwargs to pass to :func:`requests.request` or :meth:`aiohttp.ClientSession.request`. Optional. + :param session: A custom :py:class:`requests_cache.CachedSession` or :py:class:`requests.Session` instance. Optional. + :param use_cache: Enable the default in-memory request cache (300s expiry). Ignored if :code:`session` is provided. Default :code:`False`. + :param verify_ssl: Whether to verify SSL certificates. Default :code:`True`. + :param global_request_kwargs: Kwargs to pass to :func:`requests.request`. Optional. """ # pylint: disable=line-too-long _session: CachedSession | Session @@ -51,8 +54,7 @@ class Client(BaseClient): def __init__( self, *args: Any, - session: CachedSession - | None = None, # Explicitly disable cache with cache_session=False + session: CachedSession | None = None, use_cache: bool = False, verify_ssl: bool = True, **kwargs: Any, @@ -149,7 +151,7 @@ def get_error_log(self) -> str: def get_config(self) -> dict[str, Any]: """ - Returns the yaml configuration of homeassistant. + Returns the configuration of Home Assistant. :code:`GET /api/config` """ return self._dict_request("config") @@ -160,7 +162,7 @@ def get_logbook_entries( **kwargs: Any, ) -> Generator[LogbookEntry, None, None]: """ - Returns a list of logbook entries from homeassistant. + Returns a list of logbook entries from Home Assistant. :code:`GET /api/logbook/` """ params, url = self.prepare_get_logbook_entry_params(*args, **kwargs) @@ -206,7 +208,7 @@ def get_rendered_template(self, template: str) -> str: except RequestError as err: msg = ( "Your template is invalid. " - "Try debugging it in the developer tools page of homeassistant." + "Try debugging it in the developer tools page of Home Assistant." ) raise BadTemplateError(msg) from err @@ -276,7 +278,7 @@ def get_entity( # Services and domain methods def get_domains(self) -> dict[str, Domain]: """ - Fetches all :py:class:`Service` 's from the API. + Fetches all service :py:class:`Domain`'s from the API. :code:`GET /api/services` """ data = self._list_request("services") @@ -358,7 +360,7 @@ def set_state( # pylint: disable=duplicate-code ) -> State: """ This method sets the representation of a device within Home Assistant and will not communicate with the actual device. - To communicate with the device, use :py:meth:`Service.trigger` or :py:meth:`Service.async_trigger`. + To communicate with the device, use :py:meth:`Service.trigger`. :code:`POST /api/states/` """ data = self._dict_request( @@ -370,7 +372,7 @@ def set_state( # pylint: disable=duplicate-code def get_states(self) -> tuple[State, ...]: """ - Gets the states of all entities within homeassistant. + Gets the states of all entities within Home Assistant. :code:`GET /api/states` """ data = self._list_request("states") @@ -380,7 +382,7 @@ def get_states(self) -> tuple[State, ...]: # Event methods def get_events(self) -> tuple[Event, ...]: """ - Gets the Events that happen within homeassistant + Gets the Events that happen within Home Assistant. :code:`GET /api/events` """ data = self._list_request("events") @@ -398,7 +400,7 @@ def get_event(self, name: str) -> Event | None: def fire_event(self, event_type: str, **event_data: Any) -> str: """ - Fires a given event_type within homeassistant. Must be an existing event_type. + Fires a given event_type within Home Assistant. `POST /api/events/` """ data = self._dict_request( diff --git a/homeassistant_api/websocket.py b/homeassistant_api/websocket.py index 6a2ad6c7..fdb5ac7e 100644 --- a/homeassistant_api/websocket.py +++ b/homeassistant_api/websocket.py @@ -242,7 +242,7 @@ def get_rendered_template(self, template: str) -> str: def get_config(self) -> dict[str, Any]: """ - Get the Home Assistant configuration. + Returns the configuration of Home Assistant. Sends command :code:`{"type": "get_config", ...}`. """ @@ -250,7 +250,7 @@ def get_config(self) -> dict[str, Any]: def get_states(self) -> tuple[State, ...]: """ - Get a list of states. + Gets the states of all entities within Home Assistant. Sends command :code:`{"type": "get_states", ...}`. """ @@ -267,10 +267,11 @@ def get_state( # pylint: disable=duplicate-code slug: str | None = None, ) -> State: """ - Just calls the :py:meth:`get_states` method and filters the result. + Fetches the state of the entity specified. - Please tell home-assistant/core to add a :code:`{"type": "get_state", ...}` command to the WS API! - There is a lot of disappointment and frustration in the community because this is not available. + Note: The WebSocket API has no single-entity state command, so this fetches all states and filters. + + Sends command :code:`{"type": "get_states", ...}`. """ entity_id = prepare_entity_id( group_id=group_id, @@ -309,10 +310,7 @@ def get_entity( """ Returns an :py:class:`Entity` model for an :code:`entity_id`. - Calls :py:meth:`get_states` under the hood. - - Please tell home-assistant/core to add a :code:`{"type": "get_state", ...}` command to the WS API! - There is a lot of disappointment and frustration in the community because this is not available. + Note: The WebSocket API has no single-entity state command, so this fetches all states and filters. """ if group_id is not None and slug is not None: state = self.get_state(group_id=group_id, slug=slug) @@ -348,9 +346,7 @@ def get_entity_histories( def get_domains(self) -> dict[str, Domain]: """ - Get a list of services that Home Assistant offers (organized into a dictionary of service domains). - - For example, the service :code:`light.turn_on` would be in the domain :code:`light`. + Fetches all service :py:class:`Domain`'s from the API. Sends command :code:`{"type": "get_services", ...}`. """ @@ -365,13 +361,10 @@ def get_domains(self) -> dict[str, Domain]: return {domain.domain_id: domain for domain in domains} def get_domain(self, domain_id: str) -> Domain | None: - """Get a domain. - - Note: This is not a method in the WS API client... yet. - - Please tell home-assistant/core to add a `get_domain` command to the WS API! + """ + Fetches all :py:class:`Service`'s under a particular service :py:class:`Domain`. - For now, just call the :py:meth:`get_domains` method and parsing the result. + Note: The WebSocket API has no single-domain command, so this fetches all domains and filters. """ return self.get_domains().get(domain_id) @@ -724,7 +717,7 @@ def _wait_for_config_entries( def fire_event(self, event_type: str, **event_data: Any) -> Context: """ - Fire an event. + Fires a given event_type within Home Assistant. Sends command :code:`{"type": "fire_event", ...}`. """ From efef0a9ad2d8dc111d8b6f8a38947faedab71047 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Thu, 2 Apr 2026 20:25:41 -0700 Subject: [PATCH 11/34] Fix bugs and issues found during full code review - Fix broken f-string/%-style log format in sync client - Align empty-params guard between sync and async clients - Replace deprecated verify_ssl with ssl param in TCPConnector - Stop prepare_headers from mutating caller's dict; allow header overrides - Use ResponseError instead of mismatched RequestError in WebSocket layer - Fix auth failure path that could raise unhandled ValidationError - Make sync _subscribe_events use recv_result to match async - Make include_id keyword-only in async send() to match sync - Gracefully handle __exit__ when connection is already closed - Clean up _event_responses in finally block during unsubscribe - Suppress auth token from debug logging - Validate History states are non-empty and share same entity_id - Replace asyncio.Task and Container with deserializable types in models - Add model_rebuild for ServiceFieldSelector circular reference - Export all config entry and entity registry models from top-level package - Fix async websocket fixture decorator in conftest - Fix sync test_listen_config_entries to use explicit break like async version - Strengthen test assertions and add cleanup safety in disable/enable tests - Use tmp_path for SQLite cache in async session test --- homeassistant_api/__init__.py | 44 ++++++++++++++++++++++ homeassistant_api/asyncclient.py | 2 +- homeassistant_api/asyncwebsocket.py | 37 +++++++++--------- homeassistant_api/baseclient.py | 8 ++-- homeassistant_api/basewebsocket.py | 8 ++-- homeassistant_api/client.py | 4 +- homeassistant_api/models/config_entries.py | 6 +-- homeassistant_api/models/history.py | 12 +++--- homeassistant_api/websocket.py | 43 ++++++++++----------- tests/conftest.py | 2 +- tests/test_client.py | 6 ++- tests/test_endpoints.py | 28 +++++++------- tests/test_errors.py | 6 ++- tests/test_events.py | 5 ++- 14 files changed, 133 insertions(+), 78 deletions(-) diff --git a/homeassistant_api/__init__.py b/homeassistant_api/__init__.py index d38d6664..caeff0e3 100644 --- a/homeassistant_api/__init__.py +++ b/homeassistant_api/__init__.py @@ -17,18 +17,38 @@ "BaseGroup", "BaseService", "Client", + "ConfigEntry", + "ConfigEntryChange", + "ConfigEntryDisabler", + "ConfigEntryEvent", + "ConfigEntryState", + "ConfigFlowContext", + "ConfigSubEntry", "Context", + "DisableEnableResult", + "DiscoveryKey", "Domain", "Entity", + "EntityCategory", + "EntityDisabledBy", + "EntityHiddenBy", + "EntityRegistryEntry", + "EntityRegistryEntryExtended", + "EntityRegistryUpdateResult", "ErrorResponse", "Event", "EventResponse", + "FlowContext", + "FlowResult", + "FlowResultType", "Group", "History", + "IntegrationTypes", "LogbookEntry", "PingResponse", "ResultResponse", "Service", + "ServiceField", "State", "WebsocketClient", ) @@ -36,18 +56,40 @@ from .asyncclient import AsyncClient from .asyncwebsocket import AsyncWebsocketClient from .client import Client +from .models.config_entries import ConfigEntry +from .models.config_entries import ConfigEntryChange +from .models.config_entries import ConfigEntryDisabler +from .models.config_entries import ConfigEntryEvent +from .models.config_entries import ConfigEntryState +from .models.config_entries import ConfigFlowContext +from .models.config_entries import ConfigSubEntry +from .models.config_entries import DisableEnableResult +from .models.config_entries import DiscoveryKey +from .models.config_entries import FlowContext +from .models.config_entries import FlowResult +from .models.config_entries import FlowResultType +from .models.config_entries import IntegrationTypes from .models.domains import AsyncDomain from .models.domains import AsyncService from .models.domains import BaseDomain from .models.domains import BaseService from .models.domains import Domain from .models.domains import Service +from .models.domains import ServiceField +from .models.domains import ServiceFieldSelector +from .models.domains import ServiceFieldSelectorObjectField from .models.entity import AsyncEntity from .models.entity import AsyncGroup from .models.entity import BaseEntity from .models.entity import BaseGroup from .models.entity import Entity from .models.entity import Group +from .models.entity_registry import EntityCategory +from .models.entity_registry import EntityDisabledBy +from .models.entity_registry import EntityHiddenBy +from .models.entity_registry import EntityRegistryEntry +from .models.entity_registry import EntityRegistryEntryExtended +from .models.entity_registry import EntityRegistryUpdateResult from .models.events import AsyncEvent from .models.events import BaseEvent from .models.events import Event @@ -80,4 +122,6 @@ Group.model_rebuild() History.model_rebuild() Service.model_rebuild() +ServiceFieldSelector.model_rebuild() +ServiceFieldSelectorObjectField.model_rebuild() State.model_rebuild() diff --git a/homeassistant_api/asyncclient.py b/homeassistant_api/asyncclient.py index addd1195..67b5ba85 100644 --- a/homeassistant_api/asyncclient.py +++ b/homeassistant_api/asyncclient.py @@ -63,7 +63,7 @@ def __init__( **kwargs: Any, ) -> None: super().__init__(*args, **kwargs) - connector = TCPConnector(verify_ssl=verify_ssl) + connector = TCPConnector(ssl=verify_ssl) if session is not None: self._session = session elif use_cache: diff --git a/homeassistant_api/asyncwebsocket.py b/homeassistant_api/asyncwebsocket.py index 6ffc66a1..47b734ab 100644 --- a/homeassistant_api/asyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -70,14 +70,14 @@ async def __aexit__( traceback: TracebackType | None, ) -> None: if not self._async_conn: - msg = "Connection is not open!" - raise ReceivingError(msg) + return await self._async_conn.__aexit__(exc_type, exc_value, traceback) self._async_conn = None async def _async_send(self, data: dict[str, Any]) -> None: """Send a message to the websocket server.""" - logger.debug(f"Sending message: {data}") + if data.get("type") != "auth": + logger.debug(f"Sending message: {data}") if self._async_conn is None: msg = "Connection is not open!" raise ReceivingError(msg) @@ -96,7 +96,7 @@ async def _async_recv(self) -> dict[str, Any]: raise TypeError(msg) return r - async def send(self, msg_type: str, include_id: bool = True, **data: Any) -> int: + async def send(self, msg_type: str, *, include_id: bool = True, **data: Any) -> int: """ Send a command message to the websocket server and wait for a "result" response. @@ -202,12 +202,13 @@ async def authentication_phase(self) -> AuthOk: resp = await self._async_recv() try: return AuthOk.model_validate(resp) - except ValidationError as e: - error_resp = AuthInvalid.model_validate(resp) - raise UnauthorizedError(error_resp.message) from e - except Exception as e: - msg = "Unexpected response during authentication" - raise ResponseError(msg, resp["message"]) from e + except ValidationError: + try: + error_resp = AuthInvalid.model_validate(resp) + raise UnauthorizedError(error_resp.message) from None + except ValidationError: + msg = f"Unexpected response during authentication: {resp}" + raise ResponseError(msg) from None async def supported_features_phase(self) -> None: """Get the supported features from the websocket server.""" @@ -556,13 +557,15 @@ async def _async_unsubscribe(self, subcription_id: int) -> None: Sends command :code:`{"type": "unsubscribe_events", ...}`. """ - resp = await self.recv_result( - await self.send("unsubscribe_events", subscription=subcription_id), - ) - if resp.result is not None: - msg = "Expected None result for unsubscribe" - raise ValueError(msg) - self._event_responses.pop(subcription_id) + try: + resp = await self.recv_result( + await self.send("unsubscribe_events", subscription=subcription_id), + ) + if resp.result is not None: + msg = "Expected None result for unsubscribe" + raise ValueError(msg) + finally: + self._event_responses.pop(subcription_id, None) async def get_config_entries(self) -> tuple[ConfigEntry, ...]: """ diff --git a/homeassistant_api/baseclient.py b/homeassistant_api/baseclient.py index 8a7a28f0..5c4d1c61 100644 --- a/homeassistant_api/baseclient.py +++ b/homeassistant_api/baseclient.py @@ -61,13 +61,11 @@ def prepare_headers( ) -> dict[str, str]: """Prepares and verifies dictionary headers.""" if headers is None: - headers = {} - if isinstance(headers, dict): - headers.update(self._headers) - else: + return dict(self._headers) + if not isinstance(headers, dict): msg = f"headers must be dict or dict subclass, not type {type(headers)!r}" raise TypeError(msg) - return headers + return {**self._headers, **headers} @staticmethod def construct_params(params: dict[str, str | None]) -> str: diff --git a/homeassistant_api/basewebsocket.py b/homeassistant_api/basewebsocket.py index 1eea3527..c10c307f 100644 --- a/homeassistant_api/basewebsocket.py +++ b/homeassistant_api/basewebsocket.py @@ -7,7 +7,7 @@ from pydantic import ValidationError from homeassistant_api.errors import ReceivingError -from homeassistant_api.errors import RequestError +from homeassistant_api.errors import ResponseError from homeassistant_api.models.websocket import ErrorResponse from homeassistant_api.models.websocket import EventResponse from homeassistant_api.models.websocket import PingResponse @@ -53,7 +53,8 @@ def check_success(self, data: dict[str, Any]) -> None: """Check if a command message was successful.""" try: error_resp = ErrorResponse.model_validate(data) - raise RequestError(error_resp.error.code, error_resp.error.message) + msg = f"[{error_resp.error.code}] {error_resp.error.message}" + raise ResponseError(msg) except ValidationError: pass @@ -76,7 +77,8 @@ def parse_response(self, data: dict[str, Any]) -> None: self._result_responses[data_id] = ResultResponse.model_validate(data) else: error_resp = ErrorResponse.model_validate(data) - raise RequestError(error_resp.error.code, error_resp.error.message) + msg = f"[{error_resp.error.code}] {error_resp.error.message}" + raise ResponseError(msg) elif data.get("type") == "event": logger.info("Received event message %s", data["event"]) self._event_responses[data_id].append(EventResponse.model_validate(data)) diff --git a/homeassistant_api/client.py b/homeassistant_api/client.py index f1151912..62085701 100644 --- a/homeassistant_api/client.py +++ b/homeassistant_api/client.py @@ -98,12 +98,12 @@ def request( ) -> Any: """Base method for making requests to the api""" path = self.endpoint(path) - if params is not None: + if params: path = f"{path}?{self.construct_params(params)}" if self.global_request_kwargs is not None: kwargs.update(self.global_request_kwargs) try: - logger.debug(f"%s request to {path}") + logger.debug(f"{method} request to {path}") resp = self._session.request( method, path, diff --git a/homeassistant_api/models/config_entries.py b/homeassistant_api/models/config_entries.py index de93a6e6..a133d056 100644 --- a/homeassistant_api/models/config_entries.py +++ b/homeassistant_api/models/config_entries.py @@ -1,7 +1,5 @@ """File for models used in responses from config entries.""" -import asyncio -from collections.abc import Container from enum import Enum from typing import Any @@ -61,10 +59,10 @@ class FlowResult(BaseModel): flow_id: str handler: str last_step: bool | None = None - menu_options: Container[str] | None = None + menu_options: list[str] | None = None preview: str | None = None progress_action: str | None = None - progress_task: asyncio.Task[Any] | None = None + progress_task: str | None = None reason: str | None = None required: bool | None = None result: Any | None = None diff --git a/homeassistant_api/models/history.py b/homeassistant_api/models/history.py index 835d9c2a..b78b9497 100644 --- a/homeassistant_api/models/history.py +++ b/homeassistant_api/models/history.py @@ -18,13 +18,15 @@ class History(BaseModel): def __init__(self, *args: Any, **kwargs: Any) -> None: super().__init__(*args, **kwargs) - if self.entity_id is None: - msg = "History requires states with a non-null entity_id" + if not self.states: + msg = "History requires at least one state" + raise ValueError(msg) + entity_ids = {state.entity_id for state in self.states} + if len(entity_ids) != 1: + msg = f"All states in a History must share the same entity_id, got {entity_ids}" raise ValueError(msg) @property def entity_id(self) -> str: """Returns the shared :code:`entity_id` of states.""" - entity_ids = [state.entity_id for state in self.states] - result, *_ = set(entity_ids) - return result + return self.states[0].entity_id diff --git a/homeassistant_api/websocket.py b/homeassistant_api/websocket.py index fdb5ac7e..f19b0bb8 100644 --- a/homeassistant_api/websocket.py +++ b/homeassistant_api/websocket.py @@ -73,14 +73,14 @@ def __exit__( traceback: TracebackType | None, ) -> None: if not self._conn: - msg = "Connection is not open!" - raise ReceivingError(msg) + return self._conn.__exit__(exc_type, exc_value, traceback) self._conn = None def _send(self, data: dict[str, Any]) -> None: """Send a message to the websocket server.""" - logger.debug(f"Sending message: {data}") + if data.get("type") != "auth": + logger.debug(f"Sending message: {data}") if self._conn is None: msg = "Connection is not open!" raise ReceivingError(msg) @@ -202,12 +202,13 @@ def authentication_phase(self) -> AuthOk: resp = self._recv() try: return AuthOk.model_validate(resp) - except ValidationError as e: - error_resp = AuthInvalid.model_validate(resp) - raise UnauthorizedError(error_resp.message) from e - except Exception as e: - msg = "Unexpected response during authentication" - raise ResponseError(msg, resp["message"]) from e + except ValidationError: + try: + error_resp = AuthInvalid.model_validate(resp) + raise UnauthorizedError(error_resp.message) from None + except ValidationError: + msg = f"Unexpected response during authentication: {resp}" + raise ResponseError(msg) from None def supported_features_phase(self) -> None: """Get the supported features from the websocket server.""" @@ -455,11 +456,9 @@ def _subscribe_events(self, event_type: str | None) -> int: Sends command :code:`{"type": "subscribe_events", ...}`. """ params = {"event_type": event_type} if event_type else {} - r = self.recv(self.send("subscribe_events", include_id=True, **params)) - if r is None: - msg = f"Event {event_type} not subscribed to any events" - raise TypeError(msg) - return r.id + return self.recv_result( + self.send("subscribe_events", include_id=True, **params), + ).id @contextlib.contextmanager def listen_trigger( @@ -536,13 +535,15 @@ def _unsubscribe(self, subscription_id: int) -> None: Sends command :code:`{"type": "unsubscribe_events", ...}`. """ - resp = self.recv_result( - self.send("unsubscribe_events", subscription=subscription_id), - ) - if resp.result is not None: - msg = f"leftover events {resp.result}" - raise TypeError(msg) - self._event_responses.pop(subscription_id) + try: + resp = self.recv_result( + self.send("unsubscribe_events", subscription=subscription_id), + ) + if resp.result is not None: + msg = f"leftover events {resp.result}" + raise TypeError(msg) + finally: + self._event_responses.pop(subscription_id, None) def get_config_entries(self) -> tuple[ConfigEntry, ...]: """ diff --git a/tests/conftest.py b/tests/conftest.py index afb08eac..a80fc1f2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -59,7 +59,7 @@ def setup_websocket_client() -> Generator[WebsocketClient, None, None]: yield client -@pytest.fixture(name="async_websocket_client", scope="session") +@pytest_asyncio.fixture(name="async_websocket_client", scope="session") async def setup_async_websocket_client() -> AsyncGenerator[AsyncWebsocketClient, None]: """Initializes the AsyncWebsocketClient and enters an async WebSocket session.""" async with AsyncWebsocketClient(HA_WS_URL, HA_TOKEN) as client: diff --git a/tests/test_client.py b/tests/test_client.py index 3d2ddd83..b37b6633 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -1,5 +1,6 @@ import os from datetime import datetime +from pathlib import Path import aiohttp_client_cache.session import requests_cache @@ -28,13 +29,14 @@ def test_default_session() -> None: pass -async def test_custom_async_cached_session() -> None: +async def test_custom_async_cached_session(tmp_path: Path) -> None: + cache_path = tmp_path / "test_custom_async_cached_session.sqlite" async with AsyncClient( os.environ["HOMEASSISTANTAPI_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], session=aiohttp_client_cache.session.CachedSession( cache=aiohttp_client_cache.SQLiteBackend( - cache_name="test_custom_async_cached_session.sqlite", + cache_name=str(cache_path), expire_after=10, ), ), diff --git a/tests/test_endpoints.py b/tests/test_endpoints.py index 56ed0053..074a56d4 100644 --- a/tests/test_endpoints.py +++ b/tests/test_endpoints.py @@ -360,15 +360,16 @@ def test_disable_enable_config_entry(websocket_client: WebsocketClient) -> None: entry = websocket_client.get_config_entries()[0] assert entry.disabled_by is None - # Disable entry - websocket_client.disable_config_entry(entry.entry_id) + try: + # Disable entry + websocket_client.disable_config_entry(entry.entry_id) - # Check that it was disabled - disabled_entry = websocket_client.get_config_entries()[0] - assert disabled_entry.disabled_by is ConfigEntryDisabler.USER - - # Re-enable - websocket_client.enable_config_entry(entry.entry_id) + # Check that it was disabled + disabled_entry = websocket_client.get_config_entries()[0] + assert disabled_entry.disabled_by is ConfigEntryDisabler.USER + finally: + # Always re-enable to avoid breaking other tests + websocket_client.enable_config_entry(entry.entry_id) # Check that it was enabled enabled_entry = websocket_client.get_config_entries()[0] @@ -382,12 +383,13 @@ async def test_async_disable_enable_config_entry( entry = (await async_websocket_client.get_config_entries())[0] assert entry.disabled_by is None - await async_websocket_client.disable_config_entry(entry.entry_id) - - disabled_entry = (await async_websocket_client.get_config_entries())[0] - assert disabled_entry.disabled_by is ConfigEntryDisabler.USER + try: + await async_websocket_client.disable_config_entry(entry.entry_id) - await async_websocket_client.enable_config_entry(entry.entry_id) + disabled_entry = (await async_websocket_client.get_config_entries())[0] + assert disabled_entry.disabled_by is ConfigEntryDisabler.USER + finally: + await async_websocket_client.enable_config_entry(entry.entry_id) enabled_entry = (await async_websocket_client.get_config_entries())[0] assert enabled_entry.disabled_by is None diff --git a/tests/test_errors.py b/tests/test_errors.py index 6922ee62..7ac50f53 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -265,8 +265,10 @@ def test_request_error_with_message_and_data() -> None: def test_request_error_no_data() -> None: """Tests RequestError when data is None and no message.""" err = RequestError(None, url="http://localhost/api") - assert "'http://localhost/api'" in str(err) - assert "data" not in str(err) + assert ( + str(err) + == "An error occurred while making the request to 'http://localhost/api'" + ) def test_request_timeout_error() -> None: diff --git a/tests/test_events.py b/tests/test_events.py index 4778f468..b7fbf231 100644 --- a/tests/test_events.py +++ b/tests/test_events.py @@ -59,9 +59,9 @@ def test_listen_trigger(websocket_client: WebsocketClient) -> None: def test_listen_config_entries(websocket_client: WebsocketClient) -> None: with websocket_client.listen_config_entries() as flows: - for i, flow in zip(range(5), flows, strict=False): - # The first "events" are currently available entries + for i, flow in enumerate(flows): if i == 0: + # The first "events" are currently available entries # Assumes that the first entry (sun.sun?) is enabled assert flow[0].type is None assert flow[0].entry.disabled_by is None @@ -92,6 +92,7 @@ def test_listen_config_entries(websocket_client: WebsocketClient) -> None: assert flow[0].type == ConfigEntryChange.UPDATED assert flow[0].entry.disabled_by is None assert flow[0].entry.state == ConfigEntryState.LOADED + break async def test_async_listen_config_entries( From f30fa1159e362822fb2b04a912f6cf14859e7813 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Thu, 2 Apr 2026 20:49:31 -0700 Subject: [PATCH 12/34] Fix websocket error handling and test failures - Raise ReceivingError in __exit__/__aexit__ when connection is not open - Remove duplicate check_success from handle_recv (parse_response already handles errors) - Catch non-ValidationError exceptions in authentication_phase - Add ResponseError to Service.trigger() fallback so it works for websocket clients - Fix tests to expect ResponseError for websocket error responses --- homeassistant_api/asyncwebsocket.py | 6 +++++- homeassistant_api/basewebsocket.py | 12 ------------ homeassistant_api/models/domains.py | 5 +++-- homeassistant_api/websocket.py | 6 +++++- tests/test_endpoints.py | 10 +++++----- tests/test_websocket.py | 5 ++--- 6 files changed, 20 insertions(+), 24 deletions(-) diff --git a/homeassistant_api/asyncwebsocket.py b/homeassistant_api/asyncwebsocket.py index 47b734ab..3e5fbcc2 100644 --- a/homeassistant_api/asyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -70,7 +70,8 @@ async def __aexit__( traceback: TracebackType | None, ) -> None: if not self._async_conn: - return + msg = "Connection is not open!" + raise ReceivingError(msg) await self._async_conn.__aexit__(exc_type, exc_value, traceback) self._async_conn = None @@ -209,6 +210,9 @@ async def authentication_phase(self) -> AuthOk: except ValidationError: msg = f"Unexpected response during authentication: {resp}" raise ResponseError(msg) from None + except Exception as e: + msg = f"Unexpected response during authentication: {resp}" + raise ResponseError(msg) from e async def supported_features_phase(self) -> None: """Get the supported features from the websocket server.""" diff --git a/homeassistant_api/basewebsocket.py b/homeassistant_api/basewebsocket.py index c10c307f..ffaee4a1 100644 --- a/homeassistant_api/basewebsocket.py +++ b/homeassistant_api/basewebsocket.py @@ -4,8 +4,6 @@ from typing import Any from typing import cast -from pydantic import ValidationError - from homeassistant_api.errors import ReceivingError from homeassistant_api.errors import ResponseError from homeassistant_api.models.websocket import ErrorResponse @@ -49,21 +47,11 @@ def _request_id(self) -> int: self._id_counter += 1 return self._id_counter - def check_success(self, data: dict[str, Any]) -> None: - """Check if a command message was successful.""" - try: - error_resp = ErrorResponse.model_validate(data) - msg = f"[{error_resp.error.code}] {error_resp.error.message}" - raise ResponseError(msg) - except ValidationError: - pass - def handle_recv(self, data: dict[str, Any]) -> None: """Handle a received message.""" if "id" not in data: msg = "Received a message without an id outside the auth phase." raise ReceivingError(msg) - self.check_success(data) self.parse_response(data) def parse_response(self, data: dict[str, Any]) -> None: diff --git a/homeassistant_api/models/domains.py b/homeassistant_api/models/domains.py index 602c9a11..baf3c3cc 100644 --- a/homeassistant_api/models/domains.py +++ b/homeassistant_api/models/domains.py @@ -12,6 +12,7 @@ from typing_extensions import override from homeassistant_api.errors import RequestError +from homeassistant_api.errors import ResponseError from .base import BaseModel @@ -622,7 +623,7 @@ def trigger( self.service_id, **service_data, ) - except RequestError: + except (RequestError, ResponseError): return self.domain.client.trigger_service( self.domain.domain_id, self.service_id, @@ -651,7 +652,7 @@ async def trigger( self.service_id, **service_data, ) - except RequestError: + except (RequestError, ResponseError): return await self.domain.client.trigger_service( self.domain.domain_id, self.service_id, diff --git a/homeassistant_api/websocket.py b/homeassistant_api/websocket.py index f19b0bb8..9ed05ea1 100644 --- a/homeassistant_api/websocket.py +++ b/homeassistant_api/websocket.py @@ -73,7 +73,8 @@ def __exit__( traceback: TracebackType | None, ) -> None: if not self._conn: - return + msg = "Connection is not open!" + raise ReceivingError(msg) self._conn.__exit__(exc_type, exc_value, traceback) self._conn = None @@ -209,6 +210,9 @@ def authentication_phase(self) -> AuthOk: except ValidationError: msg = f"Unexpected response during authentication: {resp}" raise ResponseError(msg) from None + except Exception as e: + msg = f"Unexpected response during authentication: {resp}" + raise ResponseError(msg) from e def supported_features_phase(self) -> None: """Get the supported features from the websocket server.""" diff --git a/tests/test_endpoints.py b/tests/test_endpoints.py index 074a56d4..98ad65cb 100644 --- a/tests/test_endpoints.py +++ b/tests/test_endpoints.py @@ -10,7 +10,7 @@ from homeassistant_api import AsyncWebsocketClient from homeassistant_api import Client from homeassistant_api import WebsocketClient -from homeassistant_api.errors import RequestError +from homeassistant_api.errors import ResponseError from homeassistant_api.models import ConfigEntryDisabler from homeassistant_api.models.events import AsyncEvent from homeassistant_api.models.events import Event @@ -398,7 +398,7 @@ async def test_async_disable_enable_config_entry( def test_ignore_config_flow(websocket_client: WebsocketClient) -> None: """Tests the `"type": "config_entries/ignore_flow"` websocket command.""" # Currently not able to test as no flows are in progress. Send invalid parameters and handle that error - with pytest.raises(RequestError, match="Config entry not found"): + with pytest.raises(ResponseError, match="Config entry not found"): websocket_client.ignore_config_flow("", "") @@ -406,7 +406,7 @@ async def test_async_ignore_config_flow( async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "config_entries/ignore_flow"` websocket command.""" - with pytest.raises(RequestError, match="Config entry not found"): + with pytest.raises(ResponseError, match="Config entry not found"): await async_websocket_client.ignore_config_flow("", "") @@ -476,7 +476,7 @@ async def test_async_get_entry_subentries( def test_delete_entry_subentry(websocket_client: WebsocketClient) -> None: """Tests the `"type": "config_entries/subentries/delete"` websocket command.""" # Currently not able to test as no entries with subentries available. Send invalid parameters and handle that error - with pytest.raises(RequestError, match="Config entry not found"): + with pytest.raises(ResponseError, match="Config entry not found"): websocket_client.delete_entry_subentry("", "") @@ -484,7 +484,7 @@ async def test_async_delete_entry_subentry( async_websocket_client: AsyncWebsocketClient, ) -> None: """Tests the `"type": "config_entries/subentries/delete"` websocket command.""" - with pytest.raises(RequestError, match="Config entry not found"): + with pytest.raises(ResponseError, match="Config entry not found"): await async_websocket_client.delete_entry_subentry("", "") diff --git a/tests/test_websocket.py b/tests/test_websocket.py index de6c566b..a28ff7fc 100644 --- a/tests/test_websocket.py +++ b/tests/test_websocket.py @@ -7,7 +7,6 @@ from homeassistant_api.asyncwebsocket import AsyncWebsocketClient from homeassistant_api.errors import ReceivingError -from homeassistant_api.errors import RequestError from homeassistant_api.errors import ResponseError from homeassistant_api.models import websocket as ws_models from homeassistant_api.websocket import WebsocketClient @@ -52,10 +51,10 @@ def test_handle_recv_message_without_id() -> None: def test_parse_response_error_result() -> None: - """Tests parse_response raises RequestError for failed result messages.""" + """Tests parse_response raises ResponseError for failed result messages.""" client = make_sync_client() client._result_responses[1] = None - with pytest.raises(RequestError): + with pytest.raises(ResponseError): client.parse_response( { "id": 1, From f24678adea0ae3ecf96b6ea72a4169b99a3fa05a Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Thu, 2 Apr 2026 20:59:09 -0700 Subject: [PATCH 13/34] Add v2.0 changelog --- CHANGELOG.md | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..addc47e2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,57 @@ +# HomeAssistant-API v2.0 Changelog + +## Breaking Changes +A lot has changed in this version. A lot went into modernising and standardizing the interfaces of the clients. +As such, many of the previous paradigms have changed. If you run into any bugs or issues, please let us know. +### Minimum Python version raised to 3.11 +Python 3.9 and 3.10 are no longer supported. + +### Client classes restructured +The old `Client` class (which combined sync and async via a `use_async` flag) has been removed. There are now four distinct client classes: + +| Old | New | +|---|---| +| `Client(use_async=False)` | `Client` | +| `Client(use_async=True)` | `AsyncClient` | +| `WebsocketClient` (sync) | `WebsocketClient` | +| — | `AsyncWebsocketClient` (new) | + +Async client methods no longer have the `async_` prefix — e.g. `async_get_states()` is now just `get_states()` on `AsyncClient`. + +### Models split into Base/Sync/Async variants +`Domain`, `Entity`, `Group`, `Service`, and `Event` now have three variants each: +- **`Base*`** — plain data, no client reference +- **`*`** (e.g. `Domain`) — sync, bound to `Client` +- **`Async*`** (e.g. `AsyncDomain`) — async, bound to `AsyncClient` + +### Processing module rewritten +The decorator-based `@Processing.processor(mimetype)` registry has been replaced with simple dict-based MIME dispatch and separate `sync`/`async` entry points. Custom processor registration and the `decode_bytes` parameter have been removed. + +### Build system moved from Poetry to uv + hatchling +`poetry.lock` is removed. The project now uses `uv` for dependency management and `hatchling` as the build backend. + +### Type checker changed from mypy to zuban + +## New Features + +### WebSocket API support (sync & async) +Full WebSocket client implementation for both sync (`WebsocketClient`) and async (`AsyncWebsocketClient`) with support for: +- **Config entries** — get, disable, enable, ignore flow, subentries, subscribe +- **Entity registry** — list, get, update, remove entries +- **Events** — subscribe, fire, and listen +- **Services** — trigger with full domain/service routing +- **Templates** — render and subscribe to template updates + +### Entity registry models +New models: `EntityRegistryEntry`, `EntityRegistryEntryExtended`, `EntityRegistryUpdateResult`. + +### Configurable WebSocket max message size +WS clients accept a `max_size` parameter (default 16 MB) to handle large responses like full entity registry lists. + +## Improvements + +- Unified method signatures across all four client classes for consistency +- Expanded ruff lint rules to `ALL` (from just E, F, W) +- Test coverage improved to ~99% +- Modernized type annotations throughout +- Response content is now read lazily, eliminating internal `_buffer` access hacks \ No newline at end of file From 3517ad6b54890232bb639f789a8cbcba6ab41d72 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Thu, 2 Apr 2026 21:00:24 -0700 Subject: [PATCH 14/34] Bump version to v6.0.0 --- CHANGELOG.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index addc47e2..5e49284e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# HomeAssistant-API v2.0 Changelog +# HomeAssistant-API v6.0 Changelog ## Breaking Changes A lot has changed in this version. A lot went into modernising and standardizing the interfaces of the clients. diff --git a/pyproject.toml b/pyproject.toml index acbc3577..5739bb45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["hatchling"] [project] name = "HomeAssistant-API" -version = "5.0.3" +version = "6.0.0" description = "Python Wrapper for Homeassistant's REST API" readme = "README.md" license = "GPL-3.0-or-later" From c8187ce1b3d1f204423700f64d9c2ba1a22099cf Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Sat, 4 Apr 2026 20:55:35 -0700 Subject: [PATCH 15/34] Migrate from requests/aiohttp/websockets to niquests Replace all HTTP and WebSocket dependencies with niquests: - requests + requests-cache -> niquests (sync REST client) - aiohttp + aiohttp-client-cache -> niquests AsyncSession (async REST client) - websockets -> niquests[ws] WebSocket extension (sync + async WS clients) Drop built-in request caching support (requests-cache, aiohttp-client-cache). Users can configure caching on their own session instances if needed. WebSocket clients now use niquests' response extension API (Session.get(ws://) -> response.extension.send_payload/next_payload). Add fragment buffering in _recv to work around upstream urllib3-future bug where next_payload() returns incomplete messages for large payloads. Accept optional session parameter in WebSocket client constructors for consistency with REST clients. Use non-nullable session types with del for _ws in __exit__/__aexit__. --- homeassistant_api/asyncclient.py | 28 +++------ homeassistant_api/asyncwebsocket.py | 68 ++++++++++++-------- homeassistant_api/client.py | 21 ++----- homeassistant_api/processing.py | 73 +++------------------ homeassistant_api/websocket.py | 98 +++++++++++++++++------------ pyproject.toml | 7 +-- tests/conftest.py | 2 +- tests/test_client.py | 18 ++---- tests/test_errors.py | 59 ++++++----------- tests/test_websocket.py | 24 +++---- 10 files changed, 162 insertions(+), 236 deletions(-) diff --git a/homeassistant_api/asyncclient.py b/homeassistant_api/asyncclient.py index 67b5ba85..11ef0f59 100644 --- a/homeassistant_api/asyncclient.py +++ b/homeassistant_api/asyncclient.py @@ -10,10 +10,7 @@ from typing import TYPE_CHECKING from typing import Any -from aiohttp import ClientSession -from aiohttp import TCPConnector -from aiohttp_client_cache import CacheBackend -from aiohttp_client_cache.session import CachedSession +from niquests import AsyncSession from .baseclient import BaseClient from .errors import BadTemplateError @@ -26,7 +23,7 @@ from .models import History from .models import LogbookEntry from .models import State -from .processing import AsyncResponseType +from .processing import ResponseType from .processing import async_process_response from .utils import prepare_entity_id @@ -46,33 +43,26 @@ class AsyncClient(BaseClient): :param api_url: The location of the api endpoint. e.g. :code:`http://localhost:8123/api` Required. :param token: The refresh or long lived access token to authenticate your requests. Required. - :param session: A custom :py:class:`aiohttp_client_cache.session.CachedSession` or :py:class:`aiohttp.ClientSession` instance. Optional. - :param use_cache: Enable the default in-memory request cache (300s expiry). Ignored if :code:`session` is provided. Default :code:`False`. + :param session: A custom :py:class:`niquests.AsyncSession` instance. Optional. :param verify_ssl: Whether to verify SSL certificates. Default :code:`True`. - :param global_request_kwargs: Kwargs to pass to :meth:`aiohttp.ClientSession.request`. Optional. + :param global_request_kwargs: Kwargs to pass to :meth:`niquests.AsyncSession.request`. Optional. """ # pylint: disable=line-too-long - _session: CachedSession | ClientSession + _session: AsyncSession def __init__( self, *args: Any, - session: CachedSession | None = None, - use_cache: bool = False, + session: AsyncSession | None = None, verify_ssl: bool = True, **kwargs: Any, ) -> None: super().__init__(*args, **kwargs) - connector = TCPConnector(ssl=verify_ssl) + self.global_request_kwargs["verify"] = verify_ssl if session is not None: self._session = session - elif use_cache: - self._session = CachedSession( - cache=CacheBackend(cache_name="default_async_cache", expire_after=300), - connector=connector, - ) else: - self._session = ClientSession(connector=connector) + self._session = AsyncSession() async def __aenter__(self) -> Self: logger.debug("Entering cached async requests session %r", self._session) @@ -139,7 +129,7 @@ async def _str_request(self, *args: Any, **kwargs: Any) -> str: return data @staticmethod - async def response_logic(response: AsyncResponseType) -> Any: + async def response_logic(response: ResponseType) -> Any: """Processes custom mimetype content asynchronously.""" return await async_process_response(response) diff --git a/homeassistant_api/asyncwebsocket.py b/homeassistant_api/asyncwebsocket.py index 3e5fbcc2..0794663a 100644 --- a/homeassistant_api/asyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -7,7 +7,7 @@ from typing import TYPE_CHECKING from typing import Any -import websockets.asyncio.client as ws +from niquests import AsyncSession from pydantic import ValidationError from typing_extensions import Self @@ -45,19 +45,34 @@ from datetime import datetime from types import TracebackType + from urllib3.contrib.webextensions._async.protocol import AsyncExtensionFromHTTP + logger = logging.getLogger(__name__) class AsyncWebsocketClient(BaseWebsocketClient): - _async_conn: ws.ClientConnection | None + _session: AsyncSession + _ws: AsyncExtensionFromHTTP - def __init__(self, api_url: str, token: str, *, max_size: int = 2**24) -> None: + def __init__( + self, + api_url: str, + token: str, + *, + max_size: int = 2**24, + session: AsyncSession | None = None, + ) -> None: super().__init__(api_url, token, max_size=max_size) - self._async_conn = None + self._session = session if session is not None else AsyncSession() async def __aenter__(self) -> Self: - self._async_conn = await ws.connect(self.api_url, max_size=self.max_size) - await self._async_conn.__aenter__() + await self._session.__aenter__() + resp = await self._session.get(self.api_url) + resp.raise_for_status() + if resp.extension is None: + msg = "Server did not upgrade to WebSocket" + raise ReceivingError(msg) + self._ws = resp.extension okay = await self.authentication_phase() logger.info("Authenticated with Home Assistant (%s)", okay.ha_version) await self.supported_features_phase() @@ -69,33 +84,34 @@ async def __aexit__( exc_value: BaseException | None, traceback: TracebackType | None, ) -> None: - if not self._async_conn: - msg = "Connection is not open!" - raise ReceivingError(msg) - await self._async_conn.__aexit__(exc_type, exc_value, traceback) - self._async_conn = None + await self._ws.close() + del self._ws + await self._session.__aexit__(exc_type, exc_value, traceback) async def _async_send(self, data: dict[str, Any]) -> None: """Send a message to the websocket server.""" if data.get("type") != "auth": logger.debug(f"Sending message: {data}") - if self._async_conn is None: - msg = "Connection is not open!" - raise ReceivingError(msg) - await self._async_conn.send(json.dumps(data)) + await self._ws.send_payload(json.dumps(data)) async def _async_recv(self) -> dict[str, Any]: - """Receive a message from the websocket server.""" - if self._async_conn is None: - msg = "Connection is not open!" - raise ReceivingError(msg) - _bytes = await self._async_conn.recv() - logger.debug("Received message: %s", _bytes) - r = json.loads(_bytes) - if not isinstance(r, dict): - msg = f"Expected dict, got {type(r).__name__}" - raise TypeError(msg) - return r + """Receive a complete JSON message from the websocket server, buffering fragments.""" + buf = "" + while True: + chunk = await self._ws.next_payload() + if chunk is None: + msg = "WebSocket connection closed" + raise ReceivingError(msg) + buf += chunk if isinstance(chunk, str) else chunk.decode() + try: + r = json.loads(buf) + except json.JSONDecodeError: + continue + logger.debug("Received message: %s", buf) + if not isinstance(r, dict): + msg = f"Expected dict, got {type(r).__name__}" + raise TypeError(msg) + return r async def send(self, msg_type: str, *, include_id: bool = True, **data: Any) -> int: """ diff --git a/homeassistant_api/client.py b/homeassistant_api/client.py index 62085701..657a9e40 100644 --- a/homeassistant_api/client.py +++ b/homeassistant_api/client.py @@ -9,9 +9,8 @@ from typing import TYPE_CHECKING from typing import Any -from requests import Session -from requests import Timeout -from requests_cache import CachedSession +from niquests import Session +from niquests import Timeout from typing_extensions import Self from homeassistant_api.baseclient import BaseClient @@ -43,32 +42,24 @@ class Client(BaseClient): :param api_url: The location of the api endpoint. e.g. :code:`http://localhost:8123/api` Required. :param token: The refresh or long lived access token to authenticate your requests. Required. - :param session: A custom :py:class:`requests_cache.CachedSession` or :py:class:`requests.Session` instance. Optional. - :param use_cache: Enable the default in-memory request cache (300s expiry). Ignored if :code:`session` is provided. Default :code:`False`. + :param session: A custom :py:class:`niquests.Session` instance. Optional. :param verify_ssl: Whether to verify SSL certificates. Default :code:`True`. :param global_request_kwargs: Kwargs to pass to :func:`requests.request`. Optional. """ # pylint: disable=line-too-long - _session: CachedSession | Session + _session: Session | None def __init__( self, *args: Any, - session: CachedSession | None = None, - use_cache: bool = False, + session: Session | None = None, verify_ssl: bool = True, **kwargs: Any, ) -> None: BaseClient.__init__(self, *args, **kwargs) self.global_request_kwargs["verify"] = verify_ssl - if session: + if session is not None: self._session = session - elif use_cache: - self._session = CachedSession( - cache_name="default_cache", - backend="memory", - expire_after=300, - ) else: self._session = Session() diff --git a/homeassistant_api/processing.py b/homeassistant_api/processing.py index 5a674343..5533fce5 100644 --- a/homeassistant_api/processing.py +++ b/homeassistant_api/processing.py @@ -2,17 +2,13 @@ import json import logging -from collections.abc import Awaitable from collections.abc import Callable from dataclasses import dataclass from http import HTTPStatus from typing import Any import simplejson -from aiohttp import ClientResponse -from aiohttp_client_cache.response import CachedResponse as AsyncCachedResponse -from requests import Response -from requests_cache.models.response import CachedResponse +from niquests import Response from homeassistant_api.errors import EndpointNotFoundError from homeassistant_api.errors import InternalServerError @@ -25,8 +21,7 @@ logger = logging.getLogger(__name__) -AsyncResponseType = AsyncCachedResponse | ClientResponse -ResponseType = Response | CachedResponse +ResponseType = Response @dataclass(frozen=True) @@ -61,8 +56,8 @@ def _check_status(info: ResponseInfo, content: str) -> None: raise UnexpectedStatusCodeError(info.status_code) -def _extract_sync_info(response: ResponseType) -> ResponseInfo: - """Extract status code, URL, and method from a sync response.""" +def _extract_info(response: ResponseType) -> ResponseInfo: + """Extract status code, URL, and method from a response.""" return ResponseInfo( status_code=response.status_code, url=str(response.url), @@ -71,30 +66,13 @@ def _extract_sync_info(response: ResponseType) -> ResponseInfo: def _check_sync_status(response: ResponseType) -> None: - """Validate a sync response status code, lazily reading content only on error.""" - info = _extract_sync_info(response) + """Validate a response status code, lazily reading content only on error.""" + info = _extract_info(response) if info.status_code in (HTTPStatus.OK, HTTPStatus.CREATED): return _check_status(info, content=response.text) -def _extract_async_info(response: AsyncResponseType) -> ResponseInfo: - """Extract status code, URL, and method from an async response.""" - return ResponseInfo( - status_code=response.status, - url=str(response.url), - method=response.method, - ) - - -async def _check_async_status(response: AsyncResponseType) -> None: - """Validate an async response status code, lazily reading content only on error.""" - info = _extract_async_info(response) - if info.status_code in (HTTPStatus.OK, HTTPStatus.CREATED): - return - _check_status(info, content=await response.text()) - - # --- Individual parse functions --- @@ -112,21 +90,7 @@ def _parse_text(response: ResponseType) -> str: return response.text -async def _async_parse_json(response: AsyncResponseType) -> Any: - """Parse an async response as JSON.""" - try: - return await response.json() - except (json.JSONDecodeError, simplejson.JSONDecodeError) as err: - msg = f"Home Assistant responded with non-json response: {await response.text()!r}" - raise MalformedDataError(msg) from err - - -async def _async_parse_text(response: AsyncResponseType) -> str: - """Return the plaintext content of an async response.""" - return await response.text() - - -# --- MIME dispatch tables --- +# --- MIME dispatch table --- _PARSERS: dict[str, Callable[[ResponseType], Any]] = { "application/json": _parse_json, @@ -134,18 +98,12 @@ async def _async_parse_text(response: AsyncResponseType) -> str: "application/octet-stream": _parse_text, } -_ASYNC_PARSERS: dict[str, Callable[[AsyncResponseType], Awaitable[Any]]] = { - "application/json": _async_parse_json, - "text/plain": _async_parse_text, - "application/octet-stream": _async_parse_text, -} - # --- Content dispatch --- def _parse_content(response: ResponseType) -> Any: - """Look up and call the appropriate sync parser by content-type.""" + """Look up and call the appropriate parser by content-type.""" mimetype = response.headers.get("content-type", "text/plain").split(";")[0] parser = _PARSERS.get(mimetype) if parser is None: @@ -154,16 +112,6 @@ def _parse_content(response: ResponseType) -> Any: return parser(response) -async def _async_parse_content(response: AsyncResponseType) -> Any: - """Look up and call the appropriate async parser by content-type.""" - mimetype = response.headers.get("content-type", "text/plain").split(";")[0] - parser = _ASYNC_PARSERS.get(mimetype) - if parser is None: - msg = f"No response processor found for mimetype {mimetype!r}." - raise ProcessorNotFoundError(msg) - return await parser(response) - - # --- Top-level entry points --- @@ -173,7 +121,6 @@ def process_response(response: ResponseType) -> Any: return _parse_content(response) -async def async_process_response(response: AsyncResponseType) -> Any: +async def async_process_response(response: ResponseType) -> Any: """Process an async HTTP response: validate status, then parse content.""" - await _check_async_status(response) - return await _async_parse_content(response) + return process_response(response) diff --git a/homeassistant_api/websocket.py b/homeassistant_api/websocket.py index 9ed05ea1..0f8a2554 100644 --- a/homeassistant_api/websocket.py +++ b/homeassistant_api/websocket.py @@ -7,7 +7,7 @@ from typing import TYPE_CHECKING from typing import Any -import websockets.sync.client as ws +from niquests import Session from pydantic import ValidationError from typing_extensions import Self @@ -45,22 +45,37 @@ from datetime import datetime from types import TracebackType + from urllib3.contrib.webextensions.protocol import ExtensionFromHTTP + logger = logging.getLogger(__name__) class WebsocketClient(BaseWebsocketClient): - _conn: ws.ClientConnection | None + _session: Session + _ws: ExtensionFromHTTP - def __init__(self, api_url: str, token: str, *, max_size: int = 2**24) -> None: + def __init__( + self, + api_url: str, + token: str, + *, + max_size: int = 2**24, + session: Session | None = None, + ) -> None: super().__init__(api_url, token, max_size=max_size) - self._conn = None + self._session = session if session is not None else Session() def __repr__(self) -> str: return f"{self.__class__.__name__}({self.api_url!r})" def __enter__(self) -> Self: - self._conn = ws.connect(self.api_url, max_size=self.max_size) - self._conn.__enter__() + self._session.__enter__() + resp = self._session.get(self.api_url) + resp.raise_for_status() + if resp.extension is None: + msg = "Server did not upgrade to WebSocket" + raise ReceivingError(msg) + self._ws = resp.extension okay = self.authentication_phase() logger.info("Authenticated with Home Assistant (%s)", okay.ha_version) self.supported_features_phase() @@ -72,33 +87,34 @@ def __exit__( exc_value: BaseException | None, traceback: TracebackType | None, ) -> None: - if not self._conn: - msg = "Connection is not open!" - raise ReceivingError(msg) - self._conn.__exit__(exc_type, exc_value, traceback) - self._conn = None + self._ws.close() + del self._ws + self._session.__exit__(exc_type, exc_value, traceback) def _send(self, data: dict[str, Any]) -> None: """Send a message to the websocket server.""" if data.get("type") != "auth": logger.debug(f"Sending message: {data}") - if self._conn is None: - msg = "Connection is not open!" - raise ReceivingError(msg) - self._conn.send(json.dumps(data)) + self._ws.send_payload(json.dumps(data)) def _recv(self) -> dict[str, Any]: - """Receive a message from the websocket server.""" - if self._conn is None: - msg = "Connection is not open!" - raise ReceivingError(msg) - _bytes = self._conn.recv() - logger.debug("Received message: %s", _bytes) - r = json.loads(_bytes) - if not isinstance(r, dict): - msg = f"Expected dict, got {type(r).__name__}" - raise TypeError(msg) - return r + """Receive a complete JSON message from the websocket server, buffering fragments.""" + buf = "" + while True: + chunk = self._ws.next_payload() + if chunk is None: + msg = "WebSocket connection closed" + raise ReceivingError(msg) + buf += chunk if isinstance(chunk, str) else chunk.decode() + try: + r = json.loads(buf) + except json.JSONDecodeError: + continue + logger.debug("Received message: %s", buf) + if not isinstance(r, dict): + msg = f"Expected dict, got {type(r).__name__}" + raise TypeError(msg) + return r def send(self, msg_type: str, *, include_id: bool = True, **data: Any) -> int: """ @@ -112,21 +128,21 @@ def send(self, msg_type: str, *, include_id: bool = True, **data: Any) -> int: data["type"] = msg_type self._send(data) - if "id" in data: - if not isinstance(data["id"], int): - msg = f"Expected int for message id, got {type(data['id'])}" - raise TypeError(msg) - if data["type"] == "ping": - self._ping_responses[data["id"]] = PingResponse( - start=time.perf_counter_ns(), - id=data["id"], - type="pong", - ) - else: - self._event_responses[data["id"]] = [] - self._result_responses[data["id"]] = None - return data["id"] - return -1 # non-command messages don't have an id + if "id" not in data: + return -1 # non-command messages don't have an id + if not isinstance(data["id"], int): + msg = f"Expected int for message id, got {type(data['id'])}" + raise TypeError(msg) + if data["type"] == "ping": + self._ping_responses[data["id"]] = PingResponse( + start=time.perf_counter_ns(), + id=data["id"], + type="pong", + ) + else: + self._event_responses[data["id"]] = [] + self._result_responses[data["id"]] = None + return data["id"] def recv(self, msg_id: int) -> EventResponse | ResultResponse | PingResponse | None: """Receive a response to a message from the websocket server.""" diff --git a/pyproject.toml b/pyproject.toml index 5739bb45..df64b7d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,13 +13,9 @@ authors = [ { name = "GrandMoff100", email = "minecraftcrusher100@gmail.com" }, ] dependencies = [ - "aiohttp>=3,<4", - "aiohttp-client-cache>=0,<1", + "niquests[ws]>=3", "pydantic>=2,<3", - "requests>=2,<3", - "requests-cache>=1,<2", "simplejson>=3,<4", - "websockets>=16,<17", ] [project.urls] @@ -36,7 +32,6 @@ docs = [ dev = [ "pre-commit>=4,<5", "types-docutils>=0.22", - "types-requests>=2,<3", "types-simplejson>=3.20", "types-toml>=0.10", "zuban>=0.6", diff --git a/tests/conftest.py b/tests/conftest.py index a80fc1f2..85a6439a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -7,7 +7,7 @@ import pytest import pytest_asyncio -from requests.exceptions import ConnectionError as RequestsConnectionError +from niquests.exceptions import ConnectionError as RequestsConnectionError from homeassistant_api import AsyncClient from homeassistant_api import AsyncWebsocketClient diff --git a/tests/test_client.py b/tests/test_client.py index b37b6633..df2c4a62 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -1,9 +1,7 @@ import os from datetime import datetime -from pathlib import Path -import aiohttp_client_cache.session -import requests_cache +import niquests from homeassistant_api import AsyncClient from homeassistant_api import AsyncWebsocketClient @@ -12,11 +10,11 @@ from homeassistant_api.baseclient import BaseClient -def test_custom_cached_session() -> None: +def test_custom_session() -> None: with Client( os.environ["HOMEASSISTANTAPI_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], - session=requests_cache.CachedSession(), + session=niquests.Session(), ): pass @@ -29,17 +27,11 @@ def test_default_session() -> None: pass -async def test_custom_async_cached_session(tmp_path: Path) -> None: - cache_path = tmp_path / "test_custom_async_cached_session.sqlite" +async def test_custom_async_session() -> None: async with AsyncClient( os.environ["HOMEASSISTANTAPI_URL"], os.environ["HOMEASSISTANTAPI_TOKEN"], - session=aiohttp_client_cache.session.CachedSession( - cache=aiohttp_client_cache.SQLiteBackend( - cache_name=str(cache_path), - expire_after=10, - ), - ), + session=niquests.AsyncSession(), ): pass diff --git a/tests/test_errors.py b/tests/test_errors.py index 7ac50f53..0f6f58df 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -5,13 +5,10 @@ import unittest.mock from http import HTTPMethod -import aiohttp -import aiohttp_client_cache.session +import niquests import pytest -import requests from multidict import CIMultiDict from multidict import CIMultiDictProxy -from requests_cache import CachedSession from homeassistant_api import AsyncClient from homeassistant_api import AsyncWebsocketClient @@ -160,10 +157,10 @@ def make_response( status_code: int, content: str, headers: dict[str, str], -) -> requests.Response: - """Make a :py:class:`requests.Response` object from a status_code, headers, content.""" +) -> niquests.Response: + """Make a :py:class:`niquests.Response` object from a status_code, headers, content.""" return unittest.mock.Mock( - spec=requests.Response, + spec=niquests.Response, status_code=status_code, text=content, url="http://localhost/api/test", @@ -179,16 +176,16 @@ def make_async_response( status_code: int, content: str, headers: dict[str, str], -) -> aiohttp.ClientResponse: - """Make an :py:class:`aiohttp.ClientResponse` object from a status_code, headers, content.""" +) -> niquests.Response: + """Make a :py:class:`niquests.Response` mock for async processing tests.""" return unittest.mock.Mock( - spec=aiohttp.ClientResponse, - status=status_code, - method="GET", + spec=niquests.Response, + status_code=status_code, + text=content, url="http://localhost/api/test", - text=unittest.mock.AsyncMock(return_value=content), + request=unittest.mock.Mock(method="GET"), headers=CIMultiDictProxy(CIMultiDict(headers)), - json=unittest.mock.AsyncMock( + json=unittest.mock.Mock( side_effect=json.JSONDecodeError("This is a fake message", "", 1), ), ) @@ -373,33 +370,15 @@ async def test_async_websocket_get_entity_histories_not_supported( pass -# --- Client: no-cache session --- - - -def test_client_no_cache_session() -> None: - """Tests that Client can be created without a cache session.""" - token = os.environ["HOMEASSISTANTAPI_TOKEN"] - client = Client(HA_URL, token, use_cache=False) - assert isinstance(client._session, requests.Session) - assert not isinstance(client._session, CachedSession) - - -def test_client_default_cache_session() -> None: - """Tests that Client creates a CachedSession when use_cache=True.""" - token = os.environ["HOMEASSISTANTAPI_TOKEN"] - client = Client(HA_URL, token, use_cache=True) - assert isinstance(client._session, CachedSession) - - -async def test_async_client_no_cache_session() -> None: - """Tests that AsyncClient can be created without a cache session.""" +def test_client_default_session() -> None: + """Tests that Client creates a niquests.Session by default.""" token = os.environ["HOMEASSISTANTAPI_TOKEN"] - client = AsyncClient(HA_URL, token, use_cache=False) - assert isinstance(client._session, aiohttp.ClientSession) + client = Client(HA_URL, token) + assert isinstance(client._session, niquests.Session) -async def test_async_client_default_cache_session() -> None: - """Tests that AsyncClient creates a CachedSession when use_cache=True.""" +async def test_async_client_default_session() -> None: + """Tests that AsyncClient creates a niquests.AsyncSession by default.""" token = os.environ["HOMEASSISTANTAPI_TOKEN"] - client = AsyncClient(HA_URL, token, use_cache=True) - assert isinstance(client._session, aiohttp_client_cache.session.CachedSession) + client = AsyncClient(HA_URL, token) + assert isinstance(client._session, niquests.AsyncSession) diff --git a/tests/test_websocket.py b/tests/test_websocket.py index a28ff7fc..da96302b 100644 --- a/tests/test_websocket.py +++ b/tests/test_websocket.py @@ -23,23 +23,23 @@ def make_async_client() -> AsyncWebsocketClient: def test_exit_without_connection() -> None: - """Tests __exit__ raises ReceivingError when connection is not open.""" + """Tests __exit__ raises AttributeError when used outside context manager.""" client = make_sync_client() - with pytest.raises(ReceivingError, match="Connection is not open"): + with pytest.raises(AttributeError): client.__exit__(None, None, None) def test_send_without_connection() -> None: - """Tests _send raises ReceivingError when connection is not open.""" + """Tests _send raises AttributeError when used outside context manager.""" client = make_sync_client() - with pytest.raises(ReceivingError, match="Connection is not open"): + with pytest.raises(AttributeError): client._send({"type": "test"}) def test_recv_without_connection() -> None: - """Tests _recv raises ReceivingError when connection is not open.""" + """Tests _recv raises AttributeError when used outside context manager.""" client = make_sync_client() - with pytest.raises(ReceivingError, match="Connection is not open"): + with pytest.raises(AttributeError): client._recv() @@ -116,23 +116,23 @@ def raise_runtime_error(*args: Any, **kwargs: Any): # noqa: ARG001 async def test_async_aexit_without_connection() -> None: - """Tests __aexit__ raises ReceivingError when connection is not open.""" + """Tests __aexit__ raises AttributeError when used outside context manager.""" client = make_async_client() - with pytest.raises(ReceivingError, match="Connection is not open"): + with pytest.raises(AttributeError): await client.__aexit__(None, None, None) async def test_async_send_without_connection() -> None: - """Tests _async_send raises ReceivingError when connection is not open.""" + """Tests _async_send raises AttributeError when used outside context manager.""" client = make_async_client() - with pytest.raises(ReceivingError, match="Connection is not open"): + with pytest.raises(AttributeError): await client._async_send({"type": "test"}) async def test_async_recv_without_connection() -> None: - """Tests _async_recv raises ReceivingError when connection is not open.""" + """Tests _async_recv raises AttributeError when used outside context manager.""" client = make_async_client() - with pytest.raises(ReceivingError, match="Connection is not open"): + with pytest.raises(AttributeError): await client._async_recv() From fdb5996694f8779e0064933848531321943d50e1 Mon Sep 17 00:00:00 2001 From: Nathan Larsen Date: Mon, 6 Apr 2026 14:34:35 -0600 Subject: [PATCH 16/34] Bump readthedocs Python version from 3.10 to 3.11 --- .readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 89643f58..9968e221 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -4,7 +4,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.10" + python: "3.11" jobs: post_install: - pip install uv From e90182965de98569b2858e317167f8636a548681 Mon Sep 17 00:00:00 2001 From: Nathan Larsen Date: Mon, 6 Apr 2026 14:51:25 -0600 Subject: [PATCH 17/34] Add command to check Python and pip paths --- .readthedocs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.readthedocs.yml b/.readthedocs.yml index 9968e221..43b040c3 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -8,6 +8,7 @@ build: jobs: post_install: - pip install uv + - which python && which pip && python -m site - uv export --group docs --no-hashes | uv pip install --system -r - # Build documentation in the docs/ directory with Sphinx From a67c1a30a28db7cc1fa64b9605aa0361f3883a8e Mon Sep 17 00:00:00 2001 From: Nathan Larsen Date: Mon, 6 Apr 2026 15:01:13 -0600 Subject: [PATCH 18/34] Fix not installing to readthedocs venv --- .readthedocs.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 43b040c3..7af745bb 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -8,8 +8,7 @@ build: jobs: post_install: - pip install uv - - which python && which pip && python -m site - - uv export --group docs --no-hashes | uv pip install --system -r - + - uv export --group docs --no-hashes | uv pip install -r - # Build documentation in the docs/ directory with Sphinx sphinx: From d7ed02f421fd724075c1ccebffbdbe21975475ad Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 6 Apr 2026 15:36:54 -0600 Subject: [PATCH 19/34] Fix some typing issues --- homeassistant_api/baseclient.py | 3 --- homeassistant_api/client.py | 2 +- homeassistant_api/models/domains.py | 2 +- homeassistant_api/processing.py | 25 ++++++++++++++++++++----- tests/test_errors.py | 6 ++---- 5 files changed, 24 insertions(+), 14 deletions(-) diff --git a/homeassistant_api/baseclient.py b/homeassistant_api/baseclient.py index 5c4d1c61..5e282c31 100644 --- a/homeassistant_api/baseclient.py +++ b/homeassistant_api/baseclient.py @@ -62,9 +62,6 @@ def prepare_headers( """Prepares and verifies dictionary headers.""" if headers is None: return dict(self._headers) - if not isinstance(headers, dict): - msg = f"headers must be dict or dict subclass, not type {type(headers)!r}" - raise TypeError(msg) return {**self._headers, **headers} @staticmethod diff --git a/homeassistant_api/client.py b/homeassistant_api/client.py index 657a9e40..66cdd7d1 100644 --- a/homeassistant_api/client.py +++ b/homeassistant_api/client.py @@ -47,7 +47,7 @@ class Client(BaseClient): :param global_request_kwargs: Kwargs to pass to :func:`requests.request`. Optional. """ # pylint: disable=line-too-long - _session: Session | None + _session: Session def __init__( self, diff --git a/homeassistant_api/models/domains.py b/homeassistant_api/models/domains.py index baf3c3cc..c4b14513 100644 --- a/homeassistant_api/models/domains.py +++ b/homeassistant_api/models/domains.py @@ -51,7 +51,7 @@ def _build_from_json(cls, json: dict[str, Any], **model_kwargs: Any) -> Self: msg = "Missing services or domain attribute in json argument." raise ValueError(msg) domain = cls(domain_id=cast("str", json.get("domain")), **model_kwargs) - services = cast("dict[str, dict[str, Any]]", json.get("services")) + services = json.get("services") if not isinstance(services, dict): msg = f"Expected dict for services, got {type(services)}" raise TypeError(msg) diff --git a/homeassistant_api/processing.py b/homeassistant_api/processing.py index 5533fce5..12fd2dbe 100644 --- a/homeassistant_api/processing.py +++ b/homeassistant_api/processing.py @@ -58,9 +58,18 @@ def _check_status(info: ResponseInfo, content: str) -> None: def _extract_info(response: ResponseType) -> ResponseInfo: """Extract status code, URL, and method from a response.""" + if response.status_code is None: + msg = "Response is missing status code." + raise ValueError(msg) + if response.request is None: + msg = "Response is missing request information." + raise ValueError(msg) + if response.url is None: + msg = "Response is missing URL information." + raise ValueError(msg) return ResponseInfo( status_code=response.status_code, - url=str(response.url), + url=response.url, method=response.request.method, ) @@ -70,7 +79,7 @@ def _check_sync_status(response: ResponseType) -> None: info = _extract_info(response) if info.status_code in (HTTPStatus.OK, HTTPStatus.CREATED): return - _check_status(info, content=response.text) + _check_status(info, content=_parse_text(response)) # --- Individual parse functions --- @@ -87,6 +96,9 @@ def _parse_json(response: ResponseType) -> Any: def _parse_text(response: ResponseType) -> str: """Return the plaintext content of a sync response.""" + if response.text is None: + msg = "Response is missing text content." + raise MalformedDataError(msg) return response.text @@ -104,9 +116,12 @@ def _parse_text(response: ResponseType) -> str: def _parse_content(response: ResponseType) -> Any: """Look up and call the appropriate parser by content-type.""" - mimetype = response.headers.get("content-type", "text/plain").split(";")[0] - parser = _PARSERS.get(mimetype) - if parser is None: + content_type = response.headers.get("content-type", "text/plain") + if isinstance(content_type, bytes): + content_type = content_type.decode("utf-8") + mimetype = str(content_type).split(";")[0].strip().lower() + + if (parser := _PARSERS.get(mimetype)) is None: msg = f"No response processor found for mimetype {mimetype!r}." raise ProcessorNotFoundError(msg) return parser(response) diff --git a/tests/test_errors.py b/tests/test_errors.py index 0f6f58df..7231b5b8 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -7,8 +7,6 @@ import niquests import pytest -from multidict import CIMultiDict -from multidict import CIMultiDictProxy from homeassistant_api import AsyncClient from homeassistant_api import AsyncWebsocketClient @@ -165,7 +163,7 @@ def make_response( text=content, url="http://localhost/api/test", request=unittest.mock.Mock(method="GET"), - headers=CIMultiDictProxy(CIMultiDict(headers)), + headers=headers, json=unittest.mock.Mock( side_effect=json.JSONDecodeError("This is a fake message", "", 1), ), @@ -184,7 +182,7 @@ def make_async_response( text=content, url="http://localhost/api/test", request=unittest.mock.Mock(method="GET"), - headers=CIMultiDictProxy(CIMultiDict(headers)), + headers=headers, json=unittest.mock.Mock( side_effect=json.JSONDecodeError("This is a fake message", "", 1), ), From 7e3a01b530edfcd4af217563d66847e7e405c478 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 6 Apr 2026 15:40:27 -0600 Subject: [PATCH 20/34] Ignore intentionally unreachable line --- homeassistant_api/asyncwebsocket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant_api/asyncwebsocket.py b/homeassistant_api/asyncwebsocket.py index 0794663a..8cb9e00a 100644 --- a/homeassistant_api/asyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -378,7 +378,7 @@ async def get_entity_histories( """Not supported over WebSocket. Use the REST :py:class:`AsyncClient` instead.""" msg = "get_entity_histories is not supported over the WebSocket API. Use the REST AsyncClient." raise NotImplementedError(msg) - yield # unreachable: makes this a true AsyncGenerator for type checkers + yield # unreachable: makes this a true AsyncGenerator for type checkers # type: ignore[unreachable] async def get_domains(self) -> dict[str, AsyncDomain]: """ From 2de2990a216e63bd7d3620d158c6e2bcc24d4810 Mon Sep 17 00:00:00 2001 From: Nate Date: Mon, 6 Apr 2026 18:06:40 -0600 Subject: [PATCH 21/34] Use CaseInsensitiveDict for headers in mock responses --- tests/test_errors.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_errors.py b/tests/test_errors.py index 7231b5b8..5d8074c6 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -7,6 +7,7 @@ import niquests import pytest +from niquests.structures import CaseInsensitiveDict from homeassistant_api import AsyncClient from homeassistant_api import AsyncWebsocketClient @@ -163,7 +164,7 @@ def make_response( text=content, url="http://localhost/api/test", request=unittest.mock.Mock(method="GET"), - headers=headers, + headers=CaseInsensitiveDict(headers), json=unittest.mock.Mock( side_effect=json.JSONDecodeError("This is a fake message", "", 1), ), @@ -182,7 +183,7 @@ def make_async_response( text=content, url="http://localhost/api/test", request=unittest.mock.Mock(method="GET"), - headers=headers, + headers=CaseInsensitiveDict(headers), json=unittest.mock.Mock( side_effect=json.JSONDecodeError("This is a fake message", "", 1), ), From 52d76ab0f071b591cef97849946a75d0643b8017 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Tue, 7 Apr 2026 00:41:39 -0700 Subject: [PATCH 22/34] Pin urllib3-future<2.19.902 to avoid WebSocket regression 2.19.902 reverses header merge order so user headers overwrite extension headers, breaking the WebSocket upgrade handshake (server sees a plain GET and returns 400). Tracked upstream at jawah/urllib3.future#338. Also accept http:// and https:// schemes in BaseWebsocketClient, normalising to ws:// and wss:// internally. --- homeassistant_api/basewebsocket.py | 9 ++++++--- pyproject.toml | 3 ++- tests/test_errors.py | 4 ++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/homeassistant_api/basewebsocket.py b/homeassistant_api/basewebsocket.py index ffaee4a1..732a67c6 100644 --- a/homeassistant_api/basewebsocket.py +++ b/homeassistant_api/basewebsocket.py @@ -27,10 +27,13 @@ class BaseWebsocketClient: def __init__(self, api_url: str, token: str, *, max_size: int = 2**24) -> None: parsed = urlparse.urlparse(api_url) - if parsed.scheme not in {"ws", "wss"}: - msg = f"Unknown scheme {parsed.scheme} in {api_url}" + if parsed.scheme not in {"ws", "wss", "http", "https"}: + msg = f"Unknown scheme {parsed.scheme!r} in {api_url!r}" raise ValueError(msg) - self.api_url = api_url + _scheme_map = {"ws": "ws", "wss": "wss", "http": "ws", "https": "wss"} + self.api_url = urlparse.urlunparse( + parsed._replace(scheme=_scheme_map[parsed.scheme]), + ) self.token = token.strip() self.max_size = max_size diff --git a/pyproject.toml b/pyproject.toml index df64b7d1..54679bf4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ authors = [ ] dependencies = [ "niquests[ws]>=3", + "urllib3-future<2.19.902", "pydantic>=2,<3", "simplejson>=3,<4", ] @@ -34,7 +35,7 @@ dev = [ "types-docutils>=0.22", "types-simplejson>=3.20", "types-toml>=0.10", - "zuban>=0.6", + "zuban>=0.7", "ruff>=0.15", "pytest-asyncio>=1", "pytest-cov>=7", diff --git a/tests/test_errors.py b/tests/test_errors.py index 5d8074c6..34475195 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -276,9 +276,9 @@ def test_request_timeout_error() -> None: def test_websocket_invalid_scheme() -> None: - """Tests that WebsocketClient raises ValueError for non-ws schemes.""" + """Tests that WebsocketClient raises ValueError for unsupported schemes.""" with pytest.raises(ValueError, match="Unknown scheme"): - WebsocketClient("http://localhost", "token") + WebsocketClient("ftp://localhost", "token") def test_error_model_without_optional_fields() -> None: From 6c6e74c5c247af075003d9f574c2bb2d0db570ac Mon Sep 17 00:00:00 2001 From: Nathan Larsen Date: Wed, 8 Apr 2026 07:46:02 -0600 Subject: [PATCH 23/34] Unpin urllib3.future after websockets patched New version published with fix https://github.com/jawah/urllib3.future/pull/340 --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 54679bf4..7fdbaed2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,6 @@ authors = [ ] dependencies = [ "niquests[ws]>=3", - "urllib3-future<2.19.902", "pydantic>=2,<3", "simplejson>=3,<4", ] From 0bd97cffd54b68ce6a1867d8e58f0522c19b72dd Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Wed, 8 Apr 2026 23:15:41 -0700 Subject: [PATCH 24/34] Replace mypy with zuban: add pre-commit hook, convert [tool.mypy] to [tool.zuban] with default mode, and fix test type narrowing --- .pre-commit-config.yaml | 8 ++++++++ pyproject.toml | 13 ++++--------- tests/test_client.py | 12 ++++++------ 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 72dced77..2e816619 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,4 +1,12 @@ repos: + - repo: local + hooks: + - id: zuban + name: zuban + entry: uv run zuban check homeassistant_api + language: system + types: [python] + pass_filenames: false - repo: https://github.com/pre-commit/pre-commit-hooks hooks: - id: trailing-whitespace diff --git a/pyproject.toml b/pyproject.toml index 7fdbaed2..389981c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,6 @@ docs = [ "autodoc-pydantic>=2,<3", ] dev = [ - "pre-commit>=4,<5", "types-docutils>=0.22", "types-simplejson>=3.20", "types-toml>=0.10", @@ -40,6 +39,7 @@ dev = [ "pytest-cov>=7", "pytest>=8", "aiosqlite>=0.22", + "prek>=0.3.8", ] [tool.pytest.ini_options] @@ -99,14 +99,9 @@ ignore = [ [tool.ruff.lint.isort] force-single-line = true -[tool.mypy] -disable_error_code = [ - "no-untyped-def", - "name-defined", -] -exclude = [ - "^docs/" -] +[tool.zuban] +exclude = ["^docs/"] +untyped_function_return_mode = "inferred" [tool.hatch.build.targets.wheel] packages = ["homeassistant_api"] diff --git a/tests/test_client.py b/tests/test_client.py index df2c4a62..b4748eda 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -72,12 +72,12 @@ def test_prepare_entity_histories_naive_timestamps() -> None: end_timestamp=naive_end, ) # Naive timestamps should get a timezone attached - assert "+" in url or "-" in url.split("T")[-1], ( - "start_timestamp should have timezone offset" - ) - assert "+" in params["end_time"] or "-" in params["end_time"].split("T")[-1], ( - "end_time should have timezone offset" - ) + start_time = datetime.fromisoformat(url.split("/")[-1]) + assert start_time.tzinfo is not None, "start_timestamp should have timezone offset" + end_time_str = params["end_time"] + assert end_time_str is not None + end_time = datetime.fromisoformat(end_time_str) + assert end_time.tzinfo is not None, "end_time should have timezone offset" # --- BaseClient: prepare_get_logbook_entry_params --- From 03351fd72cb94d323b2f0eb56ee02390ccca4a6d Mon Sep 17 00:00:00 2001 From: Nate Date: Sat, 11 Apr 2026 20:50:31 -0600 Subject: [PATCH 25/34] Exclude type guard error messages from coverage --- homeassistant_api/asyncwebsocket.py | 4 +--- pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/homeassistant_api/asyncwebsocket.py b/homeassistant_api/asyncwebsocket.py index 8cb9e00a..e71bf55d 100644 --- a/homeassistant_api/asyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -433,9 +433,7 @@ async def trigger_service( if result.get("response") is not None: msg = "Unexpected response from service without response support" - raise ValueError( - msg, - ) + raise ValueError(msg) async def trigger_service_with_response( self, diff --git a/pyproject.toml b/pyproject.toml index 389981c1..30b8bb8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,7 @@ dev = [ "pytest>=8", "aiosqlite>=0.22", "prek>=0.3.8", + "pre-commit>=4.5.1", ] [tool.pytest.ini_options] @@ -59,7 +60,9 @@ exclude_lines = [ "except \\(json\\.decoder\\.JSONDecodeError, simplejson.decoder\\.JSONDecodeError\\) as err:", "pass", "last_updated < \\(now := datetime\\.now\\(\\)\\) - wait", - "pragma: no cover" + "pragma: no cover", + "msg = r?f?\".+\"", + "raise \\w+Error\\(msg\\)", ] From 16ed85dcb4a37bae14f5be51c6baa725aa0c4cf7 Mon Sep 17 00:00:00 2001 From: Nate Date: Sat, 11 Apr 2026 20:59:18 -0600 Subject: [PATCH 26/34] Exclude testing session start error handling and remove unnecessary excludes --- pyproject.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 30b8bb8f..eb91a219 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,12 +57,10 @@ exclude_lines = [ "if TYPE_CHECKING:", "def __repr__\\(self\\) -> str:", "raise RequestTimeoutError\\(", - "except \\(json\\.decoder\\.JSONDecodeError, simplejson.decoder\\.JSONDecodeError\\) as err:", "pass", - "last_updated < \\(now := datetime\\.now\\(\\)\\) - wait", - "pragma: no cover", "msg = r?f?\".+\"", "raise \\w+Error\\(msg\\)", + "except RequestsConnectionError: # noqa: PERF203", ] From 81adb38fe23e31a49e012aedde656057690f7a27 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Sun, 12 Apr 2026 19:03:42 -0700 Subject: [PATCH 27/34] Fix coverage gaps: restore pragma: no cover, annotate untestable branches, and self-contained entity registry remove tests --- homeassistant_api/asyncwebsocket.py | 2 +- homeassistant_api/processing.py | 4 +- homeassistant_api/websocket.py | 2 +- pyproject.toml | 2 + tests/test_entity_registry.py | 101 ++++++++++++++++++++++++++++ 5 files changed, 107 insertions(+), 4 deletions(-) create mode 100644 tests/test_entity_registry.py diff --git a/homeassistant_api/asyncwebsocket.py b/homeassistant_api/asyncwebsocket.py index e71bf55d..b4eb8d0f 100644 --- a/homeassistant_api/asyncwebsocket.py +++ b/homeassistant_api/asyncwebsocket.py @@ -105,7 +105,7 @@ async def _async_recv(self) -> dict[str, Any]: buf += chunk if isinstance(chunk, str) else chunk.decode() try: r = json.loads(buf) - except json.JSONDecodeError: + except json.JSONDecodeError: # pragma: no cover continue logger.debug("Received message: %s", buf) if not isinstance(r, dict): diff --git a/homeassistant_api/processing.py b/homeassistant_api/processing.py index 12fd2dbe..91f6f1f8 100644 --- a/homeassistant_api/processing.py +++ b/homeassistant_api/processing.py @@ -42,7 +42,7 @@ def _check_status(info: ResponseInfo, content: str) -> None: Content is only used in error messages for 400/500+ responses. """ if info.status_code in (HTTPStatus.OK, HTTPStatus.CREATED): - return + return # pragma: no cover if info.status_code == HTTPStatus.BAD_REQUEST: raise RequestError(content, url=info.url) if info.status_code == HTTPStatus.UNAUTHORIZED: @@ -118,7 +118,7 @@ def _parse_content(response: ResponseType) -> Any: """Look up and call the appropriate parser by content-type.""" content_type = response.headers.get("content-type", "text/plain") if isinstance(content_type, bytes): - content_type = content_type.decode("utf-8") + content_type = content_type.decode("utf-8") # pragma: no cover mimetype = str(content_type).split(";")[0].strip().lower() if (parser := _PARSERS.get(mimetype)) is None: diff --git a/homeassistant_api/websocket.py b/homeassistant_api/websocket.py index 0f8a2554..f5b4a800 100644 --- a/homeassistant_api/websocket.py +++ b/homeassistant_api/websocket.py @@ -108,7 +108,7 @@ def _recv(self) -> dict[str, Any]: buf += chunk if isinstance(chunk, str) else chunk.decode() try: r = json.loads(buf) - except json.JSONDecodeError: + except json.JSONDecodeError: # pragma: no cover continue logger.debug("Received message: %s", buf) if not isinstance(r, dict): diff --git a/pyproject.toml b/pyproject.toml index eb91a219..f16647ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,12 +54,14 @@ log_cli_date_format = "%Y-%m-%d %H:%M:%S" [tool.coverage.report] exclude_lines = [ + "pragma: no cover", "if TYPE_CHECKING:", "def __repr__\\(self\\) -> str:", "raise RequestTimeoutError\\(", "pass", "msg = r?f?\".+\"", "raise \\w+Error\\(msg\\)", + "if not isinstance\\(", "except RequestsConnectionError: # noqa: PERF203", ] diff --git a/tests/test_entity_registry.py b/tests/test_entity_registry.py new file mode 100644 index 00000000..d0639b4c --- /dev/null +++ b/tests/test_entity_registry.py @@ -0,0 +1,101 @@ +"""Integration tests for entity registry WebSocket methods.""" + +from homeassistant_api import AsyncWebsocketClient +from homeassistant_api import WebsocketClient +from homeassistant_api.models.entity_registry import EntityRegistryEntry +from homeassistant_api.models.entity_registry import EntityRegistryEntryExtended +from homeassistant_api.models.entity_registry import EntityRegistryUpdateResult + +# A stable, always-present entity for read/update tests +_TEST_ENTITY_ID = "sensor.sun_next_dawn" + +# Dedicated input_booleans for remove tests — HA re-adds them on restart +_REMOVE_ENTITY_ID = "input_boolean.smoke_registry_remove_test" +_ASYNC_REMOVE_ENTITY_ID = "input_boolean.smoke_registry_remove_test_async" + + +def test_list_entity_registry(websocket_client: WebsocketClient) -> None: + entries = websocket_client.list_entity_registry() + assert isinstance(entries, tuple) + assert len(entries) > 0 + assert all(isinstance(e, EntityRegistryEntry) for e in entries) + + +def test_get_entity_registry_entry(websocket_client: WebsocketClient) -> None: + entry = websocket_client.get_entity_registry_entry(_TEST_ENTITY_ID) + assert isinstance(entry, EntityRegistryEntryExtended) + assert entry.entity_id == _TEST_ENTITY_ID + + +def test_update_entity_registry_entry(websocket_client: WebsocketClient) -> None: + result = websocket_client.update_entity_registry_entry( + _TEST_ENTITY_ID, + name="Test Name", + ) + assert isinstance(result, EntityRegistryUpdateResult) + assert result.entity_entry.entity_id == _TEST_ENTITY_ID + assert result.entity_entry.name == "Test Name" + # Restore original state + websocket_client.update_entity_registry_entry(_TEST_ENTITY_ID, name=None) + + +def test_remove_entity_registry_entry(websocket_client: WebsocketClient) -> None: + websocket_client.recv( + websocket_client.send( + "input_boolean/create", + name="smoke_registry_remove_test", + ), + ) + websocket_client.remove_entity_registry_entry(_REMOVE_ENTITY_ID) + entity_ids = {e.entity_id for e in websocket_client.list_entity_registry()} + assert _REMOVE_ENTITY_ID not in entity_ids + + +async def test_async_list_entity_registry( + async_websocket_client: AsyncWebsocketClient, +) -> None: + entries = await async_websocket_client.list_entity_registry() + assert isinstance(entries, tuple) + assert len(entries) > 0 + assert all(isinstance(e, EntityRegistryEntry) for e in entries) + + +async def test_async_get_entity_registry_entry( + async_websocket_client: AsyncWebsocketClient, +) -> None: + entry = await async_websocket_client.get_entity_registry_entry(_TEST_ENTITY_ID) + assert isinstance(entry, EntityRegistryEntryExtended) + assert entry.entity_id == _TEST_ENTITY_ID + + +async def test_async_update_entity_registry_entry( + async_websocket_client: AsyncWebsocketClient, +) -> None: + result = await async_websocket_client.update_entity_registry_entry( + _TEST_ENTITY_ID, + name="Async Test Name", + ) + assert isinstance(result, EntityRegistryUpdateResult) + assert result.entity_entry.entity_id == _TEST_ENTITY_ID + assert result.entity_entry.name == "Async Test Name" + # Restore original state + await async_websocket_client.update_entity_registry_entry( + _TEST_ENTITY_ID, + name=None, + ) + + +async def test_async_remove_entity_registry_entry( + async_websocket_client: AsyncWebsocketClient, +) -> None: + await async_websocket_client.recv( + await async_websocket_client.send( + "input_boolean/create", + name="smoke_registry_remove_test_async", + ), + ) + await async_websocket_client.remove_entity_registry_entry(_ASYNC_REMOVE_ENTITY_ID) + entity_ids = { + e.entity_id for e in await async_websocket_client.list_entity_registry() + } + assert _ASYNC_REMOVE_ENTITY_ID not in entity_ids From 56e45ac72f2b12e6a6a138965d1ed5e3f1941bfa Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Sun, 12 Apr 2026 20:05:37 -0700 Subject: [PATCH 28/34] Add pytest-niquests-cassettes plugin and record cassettes Introduces a uv workspace package (packages/pytest-niquests-cassettes) that intercepts niquests.Session.send and AsyncSession.send to record and replay HTTP and WebSocket interactions. Cassettes are stored in cassettes/session.yaml and replayed in CI without a running HA instance. - Plugin provides --record, --cassette-dir, --cassette-file, and --cassette-match-on CLI options (default matchers: method + path) - WebSocket frames are captured via RecordingExtension / AsyncRecordingExtension wrappers and replayed via FakeExtension / AsyncFakeExtension - Test env vars made optional with sensible defaults for replay mode - pytest_sessionstart server-readiness check skipped unless --record is passed - Fixed timestamps in logbook/history tests to support query-string matching --- cassettes/session.yaml | 4401 +++++++++++++++++ .../pytest-niquests-cassettes/pyproject.toml | 20 + .../src/pytest_niquests_cassettes/__init__.py | 5 + .../pytest_niquests_cassettes/_cassette.py | 381 ++ .../src/pytest_niquests_cassettes/plugin.py | 69 + pyproject.toml | 8 + tests/conftest.py | 30 +- tests/test_client.py | 24 +- tests/test_endpoints.py | 6 +- tests/test_errors.py | 11 +- 10 files changed, 4927 insertions(+), 28 deletions(-) create mode 100644 cassettes/session.yaml create mode 100644 packages/pytest-niquests-cassettes/pyproject.toml create mode 100644 packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/__init__.py create mode 100644 packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/_cassette.py create mode 100644 packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/plugin.py diff --git a/cassettes/session.yaml b/cassettes/session.yaml new file mode 100644 index 00000000..18a87be6 --- /dev/null +++ b/cassettes/session.yaml @@ -0,0 +1,4401 @@ +interactions: +- request: + method: GET + url: http://127.0.0.1:8123/api/ + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '34' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"API running."}' + url: http://127.0.0.1:8123/api/ +- request: + method: GET + url: http://127.0.0.1:8123/api/ + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '34' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"API running."}' + url: http://127.0.0.1:8123/api/ +- request: + method: GET + url: http://127.0.0.1:8123/api/ + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '34' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"API running."}' + url: http://127.0.0.1:8123/api/ +- request: + method: GET + url: http://127.0.0.1:8123/api/ + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '34' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"API running."}' + url: http://127.0.0.1:8123/api/ +- request: + method: GET + url: http://127.0.0.1:8123/api/ + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '34' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"API running."}' + url: http://127.0.0.1:8123/api/ +- request: + method: GET + url: http://127.0.0.1:8123/api/ + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '34' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"API running."}' + url: http://127.0.0.1:8123/api/ +- request: + method: GET + url: http://127.0.0.1:8123/api/ + response: + status: 401 + headers: + Content-Type: text/plain; charset=utf-8 + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '17' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '401: Unauthorized' + url: http://127.0.0.1:8123/api/ +- request: + method: GET + url: http://127.0.0.1:8123/api/ + response: + status: 401 + headers: + Content-Type: text/plain; charset=utf-8 + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '17' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '401: Unauthorized' + url: http://127.0.0.1:8123/api/ +- request: + method: GET + url: http://127.0.0.1:8123/api/error_log + response: + status: 200 + headers: + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Type: application/octet-stream + Etag: '"18a5caf8d7909b21-7cfb"' + Last-Modified: Mon, 13 Apr 2026 02:53:19 GMT + Accept-Ranges: bytes + Content-Encoding: deflate + Transfer-Encoding: chunked + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '2026-04-13 02:13:01.093 INFO (MainThread) [homeassistant.setup] Setting + up system_log + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain + http took 0.02 seconds + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain + logger took 0.02 seconds + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain + system_log took 0.02 seconds + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setting up websocket_api + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain + websocket_api took 0.00 seconds + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setting up network + + 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setup of domain + network took 0.00 seconds + + 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.bootstrap] Setting + up stage labs: {''labs''}; already set up: {} + + Dependencies: {}; already set up: {} + + 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setting up labs + + 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setup of domain + labs took 0.00 seconds + + 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.bootstrap] Setting + up stage frontend: {''frontend''}; already set up: {} + + Dependencies: {''diagnostics'', ''device_automation'', ''lovelace'', ''api'', + ''file_upload'', ''config'', ''search'', ''repairs'', ''onboarding'', ''auth''}; + already set up: {''http'', ''websocket_api'', ''system_log''} + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up diagnostics + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain + diagnostics took 0.00 seconds + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up device_automation + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain + device_automation took 0.00 seconds + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up auth + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain + auth took 0.00 seconds + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up onboarding + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain + onboarding took 0.00 seconds + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up lovelace + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain + lovelace took 0.00 seconds + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up file_upload + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain + file_upload took 0.00 seconds + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up config + + 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain + config took 0.00 seconds + + 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setting up search + + 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain + search took 0.00 seconds + + 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setting up repairs + + 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain + repairs took 0.00 seconds + + 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setting up api + + 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setup of domain + api took 0.00 seconds + + 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setting up frontend + + 2026-04-13 02:13:01.120 INFO (MainThread) [homeassistant.setup] Setup of domain + frontend took 0.00 seconds + + 2026-04-13 02:13:01.120 INFO (MainThread) [homeassistant.bootstrap] Setting + up stage recorder: {''recorder''}; already set up: {} + + Dependencies: {}; already set up: {} + + 2026-04-13 02:13:01.121 INFO (MainThread) [homeassistant.setup] Setting up recorder + + 2026-04-13 02:13:01.122 INFO (MainThread) [homeassistant.components.http] Now + listening on port 8123 + + 2026-04-13 02:13:01.122 INFO (MainThread) [homeassistant.setup] Setup of domain + http took 0.00 seconds + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setup of domain + recorder took 0.11 seconds + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing + to set up in stage debugger: {''debugpy''} + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing + to set up in stage zeroconf: {''zeroconf''} + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing + to set up in stage 1: {''usb'', ''ssdp'', ''cloud'', ''bluetooth'', ''hassio'', + ''dhcp'', ''mqtt_eventstream''} + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Setting + up stage 2: {''history'', ''notify'', ''counter'', ''input_button'', ''weather'', + ''automation'', ''input_text'', ''input_select'', ''script'', ''tag'', ''brands'', + ''radio_browser'', ''person'', ''schedule'', ''zone'', ''application_credentials'', + ''scene'', ''input_boolean'', ''input_number'', ''trace'', ''system_health'', + ''sun'', ''backup'', ''hardware'', ''analytics'', ''logbook'', ''input_datetime'', + ''met'', ''timer''}; already set up: {''network'', ''http'', ''logger'', ''labs'', + ''frontend'', ''api''} + + Dependencies: {''blueprint'', ''image_upload''}; already set up: {''device_automation'', + ''recorder'', ''search'', ''repairs'', ''http'', ''api'', ''auth'', ''diagnostics'', + ''websocket_api'', ''lovelace'', ''file_upload'', ''config'', ''system_log'', + ''onboarding'', ''frontend''} + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setting up notify + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setup of domain + notify took 0.00 seconds + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setting up scene + + 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.components.scene] Setting + up homeassistant.scene + + 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setup of domain + scene took 0.00 seconds + + 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setting up history + + 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setup of domain + history took 0.00 seconds + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up trace + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain + trace took 0.00 seconds + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up system_health + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain + system_health took 0.00 seconds + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up blueprint + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain + blueprint took 0.00 seconds + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up automation + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain + automation took 0.00 seconds + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up backup + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up logbook + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setup of domain + logbook took 0.00 seconds + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up script + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setup of domain + script took 0.00 seconds + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up image_upload + + 2026-04-13 02:13:01.233 INFO (MainThread) [homeassistant.setup] Setup of domain + image_upload took 0.00 seconds + + 2026-04-13 02:13:01.233 INFO (MainThread) [homeassistant.setup] Setting up zone + + 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setup of domain + zone took 0.00 seconds + + 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setting up person + + 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setting up input_number + + 2026-04-13 02:13:01.235 INFO (MainThread) [homeassistant.setup] Setup of domain + input_number took 0.00 seconds + + 2026-04-13 02:13:01.235 INFO (MainThread) [homeassistant.setup] Setup of domain + person took 0.00 seconds + + 2026-04-13 02:13:01.236 INFO (MainThread) [homeassistant.setup] Setup of domain + backup took 0.00 seconds + + 2026-04-13 02:13:01.243 INFO (MainThread) [homeassistant.setup] Setting up weather + + 2026-04-13 02:13:01.243 INFO (MainThread) [homeassistant.setup] Setup of domain + weather took 0.00 seconds + + 2026-04-13 02:13:01.244 INFO (MainThread) [homeassistant.setup] Setting up counter + + 2026-04-13 02:13:01.245 INFO (MainThread) [homeassistant.setup] Setup of domain + counter took 0.00 seconds + + 2026-04-13 02:13:01.245 INFO (MainThread) [homeassistant.setup] Setting up input_button + + 2026-04-13 02:13:01.246 INFO (MainThread) [homeassistant.setup] Setup of domain + input_button took 0.00 seconds + + 2026-04-13 02:13:01.248 INFO (MainThread) [homeassistant.setup] Setting up sun + + 2026-04-13 02:13:01.248 INFO (MainThread) [homeassistant.setup] Setup of domain + sun took 0.00 seconds + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setting up binary_sensor + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setup of domain + binary_sensor took 0.00 seconds + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new binary_sensor.sun entity: binary_sensor.sun_solar_rising + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setting up sensor + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setup of domain + sensor took 0.00 seconds + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:13:01.255 INFO (MainThread) [homeassistant.setup] Setting up hardware + + 2026-04-13 02:13:01.267 INFO (MainThread) [homeassistant.setup] Setup of domain + hardware took 0.01 seconds + + 2026-04-13 02:13:01.267 INFO (MainThread) [homeassistant.setup] Setting up analytics + + 2026-04-13 02:13:01.268 INFO (MainThread) [homeassistant.setup] Setup of domain + analytics took 0.00 seconds + + 2026-04-13 02:13:01.269 INFO (MainThread) [homeassistant.setup] Setting up input_text + + 2026-04-13 02:13:01.269 INFO (MainThread) [homeassistant.setup] Setup of domain + input_text took 0.00 seconds + + 2026-04-13 02:13:01.271 INFO (MainThread) [homeassistant.setup] Setting up input_select + + 2026-04-13 02:13:01.272 INFO (MainThread) [homeassistant.setup] Setup of domain + input_select took 0.00 seconds + + 2026-04-13 02:13:01.273 INFO (MainThread) [homeassistant.setup] Setting up input_datetime + + 2026-04-13 02:13:01.274 INFO (MainThread) [homeassistant.setup] Setup of domain + input_datetime took 0.00 seconds + + 2026-04-13 02:13:01.275 INFO (MainThread) [homeassistant.setup] Setting up tag + + 2026-04-13 02:13:01.275 INFO (MainThread) [homeassistant.setup] Setup of domain + tag took 0.00 seconds + + 2026-04-13 02:13:01.283 INFO (MainThread) [homeassistant.setup] Setting up met + + 2026-04-13 02:13:01.283 INFO (MainThread) [homeassistant.setup] Setup of domain + met took 0.00 seconds + + 2026-04-13 02:13:01.285 INFO (MainThread) [homeassistant.setup] Setting up brands + + 2026-04-13 02:13:01.285 INFO (MainThread) [homeassistant.setup] Setup of domain + brands took 0.00 seconds + + 2026-04-13 02:13:01.331 INFO (MainThread) [homeassistant.setup] Setting up radio_browser + + 2026-04-13 02:13:01.331 INFO (MainThread) [homeassistant.setup] Setup of domain + radio_browser took 0.00 seconds + + 2026-04-13 02:13:01.333 INFO (MainThread) [homeassistant.setup] Setting up schedule + + 2026-04-13 02:13:01.334 INFO (MainThread) [homeassistant.setup] Setup of domain + schedule took 0.00 seconds + + 2026-04-13 02:13:01.334 INFO (MainThread) [homeassistant.setup] Setting up timer + + 2026-04-13 02:13:01.335 INFO (MainThread) [homeassistant.setup] Setup of domain + timer took 0.00 seconds + + 2026-04-13 02:13:01.336 INFO (MainThread) [homeassistant.setup] Setting up application_credentials + + 2026-04-13 02:13:01.337 INFO (MainThread) [homeassistant.setup] Setup of domain + application_credentials took 0.00 seconds + + 2026-04-13 02:13:01.337 INFO (MainThread) [homeassistant.setup] Setting up input_boolean + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_2 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_2 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_3 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_3 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_4 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_4 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.setup] Setup of domain + input_boolean took 0.00 seconds + + 2026-04-13 02:13:01.876 INFO (MainThread) [homeassistant.components.weather] + Setting up met.weather + + 2026-04-13 02:13:01.935 INFO (MainThread) [homeassistant.bootstrap] Home Assistant + initialized in 1.63s + + 2026-04-13 02:13:01.935 INFO (MainThread) [homeassistant.core] Starting Home + Assistant 2026.3.1 + + 2026-04-13 02:13:01.944 INFO (MainThread) [homeassistant.setup] Setting up event + + 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.components.event] Setting + up backup.event + + 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new event.backup entity: event.backup_automatic_backup + + 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.components.sensor] + Setting up backup.sensor + + 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new sensor.backup entity: sensor.backup_backup_manager_state + + 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new sensor.backup entity: sensor.backup_next_scheduled_automatic_backup + + 2026-04-13 02:13:01.946 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new sensor.backup entity: sensor.backup_last_successful_automatic_backup + + 2026-04-13 02:13:01.946 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new sensor.backup entity: sensor.backup_last_attempted_automatic_backup + + 2026-04-13 02:13:23.954 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135819133024] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:13:23.959 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135807829344] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:13:24.403 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:13:24.404 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:13:24.409 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:13:24.409 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:13:24.434 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135808187712] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:13:24.437 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135845987200] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:13:24.491 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_5 + + 2026-04-13 02:13:24.499 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_5 + + 2026-04-13 02:13:24.504 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default + (172.18.0.3). Requested URL: ''/api/''. (niquests/3.18.5) + + 2026-04-13 02:13:24.509 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default + (172.18.0.3). Requested URL: ''/api/websocket''. (niquests/3.18.5) + + 2026-04-13 02:13:24.512 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default + (172.18.0.3). Requested URL: ''/api/websocket''. (niquests/3.18.5) + + 2026-04-13 02:13:24.521 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default + (172.18.0.3). Requested URL: ''/api/''. (niquests/3.18.5) + + 2026-04-13 02:13:24.573 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135808187712] Initialized trigger + + 2026-04-13 02:13:25.407 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:13:25.407 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:13:25.413 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:13:25.413 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:13:25.417 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135845987200] Initialized trigger + + 2026-04-13 02:13:26.389 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135845987200] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:13:26.389 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135808187712] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:28:02.416 INFO (MainThread) [homeassistant.components.analytics] + Submitted analytics to Home Assistant servers. Information submitted includes + {''uuid'': ''7b023d740661490db49ce807f6e76fdc'', ''version'': ''2026.3.1'', + ''installation_type'': ''Home Assistant Container'', ''certificate'': False, + ''integrations'': [''history'', ''notify'', ''weather'', ''counter'', ''http'', + ''logger'', ''input_text'', ''api'', ''tag'', ''radio_browser'', ''person'', + ''input_boolean'', ''input_number'', ''trace'', ''sun'', ''backup'', ''logbook'', + ''input_datetime'', ''met'', ''timer''], ''custom_integrations'': [], ''recorder'': + {''engine'': ''sqlite'', ''version'': }, + ''state_count'': 24, ''automation_count'': 0, ''integration_count'': 20, ''user_count'': + 1} + + 2026-04-13 02:43:47.640 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046289504] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:43:47.643 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046288384] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:43:47.722 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:43:47.723 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:43:47.729 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:43:47.729 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:43:47.747 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046270656] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:43:47.750 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046290144] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:43:47.791 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test + + 2026-04-13 02:43:47.798 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async + + 2026-04-13 02:43:47.810 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:43:47.845 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046270656] Initialized trigger + + 2026-04-13 02:43:48.398 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:43:48.398 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:43:48.403 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:43:48.403 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:43:48.406 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046290144] Initialized trigger + + 2026-04-13 02:43:49.492 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046290144] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:43:49.493 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046270656] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:47:33.433 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046267936] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:47:33.436 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046294944] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:47:33.519 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:47:33.520 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:47:33.524 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:47:33.524 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:47:33.539 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046267456] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:47:33.541 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046289984] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:47:33.573 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test + + 2026-04-13 02:47:33.578 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async + + 2026-04-13 02:47:33.591 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:47:33.599 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:47:33.600 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:47:33.600 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:47:33.635 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046267456] Initialized trigger + + 2026-04-13 02:47:34.079 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:47:34.079 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:47:34.084 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:47:34.084 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:47:34.088 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046289984] Initialized trigger + + 2026-04-13 02:47:35.366 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046289984] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:47:35.367 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046267456] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:50:58.891 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:50:58.959 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:51:06.013 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:51:06.075 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:51:23.053 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046297024] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:51:23.056 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046302784] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:51:23.145 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:51:23.145 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:51:23.149 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:51:23.150 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:51:23.167 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046303424] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:51:23.169 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046298944] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:51:23.202 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test + + 2026-04-13 02:51:23.207 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async + + 2026-04-13 02:51:23.218 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:51:23.252 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046303424] Initialized trigger + + 2026-04-13 02:51:24.295 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:51:24.295 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:51:24.302 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:51:24.303 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:51:24.307 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046298944] Initialized trigger + + 2026-04-13 02:51:25.484 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046298944] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:51:25.484 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046303424] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:53:18.180 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046303264] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:53:18.185 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046302624] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + ' + url: http://127.0.0.1:8123/api/error_log +- request: + method: GET + url: http://127.0.0.1:8123/api/error_log + response: + status: 200 + headers: + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Type: application/octet-stream + Etag: '"18a5caf8d7909b21-7cfb"' + Last-Modified: Mon, 13 Apr 2026 02:53:19 GMT + Accept-Ranges: bytes + Content-Encoding: deflate + Transfer-Encoding: chunked + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '2026-04-13 02:13:01.093 INFO (MainThread) [homeassistant.setup] Setting + up system_log + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain + http took 0.02 seconds + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain + logger took 0.02 seconds + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain + system_log took 0.02 seconds + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setting up websocket_api + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain + websocket_api took 0.00 seconds + + 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setting up network + + 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setup of domain + network took 0.00 seconds + + 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.bootstrap] Setting + up stage labs: {''labs''}; already set up: {} + + Dependencies: {}; already set up: {} + + 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setting up labs + + 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setup of domain + labs took 0.00 seconds + + 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.bootstrap] Setting + up stage frontend: {''frontend''}; already set up: {} + + Dependencies: {''diagnostics'', ''device_automation'', ''lovelace'', ''api'', + ''file_upload'', ''config'', ''search'', ''repairs'', ''onboarding'', ''auth''}; + already set up: {''http'', ''websocket_api'', ''system_log''} + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up diagnostics + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain + diagnostics took 0.00 seconds + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up device_automation + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain + device_automation took 0.00 seconds + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up auth + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain + auth took 0.00 seconds + + 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up onboarding + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain + onboarding took 0.00 seconds + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up lovelace + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain + lovelace took 0.00 seconds + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up file_upload + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain + file_upload took 0.00 seconds + + 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up config + + 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain + config took 0.00 seconds + + 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setting up search + + 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain + search took 0.00 seconds + + 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setting up repairs + + 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain + repairs took 0.00 seconds + + 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setting up api + + 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setup of domain + api took 0.00 seconds + + 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setting up frontend + + 2026-04-13 02:13:01.120 INFO (MainThread) [homeassistant.setup] Setup of domain + frontend took 0.00 seconds + + 2026-04-13 02:13:01.120 INFO (MainThread) [homeassistant.bootstrap] Setting + up stage recorder: {''recorder''}; already set up: {} + + Dependencies: {}; already set up: {} + + 2026-04-13 02:13:01.121 INFO (MainThread) [homeassistant.setup] Setting up recorder + + 2026-04-13 02:13:01.122 INFO (MainThread) [homeassistant.components.http] Now + listening on port 8123 + + 2026-04-13 02:13:01.122 INFO (MainThread) [homeassistant.setup] Setup of domain + http took 0.00 seconds + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setup of domain + recorder took 0.11 seconds + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing + to set up in stage debugger: {''debugpy''} + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing + to set up in stage zeroconf: {''zeroconf''} + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing + to set up in stage 1: {''usb'', ''ssdp'', ''cloud'', ''bluetooth'', ''hassio'', + ''dhcp'', ''mqtt_eventstream''} + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Setting + up stage 2: {''history'', ''notify'', ''counter'', ''input_button'', ''weather'', + ''automation'', ''input_text'', ''input_select'', ''script'', ''tag'', ''brands'', + ''radio_browser'', ''person'', ''schedule'', ''zone'', ''application_credentials'', + ''scene'', ''input_boolean'', ''input_number'', ''trace'', ''system_health'', + ''sun'', ''backup'', ''hardware'', ''analytics'', ''logbook'', ''input_datetime'', + ''met'', ''timer''}; already set up: {''network'', ''http'', ''logger'', ''labs'', + ''frontend'', ''api''} + + Dependencies: {''blueprint'', ''image_upload''}; already set up: {''device_automation'', + ''recorder'', ''search'', ''repairs'', ''http'', ''api'', ''auth'', ''diagnostics'', + ''websocket_api'', ''lovelace'', ''file_upload'', ''config'', ''system_log'', + ''onboarding'', ''frontend''} + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setting up notify + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setup of domain + notify took 0.00 seconds + + 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setting up scene + + 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.components.scene] Setting + up homeassistant.scene + + 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setup of domain + scene took 0.00 seconds + + 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setting up history + + 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setup of domain + history took 0.00 seconds + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up trace + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain + trace took 0.00 seconds + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up system_health + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain + system_health took 0.00 seconds + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up blueprint + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain + blueprint took 0.00 seconds + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up automation + + 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain + automation took 0.00 seconds + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up backup + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up logbook + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setup of domain + logbook took 0.00 seconds + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up script + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setup of domain + script took 0.00 seconds + + 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up image_upload + + 2026-04-13 02:13:01.233 INFO (MainThread) [homeassistant.setup] Setup of domain + image_upload took 0.00 seconds + + 2026-04-13 02:13:01.233 INFO (MainThread) [homeassistant.setup] Setting up zone + + 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setup of domain + zone took 0.00 seconds + + 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setting up person + + 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setting up input_number + + 2026-04-13 02:13:01.235 INFO (MainThread) [homeassistant.setup] Setup of domain + input_number took 0.00 seconds + + 2026-04-13 02:13:01.235 INFO (MainThread) [homeassistant.setup] Setup of domain + person took 0.00 seconds + + 2026-04-13 02:13:01.236 INFO (MainThread) [homeassistant.setup] Setup of domain + backup took 0.00 seconds + + 2026-04-13 02:13:01.243 INFO (MainThread) [homeassistant.setup] Setting up weather + + 2026-04-13 02:13:01.243 INFO (MainThread) [homeassistant.setup] Setup of domain + weather took 0.00 seconds + + 2026-04-13 02:13:01.244 INFO (MainThread) [homeassistant.setup] Setting up counter + + 2026-04-13 02:13:01.245 INFO (MainThread) [homeassistant.setup] Setup of domain + counter took 0.00 seconds + + 2026-04-13 02:13:01.245 INFO (MainThread) [homeassistant.setup] Setting up input_button + + 2026-04-13 02:13:01.246 INFO (MainThread) [homeassistant.setup] Setup of domain + input_button took 0.00 seconds + + 2026-04-13 02:13:01.248 INFO (MainThread) [homeassistant.setup] Setting up sun + + 2026-04-13 02:13:01.248 INFO (MainThread) [homeassistant.setup] Setup of domain + sun took 0.00 seconds + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setting up binary_sensor + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setup of domain + binary_sensor took 0.00 seconds + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new binary_sensor.sun entity: binary_sensor.sun_solar_rising + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setting up sensor + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setup of domain + sensor took 0.00 seconds + + 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:13:01.255 INFO (MainThread) [homeassistant.setup] Setting up hardware + + 2026-04-13 02:13:01.267 INFO (MainThread) [homeassistant.setup] Setup of domain + hardware took 0.01 seconds + + 2026-04-13 02:13:01.267 INFO (MainThread) [homeassistant.setup] Setting up analytics + + 2026-04-13 02:13:01.268 INFO (MainThread) [homeassistant.setup] Setup of domain + analytics took 0.00 seconds + + 2026-04-13 02:13:01.269 INFO (MainThread) [homeassistant.setup] Setting up input_text + + 2026-04-13 02:13:01.269 INFO (MainThread) [homeassistant.setup] Setup of domain + input_text took 0.00 seconds + + 2026-04-13 02:13:01.271 INFO (MainThread) [homeassistant.setup] Setting up input_select + + 2026-04-13 02:13:01.272 INFO (MainThread) [homeassistant.setup] Setup of domain + input_select took 0.00 seconds + + 2026-04-13 02:13:01.273 INFO (MainThread) [homeassistant.setup] Setting up input_datetime + + 2026-04-13 02:13:01.274 INFO (MainThread) [homeassistant.setup] Setup of domain + input_datetime took 0.00 seconds + + 2026-04-13 02:13:01.275 INFO (MainThread) [homeassistant.setup] Setting up tag + + 2026-04-13 02:13:01.275 INFO (MainThread) [homeassistant.setup] Setup of domain + tag took 0.00 seconds + + 2026-04-13 02:13:01.283 INFO (MainThread) [homeassistant.setup] Setting up met + + 2026-04-13 02:13:01.283 INFO (MainThread) [homeassistant.setup] Setup of domain + met took 0.00 seconds + + 2026-04-13 02:13:01.285 INFO (MainThread) [homeassistant.setup] Setting up brands + + 2026-04-13 02:13:01.285 INFO (MainThread) [homeassistant.setup] Setup of domain + brands took 0.00 seconds + + 2026-04-13 02:13:01.331 INFO (MainThread) [homeassistant.setup] Setting up radio_browser + + 2026-04-13 02:13:01.331 INFO (MainThread) [homeassistant.setup] Setup of domain + radio_browser took 0.00 seconds + + 2026-04-13 02:13:01.333 INFO (MainThread) [homeassistant.setup] Setting up schedule + + 2026-04-13 02:13:01.334 INFO (MainThread) [homeassistant.setup] Setup of domain + schedule took 0.00 seconds + + 2026-04-13 02:13:01.334 INFO (MainThread) [homeassistant.setup] Setting up timer + + 2026-04-13 02:13:01.335 INFO (MainThread) [homeassistant.setup] Setup of domain + timer took 0.00 seconds + + 2026-04-13 02:13:01.336 INFO (MainThread) [homeassistant.setup] Setting up application_credentials + + 2026-04-13 02:13:01.337 INFO (MainThread) [homeassistant.setup] Setup of domain + application_credentials took 0.00 seconds + + 2026-04-13 02:13:01.337 INFO (MainThread) [homeassistant.setup] Setting up input_boolean + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_2 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_2 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_3 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_3 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_4 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_4 + + 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.setup] Setup of domain + input_boolean took 0.00 seconds + + 2026-04-13 02:13:01.876 INFO (MainThread) [homeassistant.components.weather] + Setting up met.weather + + 2026-04-13 02:13:01.935 INFO (MainThread) [homeassistant.bootstrap] Home Assistant + initialized in 1.63s + + 2026-04-13 02:13:01.935 INFO (MainThread) [homeassistant.core] Starting Home + Assistant 2026.3.1 + + 2026-04-13 02:13:01.944 INFO (MainThread) [homeassistant.setup] Setting up event + + 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.components.event] Setting + up backup.event + + 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new event.backup entity: event.backup_automatic_backup + + 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.components.sensor] + Setting up backup.sensor + + 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new sensor.backup entity: sensor.backup_backup_manager_state + + 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new sensor.backup entity: sensor.backup_next_scheduled_automatic_backup + + 2026-04-13 02:13:01.946 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new sensor.backup entity: sensor.backup_last_successful_automatic_backup + + 2026-04-13 02:13:01.946 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new sensor.backup entity: sensor.backup_last_attempted_automatic_backup + + 2026-04-13 02:13:23.954 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135819133024] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:13:23.959 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135807829344] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:13:24.403 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:13:24.404 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:13:24.409 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:13:24.409 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:13:24.434 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135808187712] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:13:24.437 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135845987200] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:13:24.491 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_5 + + 2026-04-13 02:13:24.499 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_5 + + 2026-04-13 02:13:24.504 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default + (172.18.0.3). Requested URL: ''/api/''. (niquests/3.18.5) + + 2026-04-13 02:13:24.509 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default + (172.18.0.3). Requested URL: ''/api/websocket''. (niquests/3.18.5) + + 2026-04-13 02:13:24.512 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default + (172.18.0.3). Requested URL: ''/api/websocket''. (niquests/3.18.5) + + 2026-04-13 02:13:24.521 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default + (172.18.0.3). Requested URL: ''/api/''. (niquests/3.18.5) + + 2026-04-13 02:13:24.573 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135808187712] Initialized trigger + + 2026-04-13 02:13:25.407 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:13:25.407 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:13:25.413 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:13:25.413 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:13:25.417 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135845987200] Initialized trigger + + 2026-04-13 02:13:26.389 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135845987200] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:13:26.389 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135808187712] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:28:02.416 INFO (MainThread) [homeassistant.components.analytics] + Submitted analytics to Home Assistant servers. Information submitted includes + {''uuid'': ''7b023d740661490db49ce807f6e76fdc'', ''version'': ''2026.3.1'', + ''installation_type'': ''Home Assistant Container'', ''certificate'': False, + ''integrations'': [''history'', ''notify'', ''weather'', ''counter'', ''http'', + ''logger'', ''input_text'', ''api'', ''tag'', ''radio_browser'', ''person'', + ''input_boolean'', ''input_number'', ''trace'', ''sun'', ''backup'', ''logbook'', + ''input_datetime'', ''met'', ''timer''], ''custom_integrations'': [], ''recorder'': + {''engine'': ''sqlite'', ''version'': }, + ''state_count'': 24, ''automation_count'': 0, ''integration_count'': 20, ''user_count'': + 1} + + 2026-04-13 02:43:47.640 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046289504] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:43:47.643 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046288384] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:43:47.722 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:43:47.723 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:43:47.729 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:43:47.729 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:43:47.747 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046270656] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:43:47.750 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046290144] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:43:47.791 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test + + 2026-04-13 02:43:47.798 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async + + 2026-04-13 02:43:47.810 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:43:47.845 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046270656] Initialized trigger + + 2026-04-13 02:43:48.398 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:43:48.398 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:43:48.403 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:43:48.403 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:43:48.406 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046290144] Initialized trigger + + 2026-04-13 02:43:49.492 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046290144] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:43:49.493 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046270656] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:47:33.433 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046267936] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:47:33.436 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046294944] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:47:33.519 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:47:33.520 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:47:33.524 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:47:33.524 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:47:33.539 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046267456] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:47:33.541 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046289984] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:47:33.573 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test + + 2026-04-13 02:47:33.578 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async + + 2026-04-13 02:47:33.591 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:47:33.599 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:47:33.600 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:47:33.600 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:47:33.635 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046267456] Initialized trigger + + 2026-04-13 02:47:34.079 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:47:34.079 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:47:34.084 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:47:34.084 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:47:34.088 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046289984] Initialized trigger + + 2026-04-13 02:47:35.366 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046289984] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:47:35.367 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046267456] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:50:58.891 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:50:58.959 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:51:06.013 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:51:06.075 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:51:23.053 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046297024] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:51:23.056 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046302784] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:51:23.145 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:51:23.145 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:51:23.149 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:51:23.150 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:51:23.167 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046303424] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:51:23.169 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046298944] An action which does not return responses can''t be called + with return_response=True + + 2026-04-13 02:51:23.202 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test + + 2026-04-13 02:51:23.207 INFO (MainThread) [homeassistant.helpers.entity_registry] + Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async + + 2026-04-13 02:51:23.218 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/''. (niquests/3.18.4) + + 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] + Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). + Requested URL: ''/api/websocket''. (niquests/3.18.4) + + 2026-04-13 02:51:23.252 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046303424] Initialized trigger + + 2026-04-13 02:51:24.295 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:51:24.295 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:51:24.302 INFO (MainThread) [homeassistant.components.binary_sensor] + Setting up sun.binary_sensor + + 2026-04-13 02:51:24.303 INFO (MainThread) [homeassistant.components.sensor] + Setting up sun.sensor + + 2026-04-13 02:51:24.307 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046298944] Initialized trigger + + 2026-04-13 02:51:25.484 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046298944] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:51:25.484 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046303424] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:53:18.180 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046303264] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + 2026-04-13 02:53:18.185 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] + [135135046302624] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: + Received error message during command phase: Invalid close code: 0 + + ' + url: http://127.0.0.1:8123/api/error_log +- request: + method: GET + url: http://127.0.0.1:8123/api/config + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '729' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"allowlist_external_dirs":["/config/www","/media"],"allowlist_external_urls":[],"components":["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"],"config_dir":"/config","config_source":"storage","country":"US","currency":"USD","debug":false,"elevation":1000,"external_url":null,"internal_url":null,"language":"en","latitude":52.3731339,"location_name":"Testing + Server","longitude":4.8903147,"radius":100,"recovery_mode":false,"safe_mode":false,"state":"RUNNING","time_zone":"America/Chicago","unit_system":{"length":"km","accumulated_precipitation":"mm","area":"m²","mass":"g","pressure":"Pa","temperature":"°C","volume":"L","wind_speed":"m/s"},"version":"2026.3.1","whitelist_external_dirs":["/config/www","/media"]}' + url: http://127.0.0.1:8123/api/config +- request: + method: GET + url: http://127.0.0.1:8123/api/config + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '729' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"allowlist_external_dirs":["/config/www","/media"],"allowlist_external_urls":[],"components":["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"],"config_dir":"/config","config_source":"storage","country":"US","currency":"USD","debug":false,"elevation":1000,"external_url":null,"internal_url":null,"language":"en","latitude":52.3731339,"location_name":"Testing + Server","longitude":4.8903147,"radius":100,"recovery_mode":false,"safe_mode":false,"state":"RUNNING","time_zone":"America/Chicago","unit_system":{"length":"km","accumulated_precipitation":"mm","area":"m²","mass":"g","pressure":"Pa","temperature":"°C","volume":"L","wind_speed":"m/s"},"version":"2026.3.1","whitelist_external_dirs":["/config/www","/media"]}' + url: http://127.0.0.1:8123/api/config +- request: + method: GET + url: http://127.0.0.1:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00 + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2392' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"state":"In the palm of your hand.","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T19:27:50.187008+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T19:27:50.188976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T20:14:17.952319+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:14:20.269589+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T20:18:41.651312+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:18:43.424823+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:18:43.428906+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T20:20:27.513300+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:20:29.305124+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:20:29.306983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T23:48:00.054460+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:48:02.242653+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T23:51:06.403505+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:51:08.473987+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:51:08.477615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T00:19:06.717604+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T00:19:08.348669+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T00:19:08.352685+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T01:06:39.111375+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T01:06:41.197900+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T01:06:41.201386+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T06:08:39.026829+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:08:41.393630+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:08:41.395869+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T06:23:31.832858+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:23:33.196752+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:23:33.198606+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T06:52:43.940264+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:52:45.149824+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:52:45.152541+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T06:57:15.492065+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:57:17.136735+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:57:17.139877+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:16:08.844623+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:16:10.271126+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:16:10.274221+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:37:19.623575+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:37:21.474646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:37:21.476533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:38:23.966380+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:38:26.295291+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:38:26.297879+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:39:01.044672+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:39:03.208646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:39:03.210405+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:47:41.508301+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:47:42.121232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:47:42.128741+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:48:32.383700+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:48:33.258806+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:48:33.262264+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:49:22.252691+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:49:24.220764+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:49:24.227974+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T08:00:08.826242+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:10.381140+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:10.385764+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T08:00:52.364084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:54.489108+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:54.490797+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T16:18:23.396544+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T16:18:25.448757+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T16:18:25.451976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T04:07:27.922734+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:07:30.085084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:07:30.086615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T04:27:27.788795+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:27:29.407685+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:27:29.410545+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T04:29:59.193835+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:30:01.306462+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:30:01.308306+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T05:10:54.152667+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T05:10:56.421533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T05:10:56.423317+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:05:06.745290+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:05:08.326324+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:05:08.332050+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:21:38.409103+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:21:40.436201+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:21:40.438976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:22.773549+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:22.776296+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:54.008615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:54.010983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:39:00.615373+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:39:02.101278+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:39:02.104138+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:40:22.131490+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:24.408285+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:24.410113+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:40:57.312395+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:59.453163+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:59.454845+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:42:28.669154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:42:30.311707+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:42:30.313646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T08:04:31.460098+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:04:33.148836+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:04:33.156597+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T08:09:46.852056+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:09:48.343104+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:09:48.344710+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T20:11:46.403813+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:11:48.348486+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:11:48.350154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T20:18:22.305984+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:18:24.488311+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:18:24.492535+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-03T03:28:03.377257+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:28:05.492697+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:28:05.494309+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-03T03:29:32.176801+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:41:47.150987+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:41:47.152934+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-03T03:47:01.293257+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:47:03.271756+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:47:03.274717+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-05T00:42:55.928882+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:42:57.253045+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:42:57.255084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-05T00:43:35.727279+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:43:37.465382+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:43:37.469311+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-05T03:38:00.874260+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:38:02.077616+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:38:02.079600+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-05T03:49:24.133682+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:49:26.296678+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:49:26.298983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T06:57:00.262568+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T06:57:00.265797+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:02:10.770833+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:02:11.513315+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:02:11.516677+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:05:57.223587+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:05:57.966241+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:05:57.969502+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:09:51.891525+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:09:52.657550+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:09:52.660772+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:18:37.650155+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:18:39.344208+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:18:39.349195+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:19:11.303211+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:13.228810+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:13.233539+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:19:29.117210+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:29.482204+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:29.484149+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:30:59.574324+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:31:01.402084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:31:01.404785+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:36:47.076982+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:36:49.411149+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:36:49.420321+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:11:23.520470+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:11:23.524980+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-09T06:12:16.812464+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:12:18.258279+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:12:18.265813+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T16:55:41.110963+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T16:55:41.119621+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T17:19:22.358232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T17:19:24.477027+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T17:19:24.480650+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T19:59:32.543524+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T19:59:34.106033+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T19:59:34.114379+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T20:00:38.304081+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:00:40.452651+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:00:40.456491+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T20:12:20.215130+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:12:22.485769+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:12:22.488968+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:13:22.126108+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:13:22.129912+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T20:14:24.748612+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:14:26.151747+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:14:26.157637+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T21:53:31.380533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T21:53:33.198160+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T21:53:33.202674+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T22:09:48.532848+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:09:50.235887+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:09:50.238504+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T22:49:52.990232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:49:55.304099+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:49:55.306463+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:07:35.095384+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:07:37.123731+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:07:37.127154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:13:26.326392+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:13:26.329639+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:43:47.778724+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:43:49.457976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:43:49.460006+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:47:33.561670+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:47:35.331567+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:47:35.333591+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:50:58.591940+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:50:59.336033+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:50:59.338197+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:51:05.718969+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:06.453867+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:06.456042+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:51:23.190762+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:25.433029+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:25.437129+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}]' + url: http://127.0.0.1:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00 +- request: + method: GET + url: http://127.0.0.1:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00 + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2392' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"state":"In the palm of your hand.","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T19:27:50.187008+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T19:27:50.188976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T20:14:17.952319+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:14:20.269589+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T20:18:41.651312+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:18:43.424823+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:18:43.428906+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T20:20:27.513300+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:20:29.305124+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:20:29.306983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T23:48:00.054460+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:48:02.242653+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-30T23:51:06.403505+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:51:08.473987+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:51:08.477615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T00:19:06.717604+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T00:19:08.348669+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T00:19:08.352685+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T01:06:39.111375+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T01:06:41.197900+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T01:06:41.201386+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T06:08:39.026829+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:08:41.393630+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:08:41.395869+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T06:23:31.832858+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:23:33.196752+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:23:33.198606+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T06:52:43.940264+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:52:45.149824+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:52:45.152541+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T06:57:15.492065+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:57:17.136735+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:57:17.139877+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:16:08.844623+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:16:10.271126+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:16:10.274221+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:37:19.623575+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:37:21.474646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:37:21.476533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:38:23.966380+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:38:26.295291+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:38:26.297879+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:39:01.044672+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:39:03.208646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:39:03.210405+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:47:41.508301+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:47:42.121232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:47:42.128741+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:48:32.383700+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:48:33.258806+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:48:33.262264+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T07:49:22.252691+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:49:24.220764+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:49:24.227974+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T08:00:08.826242+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:10.381140+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:10.385764+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T08:00:52.364084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:54.489108+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:54.490797+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-03-31T16:18:23.396544+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T16:18:25.448757+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T16:18:25.451976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T04:07:27.922734+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:07:30.085084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:07:30.086615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T04:27:27.788795+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:27:29.407685+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:27:29.410545+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T04:29:59.193835+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:30:01.306462+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:30:01.308306+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T05:10:54.152667+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T05:10:56.421533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T05:10:56.423317+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:05:06.745290+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:05:08.326324+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:05:08.332050+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:21:38.409103+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:21:40.436201+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:21:40.438976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:22.773549+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:22.776296+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:54.008615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:54.010983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:39:00.615373+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:39:02.101278+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:39:02.104138+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:40:22.131490+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:24.408285+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:24.410113+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:40:57.312395+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:59.453163+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:59.454845+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T06:42:28.669154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:42:30.311707+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:42:30.313646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T08:04:31.460098+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:04:33.148836+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:04:33.156597+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T08:09:46.852056+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:09:48.343104+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:09:48.344710+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T20:11:46.403813+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:11:48.348486+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:11:48.350154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-01T20:18:22.305984+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:18:24.488311+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:18:24.492535+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-03T03:28:03.377257+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:28:05.492697+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:28:05.494309+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-03T03:29:32.176801+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:41:47.150987+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:41:47.152934+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-03T03:47:01.293257+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:47:03.271756+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:47:03.274717+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-05T00:42:55.928882+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:42:57.253045+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:42:57.255084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-05T00:43:35.727279+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:43:37.465382+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:43:37.469311+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-05T03:38:00.874260+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:38:02.077616+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:38:02.079600+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-05T03:49:24.133682+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:49:26.296678+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:49:26.298983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T06:57:00.262568+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T06:57:00.265797+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:02:10.770833+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:02:11.513315+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:02:11.516677+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:05:57.223587+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:05:57.966241+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:05:57.969502+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:09:51.891525+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:09:52.657550+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:09:52.660772+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:18:37.650155+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:18:39.344208+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:18:39.349195+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:19:11.303211+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:13.228810+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:13.233539+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:19:29.117210+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:29.482204+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:29.484149+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:30:59.574324+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:31:01.402084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:31:01.404785+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-07T07:36:47.076982+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:36:49.411149+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:36:49.420321+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:11:23.520470+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:11:23.524980+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-09T06:12:16.812464+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:12:18.258279+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:12:18.265813+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T16:55:41.110963+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T16:55:41.119621+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T17:19:22.358232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T17:19:24.477027+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T17:19:24.480650+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T19:59:32.543524+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T19:59:34.106033+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T19:59:34.114379+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T20:00:38.304081+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:00:40.452651+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:00:40.456491+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T20:12:20.215130+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:12:22.485769+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:12:22.488968+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:13:22.126108+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:13:22.129912+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T20:14:24.748612+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:14:26.151747+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:14:26.157637+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T21:53:31.380533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T21:53:33.198160+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T21:53:33.202674+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T22:09:48.532848+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:09:50.235887+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:09:50.238504+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-12T22:49:52.990232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:49:55.304099+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:49:55.306463+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:07:35.095384+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:07:37.123731+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:07:37.127154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:13:26.326392+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:13:26.329639+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:43:47.778724+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:43:49.457976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:43:49.460006+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:47:33.561670+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:47:35.331567+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:47:35.333591+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:50:58.591940+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:50:59.336033+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:50:59.338197+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:51:05.718969+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:06.453867+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:06.456042+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red + sun","when":"2026-04-13T02:51:23.190762+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:25.433029+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In + the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:25.437129+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}]' + url: http://127.0.0.1:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00 +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '639' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/sun.sun +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '639' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/sun.sun +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '639' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/sun.sun +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '639' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/sun.sun +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '639' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/sun.sun +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '639' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/sun.sun +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '639' + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:19.306659+00:00","last_reported":"2026-04-13T02:53:19.306659+00:00","last_updated":"2026-04-13T02:53:19.306659+00:00","context":{"id":"01KP2C3ZJA54Z1BEWJT01D1HJG","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/sun.sun +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '639' + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:19.306659+00:00","last_reported":"2026-04-13T02:53:19.306659+00:00","last_updated":"2026-04-13T02:53:19.306659+00:00","context":{"id":"01KP2C3ZJA54Z1BEWJT01D1HJG","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/sun.sun +- request: + method: GET + url: http://127.0.0.1:8123/api/history/period/2020-01-01T00:00:00+00:00?filter_entity_id=sun.sun&end_time=2030-01-01T00%3A00%3A01%2B00%3A00&significant_changes_only + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '8017' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[[{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T19:27:40.353829+00:00","last_updated":"2026-03-30T19:27:40.353829+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T19:27:48.290087+00:00","last_updated":"2026-03-30T19:27:48.290087+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T19:27:48.292749+00:00","last_updated":"2026-03-30T19:27:48.292749+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T19:27:48.296218+00:00","last_updated":"2026-03-30T19:27:48.296218+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T19:27:48.298479+00:00","last_updated":"2026-03-30T19:27:48.298479+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T19:27:49.209155+00:00","last_updated":"2026-03-30T19:27:49.209155+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T19:27:49.211565+00:00","last_updated":"2026-03-30T19:27:49.211565+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T19:27:49.216016+00:00","last_updated":"2026-03-30T19:27:49.216016+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T19:27:49.217914+00:00","last_updated":"2026-03-30T19:27:49.217914+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:14:17.824344+00:00","last_updated":"2026-03-30T20:14:17.824344+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:14:17.826179+00:00","last_updated":"2026-03-30T20:14:17.826179+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:14:17.829201+00:00","last_updated":"2026-03-30T20:14:17.829201+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:14:17.830984+00:00","last_updated":"2026-03-30T20:14:17.830984+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:14:19.095210+00:00","last_updated":"2026-03-30T20:14:19.095210+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:14:19.101483+00:00","last_updated":"2026-03-30T20:14:19.101483+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:14:19.114091+00:00","last_updated":"2026-03-30T20:14:19.114091+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:14:19.121051+00:00","last_updated":"2026-03-30T20:14:19.121051+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:18:41.545737+00:00","last_updated":"2026-03-30T20:18:41.545737+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:18:41.547920+00:00","last_updated":"2026-03-30T20:18:41.547920+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:18:41.551002+00:00","last_updated":"2026-03-30T20:18:41.551002+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:18:41.552909+00:00","last_updated":"2026-03-30T20:18:41.552909+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:18:42.491323+00:00","last_updated":"2026-03-30T20:18:42.491323+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:18:42.495904+00:00","last_updated":"2026-03-30T20:18:42.495904+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:18:42.501754+00:00","last_updated":"2026-03-30T20:18:42.501754+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:18:42.504375+00:00","last_updated":"2026-03-30T20:18:42.504375+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:20:27.422104+00:00","last_updated":"2026-03-30T20:20:27.422104+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:20:27.424151+00:00","last_updated":"2026-03-30T20:20:27.424151+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:20:27.426788+00:00","last_updated":"2026-03-30T20:20:27.426788+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:20:27.428507+00:00","last_updated":"2026-03-30T20:20:27.428507+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:20:28.079990+00:00","last_updated":"2026-03-30T20:20:28.079990+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:20:28.088989+00:00","last_updated":"2026-03-30T20:20:28.088989+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:20:28.103212+00:00","last_updated":"2026-03-30T20:20:28.103212+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:20:28.110267+00:00","last_updated":"2026-03-30T20:20:28.110267+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:47:59.969292+00:00","last_updated":"2026-03-30T23:47:59.969292+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:47:59.971066+00:00","last_updated":"2026-03-30T23:47:59.971066+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:47:59.973570+00:00","last_updated":"2026-03-30T23:47:59.973570+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:47:59.975265+00:00","last_updated":"2026-03-30T23:47:59.975265+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:48:01.282335+00:00","last_updated":"2026-03-30T23:48:01.282335+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:48:01.288195+00:00","last_updated":"2026-03-30T23:48:01.288195+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:48:01.298126+00:00","last_updated":"2026-03-30T23:48:01.298126+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:48:01.301592+00:00","last_updated":"2026-03-30T23:48:01.301592+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:51:06.354553+00:00","last_updated":"2026-03-30T23:51:06.354553+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:51:06.356342+00:00","last_updated":"2026-03-30T23:51:06.356342+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:51:06.358963+00:00","last_updated":"2026-03-30T23:51:06.358963+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:51:06.360637+00:00","last_updated":"2026-03-30T23:51:06.360637+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:51:07.063104+00:00","last_updated":"2026-03-30T23:51:07.063104+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:51:07.073602+00:00","last_updated":"2026-03-30T23:51:07.073602+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:51:07.084636+00:00","last_updated":"2026-03-30T23:51:07.084636+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:51:07.087917+00:00","last_updated":"2026-03-30T23:51:07.087917+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T00:19:06.672240+00:00","last_updated":"2026-03-31T00:19:06.672240+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T00:19:06.673981+00:00","last_updated":"2026-03-31T00:19:06.673981+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T00:19:06.676727+00:00","last_updated":"2026-03-31T00:19:06.676727+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T00:19:06.678275+00:00","last_updated":"2026-03-31T00:19:06.678275+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T00:19:07.273545+00:00","last_updated":"2026-03-31T00:19:07.273545+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T00:19:07.281550+00:00","last_updated":"2026-03-31T00:19:07.281550+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T00:19:07.297864+00:00","last_updated":"2026-03-31T00:19:07.297864+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T00:19:07.305609+00:00","last_updated":"2026-03-31T00:19:07.305609+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T01:06:39.067711+00:00","last_updated":"2026-03-31T01:06:39.067711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T01:06:39.069669+00:00","last_updated":"2026-03-31T01:06:39.069669+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T01:06:39.072478+00:00","last_updated":"2026-03-31T01:06:39.072478+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T01:06:39.073924+00:00","last_updated":"2026-03-31T01:06:39.073924+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T01:06:40.106386+00:00","last_updated":"2026-03-31T01:06:40.106386+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T01:06:40.115899+00:00","last_updated":"2026-03-31T01:06:40.115899+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T01:06:40.125591+00:00","last_updated":"2026-03-31T01:06:40.125591+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T01:06:40.130075+00:00","last_updated":"2026-03-31T01:06:40.130075+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T05:16:48.025090+00:00","last_updated":"2026-03-31T05:16:48.025090+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:08:38.975112+00:00","last_updated":"2026-03-31T06:08:38.975112+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:08:38.977238+00:00","last_updated":"2026-03-31T06:08:38.977238+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:08:38.980411+00:00","last_updated":"2026-03-31T06:08:38.980411+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:08:38.982354+00:00","last_updated":"2026-03-31T06:08:38.982354+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:08:40.079722+00:00","last_updated":"2026-03-31T06:08:40.079722+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:08:40.090985+00:00","last_updated":"2026-03-31T06:08:40.090985+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:08:40.099005+00:00","last_updated":"2026-03-31T06:08:40.099005+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:08:40.101268+00:00","last_updated":"2026-03-31T06:08:40.101268+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:23:31.782099+00:00","last_updated":"2026-03-31T06:23:31.782099+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:23:31.784075+00:00","last_updated":"2026-03-31T06:23:31.784075+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:23:31.787232+00:00","last_updated":"2026-03-31T06:23:31.787232+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:23:31.789220+00:00","last_updated":"2026-03-31T06:23:31.789220+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:23:32.096002+00:00","last_updated":"2026-03-31T06:23:32.096002+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:23:32.106626+00:00","last_updated":"2026-03-31T06:23:32.106626+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:23:32.127274+00:00","last_updated":"2026-03-31T06:23:32.127274+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:23:32.133912+00:00","last_updated":"2026-03-31T06:23:32.133912+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:52:43.894076+00:00","last_updated":"2026-03-31T06:52:43.894076+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:52:43.895940+00:00","last_updated":"2026-03-31T06:52:43.895940+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:52:43.898646+00:00","last_updated":"2026-03-31T06:52:43.898646+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:52:43.900151+00:00","last_updated":"2026-03-31T06:52:43.900151+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:52:44.362143+00:00","last_updated":"2026-03-31T06:52:44.362143+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:52:44.373987+00:00","last_updated":"2026-03-31T06:52:44.373987+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:52:44.383253+00:00","last_updated":"2026-03-31T06:52:44.383253+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:52:44.387291+00:00","last_updated":"2026-03-31T06:52:44.387291+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:57:15.439435+00:00","last_updated":"2026-03-31T06:57:15.439435+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:57:15.441371+00:00","last_updated":"2026-03-31T06:57:15.441371+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:57:15.444808+00:00","last_updated":"2026-03-31T06:57:15.444808+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:57:15.446704+00:00","last_updated":"2026-03-31T06:57:15.446704+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:57:16.207577+00:00","last_updated":"2026-03-31T06:57:16.207577+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:57:16.217375+00:00","last_updated":"2026-03-31T06:57:16.217375+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:57:16.225367+00:00","last_updated":"2026-03-31T06:57:16.225367+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:57:16.231247+00:00","last_updated":"2026-03-31T06:57:16.231247+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:16:08.792299+00:00","last_updated":"2026-03-31T07:16:08.792299+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:16:08.794433+00:00","last_updated":"2026-03-31T07:16:08.794433+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:16:08.797719+00:00","last_updated":"2026-03-31T07:16:08.797719+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:16:08.799534+00:00","last_updated":"2026-03-31T07:16:08.799534+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:16:09.474304+00:00","last_updated":"2026-03-31T07:16:09.474304+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:16:09.484054+00:00","last_updated":"2026-03-31T07:16:09.484054+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:16:09.498644+00:00","last_updated":"2026-03-31T07:16:09.498644+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:16:09.501654+00:00","last_updated":"2026-03-31T07:16:09.501654+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:37:19.574215+00:00","last_updated":"2026-03-31T07:37:19.574215+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:37:19.576163+00:00","last_updated":"2026-03-31T07:37:19.576163+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:37:19.579011+00:00","last_updated":"2026-03-31T07:37:19.579011+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:37:19.580670+00:00","last_updated":"2026-03-31T07:37:19.580670+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:37:20.393973+00:00","last_updated":"2026-03-31T07:37:20.393973+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:37:20.400818+00:00","last_updated":"2026-03-31T07:37:20.400818+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:37:20.414024+00:00","last_updated":"2026-03-31T07:37:20.414024+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:37:20.417896+00:00","last_updated":"2026-03-31T07:37:20.417896+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:38:23.910821+00:00","last_updated":"2026-03-31T07:38:23.910821+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:38:23.913002+00:00","last_updated":"2026-03-31T07:38:23.913002+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:38:23.916499+00:00","last_updated":"2026-03-31T07:38:23.916499+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:38:23.918216+00:00","last_updated":"2026-03-31T07:38:23.918216+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:38:25.085946+00:00","last_updated":"2026-03-31T07:38:25.085946+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:38:25.092692+00:00","last_updated":"2026-03-31T07:38:25.092692+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:38:25.101776+00:00","last_updated":"2026-03-31T07:38:25.101776+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:38:25.104389+00:00","last_updated":"2026-03-31T07:38:25.104389+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:39:00.992624+00:00","last_updated":"2026-03-31T07:39:00.992624+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:39:00.994377+00:00","last_updated":"2026-03-31T07:39:00.994377+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:39:00.997338+00:00","last_updated":"2026-03-31T07:39:00.997338+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:39:00.998882+00:00","last_updated":"2026-03-31T07:39:00.998882+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:39:02.249183+00:00","last_updated":"2026-03-31T07:39:02.249183+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:39:02.255087+00:00","last_updated":"2026-03-31T07:39:02.255087+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:39:02.266466+00:00","last_updated":"2026-03-31T07:39:02.266466+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:39:02.269211+00:00","last_updated":"2026-03-31T07:39:02.269211+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:47:41.461427+00:00","last_updated":"2026-03-31T07:47:41.461427+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:47:41.463433+00:00","last_updated":"2026-03-31T07:47:41.463433+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:47:41.466439+00:00","last_updated":"2026-03-31T07:47:41.466439+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:47:41.468213+00:00","last_updated":"2026-03-31T07:47:41.468213+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:47:41.571800+00:00","last_updated":"2026-03-31T07:47:41.571800+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:47:41.573781+00:00","last_updated":"2026-03-31T07:47:41.573781+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:47:41.577332+00:00","last_updated":"2026-03-31T07:47:41.577332+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:47:41.579181+00:00","last_updated":"2026-03-31T07:47:41.579181+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:48:32.334214+00:00","last_updated":"2026-03-31T07:48:32.334214+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:48:32.336047+00:00","last_updated":"2026-03-31T07:48:32.336047+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:48:32.338834+00:00","last_updated":"2026-03-31T07:48:32.338834+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:48:32.340830+00:00","last_updated":"2026-03-31T07:48:32.340830+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:48:32.441515+00:00","last_updated":"2026-03-31T07:48:32.441515+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:48:32.443764+00:00","last_updated":"2026-03-31T07:48:32.443764+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:48:32.447773+00:00","last_updated":"2026-03-31T07:48:32.447773+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:48:32.449476+00:00","last_updated":"2026-03-31T07:48:32.449476+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:49:22.204307+00:00","last_updated":"2026-03-31T07:49:22.204307+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:49:22.206065+00:00","last_updated":"2026-03-31T07:49:22.206065+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:49:22.208891+00:00","last_updated":"2026-03-31T07:49:22.208891+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:49:22.210546+00:00","last_updated":"2026-03-31T07:49:22.210546+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:49:23.195106+00:00","last_updated":"2026-03-31T07:49:23.195106+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:49:23.207187+00:00","last_updated":"2026-03-31T07:49:23.207187+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:49:23.216744+00:00","last_updated":"2026-03-31T07:49:23.216744+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:49:23.219191+00:00","last_updated":"2026-03-31T07:49:23.219191+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:08.778323+00:00","last_updated":"2026-03-31T08:00:08.778323+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:08.780598+00:00","last_updated":"2026-03-31T08:00:08.780598+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:08.783757+00:00","last_updated":"2026-03-31T08:00:08.783757+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:08.785286+00:00","last_updated":"2026-03-31T08:00:08.785286+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:09.165863+00:00","last_updated":"2026-03-31T08:00:09.165863+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:09.175870+00:00","last_updated":"2026-03-31T08:00:09.175870+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:09.188334+00:00","last_updated":"2026-03-31T08:00:09.188334+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:09.193151+00:00","last_updated":"2026-03-31T08:00:09.193151+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:52.317484+00:00","last_updated":"2026-03-31T08:00:52.317484+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:52.319379+00:00","last_updated":"2026-03-31T08:00:52.319379+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:52.322342+00:00","last_updated":"2026-03-31T08:00:52.322342+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:52.323976+00:00","last_updated":"2026-03-31T08:00:52.323976+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:53.293668+00:00","last_updated":"2026-03-31T08:00:53.293668+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:53.303213+00:00","last_updated":"2026-03-31T08:00:53.303213+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:53.316506+00:00","last_updated":"2026-03-31T08:00:53.316506+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:53.319419+00:00","last_updated":"2026-03-31T08:00:53.319419+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T16:18:23.318807+00:00","last_updated":"2026-03-31T16:18:23.318807+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T16:18:23.321467+00:00","last_updated":"2026-03-31T16:18:23.321467+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T16:18:23.325769+00:00","last_updated":"2026-03-31T16:18:23.325769+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T16:18:23.328132+00:00","last_updated":"2026-03-31T16:18:23.328132+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T16:18:24.504741+00:00","last_updated":"2026-03-31T16:18:24.504741+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T16:18:24.507261+00:00","last_updated":"2026-03-31T16:18:24.507261+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T16:18:24.510971+00:00","last_updated":"2026-03-31T16:18:24.510971+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T16:18:24.512552+00:00","last_updated":"2026-03-31T16:18:24.512552+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T18:14:50.158665+00:00","last_updated":"2026-03-31T18:14:50.158665+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:07:27.826406+00:00","last_updated":"2026-04-01T04:07:27.826406+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:07:27.829295+00:00","last_updated":"2026-04-01T04:07:27.829295+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:07:27.842366+00:00","last_updated":"2026-04-01T04:07:27.842366+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:07:27.847840+00:00","last_updated":"2026-04-01T04:07:27.847840+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:07:29.412544+00:00","last_updated":"2026-04-01T04:07:29.412544+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:07:29.414516+00:00","last_updated":"2026-04-01T04:07:29.414516+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:07:29.417509+00:00","last_updated":"2026-04-01T04:07:29.417509+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:07:29.419691+00:00","last_updated":"2026-04-01T04:07:29.419691+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:27:27.618239+00:00","last_updated":"2026-04-01T04:27:27.618239+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:27:27.731729+00:00","last_updated":"2026-04-01T04:27:27.731729+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:27:27.737711+00:00","last_updated":"2026-04-01T04:27:27.737711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:27:27.739861+00:00","last_updated":"2026-04-01T04:27:27.739861+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:27:28.410854+00:00","last_updated":"2026-04-01T04:27:28.410854+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:27:28.413109+00:00","last_updated":"2026-04-01T04:27:28.413109+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:27:28.416334+00:00","last_updated":"2026-04-01T04:27:28.416334+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:27:28.417992+00:00","last_updated":"2026-04-01T04:27:28.417992+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:29:59.130678+00:00","last_updated":"2026-04-01T04:29:59.130678+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:29:59.132640+00:00","last_updated":"2026-04-01T04:29:59.132640+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:29:59.138228+00:00","last_updated":"2026-04-01T04:29:59.138228+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:29:59.140699+00:00","last_updated":"2026-04-01T04:29:59.140699+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:30:00.418760+00:00","last_updated":"2026-04-01T04:30:00.418760+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:30:00.421037+00:00","last_updated":"2026-04-01T04:30:00.421037+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:30:00.425693+00:00","last_updated":"2026-04-01T04:30:00.425693+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:30:00.427370+00:00","last_updated":"2026-04-01T04:30:00.427370+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T05:10:54.084994+00:00","last_updated":"2026-04-01T05:10:54.084994+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T05:10:54.087400+00:00","last_updated":"2026-04-01T05:10:54.087400+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T05:10:54.091612+00:00","last_updated":"2026-04-01T05:10:54.091612+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T05:10:54.093909+00:00","last_updated":"2026-04-01T05:10:54.093909+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T05:10:55.495018+00:00","last_updated":"2026-04-01T05:10:55.495018+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T05:10:55.496944+00:00","last_updated":"2026-04-01T05:10:55.496944+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T05:10:55.500202+00:00","last_updated":"2026-04-01T05:10:55.500202+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T05:10:55.502406+00:00","last_updated":"2026-04-01T05:10:55.502406+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T05:14:55.505460+00:00","last_updated":"2026-04-01T05:14:55.505460+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:05:06.677041+00:00","last_updated":"2026-04-01T06:05:06.677041+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:05:06.679289+00:00","last_updated":"2026-04-01T06:05:06.679289+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:05:06.682555+00:00","last_updated":"2026-04-01T06:05:06.682555+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:05:06.684932+00:00","last_updated":"2026-04-01T06:05:06.684932+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:05:07.304414+00:00","last_updated":"2026-04-01T06:05:07.304414+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:05:07.306131+00:00","last_updated":"2026-04-01T06:05:07.306131+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:05:07.308970+00:00","last_updated":"2026-04-01T06:05:07.308970+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:05:07.310350+00:00","last_updated":"2026-04-01T06:05:07.310350+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:21:38.342940+00:00","last_updated":"2026-04-01T06:21:38.342940+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:21:38.345667+00:00","last_updated":"2026-04-01T06:21:38.345667+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:21:38.350476+00:00","last_updated":"2026-04-01T06:21:38.350476+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:21:38.353287+00:00","last_updated":"2026-04-01T06:21:38.353287+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:21:39.092660+00:00","last_updated":"2026-04-01T06:21:39.092660+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:21:39.095831+00:00","last_updated":"2026-04-01T06:21:39.095831+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:21:39.100971+00:00","last_updated":"2026-04-01T06:21:39.100971+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:21:39.102639+00:00","last_updated":"2026-04-01T06:21:39.102639+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:39:00.551540+00:00","last_updated":"2026-04-01T06:39:00.551540+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:39:00.554372+00:00","last_updated":"2026-04-01T06:39:00.554372+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:39:00.557469+00:00","last_updated":"2026-04-01T06:39:00.557469+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:39:00.559346+00:00","last_updated":"2026-04-01T06:39:00.559346+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:39:01.197728+00:00","last_updated":"2026-04-01T06:39:01.197728+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:39:01.199993+00:00","last_updated":"2026-04-01T06:39:01.199993+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:39:01.203340+00:00","last_updated":"2026-04-01T06:39:01.203340+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:39:01.204890+00:00","last_updated":"2026-04-01T06:39:01.204890+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:22.058819+00:00","last_updated":"2026-04-01T06:40:22.058819+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:22.061453+00:00","last_updated":"2026-04-01T06:40:22.061453+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:22.065215+00:00","last_updated":"2026-04-01T06:40:22.065215+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:22.067142+00:00","last_updated":"2026-04-01T06:40:22.067142+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:23.446482+00:00","last_updated":"2026-04-01T06:40:23.446482+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:23.449088+00:00","last_updated":"2026-04-01T06:40:23.449088+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:23.453538+00:00","last_updated":"2026-04-01T06:40:23.453538+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:23.455879+00:00","last_updated":"2026-04-01T06:40:23.455879+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:57.240757+00:00","last_updated":"2026-04-01T06:40:57.240757+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:57.243328+00:00","last_updated":"2026-04-01T06:40:57.243328+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:57.246734+00:00","last_updated":"2026-04-01T06:40:57.246734+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:57.248325+00:00","last_updated":"2026-04-01T06:40:57.248325+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:58.470465+00:00","last_updated":"2026-04-01T06:40:58.470465+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:58.473243+00:00","last_updated":"2026-04-01T06:40:58.473243+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:58.476948+00:00","last_updated":"2026-04-01T06:40:58.476948+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:58.479183+00:00","last_updated":"2026-04-01T06:40:58.479183+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:42:28.604257+00:00","last_updated":"2026-04-01T06:42:28.604257+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:42:28.608298+00:00","last_updated":"2026-04-01T06:42:28.608298+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:42:28.613876+00:00","last_updated":"2026-04-01T06:42:28.613876+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:42:28.615704+00:00","last_updated":"2026-04-01T06:42:28.615704+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:42:29.301585+00:00","last_updated":"2026-04-01T06:42:29.301585+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:42:29.303315+00:00","last_updated":"2026-04-01T06:42:29.303315+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:42:29.307213+00:00","last_updated":"2026-04-01T06:42:29.307213+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:42:29.309176+00:00","last_updated":"2026-04-01T06:42:29.309176+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T07:48:52.650521+00:00","last_updated":"2026-04-01T07:48:52.650521+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T07:48:52.652305+00:00","last_updated":"2026-04-01T07:48:52.652305+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T07:48:52.656399+00:00","last_updated":"2026-04-01T07:48:52.656399+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T07:48:52.658254+00:00","last_updated":"2026-04-01T07:48:52.658254+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T07:52:19.775556+00:00","last_updated":"2026-04-01T07:52:19.775556+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T07:52:19.777028+00:00","last_updated":"2026-04-01T07:52:19.777028+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T07:52:19.782326+00:00","last_updated":"2026-04-01T07:52:19.782326+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T07:52:19.785055+00:00","last_updated":"2026-04-01T07:52:19.785055+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:01:53.594851+00:00","last_updated":"2026-04-01T08:01:53.594851+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:01:53.599109+00:00","last_updated":"2026-04-01T08:01:53.599109+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:01:53.613187+00:00","last_updated":"2026-04-01T08:01:53.613187+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:01:53.618975+00:00","last_updated":"2026-04-01T08:01:53.618975+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:03:07.503131+00:00","last_updated":"2026-04-01T08:03:07.503131+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:03:07.505165+00:00","last_updated":"2026-04-01T08:03:07.505165+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:03:07.509811+00:00","last_updated":"2026-04-01T08:03:07.509811+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:03:07.511999+00:00","last_updated":"2026-04-01T08:03:07.511999+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:04:31.316192+00:00","last_updated":"2026-04-01T08:04:31.316192+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:04:31.320536+00:00","last_updated":"2026-04-01T08:04:31.320536+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:04:31.325963+00:00","last_updated":"2026-04-01T08:04:31.325963+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:04:31.328010+00:00","last_updated":"2026-04-01T08:04:31.328010+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:04:32.272656+00:00","last_updated":"2026-04-01T08:04:32.272656+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:04:32.281021+00:00","last_updated":"2026-04-01T08:04:32.281021+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:04:32.298280+00:00","last_updated":"2026-04-01T08:04:32.298280+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:04:32.307347+00:00","last_updated":"2026-04-01T08:04:32.307347+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:46.793136+00:00","last_updated":"2026-04-01T08:09:46.793136+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:46.798095+00:00","last_updated":"2026-04-01T08:09:46.798095+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:46.803897+00:00","last_updated":"2026-04-01T08:09:46.803897+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:46.807675+00:00","last_updated":"2026-04-01T08:09:46.807675+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:47.478226+00:00","last_updated":"2026-04-01T08:09:47.478226+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:47.488296+00:00","last_updated":"2026-04-01T08:09:47.488296+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:47.500976+00:00","last_updated":"2026-04-01T08:09:47.500976+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:47.507899+00:00","last_updated":"2026-04-01T08:09:47.507899+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:55.143245+00:00","last_updated":"2026-04-01T08:09:55.143245+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:55.146719+00:00","last_updated":"2026-04-01T08:09:55.146719+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:55.152536+00:00","last_updated":"2026-04-01T08:09:55.152536+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:55.155356+00:00","last_updated":"2026-04-01T08:09:55.155356+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T18:16:32.849500+00:00","last_updated":"2026-04-01T18:16:32.849500+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:46.360164+00:00","last_updated":"2026-04-01T20:11:46.360164+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:46.361940+00:00","last_updated":"2026-04-01T20:11:46.361940+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:46.364510+00:00","last_updated":"2026-04-01T20:11:46.364510+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:46.366031+00:00","last_updated":"2026-04-01T20:11:46.366031+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:47.209649+00:00","last_updated":"2026-04-01T20:11:47.209649+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:47.223096+00:00","last_updated":"2026-04-01T20:11:47.223096+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:47.234063+00:00","last_updated":"2026-04-01T20:11:47.234063+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:47.245140+00:00","last_updated":"2026-04-01T20:11:47.245140+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:50.859251+00:00","last_updated":"2026-04-01T20:11:50.859251+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:50.860645+00:00","last_updated":"2026-04-01T20:11:50.860645+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:50.863545+00:00","last_updated":"2026-04-01T20:11:50.863545+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:50.864919+00:00","last_updated":"2026-04-01T20:11:50.864919+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:18:22.261569+00:00","last_updated":"2026-04-01T20:18:22.261569+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:18:22.263259+00:00","last_updated":"2026-04-01T20:18:22.263259+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:18:22.265963+00:00","last_updated":"2026-04-01T20:18:22.265963+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:18:22.267450+00:00","last_updated":"2026-04-01T20:18:22.267450+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:18:23.108421+00:00","last_updated":"2026-04-01T20:18:23.108421+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:18:23.110959+00:00","last_updated":"2026-04-01T20:18:23.110959+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:18:23.114415+00:00","last_updated":"2026-04-01T20:18:23.114415+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:18:23.115919+00:00","last_updated":"2026-04-01T20:18:23.115919+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:27:09.881792+00:00","last_updated":"2026-04-01T20:27:09.881792+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:27:09.884453+00:00","last_updated":"2026-04-01T20:27:09.884453+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:27:09.892252+00:00","last_updated":"2026-04-01T20:27:09.892252+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:27:09.896194+00:00","last_updated":"2026-04-01T20:27:09.896194+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:40:00.832470+00:00","last_updated":"2026-04-01T20:40:00.832470+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:40:00.834205+00:00","last_updated":"2026-04-01T20:40:00.834205+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:40:00.837336+00:00","last_updated":"2026-04-01T20:40:00.837336+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:40:00.838900+00:00","last_updated":"2026-04-01T20:40:00.838900+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-02T05:12:07.722893+00:00","last_updated":"2026-04-02T05:12:07.722893+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-02T18:18:15.184887+00:00","last_updated":"2026-04-02T18:18:15.184887+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:28:03.210491+00:00","last_updated":"2026-04-03T03:28:03.210491+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:28:03.212855+00:00","last_updated":"2026-04-03T03:28:03.212855+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:28:03.217245+00:00","last_updated":"2026-04-03T03:28:03.217245+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:28:03.219486+00:00","last_updated":"2026-04-03T03:28:03.219486+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:28:04.463708+00:00","last_updated":"2026-04-03T03:28:04.463708+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:28:04.465640+00:00","last_updated":"2026-04-03T03:28:04.465640+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:28:04.469420+00:00","last_updated":"2026-04-03T03:28:04.469420+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:28:04.470984+00:00","last_updated":"2026-04-03T03:28:04.470984+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:29:32.016026+00:00","last_updated":"2026-04-03T03:29:32.016026+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:29:32.018471+00:00","last_updated":"2026-04-03T03:29:32.018471+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:29:32.021702+00:00","last_updated":"2026-04-03T03:29:32.021702+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:29:32.023468+00:00","last_updated":"2026-04-03T03:29:32.023468+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:27.464673+00:00","last_updated":"2026-04-03T03:41:27.464673+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:27.466756+00:00","last_updated":"2026-04-03T03:41:27.466756+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:27.469846+00:00","last_updated":"2026-04-03T03:41:27.469846+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:27.471901+00:00","last_updated":"2026-04-03T03:41:27.471901+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:45.862297+00:00","last_updated":"2026-04-03T03:41:45.862297+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:45.864547+00:00","last_updated":"2026-04-03T03:41:45.864547+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:45.868306+00:00","last_updated":"2026-04-03T03:41:45.868306+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:45.870773+00:00","last_updated":"2026-04-03T03:41:45.870773+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:46.348316+00:00","last_updated":"2026-04-03T03:41:46.348316+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:46.349986+00:00","last_updated":"2026-04-03T03:41:46.349986+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:46.353109+00:00","last_updated":"2026-04-03T03:41:46.353109+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:46.354717+00:00","last_updated":"2026-04-03T03:41:46.354717+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:47:01.232644+00:00","last_updated":"2026-04-03T03:47:01.232644+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:47:01.235714+00:00","last_updated":"2026-04-03T03:47:01.235714+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:47:01.239685+00:00","last_updated":"2026-04-03T03:47:01.239685+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:47:01.241221+00:00","last_updated":"2026-04-03T03:47:01.241221+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:47:02.490523+00:00","last_updated":"2026-04-03T03:47:02.490523+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:47:02.492982+00:00","last_updated":"2026-04-03T03:47:02.492982+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:47:02.499558+00:00","last_updated":"2026-04-03T03:47:02.499558+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:47:02.501496+00:00","last_updated":"2026-04-03T03:47:02.501496+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T05:09:47.947397+00:00","last_updated":"2026-04-03T05:09:47.947397+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T18:21:56.947214+00:00","last_updated":"2026-04-03T18:21:56.947214+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-04T05:07:28.459574+00:00","last_updated":"2026-04-04T05:07:28.459574+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-04T18:23:38.287729+00:00","last_updated":"2026-04-04T18:23:38.287729+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:42:55.825678+00:00","last_updated":"2026-04-05T00:42:55.825678+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:42:55.827499+00:00","last_updated":"2026-04-05T00:42:55.827499+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:42:55.830418+00:00","last_updated":"2026-04-05T00:42:55.830418+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:42:55.833757+00:00","last_updated":"2026-04-05T00:42:55.833757+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:42:56.377152+00:00","last_updated":"2026-04-05T00:42:56.377152+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:42:56.382746+00:00","last_updated":"2026-04-05T00:42:56.382746+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:42:56.389357+00:00","last_updated":"2026-04-05T00:42:56.389357+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:42:56.393998+00:00","last_updated":"2026-04-05T00:42:56.393998+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:43:35.682695+00:00","last_updated":"2026-04-05T00:43:35.682695+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:43:35.684665+00:00","last_updated":"2026-04-05T00:43:35.684665+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:43:35.687558+00:00","last_updated":"2026-04-05T00:43:35.687558+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:43:35.689188+00:00","last_updated":"2026-04-05T00:43:35.689188+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:43:36.394291+00:00","last_updated":"2026-04-05T00:43:36.394291+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:43:36.396443+00:00","last_updated":"2026-04-05T00:43:36.396443+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:43:36.399662+00:00","last_updated":"2026-04-05T00:43:36.399662+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:43:36.401598+00:00","last_updated":"2026-04-05T00:43:36.401598+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:56:18.433945+00:00","last_updated":"2026-04-05T00:56:18.433945+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:56:18.441552+00:00","last_updated":"2026-04-05T00:56:18.441552+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:56:18.456850+00:00","last_updated":"2026-04-05T00:56:18.456850+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:56:18.463460+00:00","last_updated":"2026-04-05T00:56:18.463460+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:38:00.809478+00:00","last_updated":"2026-04-05T03:38:00.809478+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:38:00.812908+00:00","last_updated":"2026-04-05T03:38:00.812908+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:38:00.820958+00:00","last_updated":"2026-04-05T03:38:00.820958+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:38:00.823215+00:00","last_updated":"2026-04-05T03:38:00.823215+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:38:01.242531+00:00","last_updated":"2026-04-05T03:38:01.242531+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:38:01.244342+00:00","last_updated":"2026-04-05T03:38:01.244342+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:38:01.247846+00:00","last_updated":"2026-04-05T03:38:01.247846+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:38:01.249937+00:00","last_updated":"2026-04-05T03:38:01.249937+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:49:24.047959+00:00","last_updated":"2026-04-05T03:49:24.047959+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:49:24.050436+00:00","last_updated":"2026-04-05T03:49:24.050436+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:49:24.075097+00:00","last_updated":"2026-04-05T03:49:24.075097+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:49:24.077058+00:00","last_updated":"2026-04-05T03:49:24.077058+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:49:25.335453+00:00","last_updated":"2026-04-05T03:49:25.335453+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:49:25.337230+00:00","last_updated":"2026-04-05T03:49:25.337230+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:49:25.359644+00:00","last_updated":"2026-04-05T03:49:25.359644+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:49:25.364632+00:00","last_updated":"2026-04-05T03:49:25.364632+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T05:05:09.282330+00:00","last_updated":"2026-04-05T05:05:09.282330+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T18:25:19.091073+00:00","last_updated":"2026-04-05T18:25:19.091073+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T06:55:03.198995+00:00","last_updated":"2026-04-07T06:55:03.198995+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:18:37.602606+00:00","last_updated":"2026-04-07T07:18:37.602606+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:18:37.605257+00:00","last_updated":"2026-04-07T07:18:37.605257+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:18:37.608230+00:00","last_updated":"2026-04-07T07:18:37.608230+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:18:37.610167+00:00","last_updated":"2026-04-07T07:18:37.610167+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:18:38.400873+00:00","last_updated":"2026-04-07T07:18:38.400873+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:18:38.402933+00:00","last_updated":"2026-04-07T07:18:38.402933+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:18:38.416822+00:00","last_updated":"2026-04-07T07:18:38.416822+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:18:38.425937+00:00","last_updated":"2026-04-07T07:18:38.425937+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:19:11.262208+00:00","last_updated":"2026-04-07T07:19:11.262208+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:19:11.263941+00:00","last_updated":"2026-04-07T07:19:11.263941+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:19:11.266368+00:00","last_updated":"2026-04-07T07:19:11.266368+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:19:11.268234+00:00","last_updated":"2026-04-07T07:19:11.268234+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:19:12.226209+00:00","last_updated":"2026-04-07T07:19:12.226209+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:19:12.235126+00:00","last_updated":"2026-04-07T07:19:12.235126+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:19:12.242244+00:00","last_updated":"2026-04-07T07:19:12.242244+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:19:12.251347+00:00","last_updated":"2026-04-07T07:19:12.251347+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:30:59.526517+00:00","last_updated":"2026-04-07T07:30:59.526517+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:30:59.528166+00:00","last_updated":"2026-04-07T07:30:59.528166+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:30:59.530789+00:00","last_updated":"2026-04-07T07:30:59.530789+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:30:59.532307+00:00","last_updated":"2026-04-07T07:30:59.532307+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:31:00.358874+00:00","last_updated":"2026-04-07T07:31:00.358874+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:31:00.363967+00:00","last_updated":"2026-04-07T07:31:00.363967+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:31:00.369575+00:00","last_updated":"2026-04-07T07:31:00.369575+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:31:00.371264+00:00","last_updated":"2026-04-07T07:31:00.371264+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:36:47.013211+00:00","last_updated":"2026-04-07T07:36:47.013211+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:36:47.015137+00:00","last_updated":"2026-04-07T07:36:47.015137+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:36:47.018521+00:00","last_updated":"2026-04-07T07:36:47.018521+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:36:47.020194+00:00","last_updated":"2026-04-07T07:36:47.020194+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:36:48.363259+00:00","last_updated":"2026-04-07T07:36:48.363259+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:36:48.372581+00:00","last_updated":"2026-04-07T07:36:48.372581+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:36:48.392615+00:00","last_updated":"2026-04-07T07:36:48.392615+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:36:48.397353+00:00","last_updated":"2026-04-07T07:36:48.397353+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T18:28:39.433578+00:00","last_updated":"2026-04-07T18:28:39.433578+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-08T04:58:13.956939+00:00","last_updated":"2026-04-08T04:58:13.956939+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:11:13.273609+00:00","last_updated":"2026-04-09T06:11:13.273609+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:11:21.691439+00:00","last_updated":"2026-04-09T06:11:21.691439+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:11:21.693828+00:00","last_updated":"2026-04-09T06:11:21.693828+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:11:21.697431+00:00","last_updated":"2026-04-09T06:11:21.697431+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:11:21.699241+00:00","last_updated":"2026-04-09T06:11:21.699241+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:11:22.452752+00:00","last_updated":"2026-04-09T06:11:22.452752+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:11:22.461845+00:00","last_updated":"2026-04-09T06:11:22.461845+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:11:22.482137+00:00","last_updated":"2026-04-09T06:11:22.482137+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:11:22.487029+00:00","last_updated":"2026-04-09T06:11:22.487029+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:12:16.750139+00:00","last_updated":"2026-04-09T06:12:16.750139+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:12:16.751925+00:00","last_updated":"2026-04-09T06:12:16.751925+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:12:16.754874+00:00","last_updated":"2026-04-09T06:12:16.754874+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:12:16.756817+00:00","last_updated":"2026-04-09T06:12:16.756817+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:12:17.154931+00:00","last_updated":"2026-04-09T06:12:17.154931+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:12:17.162853+00:00","last_updated":"2026-04-09T06:12:17.162853+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:12:17.181298+00:00","last_updated":"2026-04-09T06:12:17.181298+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:12:17.190899+00:00","last_updated":"2026-04-09T06:12:17.190899+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T18:31:57.963000+00:00","last_updated":"2026-04-09T18:31:57.963000+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-10T04:53:39.245622+00:00","last_updated":"2026-04-10T04:53:39.245622+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:30.295367+00:00","last_updated":"2026-04-12T16:55:30.295367+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.905124+00:00","last_updated":"2026-04-12T16:55:38.905124+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.909797+00:00","last_updated":"2026-04-12T16:55:38.909797+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.914742+00:00","last_updated":"2026-04-12T16:55:38.914742+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.916826+00:00","last_updated":"2026-04-12T16:55:38.916826+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.140140+00:00","last_updated":"2026-04-12T16:55:40.140140+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.142125+00:00","last_updated":"2026-04-12T16:55:40.142125+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.146982+00:00","last_updated":"2026-04-12T16:55:40.146982+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.150118+00:00","last_updated":"2026-04-12T16:55:40.150118+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.278074+00:00","last_updated":"2026-04-12T17:19:22.278074+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.280331+00:00","last_updated":"2026-04-12T17:19:22.280331+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.284613+00:00","last_updated":"2026-04-12T17:19:22.284613+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.286764+00:00","last_updated":"2026-04-12T17:19:22.286764+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.195136+00:00","last_updated":"2026-04-12T17:19:23.195136+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.197078+00:00","last_updated":"2026-04-12T17:19:23.197078+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.200907+00:00","last_updated":"2026-04-12T17:19:23.200907+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.202677+00:00","last_updated":"2026-04-12T17:19:23.202677+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T18:36:52.438177+00:00","last_updated":"2026-04-12T18:36:52.438177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.474959+00:00","last_updated":"2026-04-12T19:59:32.474959+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.477394+00:00","last_updated":"2026-04-12T19:59:32.477394+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.481787+00:00","last_updated":"2026-04-12T19:59:32.481787+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.483929+00:00","last_updated":"2026-04-12T19:59:32.483929+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.228622+00:00","last_updated":"2026-04-12T19:59:33.228622+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.230875+00:00","last_updated":"2026-04-12T19:59:33.230875+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.235056+00:00","last_updated":"2026-04-12T19:59:33.235056+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.236850+00:00","last_updated":"2026-04-12T19:59:33.236850+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.219213+00:00","last_updated":"2026-04-12T20:00:38.219213+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.221401+00:00","last_updated":"2026-04-12T20:00:38.221401+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.225309+00:00","last_updated":"2026-04-12T20:00:38.225309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.227147+00:00","last_updated":"2026-04-12T20:00:38.227147+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.124540+00:00","last_updated":"2026-04-12T20:00:39.124540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.133407+00:00","last_updated":"2026-04-12T20:00:39.133407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.140792+00:00","last_updated":"2026-04-12T20:00:39.140792+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.143051+00:00","last_updated":"2026-04-12T20:00:39.143051+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.151640+00:00","last_updated":"2026-04-12T20:12:20.151640+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.153514+00:00","last_updated":"2026-04-12T20:12:20.153514+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.156801+00:00","last_updated":"2026-04-12T20:12:20.156801+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.158648+00:00","last_updated":"2026-04-12T20:12:20.158648+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.400924+00:00","last_updated":"2026-04-12T20:12:21.400924+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.410656+00:00","last_updated":"2026-04-12T20:12:21.410656+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.433198+00:00","last_updated":"2026-04-12T20:12:21.433198+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.443464+00:00","last_updated":"2026-04-12T20:12:21.443464+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:49.798177+00:00","last_updated":"2026-04-12T20:12:49.798177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.835351+00:00","last_updated":"2026-04-12T20:13:19.835351+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.837431+00:00","last_updated":"2026-04-12T20:13:19.837431+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.841967+00:00","last_updated":"2026-04-12T20:13:19.841967+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.844827+00:00","last_updated":"2026-04-12T20:13:19.844827+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.345057+00:00","last_updated":"2026-04-12T20:13:21.345057+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.354928+00:00","last_updated":"2026-04-12T20:13:21.354928+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.365000+00:00","last_updated":"2026-04-12T20:13:21.365000+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.367110+00:00","last_updated":"2026-04-12T20:13:21.367110+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.680694+00:00","last_updated":"2026-04-12T20:14:24.680694+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.682407+00:00","last_updated":"2026-04-12T20:14:24.682407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.687103+00:00","last_updated":"2026-04-12T20:14:24.687103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.689225+00:00","last_updated":"2026-04-12T20:14:24.689225+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.215024+00:00","last_updated":"2026-04-12T20:14:25.215024+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.225798+00:00","last_updated":"2026-04-12T20:14:25.225798+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.245103+00:00","last_updated":"2026-04-12T20:14:25.245103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.250534+00:00","last_updated":"2026-04-12T20:14:25.250534+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.259333+00:00","last_updated":"2026-04-12T21:53:31.259333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.279280+00:00","last_updated":"2026-04-12T21:53:31.279280+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.288007+00:00","last_updated":"2026-04-12T21:53:31.288007+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.290023+00:00","last_updated":"2026-04-12T21:53:31.290023+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.402675+00:00","last_updated":"2026-04-12T21:53:32.402675+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.404767+00:00","last_updated":"2026-04-12T21:53:32.404767+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.411340+00:00","last_updated":"2026-04-12T21:53:32.411340+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.414079+00:00","last_updated":"2026-04-12T21:53:32.414079+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.450874+00:00","last_updated":"2026-04-12T22:09:48.450874+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.454263+00:00","last_updated":"2026-04-12T22:09:48.454263+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.458321+00:00","last_updated":"2026-04-12T22:09:48.458321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.460981+00:00","last_updated":"2026-04-12T22:09:48.460981+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.479321+00:00","last_updated":"2026-04-12T22:09:49.479321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.481724+00:00","last_updated":"2026-04-12T22:09:49.481724+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.486616+00:00","last_updated":"2026-04-12T22:09:49.486616+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.489216+00:00","last_updated":"2026-04-12T22:09:49.489216+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.922712+00:00","last_updated":"2026-04-12T22:49:52.922712+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.925844+00:00","last_updated":"2026-04-12T22:49:52.925844+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.929358+00:00","last_updated":"2026-04-12T22:49:52.929358+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.931005+00:00","last_updated":"2026-04-12T22:49:52.931005+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.320333+00:00","last_updated":"2026-04-12T22:49:54.320333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.322256+00:00","last_updated":"2026-04-12T22:49:54.322256+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.326036+00:00","last_updated":"2026-04-12T22:49:54.326036+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.327845+00:00","last_updated":"2026-04-12T22:49:54.327845+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.971895+00:00","last_updated":"2026-04-13T02:07:34.971895+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.976250+00:00","last_updated":"2026-04-13T02:07:34.976250+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.984187+00:00","last_updated":"2026-04-13T02:07:34.984187+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.988317+00:00","last_updated":"2026-04-13T02:07:34.988317+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.155988+00:00","last_updated":"2026-04-13T02:07:36.155988+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.157938+00:00","last_updated":"2026-04-13T02:07:36.157938+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.162182+00:00","last_updated":"2026-04-13T02:07:36.162182+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.164156+00:00","last_updated":"2026-04-13T02:07:36.164156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:01.248961+00:00","last_updated":"2026-04-13T02:13:01.248961+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.401147+00:00","last_updated":"2026-04-13T02:13:24.401147+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.403707+00:00","last_updated":"2026-04-13T02:13:24.403707+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.407551+00:00","last_updated":"2026-04-13T02:13:24.407551+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.409239+00:00","last_updated":"2026-04-13T02:13:24.409239+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.405309+00:00","last_updated":"2026-04-13T02:13:25.405309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.407245+00:00","last_updated":"2026-04-13T02:13:25.407245+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.411493+00:00","last_updated":"2026-04-13T02:13:25.411493+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.413286+00:00","last_updated":"2026-04-13T02:13:25.413286+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.721043+00:00","last_updated":"2026-04-13T02:43:47.721043+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.722854+00:00","last_updated":"2026-04-13T02:43:47.722854+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.726509+00:00","last_updated":"2026-04-13T02:43:47.726509+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.729508+00:00","last_updated":"2026-04-13T02:43:47.729508+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.396388+00:00","last_updated":"2026-04-13T02:43:48.396388+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.398325+00:00","last_updated":"2026-04-13T02:43:48.398325+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.401451+00:00","last_updated":"2026-04-13T02:43:48.401451+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.403268+00:00","last_updated":"2026-04-13T02:43:48.403268+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.517973+00:00","last_updated":"2026-04-13T02:47:33.517973+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.519750+00:00","last_updated":"2026-04-13T02:47:33.519750+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.522540+00:00","last_updated":"2026-04-13T02:47:33.522540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.524065+00:00","last_updated":"2026-04-13T02:47:33.524065+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.077119+00:00","last_updated":"2026-04-13T02:47:34.077119+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.079477+00:00","last_updated":"2026-04-13T02:47:34.079477+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.082548+00:00","last_updated":"2026-04-13T02:47:34.082548+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.084168+00:00","last_updated":"2026-04-13T02:47:34.084168+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.143156+00:00","last_updated":"2026-04-13T02:51:23.143156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.145077+00:00","last_updated":"2026-04-13T02:51:23.145077+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.148011+00:00","last_updated":"2026-04-13T02:51:23.148011+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.149785+00:00","last_updated":"2026-04-13T02:51:23.149785+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.293711+00:00","last_updated":"2026-04-13T02:51:24.293711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.295520+00:00","last_updated":"2026-04-13T02:51:24.295520+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.299886+00:00","last_updated":"2026-04-13T02:51:24.299886+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00"}]]' + url: http://127.0.0.1:8123/api/history/period/2020-01-01T00:00:00+00:00?filter_entity_id=sun.sun&end_time=2030-01-01T00%3A00%3A01%2B00%3A00&significant_changes_only +- request: + method: GET + url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '1834' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[[{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T02:53:18.229440+00:00","last_updated":"2026-04-12T02:53:18.229440+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:30.295367+00:00","last_updated":"2026-04-12T16:55:30.295367+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.905124+00:00","last_updated":"2026-04-12T16:55:38.905124+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.909797+00:00","last_updated":"2026-04-12T16:55:38.909797+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.914742+00:00","last_updated":"2026-04-12T16:55:38.914742+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.916826+00:00","last_updated":"2026-04-12T16:55:38.916826+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.140140+00:00","last_updated":"2026-04-12T16:55:40.140140+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.142125+00:00","last_updated":"2026-04-12T16:55:40.142125+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.146982+00:00","last_updated":"2026-04-12T16:55:40.146982+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.150118+00:00","last_updated":"2026-04-12T16:55:40.150118+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.278074+00:00","last_updated":"2026-04-12T17:19:22.278074+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.280331+00:00","last_updated":"2026-04-12T17:19:22.280331+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.284613+00:00","last_updated":"2026-04-12T17:19:22.284613+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.286764+00:00","last_updated":"2026-04-12T17:19:22.286764+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.195136+00:00","last_updated":"2026-04-12T17:19:23.195136+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.197078+00:00","last_updated":"2026-04-12T17:19:23.197078+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.200907+00:00","last_updated":"2026-04-12T17:19:23.200907+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.202677+00:00","last_updated":"2026-04-12T17:19:23.202677+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T18:36:52.438177+00:00","last_updated":"2026-04-12T18:36:52.438177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.474959+00:00","last_updated":"2026-04-12T19:59:32.474959+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.477394+00:00","last_updated":"2026-04-12T19:59:32.477394+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.481787+00:00","last_updated":"2026-04-12T19:59:32.481787+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.483929+00:00","last_updated":"2026-04-12T19:59:32.483929+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.228622+00:00","last_updated":"2026-04-12T19:59:33.228622+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.230875+00:00","last_updated":"2026-04-12T19:59:33.230875+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.235056+00:00","last_updated":"2026-04-12T19:59:33.235056+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.236850+00:00","last_updated":"2026-04-12T19:59:33.236850+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.219213+00:00","last_updated":"2026-04-12T20:00:38.219213+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.221401+00:00","last_updated":"2026-04-12T20:00:38.221401+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.225309+00:00","last_updated":"2026-04-12T20:00:38.225309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.227147+00:00","last_updated":"2026-04-12T20:00:38.227147+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.124540+00:00","last_updated":"2026-04-12T20:00:39.124540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.133407+00:00","last_updated":"2026-04-12T20:00:39.133407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.140792+00:00","last_updated":"2026-04-12T20:00:39.140792+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.143051+00:00","last_updated":"2026-04-12T20:00:39.143051+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.151640+00:00","last_updated":"2026-04-12T20:12:20.151640+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.153514+00:00","last_updated":"2026-04-12T20:12:20.153514+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.156801+00:00","last_updated":"2026-04-12T20:12:20.156801+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.158648+00:00","last_updated":"2026-04-12T20:12:20.158648+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.400924+00:00","last_updated":"2026-04-12T20:12:21.400924+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.410656+00:00","last_updated":"2026-04-12T20:12:21.410656+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.433198+00:00","last_updated":"2026-04-12T20:12:21.433198+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.443464+00:00","last_updated":"2026-04-12T20:12:21.443464+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:49.798177+00:00","last_updated":"2026-04-12T20:12:49.798177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.835351+00:00","last_updated":"2026-04-12T20:13:19.835351+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.837431+00:00","last_updated":"2026-04-12T20:13:19.837431+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.841967+00:00","last_updated":"2026-04-12T20:13:19.841967+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.844827+00:00","last_updated":"2026-04-12T20:13:19.844827+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.345057+00:00","last_updated":"2026-04-12T20:13:21.345057+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.354928+00:00","last_updated":"2026-04-12T20:13:21.354928+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.365000+00:00","last_updated":"2026-04-12T20:13:21.365000+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.367110+00:00","last_updated":"2026-04-12T20:13:21.367110+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.680694+00:00","last_updated":"2026-04-12T20:14:24.680694+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.682407+00:00","last_updated":"2026-04-12T20:14:24.682407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.687103+00:00","last_updated":"2026-04-12T20:14:24.687103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.689225+00:00","last_updated":"2026-04-12T20:14:24.689225+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.215024+00:00","last_updated":"2026-04-12T20:14:25.215024+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.225798+00:00","last_updated":"2026-04-12T20:14:25.225798+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.245103+00:00","last_updated":"2026-04-12T20:14:25.245103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.250534+00:00","last_updated":"2026-04-12T20:14:25.250534+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.259333+00:00","last_updated":"2026-04-12T21:53:31.259333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.279280+00:00","last_updated":"2026-04-12T21:53:31.279280+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.288007+00:00","last_updated":"2026-04-12T21:53:31.288007+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.290023+00:00","last_updated":"2026-04-12T21:53:31.290023+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.402675+00:00","last_updated":"2026-04-12T21:53:32.402675+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.404767+00:00","last_updated":"2026-04-12T21:53:32.404767+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.411340+00:00","last_updated":"2026-04-12T21:53:32.411340+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.414079+00:00","last_updated":"2026-04-12T21:53:32.414079+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.450874+00:00","last_updated":"2026-04-12T22:09:48.450874+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.454263+00:00","last_updated":"2026-04-12T22:09:48.454263+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.458321+00:00","last_updated":"2026-04-12T22:09:48.458321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.460981+00:00","last_updated":"2026-04-12T22:09:48.460981+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.479321+00:00","last_updated":"2026-04-12T22:09:49.479321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.481724+00:00","last_updated":"2026-04-12T22:09:49.481724+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.486616+00:00","last_updated":"2026-04-12T22:09:49.486616+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.489216+00:00","last_updated":"2026-04-12T22:09:49.489216+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.922712+00:00","last_updated":"2026-04-12T22:49:52.922712+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.925844+00:00","last_updated":"2026-04-12T22:49:52.925844+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.929358+00:00","last_updated":"2026-04-12T22:49:52.929358+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.931005+00:00","last_updated":"2026-04-12T22:49:52.931005+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.320333+00:00","last_updated":"2026-04-12T22:49:54.320333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.322256+00:00","last_updated":"2026-04-12T22:49:54.322256+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.326036+00:00","last_updated":"2026-04-12T22:49:54.326036+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.327845+00:00","last_updated":"2026-04-12T22:49:54.327845+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.971895+00:00","last_updated":"2026-04-13T02:07:34.971895+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.976250+00:00","last_updated":"2026-04-13T02:07:34.976250+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.984187+00:00","last_updated":"2026-04-13T02:07:34.984187+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.988317+00:00","last_updated":"2026-04-13T02:07:34.988317+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.155988+00:00","last_updated":"2026-04-13T02:07:36.155988+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.157938+00:00","last_updated":"2026-04-13T02:07:36.157938+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.162182+00:00","last_updated":"2026-04-13T02:07:36.162182+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.164156+00:00","last_updated":"2026-04-13T02:07:36.164156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:01.248961+00:00","last_updated":"2026-04-13T02:13:01.248961+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.401147+00:00","last_updated":"2026-04-13T02:13:24.401147+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.403707+00:00","last_updated":"2026-04-13T02:13:24.403707+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.407551+00:00","last_updated":"2026-04-13T02:13:24.407551+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.409239+00:00","last_updated":"2026-04-13T02:13:24.409239+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.405309+00:00","last_updated":"2026-04-13T02:13:25.405309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.407245+00:00","last_updated":"2026-04-13T02:13:25.407245+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.411493+00:00","last_updated":"2026-04-13T02:13:25.411493+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.413286+00:00","last_updated":"2026-04-13T02:13:25.413286+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.721043+00:00","last_updated":"2026-04-13T02:43:47.721043+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.722854+00:00","last_updated":"2026-04-13T02:43:47.722854+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.726509+00:00","last_updated":"2026-04-13T02:43:47.726509+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.729508+00:00","last_updated":"2026-04-13T02:43:47.729508+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.396388+00:00","last_updated":"2026-04-13T02:43:48.396388+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.398325+00:00","last_updated":"2026-04-13T02:43:48.398325+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.401451+00:00","last_updated":"2026-04-13T02:43:48.401451+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.403268+00:00","last_updated":"2026-04-13T02:43:48.403268+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.517973+00:00","last_updated":"2026-04-13T02:47:33.517973+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.519750+00:00","last_updated":"2026-04-13T02:47:33.519750+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.522540+00:00","last_updated":"2026-04-13T02:47:33.522540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.524065+00:00","last_updated":"2026-04-13T02:47:33.524065+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.077119+00:00","last_updated":"2026-04-13T02:47:34.077119+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.079477+00:00","last_updated":"2026-04-13T02:47:34.079477+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.082548+00:00","last_updated":"2026-04-13T02:47:34.082548+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.084168+00:00","last_updated":"2026-04-13T02:47:34.084168+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.143156+00:00","last_updated":"2026-04-13T02:51:23.143156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.145077+00:00","last_updated":"2026-04-13T02:51:23.145077+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.148011+00:00","last_updated":"2026-04-13T02:51:23.148011+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.149785+00:00","last_updated":"2026-04-13T02:51:23.149785+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.293711+00:00","last_updated":"2026-04-13T02:51:24.293711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.295520+00:00","last_updated":"2026-04-13T02:51:24.295520+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.299886+00:00","last_updated":"2026-04-13T02:51:24.299886+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00"}]]' + url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun +- request: + method: GET + url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '1829' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[[{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T02:53:20.431981+00:00","last_updated":"2026-04-12T02:53:20.431981+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:30.295367+00:00","last_updated":"2026-04-12T16:55:30.295367+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.905124+00:00","last_updated":"2026-04-12T16:55:38.905124+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.909797+00:00","last_updated":"2026-04-12T16:55:38.909797+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.914742+00:00","last_updated":"2026-04-12T16:55:38.914742+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.916826+00:00","last_updated":"2026-04-12T16:55:38.916826+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.140140+00:00","last_updated":"2026-04-12T16:55:40.140140+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.142125+00:00","last_updated":"2026-04-12T16:55:40.142125+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.146982+00:00","last_updated":"2026-04-12T16:55:40.146982+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.150118+00:00","last_updated":"2026-04-12T16:55:40.150118+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.278074+00:00","last_updated":"2026-04-12T17:19:22.278074+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.280331+00:00","last_updated":"2026-04-12T17:19:22.280331+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.284613+00:00","last_updated":"2026-04-12T17:19:22.284613+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.286764+00:00","last_updated":"2026-04-12T17:19:22.286764+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.195136+00:00","last_updated":"2026-04-12T17:19:23.195136+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.197078+00:00","last_updated":"2026-04-12T17:19:23.197078+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.200907+00:00","last_updated":"2026-04-12T17:19:23.200907+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.202677+00:00","last_updated":"2026-04-12T17:19:23.202677+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T18:36:52.438177+00:00","last_updated":"2026-04-12T18:36:52.438177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.474959+00:00","last_updated":"2026-04-12T19:59:32.474959+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.477394+00:00","last_updated":"2026-04-12T19:59:32.477394+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.481787+00:00","last_updated":"2026-04-12T19:59:32.481787+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.483929+00:00","last_updated":"2026-04-12T19:59:32.483929+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.228622+00:00","last_updated":"2026-04-12T19:59:33.228622+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.230875+00:00","last_updated":"2026-04-12T19:59:33.230875+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.235056+00:00","last_updated":"2026-04-12T19:59:33.235056+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.236850+00:00","last_updated":"2026-04-12T19:59:33.236850+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.219213+00:00","last_updated":"2026-04-12T20:00:38.219213+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.221401+00:00","last_updated":"2026-04-12T20:00:38.221401+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.225309+00:00","last_updated":"2026-04-12T20:00:38.225309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.227147+00:00","last_updated":"2026-04-12T20:00:38.227147+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.124540+00:00","last_updated":"2026-04-12T20:00:39.124540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.133407+00:00","last_updated":"2026-04-12T20:00:39.133407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.140792+00:00","last_updated":"2026-04-12T20:00:39.140792+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.143051+00:00","last_updated":"2026-04-12T20:00:39.143051+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.151640+00:00","last_updated":"2026-04-12T20:12:20.151640+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.153514+00:00","last_updated":"2026-04-12T20:12:20.153514+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.156801+00:00","last_updated":"2026-04-12T20:12:20.156801+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.158648+00:00","last_updated":"2026-04-12T20:12:20.158648+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.400924+00:00","last_updated":"2026-04-12T20:12:21.400924+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.410656+00:00","last_updated":"2026-04-12T20:12:21.410656+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.433198+00:00","last_updated":"2026-04-12T20:12:21.433198+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.443464+00:00","last_updated":"2026-04-12T20:12:21.443464+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:49.798177+00:00","last_updated":"2026-04-12T20:12:49.798177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.835351+00:00","last_updated":"2026-04-12T20:13:19.835351+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.837431+00:00","last_updated":"2026-04-12T20:13:19.837431+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.841967+00:00","last_updated":"2026-04-12T20:13:19.841967+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.844827+00:00","last_updated":"2026-04-12T20:13:19.844827+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.345057+00:00","last_updated":"2026-04-12T20:13:21.345057+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.354928+00:00","last_updated":"2026-04-12T20:13:21.354928+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.365000+00:00","last_updated":"2026-04-12T20:13:21.365000+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.367110+00:00","last_updated":"2026-04-12T20:13:21.367110+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.680694+00:00","last_updated":"2026-04-12T20:14:24.680694+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.682407+00:00","last_updated":"2026-04-12T20:14:24.682407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.687103+00:00","last_updated":"2026-04-12T20:14:24.687103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.689225+00:00","last_updated":"2026-04-12T20:14:24.689225+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.215024+00:00","last_updated":"2026-04-12T20:14:25.215024+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.225798+00:00","last_updated":"2026-04-12T20:14:25.225798+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.245103+00:00","last_updated":"2026-04-12T20:14:25.245103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.250534+00:00","last_updated":"2026-04-12T20:14:25.250534+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.259333+00:00","last_updated":"2026-04-12T21:53:31.259333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.279280+00:00","last_updated":"2026-04-12T21:53:31.279280+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.288007+00:00","last_updated":"2026-04-12T21:53:31.288007+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.290023+00:00","last_updated":"2026-04-12T21:53:31.290023+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.402675+00:00","last_updated":"2026-04-12T21:53:32.402675+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.404767+00:00","last_updated":"2026-04-12T21:53:32.404767+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.411340+00:00","last_updated":"2026-04-12T21:53:32.411340+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.414079+00:00","last_updated":"2026-04-12T21:53:32.414079+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.450874+00:00","last_updated":"2026-04-12T22:09:48.450874+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.454263+00:00","last_updated":"2026-04-12T22:09:48.454263+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.458321+00:00","last_updated":"2026-04-12T22:09:48.458321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.460981+00:00","last_updated":"2026-04-12T22:09:48.460981+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.479321+00:00","last_updated":"2026-04-12T22:09:49.479321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.481724+00:00","last_updated":"2026-04-12T22:09:49.481724+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.486616+00:00","last_updated":"2026-04-12T22:09:49.486616+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.489216+00:00","last_updated":"2026-04-12T22:09:49.489216+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.922712+00:00","last_updated":"2026-04-12T22:49:52.922712+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.925844+00:00","last_updated":"2026-04-12T22:49:52.925844+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.929358+00:00","last_updated":"2026-04-12T22:49:52.929358+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.931005+00:00","last_updated":"2026-04-12T22:49:52.931005+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.320333+00:00","last_updated":"2026-04-12T22:49:54.320333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.322256+00:00","last_updated":"2026-04-12T22:49:54.322256+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.326036+00:00","last_updated":"2026-04-12T22:49:54.326036+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.327845+00:00","last_updated":"2026-04-12T22:49:54.327845+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.971895+00:00","last_updated":"2026-04-13T02:07:34.971895+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.976250+00:00","last_updated":"2026-04-13T02:07:34.976250+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.984187+00:00","last_updated":"2026-04-13T02:07:34.984187+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.988317+00:00","last_updated":"2026-04-13T02:07:34.988317+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.155988+00:00","last_updated":"2026-04-13T02:07:36.155988+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.157938+00:00","last_updated":"2026-04-13T02:07:36.157938+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.162182+00:00","last_updated":"2026-04-13T02:07:36.162182+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.164156+00:00","last_updated":"2026-04-13T02:07:36.164156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:01.248961+00:00","last_updated":"2026-04-13T02:13:01.248961+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.401147+00:00","last_updated":"2026-04-13T02:13:24.401147+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.403707+00:00","last_updated":"2026-04-13T02:13:24.403707+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.407551+00:00","last_updated":"2026-04-13T02:13:24.407551+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.409239+00:00","last_updated":"2026-04-13T02:13:24.409239+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.405309+00:00","last_updated":"2026-04-13T02:13:25.405309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.407245+00:00","last_updated":"2026-04-13T02:13:25.407245+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.411493+00:00","last_updated":"2026-04-13T02:13:25.411493+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.413286+00:00","last_updated":"2026-04-13T02:13:25.413286+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.721043+00:00","last_updated":"2026-04-13T02:43:47.721043+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.722854+00:00","last_updated":"2026-04-13T02:43:47.722854+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.726509+00:00","last_updated":"2026-04-13T02:43:47.726509+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.729508+00:00","last_updated":"2026-04-13T02:43:47.729508+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.396388+00:00","last_updated":"2026-04-13T02:43:48.396388+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.398325+00:00","last_updated":"2026-04-13T02:43:48.398325+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.401451+00:00","last_updated":"2026-04-13T02:43:48.401451+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.403268+00:00","last_updated":"2026-04-13T02:43:48.403268+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.517973+00:00","last_updated":"2026-04-13T02:47:33.517973+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.519750+00:00","last_updated":"2026-04-13T02:47:33.519750+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.522540+00:00","last_updated":"2026-04-13T02:47:33.522540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.524065+00:00","last_updated":"2026-04-13T02:47:33.524065+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.077119+00:00","last_updated":"2026-04-13T02:47:34.077119+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.079477+00:00","last_updated":"2026-04-13T02:47:34.079477+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.082548+00:00","last_updated":"2026-04-13T02:47:34.082548+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.084168+00:00","last_updated":"2026-04-13T02:47:34.084168+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.143156+00:00","last_updated":"2026-04-13T02:51:23.143156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.145077+00:00","last_updated":"2026-04-13T02:51:23.145077+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.148011+00:00","last_updated":"2026-04-13T02:51:23.148011+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.149785+00:00","last_updated":"2026-04-13T02:51:23.149785+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.293711+00:00","last_updated":"2026-04-13T02:51:24.293711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.295520+00:00","last_updated":"2026-04-13T02:51:24.295520+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.299886+00:00","last_updated":"2026-04-13T02:51:24.299886+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00"}]]' + url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun +- request: + method: GET + url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '1831' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[[{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T02:53:20.436147+00:00","last_updated":"2026-04-12T02:53:20.436147+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:30.295367+00:00","last_updated":"2026-04-12T16:55:30.295367+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.905124+00:00","last_updated":"2026-04-12T16:55:38.905124+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.909797+00:00","last_updated":"2026-04-12T16:55:38.909797+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.914742+00:00","last_updated":"2026-04-12T16:55:38.914742+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.916826+00:00","last_updated":"2026-04-12T16:55:38.916826+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.140140+00:00","last_updated":"2026-04-12T16:55:40.140140+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.142125+00:00","last_updated":"2026-04-12T16:55:40.142125+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.146982+00:00","last_updated":"2026-04-12T16:55:40.146982+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.150118+00:00","last_updated":"2026-04-12T16:55:40.150118+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.278074+00:00","last_updated":"2026-04-12T17:19:22.278074+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.280331+00:00","last_updated":"2026-04-12T17:19:22.280331+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.284613+00:00","last_updated":"2026-04-12T17:19:22.284613+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.286764+00:00","last_updated":"2026-04-12T17:19:22.286764+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.195136+00:00","last_updated":"2026-04-12T17:19:23.195136+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.197078+00:00","last_updated":"2026-04-12T17:19:23.197078+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.200907+00:00","last_updated":"2026-04-12T17:19:23.200907+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.202677+00:00","last_updated":"2026-04-12T17:19:23.202677+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T18:36:52.438177+00:00","last_updated":"2026-04-12T18:36:52.438177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.474959+00:00","last_updated":"2026-04-12T19:59:32.474959+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.477394+00:00","last_updated":"2026-04-12T19:59:32.477394+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.481787+00:00","last_updated":"2026-04-12T19:59:32.481787+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.483929+00:00","last_updated":"2026-04-12T19:59:32.483929+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.228622+00:00","last_updated":"2026-04-12T19:59:33.228622+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.230875+00:00","last_updated":"2026-04-12T19:59:33.230875+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.235056+00:00","last_updated":"2026-04-12T19:59:33.235056+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.236850+00:00","last_updated":"2026-04-12T19:59:33.236850+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.219213+00:00","last_updated":"2026-04-12T20:00:38.219213+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.221401+00:00","last_updated":"2026-04-12T20:00:38.221401+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.225309+00:00","last_updated":"2026-04-12T20:00:38.225309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.227147+00:00","last_updated":"2026-04-12T20:00:38.227147+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.124540+00:00","last_updated":"2026-04-12T20:00:39.124540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.133407+00:00","last_updated":"2026-04-12T20:00:39.133407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.140792+00:00","last_updated":"2026-04-12T20:00:39.140792+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.143051+00:00","last_updated":"2026-04-12T20:00:39.143051+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.151640+00:00","last_updated":"2026-04-12T20:12:20.151640+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.153514+00:00","last_updated":"2026-04-12T20:12:20.153514+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.156801+00:00","last_updated":"2026-04-12T20:12:20.156801+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.158648+00:00","last_updated":"2026-04-12T20:12:20.158648+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.400924+00:00","last_updated":"2026-04-12T20:12:21.400924+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.410656+00:00","last_updated":"2026-04-12T20:12:21.410656+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.433198+00:00","last_updated":"2026-04-12T20:12:21.433198+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.443464+00:00","last_updated":"2026-04-12T20:12:21.443464+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:49.798177+00:00","last_updated":"2026-04-12T20:12:49.798177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.835351+00:00","last_updated":"2026-04-12T20:13:19.835351+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.837431+00:00","last_updated":"2026-04-12T20:13:19.837431+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.841967+00:00","last_updated":"2026-04-12T20:13:19.841967+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.844827+00:00","last_updated":"2026-04-12T20:13:19.844827+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.345057+00:00","last_updated":"2026-04-12T20:13:21.345057+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.354928+00:00","last_updated":"2026-04-12T20:13:21.354928+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.365000+00:00","last_updated":"2026-04-12T20:13:21.365000+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.367110+00:00","last_updated":"2026-04-12T20:13:21.367110+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.680694+00:00","last_updated":"2026-04-12T20:14:24.680694+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.682407+00:00","last_updated":"2026-04-12T20:14:24.682407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.687103+00:00","last_updated":"2026-04-12T20:14:24.687103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.689225+00:00","last_updated":"2026-04-12T20:14:24.689225+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.215024+00:00","last_updated":"2026-04-12T20:14:25.215024+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.225798+00:00","last_updated":"2026-04-12T20:14:25.225798+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.245103+00:00","last_updated":"2026-04-12T20:14:25.245103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.250534+00:00","last_updated":"2026-04-12T20:14:25.250534+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.259333+00:00","last_updated":"2026-04-12T21:53:31.259333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.279280+00:00","last_updated":"2026-04-12T21:53:31.279280+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.288007+00:00","last_updated":"2026-04-12T21:53:31.288007+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.290023+00:00","last_updated":"2026-04-12T21:53:31.290023+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.402675+00:00","last_updated":"2026-04-12T21:53:32.402675+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.404767+00:00","last_updated":"2026-04-12T21:53:32.404767+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.411340+00:00","last_updated":"2026-04-12T21:53:32.411340+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.414079+00:00","last_updated":"2026-04-12T21:53:32.414079+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.450874+00:00","last_updated":"2026-04-12T22:09:48.450874+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.454263+00:00","last_updated":"2026-04-12T22:09:48.454263+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.458321+00:00","last_updated":"2026-04-12T22:09:48.458321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.460981+00:00","last_updated":"2026-04-12T22:09:48.460981+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.479321+00:00","last_updated":"2026-04-12T22:09:49.479321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.481724+00:00","last_updated":"2026-04-12T22:09:49.481724+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.486616+00:00","last_updated":"2026-04-12T22:09:49.486616+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.489216+00:00","last_updated":"2026-04-12T22:09:49.489216+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.922712+00:00","last_updated":"2026-04-12T22:49:52.922712+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.925844+00:00","last_updated":"2026-04-12T22:49:52.925844+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.929358+00:00","last_updated":"2026-04-12T22:49:52.929358+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.931005+00:00","last_updated":"2026-04-12T22:49:52.931005+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.320333+00:00","last_updated":"2026-04-12T22:49:54.320333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.322256+00:00","last_updated":"2026-04-12T22:49:54.322256+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.326036+00:00","last_updated":"2026-04-12T22:49:54.326036+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.327845+00:00","last_updated":"2026-04-12T22:49:54.327845+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.971895+00:00","last_updated":"2026-04-13T02:07:34.971895+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.976250+00:00","last_updated":"2026-04-13T02:07:34.976250+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.984187+00:00","last_updated":"2026-04-13T02:07:34.984187+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.988317+00:00","last_updated":"2026-04-13T02:07:34.988317+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.155988+00:00","last_updated":"2026-04-13T02:07:36.155988+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.157938+00:00","last_updated":"2026-04-13T02:07:36.157938+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.162182+00:00","last_updated":"2026-04-13T02:07:36.162182+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.164156+00:00","last_updated":"2026-04-13T02:07:36.164156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:01.248961+00:00","last_updated":"2026-04-13T02:13:01.248961+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.401147+00:00","last_updated":"2026-04-13T02:13:24.401147+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.403707+00:00","last_updated":"2026-04-13T02:13:24.403707+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.407551+00:00","last_updated":"2026-04-13T02:13:24.407551+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.409239+00:00","last_updated":"2026-04-13T02:13:24.409239+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.405309+00:00","last_updated":"2026-04-13T02:13:25.405309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.407245+00:00","last_updated":"2026-04-13T02:13:25.407245+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.411493+00:00","last_updated":"2026-04-13T02:13:25.411493+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.413286+00:00","last_updated":"2026-04-13T02:13:25.413286+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.721043+00:00","last_updated":"2026-04-13T02:43:47.721043+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.722854+00:00","last_updated":"2026-04-13T02:43:47.722854+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.726509+00:00","last_updated":"2026-04-13T02:43:47.726509+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.729508+00:00","last_updated":"2026-04-13T02:43:47.729508+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.396388+00:00","last_updated":"2026-04-13T02:43:48.396388+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.398325+00:00","last_updated":"2026-04-13T02:43:48.398325+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.401451+00:00","last_updated":"2026-04-13T02:43:48.401451+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.403268+00:00","last_updated":"2026-04-13T02:43:48.403268+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.517973+00:00","last_updated":"2026-04-13T02:47:33.517973+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.519750+00:00","last_updated":"2026-04-13T02:47:33.519750+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.522540+00:00","last_updated":"2026-04-13T02:47:33.522540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.524065+00:00","last_updated":"2026-04-13T02:47:33.524065+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.077119+00:00","last_updated":"2026-04-13T02:47:34.077119+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.079477+00:00","last_updated":"2026-04-13T02:47:34.079477+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.082548+00:00","last_updated":"2026-04-13T02:47:34.082548+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.084168+00:00","last_updated":"2026-04-13T02:47:34.084168+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.143156+00:00","last_updated":"2026-04-13T02:51:23.143156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.145077+00:00","last_updated":"2026-04-13T02:51:23.145077+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.148011+00:00","last_updated":"2026-04-13T02:51:23.148011+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.149785+00:00","last_updated":"2026-04-13T02:51:23.149785+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.293711+00:00","last_updated":"2026-04-13T02:51:24.293711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.295520+00:00","last_updated":"2026-04-13T02:51:24.295520+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.299886+00:00","last_updated":"2026-04-13T02:51:24.299886+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00"}]]' + url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun +- request: + method: POST + url: http://127.0.0.1:8123/api/template + response: + status: 200 + headers: + Content-Type: text/plain; charset=utf-8 + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '29' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: The sun is below the horizon. + url: http://127.0.0.1:8123/api/template +- request: + method: POST + url: http://127.0.0.1:8123/api/template + response: + status: 200 + headers: + Content-Type: text/plain; charset=utf-8 + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '29' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: The sun is below the horizon. + url: http://127.0.0.1:8123/api/template +- request: + method: POST + url: http://127.0.0.1:8123/api/template + response: + status: 400 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '100' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"Error rendering template: TemplateSyntaxError: expected token + ''end of print statement'', got ''lol''"}' + url: http://127.0.0.1:8123/api/template +- request: + method: POST + url: http://127.0.0.1:8123/api/template + response: + status: 400 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '100' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"Error rendering template: TemplateSyntaxError: expected token + ''end of print statement'', got ''lol''"}' + url: http://127.0.0.1:8123/api/template +- request: + method: POST + url: http://127.0.0.1:8123/api/config/core/check_config + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '56' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"result":"valid","errors":null,"warnings":null}' + url: http://127.0.0.1:8123/api/config/core/check_config +- request: + method: POST + url: http://127.0.0.1:8123/api/config/core/check_config + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '56' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"result":"valid","errors":null,"warnings":null}' + url: http://127.0.0.1:8123/api/config/core/check_config +- request: + method: GET + url: http://127.0.0.1:8123/api/states + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2120' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]' + url: http://127.0.0.1:8123/api/states +- request: + method: GET + url: http://127.0.0.1:8123/api/states + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2120' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]' + url: http://127.0.0.1:8123/api/states +- request: + method: GET + url: http://127.0.0.1:8123/api/states + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2124' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]' + url: http://127.0.0.1:8123/api/states +- request: + method: GET + url: http://127.0.0.1:8123/api/states + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2124' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]' + url: http://127.0.0.1:8123/api/states +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: GET + url: http://127.0.0.1:8123/api/services + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '2577' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' + url: http://127.0.0.1:8123/api/services +- request: + method: POST + url: http://127.0.0.1:8123/api/services/notify/persistent_notification?return_response + response: + status: 400 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '82' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"Service does not support responses. Remove return_response + from request."}' + url: http://127.0.0.1:8123/api/services/notify/persistent_notification?return_response +- request: + method: POST + url: http://127.0.0.1:8123/api/services/notify/persistent_notification + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '10' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[]' + url: http://127.0.0.1:8123/api/services/notify/persistent_notification +- request: + method: POST + url: http://127.0.0.1:8123/api/services/notify/persistent_notification?return_response + response: + status: 400 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '82' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"Service does not support responses. Remove return_response + from request."}' + url: http://127.0.0.1:8123/api/services/notify/persistent_notification?return_response +- request: + method: POST + url: http://127.0.0.1:8123/api/services/notify/persistent_notification + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '10' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[]' + url: http://127.0.0.1:8123/api/services/notify/persistent_notification +- request: + method: POST + url: http://127.0.0.1:8123/api/services/weather/get_forecasts?return_response + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '1281' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"changed_states":[],"service_response":{"weather.forecast_home":{"forecast":[{"condition":"cloudy","datetime":"2026-04-13T03:00:00+00:00","wind_bearing":156.1,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.1,"wind_speed":5.8,"precipitation":0.0,"humidity":89},{"condition":"partlycloudy","datetime":"2026-04-13T04:00:00+00:00","wind_bearing":165.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.3,"wind_speed":5.4,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T05:00:00+00:00","wind_bearing":150.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.6,"wind_speed":5.0,"precipitation":0.0,"humidity":91},{"condition":"cloudy","datetime":"2026-04-13T06:00:00+00:00","wind_bearing":115.2,"cloud_coverage":100.0,"uv_index":0.2,"temperature":0.4,"wind_speed":6.5,"precipitation":0.0,"humidity":90},{"condition":"cloudy","datetime":"2026-04-13T07:00:00+00:00","wind_bearing":76.3,"cloud_coverage":100.0,"uv_index":0.6,"temperature":1.7,"wind_speed":5.0,"precipitation":0.0,"humidity":87},{"condition":"cloudy","datetime":"2026-04-13T08:00:00+00:00","wind_bearing":76.4,"cloud_coverage":100.0,"uv_index":1.3,"temperature":3.6,"wind_speed":5.8,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T09:00:00+00:00","wind_bearing":77.1,"cloud_coverage":100.0,"uv_index":2.2,"temperature":5.3,"wind_speed":6.8,"precipitation":0.0,"humidity":70},{"condition":"cloudy","datetime":"2026-04-13T10:00:00+00:00","wind_bearing":78.0,"cloud_coverage":100.0,"uv_index":3.0,"temperature":6.4,"wind_speed":7.6,"precipitation":0.0,"humidity":60},{"condition":"cloudy","datetime":"2026-04-13T11:00:00+00:00","wind_bearing":74.6,"cloud_coverage":100.0,"uv_index":3.5,"temperature":7.3,"wind_speed":8.3,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T12:00:00+00:00","wind_bearing":61.9,"cloud_coverage":100.0,"uv_index":3.4,"temperature":7.8,"wind_speed":8.3,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T13:00:00+00:00","wind_bearing":51.4,"cloud_coverage":100.0,"uv_index":2.9,"temperature":7.7,"wind_speed":9.4,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T14:00:00+00:00","wind_bearing":41.8,"cloud_coverage":100.0,"uv_index":2.2,"temperature":7.5,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T15:00:00+00:00","wind_bearing":54.7,"cloud_coverage":100.0,"uv_index":1.3,"temperature":7.3,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T16:00:00+00:00","wind_bearing":85.4,"cloud_coverage":100.0,"uv_index":0.6,"temperature":6.8,"wind_speed":9.0,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T17:00:00+00:00","wind_bearing":87.5,"cloud_coverage":100.0,"uv_index":0.2,"temperature":5.9,"wind_speed":9.0,"precipitation":0.0,"humidity":61},{"condition":"cloudy","datetime":"2026-04-13T18:00:00+00:00","wind_bearing":46.6,"cloud_coverage":100.0,"uv_index":0.0,"temperature":5.0,"wind_speed":10.1,"precipitation":0.0,"humidity":76},{"condition":"cloudy","datetime":"2026-04-13T19:00:00+00:00","wind_bearing":39.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":4.2,"wind_speed":8.6,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T20:00:00+00:00","wind_bearing":107.5,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.5,"wind_speed":5.4,"precipitation":0.0,"humidity":86},{"condition":"cloudy","datetime":"2026-04-13T21:00:00+00:00","wind_bearing":132.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.1,"wind_speed":4.7,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T22:00:00+00:00","wind_bearing":196.7,"cloud_coverage":94.5,"uv_index":0.0,"temperature":2.4,"wind_speed":3.6,"precipitation":0.0,"humidity":92},{"condition":"clear-night","datetime":"2026-04-13T23:00:00+00:00","wind_bearing":242.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":1.3,"wind_speed":5.4,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T00:00:00+00:00","wind_bearing":241.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.7,"wind_speed":6.1,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T01:00:00+00:00","wind_bearing":235.4,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.2,"wind_speed":6.1,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T02:00:00+00:00","wind_bearing":246.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.1,"wind_speed":6.8,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T03:00:00+00:00","wind_bearing":259.6,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-0.2,"wind_speed":7.9,"precipitation":0.0,"humidity":96},{"condition":"clear-night","datetime":"2026-04-14T04:00:00+00:00","wind_bearing":283.4,"cloud_coverage":0.8,"uv_index":0.0,"temperature":-0.4,"wind_speed":7.6,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T05:00:00+00:00","wind_bearing":296.2,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-1.0,"wind_speed":6.8,"precipitation":0.0,"humidity":99},{"condition":"sunny","datetime":"2026-04-14T06:00:00+00:00","wind_bearing":294.3,"cloud_coverage":0.0,"uv_index":0.2,"temperature":1.2,"wind_speed":7.9,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T07:00:00+00:00","wind_bearing":290.8,"cloud_coverage":0.0,"uv_index":0.6,"temperature":3.1,"wind_speed":6.8,"precipitation":0.0,"humidity":92},{"condition":"sunny","datetime":"2026-04-14T08:00:00+00:00","wind_bearing":299.7,"cloud_coverage":0.0,"uv_index":1.3,"temperature":4.7,"wind_speed":7.6,"precipitation":0.0,"humidity":80},{"condition":"sunny","datetime":"2026-04-14T09:00:00+00:00","wind_bearing":292.0,"cloud_coverage":0.0,"uv_index":2.1,"temperature":5.9,"wind_speed":6.1,"precipitation":0.0,"humidity":70},{"condition":"sunny","datetime":"2026-04-14T10:00:00+00:00","wind_bearing":273.7,"cloud_coverage":5.5,"uv_index":2.9,"temperature":6.9,"wind_speed":5.8,"precipitation":0.0,"humidity":63},{"condition":"partlycloudy","datetime":"2026-04-14T11:00:00+00:00","wind_bearing":266.8,"cloud_coverage":14.8,"uv_index":3.4,"temperature":7.7,"wind_speed":7.9,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T12:00:00+00:00","wind_bearing":268.4,"cloud_coverage":35.2,"uv_index":3.5,"temperature":8.2,"wind_speed":9.4,"precipitation":0.0,"humidity":56},{"condition":"partlycloudy","datetime":"2026-04-14T13:00:00+00:00","wind_bearing":276.8,"cloud_coverage":44.5,"uv_index":3.1,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T14:00:00+00:00","wind_bearing":284.2,"cloud_coverage":49.2,"uv_index":2.3,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T15:00:00+00:00","wind_bearing":294.2,"cloud_coverage":25.0,"uv_index":1.5,"temperature":7.8,"wind_speed":8.6,"precipitation":0.0,"humidity":55},{"condition":"partlycloudy","datetime":"2026-04-14T16:00:00+00:00","wind_bearing":293.2,"cloud_coverage":53.1,"uv_index":0.8,"temperature":7.3,"wind_speed":7.6,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T17:00:00+00:00","wind_bearing":297.4,"cloud_coverage":29.7,"uv_index":0.3,"temperature":6.6,"wind_speed":6.5,"precipitation":0.0,"humidity":62},{"condition":"partlycloudy","datetime":"2026-04-14T18:00:00+00:00","wind_bearing":314.1,"cloud_coverage":54.7,"uv_index":0.0,"temperature":5.3,"wind_speed":6.1,"precipitation":0.0,"humidity":72},{"condition":"partlycloudy","datetime":"2026-04-14T19:00:00+00:00","wind_bearing":36.4,"cloud_coverage":94.5,"uv_index":0.0,"temperature":3.8,"wind_speed":5.8,"precipitation":0.0,"humidity":84},{"condition":"partlycloudy","datetime":"2026-04-14T20:00:00+00:00","wind_bearing":62.6,"cloud_coverage":71.9,"uv_index":0.0,"temperature":3.0,"wind_speed":6.1,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T21:00:00+00:00","wind_bearing":86.1,"cloud_coverage":92.2,"uv_index":0.0,"temperature":2.6,"wind_speed":7.9,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T22:00:00+00:00","wind_bearing":100.7,"cloud_coverage":53.9,"uv_index":0.0,"temperature":2.2,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-14T23:00:00+00:00","wind_bearing":98.7,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.8,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-15T00:00:00+00:00","wind_bearing":106.5,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.5,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-15T01:00:00+00:00","wind_bearing":118.4,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.2,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"clear-night","datetime":"2026-04-15T02:00:00+00:00","wind_bearing":136.9,"cloud_coverage":0.8,"uv_index":0.0,"temperature":0.8,"wind_speed":10.4,"precipitation":0.0,"humidity":87}]}}}' + url: http://127.0.0.1:8123/api/services/weather/get_forecasts?return_response +- request: + method: POST + url: http://127.0.0.1:8123/api/services/weather/get_forecasts?return_response + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '1281' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"changed_states":[],"service_response":{"weather.forecast_home":{"forecast":[{"condition":"cloudy","datetime":"2026-04-13T03:00:00+00:00","wind_bearing":156.1,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.1,"wind_speed":5.8,"precipitation":0.0,"humidity":89},{"condition":"partlycloudy","datetime":"2026-04-13T04:00:00+00:00","wind_bearing":165.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.3,"wind_speed":5.4,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T05:00:00+00:00","wind_bearing":150.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.6,"wind_speed":5.0,"precipitation":0.0,"humidity":91},{"condition":"cloudy","datetime":"2026-04-13T06:00:00+00:00","wind_bearing":115.2,"cloud_coverage":100.0,"uv_index":0.2,"temperature":0.4,"wind_speed":6.5,"precipitation":0.0,"humidity":90},{"condition":"cloudy","datetime":"2026-04-13T07:00:00+00:00","wind_bearing":76.3,"cloud_coverage":100.0,"uv_index":0.6,"temperature":1.7,"wind_speed":5.0,"precipitation":0.0,"humidity":87},{"condition":"cloudy","datetime":"2026-04-13T08:00:00+00:00","wind_bearing":76.4,"cloud_coverage":100.0,"uv_index":1.3,"temperature":3.6,"wind_speed":5.8,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T09:00:00+00:00","wind_bearing":77.1,"cloud_coverage":100.0,"uv_index":2.2,"temperature":5.3,"wind_speed":6.8,"precipitation":0.0,"humidity":70},{"condition":"cloudy","datetime":"2026-04-13T10:00:00+00:00","wind_bearing":78.0,"cloud_coverage":100.0,"uv_index":3.0,"temperature":6.4,"wind_speed":7.6,"precipitation":0.0,"humidity":60},{"condition":"cloudy","datetime":"2026-04-13T11:00:00+00:00","wind_bearing":74.6,"cloud_coverage":100.0,"uv_index":3.5,"temperature":7.3,"wind_speed":8.3,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T12:00:00+00:00","wind_bearing":61.9,"cloud_coverage":100.0,"uv_index":3.4,"temperature":7.8,"wind_speed":8.3,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T13:00:00+00:00","wind_bearing":51.4,"cloud_coverage":100.0,"uv_index":2.9,"temperature":7.7,"wind_speed":9.4,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T14:00:00+00:00","wind_bearing":41.8,"cloud_coverage":100.0,"uv_index":2.2,"temperature":7.5,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T15:00:00+00:00","wind_bearing":54.7,"cloud_coverage":100.0,"uv_index":1.3,"temperature":7.3,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T16:00:00+00:00","wind_bearing":85.4,"cloud_coverage":100.0,"uv_index":0.6,"temperature":6.8,"wind_speed":9.0,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T17:00:00+00:00","wind_bearing":87.5,"cloud_coverage":100.0,"uv_index":0.2,"temperature":5.9,"wind_speed":9.0,"precipitation":0.0,"humidity":61},{"condition":"cloudy","datetime":"2026-04-13T18:00:00+00:00","wind_bearing":46.6,"cloud_coverage":100.0,"uv_index":0.0,"temperature":5.0,"wind_speed":10.1,"precipitation":0.0,"humidity":76},{"condition":"cloudy","datetime":"2026-04-13T19:00:00+00:00","wind_bearing":39.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":4.2,"wind_speed":8.6,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T20:00:00+00:00","wind_bearing":107.5,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.5,"wind_speed":5.4,"precipitation":0.0,"humidity":86},{"condition":"cloudy","datetime":"2026-04-13T21:00:00+00:00","wind_bearing":132.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.1,"wind_speed":4.7,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T22:00:00+00:00","wind_bearing":196.7,"cloud_coverage":94.5,"uv_index":0.0,"temperature":2.4,"wind_speed":3.6,"precipitation":0.0,"humidity":92},{"condition":"clear-night","datetime":"2026-04-13T23:00:00+00:00","wind_bearing":242.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":1.3,"wind_speed":5.4,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T00:00:00+00:00","wind_bearing":241.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.7,"wind_speed":6.1,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T01:00:00+00:00","wind_bearing":235.4,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.2,"wind_speed":6.1,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T02:00:00+00:00","wind_bearing":246.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.1,"wind_speed":6.8,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T03:00:00+00:00","wind_bearing":259.6,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-0.2,"wind_speed":7.9,"precipitation":0.0,"humidity":96},{"condition":"clear-night","datetime":"2026-04-14T04:00:00+00:00","wind_bearing":283.4,"cloud_coverage":0.8,"uv_index":0.0,"temperature":-0.4,"wind_speed":7.6,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T05:00:00+00:00","wind_bearing":296.2,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-1.0,"wind_speed":6.8,"precipitation":0.0,"humidity":99},{"condition":"sunny","datetime":"2026-04-14T06:00:00+00:00","wind_bearing":294.3,"cloud_coverage":0.0,"uv_index":0.2,"temperature":1.2,"wind_speed":7.9,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T07:00:00+00:00","wind_bearing":290.8,"cloud_coverage":0.0,"uv_index":0.6,"temperature":3.1,"wind_speed":6.8,"precipitation":0.0,"humidity":92},{"condition":"sunny","datetime":"2026-04-14T08:00:00+00:00","wind_bearing":299.7,"cloud_coverage":0.0,"uv_index":1.3,"temperature":4.7,"wind_speed":7.6,"precipitation":0.0,"humidity":80},{"condition":"sunny","datetime":"2026-04-14T09:00:00+00:00","wind_bearing":292.0,"cloud_coverage":0.0,"uv_index":2.1,"temperature":5.9,"wind_speed":6.1,"precipitation":0.0,"humidity":70},{"condition":"sunny","datetime":"2026-04-14T10:00:00+00:00","wind_bearing":273.7,"cloud_coverage":5.5,"uv_index":2.9,"temperature":6.9,"wind_speed":5.8,"precipitation":0.0,"humidity":63},{"condition":"partlycloudy","datetime":"2026-04-14T11:00:00+00:00","wind_bearing":266.8,"cloud_coverage":14.8,"uv_index":3.4,"temperature":7.7,"wind_speed":7.9,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T12:00:00+00:00","wind_bearing":268.4,"cloud_coverage":35.2,"uv_index":3.5,"temperature":8.2,"wind_speed":9.4,"precipitation":0.0,"humidity":56},{"condition":"partlycloudy","datetime":"2026-04-14T13:00:00+00:00","wind_bearing":276.8,"cloud_coverage":44.5,"uv_index":3.1,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T14:00:00+00:00","wind_bearing":284.2,"cloud_coverage":49.2,"uv_index":2.3,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T15:00:00+00:00","wind_bearing":294.2,"cloud_coverage":25.0,"uv_index":1.5,"temperature":7.8,"wind_speed":8.6,"precipitation":0.0,"humidity":55},{"condition":"partlycloudy","datetime":"2026-04-14T16:00:00+00:00","wind_bearing":293.2,"cloud_coverage":53.1,"uv_index":0.8,"temperature":7.3,"wind_speed":7.6,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T17:00:00+00:00","wind_bearing":297.4,"cloud_coverage":29.7,"uv_index":0.3,"temperature":6.6,"wind_speed":6.5,"precipitation":0.0,"humidity":62},{"condition":"partlycloudy","datetime":"2026-04-14T18:00:00+00:00","wind_bearing":314.1,"cloud_coverage":54.7,"uv_index":0.0,"temperature":5.3,"wind_speed":6.1,"precipitation":0.0,"humidity":72},{"condition":"partlycloudy","datetime":"2026-04-14T19:00:00+00:00","wind_bearing":36.4,"cloud_coverage":94.5,"uv_index":0.0,"temperature":3.8,"wind_speed":5.8,"precipitation":0.0,"humidity":84},{"condition":"partlycloudy","datetime":"2026-04-14T20:00:00+00:00","wind_bearing":62.6,"cloud_coverage":71.9,"uv_index":0.0,"temperature":3.0,"wind_speed":6.1,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T21:00:00+00:00","wind_bearing":86.1,"cloud_coverage":92.2,"uv_index":0.0,"temperature":2.6,"wind_speed":7.9,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T22:00:00+00:00","wind_bearing":100.7,"cloud_coverage":53.9,"uv_index":0.0,"temperature":2.2,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-14T23:00:00+00:00","wind_bearing":98.7,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.8,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-15T00:00:00+00:00","wind_bearing":106.5,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.5,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-15T01:00:00+00:00","wind_bearing":118.4,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.2,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"clear-night","datetime":"2026-04-15T02:00:00+00:00","wind_bearing":136.9,"cloud_coverage":0.8,"uv_index":0.0,"temperature":0.8,"wind_speed":10.4,"precipitation":0.0,"humidity":87}]}}}' + url: http://127.0.0.1:8123/api/services/weather/get_forecasts?return_response +- request: + method: POST + url: http://127.0.0.1:8123/api/states/sun.red_sun + response: + status: 200 + headers: + Content-Type: application/json + Location: /api/states/sun.red_sun + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '217' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"entity_id":"sun.red_sun","state":"beyond_our_solar_system","attributes":{},"last_changed":"2026-04-13T02:53:18.332242+00:00","last_reported":"2026-04-13T02:53:18.332242+00:00","last_updated":"2026-04-13T02:53:18.332242+00:00","context":{"id":"01KP2C3YKWF89DG9TRKA44EBEC","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' + url: http://127.0.0.1:8123/api/states/sun.red_sun +- request: + method: POST + url: http://127.0.0.1:8123/api/states/sun.red_sun + response: + status: 200 + headers: + Content-Type: application/json + Location: /api/states/sun.red_sun + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '217' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"entity_id":"sun.red_sun","state":"beyond_our_solar_system","attributes":{},"last_changed":"2026-04-13T02:53:18.332242+00:00","last_reported":"2026-04-13T02:53:18.332242+00:00","last_updated":"2026-04-13T02:53:18.332242+00:00","context":{"id":"01KP2C3YKWF89DG9TRKA44EBEC","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' + url: http://127.0.0.1:8123/api/states/sun.red_sun +- request: + method: POST + url: http://127.0.0.1:8123/api/states/sun.red_sun + response: + status: 200 + headers: + Content-Type: application/json + Location: /api/states/sun.red_sun + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '218' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"sun.red_sun","state":"In the palm of your hand.","attributes":{},"last_changed":"2026-04-13T02:53:20.410392+00:00","last_reported":"2026-04-13T02:53:20.410392+00:00","last_updated":"2026-04-13T02:53:20.410392+00:00","context":{"id":"01KP2C40MTQTAAE2FCA32JK08S","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' + url: http://127.0.0.1:8123/api/states/sun.red_sun +- request: + method: POST + url: http://127.0.0.1:8123/api/states/sun.red_sun + response: + status: 200 + headers: + Content-Type: application/json + Location: /api/states/sun.red_sun + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '219' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"sun.red_sun","state":"In the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:53:20.412448+00:00","last_reported":"2026-04-13T02:53:20.412448+00:00","last_updated":"2026-04-13T02:53:20.412448+00:00","context":{"id":"01KP2C40MWNPCN8YAWXRCA8XJ4","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' + url: http://127.0.0.1:8123/api/states/sun.red_sun +- request: + method: GET + url: http://127.0.0.1:8123/api/events + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '215' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' + url: http://127.0.0.1:8123/api/events +- request: + method: GET + url: http://127.0.0.1:8123/api/events + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '215' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' + url: http://127.0.0.1:8123/api/events +- request: + method: GET + url: http://127.0.0.1:8123/api/events + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '215' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' + url: http://127.0.0.1:8123/api/events +- request: + method: GET + url: http://127.0.0.1:8123/api/events + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '215' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' + url: http://127.0.0.1:8123/api/events +- request: + method: GET + url: http://127.0.0.1:8123/api/events + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '215' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' + url: http://127.0.0.1:8123/api/events +- request: + method: GET + url: http://127.0.0.1:8123/api/events + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '215' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' + url: http://127.0.0.1:8123/api/events +- request: + method: POST + url: http://127.0.0.1:8123/api/events/my_new_event + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '47' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"Event my_new_event fired."}' + url: http://127.0.0.1:8123/api/events/my_new_event +- request: + method: POST + url: http://127.0.0.1:8123/api/events/my_new_event + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '47' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '{"message":"Event my_new_event fired."}' + url: http://127.0.0.1:8123/api/events/my_new_event +- request: + method: GET + url: http://127.0.0.1:8123/api/components + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '365' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"]' + url: http://127.0.0.1:8123/api/components +- request: + method: GET + url: http://127.0.0.1:8123/api/components + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '365' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"]' + url: http://127.0.0.1:8123/api/components +- request: + method: GET + url: http://127.0.0.1:8123/api/qwertyuioasdfghjkzxcvbnm + response: + status: 404 + headers: + Content-Type: text/plain; charset=utf-8 + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '14' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '404: Not Found' + url: http://127.0.0.1:8123/api/qwertyuioasdfghjkzxcvbnm +- request: + method: GET + url: http://127.0.0.1:8123/api/qwertyuioasdfghjkzxcvbnm + response: + status: 404 + headers: + Content-Type: text/plain; charset=utf-8 + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '14' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '404: Not Found' + url: http://127.0.0.1:8123/api/qwertyuioasdfghjkzxcvbnm +- request: + method: DELETE + url: http://127.0.0.1:8123/api/ + response: + status: 405 + headers: + Content-Type: text/plain; charset=utf-8 + Allow: GET,OPTIONS + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '23' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '405: Method Not Allowed' + url: http://127.0.0.1:8123/api/ +- request: + method: DELETE + url: http://127.0.0.1:8123/api/ + response: + status: 405 + headers: + Content-Type: text/plain; charset=utf-8 + Allow: GET,OPTIONS + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '23' + Date: Mon, 13 Apr 2026 02:53:18 GMT + body: '405: Method Not Allowed' + url: http://127.0.0.1:8123/api/ +- request: + method: GET + url: http://127.0.0.1:8123/api/states/person.test_user + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '421' + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/person.test_user +- request: + method: GET + url: http://127.0.0.1:8123/api/states/person.test_user + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '421' + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/person.test_user +- request: + method: GET + url: http://127.0.0.1:8123/api/states/person.test_user + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '421' + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/person.test_user +- request: + method: GET + url: http://127.0.0.1:8123/api/states/person.test_user + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '421' + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}}' + url: http://127.0.0.1:8123/api/states/person.test_user +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.red_sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '336' + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"sun.red_sun","state":"beyond_our_solar_system","attributes":{},"last_changed":"2026-04-13T02:53:18.332242+00:00","last_reported":"2026-04-13T02:53:18.332242+00:00","last_updated":"2026-04-13T02:53:18.332242+00:00","context":{"id":"01KP2C3YKWF89DG9TRKA44EBEC","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' + url: http://127.0.0.1:8123/api/states/sun.red_sun +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.red_sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '338' + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"sun.red_sun","state":"In the palm of your hand.","attributes":{},"last_changed":"2026-04-13T02:53:20.410392+00:00","last_reported":"2026-04-13T02:53:20.410392+00:00","last_updated":"2026-04-13T02:53:20.410392+00:00","context":{"id":"01KP2C40MTQTAAE2FCA32JK08S","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' + url: http://127.0.0.1:8123/api/states/sun.red_sun +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.red_sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '336' + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"sun.red_sun","state":"In the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:53:20.412448+00:00","last_reported":"2026-04-13T02:53:20.412448+00:00","last_updated":"2026-04-13T02:53:20.412448+00:00","context":{"id":"01KP2C40MWNPCN8YAWXRCA8XJ4","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' + url: http://127.0.0.1:8123/api/states/sun.red_sun +- request: + method: GET + url: http://127.0.0.1:8123/api/states/sun.red_sun + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '336' + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"entity_id":"sun.red_sun","state":"In the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:53:20.412448+00:00","last_reported":"2026-04-13T02:53:20.412448+00:00","last_updated":"2026-04-13T02:53:20.412448+00:00","context":{"id":"01KP2C40MWNPCN8YAWXRCA8XJ4","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' + url: http://127.0.0.1:8123/api/states/sun.red_sun +- request: + method: POST + url: http://127.0.0.1:8123/api/events/core_config_updated + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '54' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"message":"Event core_config_updated fired."}' + url: http://127.0.0.1:8123/api/events/core_config_updated +- request: + method: POST + url: http://127.0.0.1:8123/api/events/core_config_updated + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '54' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '{"message":"Event core_config_updated fired."}' + url: http://127.0.0.1:8123/api/events/core_config_updated +- request: + method: GET + url: http://127.0.0.1:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00 + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '10' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[]' + url: http://127.0.0.1:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00 +- request: + method: GET + url: http://127.0.0.1:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00 + response: + status: 200 + headers: + Content-Type: application/json + Referrer-Policy: no-referrer + X-Content-Type-Options: nosniff + Server: '' + X-Frame-Options: SAMEORIGIN + Content-Length: '10' + Content-Encoding: deflate + Date: Mon, 13 Apr 2026 02:53:20 GMT + body: '[]' + url: http://127.0.0.1:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00 +websocket_sessions: +- url: ws://127.0.0.1:8123/api/websocket + frames: + - direction: recv + payload: '{"type":"auth_required","ha_version":"2026.3.1"}' + - direction: send + payload: '{"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk", + "type": "auth"}' + - direction: recv + payload: '{"type":"auth_ok","ha_version":"2026.3.1"}' + - direction: send + payload: '{"features": {}, "id": 1, "type": "supported_features"}' + - direction: recv + payload: '{"id":1,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"id": 2, "type": "ping"}' + - direction: recv + payload: '{"id":2,"type":"pong"}' +- url: ws://127.0.0.1:8123/api/websocket + frames: + - direction: recv + payload: '{"type":"auth_required","ha_version":"2026.3.1"}' + - direction: send + payload: '{"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk", + "type": "auth"}' + - direction: recv + payload: '{"type":"auth_ok","ha_version":"2026.3.1"}' + - direction: send + payload: '{"features": {}, "id": 1, "type": "supported_features"}' + - direction: recv + payload: '{"id":1,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"id": 2, "type": "ping"}' + - direction: recv + payload: '{"id":2,"type":"pong"}' +- url: ws://127.0.0.1:8123/api/websocket + frames: + - direction: recv + payload: '{"type":"auth_required","ha_version":"2026.3.1"}' + - direction: send + payload: '{"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk", + "type": "auth"}' + - direction: recv + payload: '{"type":"auth_ok","ha_version":"2026.3.1"}' + - direction: send + payload: '{"features": {}, "id": 1, "type": "supported_features"}' + - direction: recv + payload: '{"id":1,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"template": "The sun is {{ states(\"sun.sun\").replace(\"_\", \" the + \") }}.", "report_errors": true, "id": 2, "type": "render_template"}' + - direction: recv + payload: '{"id":2,"type":"result","success":true,"result":null}' + - direction: recv + payload: '{"id":2,"type":"event","event":{"result":"The sun is below the horizon.","listeners":{"all":false,"entities":["sun.sun"],"domains":[],"time":false}}}' + - direction: send + payload: '{"subscription": 2, "id": 3, "type": "unsubscribe_events"}' + - direction: recv + payload: '{"id":3,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"id": 4, "type": "get_config"}' + - direction: recv + payload: '{"id":4,"type":"result","success":true,"result":{"allowlist_external_dirs":["/config/www","/media"],"allowlist_external_urls":[],"components":["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"],"config_dir":"/config","config_source":"storage","country":"US","currency":"USD","debug":false,"elevation":1000,"external_url":null,"internal_url":null,"language":"en","latitude":52.3731339,"location_name":"Testing + Server","longitude":4.8903147,"radius":100,"recovery_mode":false,"safe_mode":false,"state":"RUNNING","time_zone":"America/Chicago","unit_system":{"length":"km","accumulated_precipitation":"mm","area":"m²","mass":"g","pressure":"Pa","temperature":"°C","volume":"L","wind_speed":"m/s"},"version":"2026.3.1","whitelist_external_dirs":["/config/www","/media"]}}' + - direction: send + payload: '{"id": 5, "type": "get_states"}' + - direction: recv + payload: '{"id":5,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 6, "type": "get_states"}' + - direction: recv + payload: '{"id":6,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 7, "type": "get_states"}' + - direction: recv + payload: '{"id":7,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 8, "type": "get_states"}' + - direction: recv + payload: '{"id":8,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 9, "type": "get_states"}' + - direction: recv + payload: '{"id":9,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 10, "type": "get_services"}' + - direction: recv + payload: '{"id":10,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' + - direction: send + payload: '{"id": 11, "type": "get_services"}' + - direction: recv + payload: '{"id":11,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' + - direction: send + payload: '{"id": 12, "type": "config_entries/flow/progress"}' + - direction: recv + payload: '{"id":12,"type":"result","success":true,"result":[]}' + - direction: send + payload: '{"id": 13, "type": "config_entries/get"}' + - direction: recv + payload: '{"id":13,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' + - direction: send + payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": "user", + "id": 14, "type": "config_entries/disable"}' + - direction: recv + payload: '{"id":14,"type":"result","success":true,"result":{"require_restart":false}}' + - direction: send + payload: '{"id": 15, "type": "config_entries/get"}' + - direction: recv + payload: '{"id":15,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"not_loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' + - direction: send + payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": null, + "id": 16, "type": "config_entries/disable"}' + - direction: recv + payload: '{"id":16,"type":"result","success":true,"result":{"require_restart":false}}' + - direction: send + payload: '{"id": 17, "type": "config_entries/get"}' + - direction: recv + payload: '{"id":17,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' + - direction: send + payload: '{"flow_id": "", "title": "", "id": 18, "type": "config_entries/ignore_flow"}' + - direction: recv + payload: '{"id":18,"type":"result","success":false,"error":{"code":"not_found","message":"Config + entry not found"}}' + - direction: send + payload: '{"id": 19, "type": "config_entries/get"}' + - direction: recv + payload: '{"id":19,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' + - direction: send + payload: '{"id": 20, "type": "config_entries/get"}' + - direction: recv + payload: '{"id":20,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' + - direction: send + payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "id": 21, "type": "config_entries/subentries/list"}' + - direction: recv + payload: '{"id":21,"type":"result","success":true,"result":[]}' + - direction: send + payload: '{"entry_id": "", "subentry_id": "", "id": 22, "type": "config_entries/subentries/delete"}' + - direction: recv + payload: '{"id":22,"type":"result","success":false,"error":{"code":"not_found","message":"Config + entry not found"}}' + - direction: send + payload: '{"id": 23, "type": "get_services"}' + - direction: recv + payload: '{"id":23,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' + - direction: send + payload: '{"domain": "notify", "service": "persistent_notification", "service_data": + {"message": "Your API Test Suite just said hello!", "title": "Test Suite Notifcation"}, + "return_response": true, "id": 24, "type": "call_service"}' + - direction: recv + payload: '{"id":24,"type":"result","success":false,"error":{"code":"service_validation_error","message":"Validation + error: An action which does not return responses can''t be called with return_response=True","translation_key":"service_does_not_support_response","translation_placeholders":{"return_response":"return_response=True"},"translation_domain":"homeassistant"}}' + - direction: send + payload: '{"domain": "notify", "service": "persistent_notification", "service_data": + {"message": "Your API Test Suite just said hello!", "title": "Test Suite Notifcation"}, + "return_response": false, "id": 25, "type": "call_service"}' + - direction: recv + payload: '{"id":25,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YK2WE6QT23F115RE5WG","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}}' + - direction: send + payload: '{"id": 26, "type": "get_states"}' + - direction: recv + payload: '{"id":26,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"domain": "homeassistant", "service": "update_entity", "service_data": + {"entity_id": "sun.sun"}, "return_response": false, "id": 27, "type": "call_service"}' + - direction: recv + payload: '{"id":27,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YK66QB8KJAWCVVHP8D2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}}' + - direction: send + payload: '{"id": 28, "type": "get_states"}' + - direction: recv + payload: '{"id":28,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 29, "type": "get_services"}' + - direction: recv + payload: '{"id":29,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' + - direction: send + payload: '{"domain": "weather", "service": "get_forecasts", "service_data": {"entity_id": + "weather.forecast_home", "type": "hourly"}, "return_response": true, "id": 30, + "type": "call_service"}' + - direction: recv + payload: '{"id":30,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YKE140CDHC465SK99QR","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},"response":{"weather.forecast_home":{"forecast":[{"condition":"cloudy","datetime":"2026-04-13T03:00:00+00:00","wind_bearing":156.1,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.1,"wind_speed":5.8,"precipitation":0.0,"humidity":89},{"condition":"partlycloudy","datetime":"2026-04-13T04:00:00+00:00","wind_bearing":165.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.3,"wind_speed":5.4,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T05:00:00+00:00","wind_bearing":150.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.6,"wind_speed":5.0,"precipitation":0.0,"humidity":91},{"condition":"cloudy","datetime":"2026-04-13T06:00:00+00:00","wind_bearing":115.2,"cloud_coverage":100.0,"uv_index":0.2,"temperature":0.4,"wind_speed":6.5,"precipitation":0.0,"humidity":90},{"condition":"cloudy","datetime":"2026-04-13T07:00:00+00:00","wind_bearing":76.3,"cloud_coverage":100.0,"uv_index":0.6,"temperature":1.7,"wind_speed":5.0,"precipitation":0.0,"humidity":87},{"condition":"cloudy","datetime":"2026-04-13T08:00:00+00:00","wind_bearing":76.4,"cloud_coverage":100.0,"uv_index":1.3,"temperature":3.6,"wind_speed":5.8,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T09:00:00+00:00","wind_bearing":77.1,"cloud_coverage":100.0,"uv_index":2.2,"temperature":5.3,"wind_speed":6.8,"precipitation":0.0,"humidity":70},{"condition":"cloudy","datetime":"2026-04-13T10:00:00+00:00","wind_bearing":78.0,"cloud_coverage":100.0,"uv_index":3.0,"temperature":6.4,"wind_speed":7.6,"precipitation":0.0,"humidity":60},{"condition":"cloudy","datetime":"2026-04-13T11:00:00+00:00","wind_bearing":74.6,"cloud_coverage":100.0,"uv_index":3.5,"temperature":7.3,"wind_speed":8.3,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T12:00:00+00:00","wind_bearing":61.9,"cloud_coverage":100.0,"uv_index":3.4,"temperature":7.8,"wind_speed":8.3,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T13:00:00+00:00","wind_bearing":51.4,"cloud_coverage":100.0,"uv_index":2.9,"temperature":7.7,"wind_speed":9.4,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T14:00:00+00:00","wind_bearing":41.8,"cloud_coverage":100.0,"uv_index":2.2,"temperature":7.5,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T15:00:00+00:00","wind_bearing":54.7,"cloud_coverage":100.0,"uv_index":1.3,"temperature":7.3,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T16:00:00+00:00","wind_bearing":85.4,"cloud_coverage":100.0,"uv_index":0.6,"temperature":6.8,"wind_speed":9.0,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T17:00:00+00:00","wind_bearing":87.5,"cloud_coverage":100.0,"uv_index":0.2,"temperature":5.9,"wind_speed":9.0,"precipitation":0.0,"humidity":61},{"condition":"cloudy","datetime":"2026-04-13T18:00:00+00:00","wind_bearing":46.6,"cloud_coverage":100.0,"uv_index":0.0,"temperature":5.0,"wind_speed":10.1,"precipitation":0.0,"humidity":76},{"condition":"cloudy","datetime":"2026-04-13T19:00:00+00:00","wind_bearing":39.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":4.2,"wind_speed":8.6,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T20:00:00+00:00","wind_bearing":107.5,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.5,"wind_speed":5.4,"precipitation":0.0,"humidity":86},{"condition":"cloudy","datetime":"2026-04-13T21:00:00+00:00","wind_bearing":132.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.1,"wind_speed":4.7,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T22:00:00+00:00","wind_bearing":196.7,"cloud_coverage":94.5,"uv_index":0.0,"temperature":2.4,"wind_speed":3.6,"precipitation":0.0,"humidity":92},{"condition":"clear-night","datetime":"2026-04-13T23:00:00+00:00","wind_bearing":242.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":1.3,"wind_speed":5.4,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T00:00:00+00:00","wind_bearing":241.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.7,"wind_speed":6.1,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T01:00:00+00:00","wind_bearing":235.4,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.2,"wind_speed":6.1,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T02:00:00+00:00","wind_bearing":246.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.1,"wind_speed":6.8,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T03:00:00+00:00","wind_bearing":259.6,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-0.2,"wind_speed":7.9,"precipitation":0.0,"humidity":96},{"condition":"clear-night","datetime":"2026-04-14T04:00:00+00:00","wind_bearing":283.4,"cloud_coverage":0.8,"uv_index":0.0,"temperature":-0.4,"wind_speed":7.6,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T05:00:00+00:00","wind_bearing":296.2,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-1.0,"wind_speed":6.8,"precipitation":0.0,"humidity":99},{"condition":"sunny","datetime":"2026-04-14T06:00:00+00:00","wind_bearing":294.3,"cloud_coverage":0.0,"uv_index":0.2,"temperature":1.2,"wind_speed":7.9,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T07:00:00+00:00","wind_bearing":290.8,"cloud_coverage":0.0,"uv_index":0.6,"temperature":3.1,"wind_speed":6.8,"precipitation":0.0,"humidity":92},{"condition":"sunny","datetime":"2026-04-14T08:00:00+00:00","wind_bearing":299.7,"cloud_coverage":0.0,"uv_index":1.3,"temperature":4.7,"wind_speed":7.6,"precipitation":0.0,"humidity":80},{"condition":"sunny","datetime":"2026-04-14T09:00:00+00:00","wind_bearing":292.0,"cloud_coverage":0.0,"uv_index":2.1,"temperature":5.9,"wind_speed":6.1,"precipitation":0.0,"humidity":70},{"condition":"sunny","datetime":"2026-04-14T10:00:00+00:00","wind_bearing":273.7,"cloud_coverage":5.5,"uv_index":2.9,"temperature":6.9,"wind_speed":5.8,"precipitation":0.0,"humidity":63},{"condition":"partlycloudy","datetime":"2026-04-14T11:00:00+00:00","wind_bearing":266.8,"cloud_coverage":14.8,"uv_index":3.4,"temperature":7.7,"wind_speed":7.9,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T12:00:00+00:00","wind_bearing":268.4,"cloud_coverage":35.2,"uv_index":3.5,"temperature":8.2,"wind_speed":9.4,"precipitation":0.0,"humidity":56},{"condition":"partlycloudy","datetime":"2026-04-14T13:00:00+00:00","wind_bearing":276.8,"cloud_coverage":44.5,"uv_index":3.1,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T14:00:00+00:00","wind_bearing":284.2,"cloud_coverage":49.2,"uv_index":2.3,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T15:00:00+00:00","wind_bearing":294.2,"cloud_coverage":25.0,"uv_index":1.5,"temperature":7.8,"wind_speed":8.6,"precipitation":0.0,"humidity":55},{"condition":"partlycloudy","datetime":"2026-04-14T16:00:00+00:00","wind_bearing":293.2,"cloud_coverage":53.1,"uv_index":0.8,"temperature":7.3,"wind_speed":7.6,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T17:00:00+00:00","wind_bearing":297.4,"cloud_coverage":29.7,"uv_index":0.3,"temperature":6.6,"wind_speed":6.5,"precipitation":0.0,"humidity":62},{"condition":"partlycloudy","datetime":"2026-04-14T18:00:00+00:00","wind_bearing":314.1,"cloud_coverage":54.7,"uv_index":0.0,"temperature":5.3,"wind_speed":6.1,"precipitation":0.0,"humidity":72},{"condition":"partlycloudy","datetime":"2026-04-14T19:00:00+00:00","wind_bearing":36.4,"cloud_coverage":94.5,"uv_index":0.0,"temperature":3.8,"wind_speed":5.8,"precipitation":0.0,"humidity":84},{"condition":"partlycloudy","datetime":"2026-04-14T20:00:00+00:00","wind_bearing":62.6,"cloud_coverage":71.9,"uv_index":0.0,"temperature":3.0,"wind_speed":6.1,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T21:00:00+00:00","wind_bearing":86.1,"cloud_coverage":92.2,"uv_index":0.0,"temperature":2.6,"wind_speed":7.9,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T22:00:00+00:00","wind_bearing":100.7,"cloud_coverage":53.9,"uv_index":0.0,"temperature":2.2,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-14T23:00:00+00:00","wind_bearing":98.7,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.8,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-15T00:00:00+00:00","wind_bearing":106.5,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.5,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-15T01:00:00+00:00","wind_bearing":118.4,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.2,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"clear-night","datetime":"2026-04-15T02:00:00+00:00","wind_bearing":136.9,"cloud_coverage":0.8,"uv_index":0.0,"temperature":0.8,"wind_speed":10.4,"precipitation":0.0,"humidity":87}]}}}}' + - direction: send + payload: '{"id": 31, "type": "get_states"}' + - direction: recv + payload: '{"id":31,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 32, "type": "config/entity_registry/list"}' + - direction: recv + payload: '{"id":32,"type": "result","success":true,"result": [{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":0.0,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"person.test_user","has_entity_name":false,"hidden_by":null,"icon":null,"id":"e6de57e591560fad68f1c3b52bf0b295","labels":[],"modified_at":0.0,"name":null,"options":{},"original_name":"Test + User","platform":"person","translation_key":null,"unique_id":"test_user"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.288922,"name":null,"options":{},"original_name":"Next + dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.78036,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dusk","has_entity_name":true,"hidden_by":null,"icon":null,"id":"e1a35874a09227109783c6d1301a10cf","labels":[],"modified_at":1776048798.288781,"name":null,"options":{},"original_name":"Next + dusk","platform":"sun","translation_key":"next_dusk","unique_id":"5f8426fa502435857743f302651753c9-next_dusk"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780603,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_midnight","has_entity_name":true,"hidden_by":null,"icon":null,"id":"9ec059b13886380e2d5d4a9002e89879","labels":[],"modified_at":1776048798.28882,"name":null,"options":{},"original_name":"Next + midnight","platform":"sun","translation_key":"next_midnight","unique_id":"5f8426fa502435857743f302651753c9-next_midnight"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780796,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_noon","has_entity_name":true,"hidden_by":null,"icon":null,"id":"04bc6ee0081da1191cb27e2ee5842148","labels":[],"modified_at":1776048798.288848,"name":null,"options":{},"original_name":"Next + noon","platform":"sun","translation_key":"next_noon","unique_id":"5f8426fa502435857743f302651753c9-next_noon"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780976,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"ec87eec8ebe365ec0cd1119962627570","labels":[],"modified_at":1776048798.288874,"name":null,"options":{},"original_name":"Next + rising","platform":"sun","translation_key":"next_rising","unique_id":"5f8426fa502435857743f302651753c9-next_rising"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781147,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_setting","has_entity_name":true,"hidden_by":null,"icon":null,"id":"594acbedee290ea279f1d63cf6efbb3b","labels":[],"modified_at":1776048798.288898,"name":null,"options":{},"original_name":"Next + setting","platform":"sun","translation_key":"next_setting","unique_id":"5f8426fa502435857743f302651753c9-next_setting"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.7813,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_elevation","has_entity_name":true,"hidden_by":null,"icon":null,"id":"0df1d222a5fedd8d5e62a2ff2be79094","labels":[],"modified_at":1776046381.250753,"name":null,"options":{},"original_name":"Solar + elevation","platform":"sun","translation_key":"solar_elevation","unique_id":"5f8426fa502435857743f302651753c9-solar_elevation"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781397,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_azimuth","has_entity_name":true,"hidden_by":null,"icon":null,"id":"104de75b64e950af398ec4fe9998338c","labels":[],"modified_at":1776046381.250803,"name":null,"options":{},"original_name":"Solar + azimuth","platform":"sun","translation_key":"solar_azimuth","unique_id":"5f8426fa502435857743f302651753c9-solar_azimuth"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781483,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"888993d87923ff452ad1e53f6b3a943f","labels":[],"modified_at":1734400728.781506,"name":null,"options":{},"original_name":"Solar + rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":"01JFJGH76SD417XC4YJTG8QJWB","config_subentry_id":null,"created_at":1734714367.780994,"device_id":"6586dbdeb10a88ae4603b47e600c6124","disabled_by":null,"entity_category":null,"entity_id":"weather.forecast_home","has_entity_name":true,"hidden_by":null,"icon":null,"id":"6ae588672696a2601b0152f22ee235f3","labels":[],"modified_at":1734714367.781055,"name":null,"options":{},"original_name":"Home","platform":"met","translation_key":null,"unique_id":"52.3731339-4.8903147"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1776046381.249625,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"binary_sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"650017b39ced3c74c0cd7bafb5ad5a57","labels":[],"modified_at":1776046381.24967,"name":null,"options":{},"original_name":"Solar + rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338277,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"4d295ce067b386e8601e868e5b071e92","labels":[],"modified_at":1776046381.338296,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338357,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"24ac520911e2d3b522a12291161b78c2","labels":[],"modified_at":1776046381.338376,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338431,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"fc93bb35a45e27420489a129b4fe38b8","labels":[],"modified_at":1776046381.338446,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338496,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"61e6538380357146fb1cecbb68f00248","labels":[],"modified_at":1776046381.338512,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338564,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"3e82b7b9c95b42b0d3c0e0734a4b1111","labels":[],"modified_at":1776046381.338581,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_4"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.33863,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"7ec85badbe9d5bd0f21183877d745e43","labels":[],"modified_at":1776046381.338647,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_4"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945387,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"event.backup_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b7d0cc277170fa6a7bd4f528374b1317","labels":[],"modified_at":1776046381.945424,"name":null,"options":{},"original_name":"Automatic + backup","platform":"backup","translation_key":"automatic_backup_event","unique_id":"automatic_backup_event"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945778,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_backup_manager_state","has_entity_name":true,"hidden_by":null,"icon":null,"id":"a57e4837e900582b68c14d6cf02cdab1","labels":[],"modified_at":1776046381.945813,"name":null,"options":{},"original_name":"Backup + Manager state","platform":"backup","translation_key":"backup_manager_state","unique_id":"backup_manager_state"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945956,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_next_scheduled_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"064e76bb083bf2cca30865a0ac699279","labels":[],"modified_at":1776046381.945979,"name":null,"options":{},"original_name":"Next + scheduled automatic backup","platform":"backup","translation_key":"next_scheduled_automatic_backup","unique_id":"next_scheduled_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946098,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_successful_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b0c3747840a365bc0223d3eaa9532362","labels":[],"modified_at":1776046381.94612,"name":null,"options":{},"original_name":"Last + successful automatic backup","platform":"backup","translation_key":"last_successful_automatic_backup","unique_id":"last_successful_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946229,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_attempted_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"549177510d127dc95abeb083987ac50d","labels":[],"modified_at":1776046381.946248,"name":null,"options":{},"original_name":"Last + attempted automatic backup","platform":"backup","translation_key":"last_attempted_automatic_backup","unique_id":"last_attempted_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.491479,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"779f6487ac8bc7c5d182f6e9f6969d33","labels":[],"modified_at":1776046404.491511,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_5"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.499467,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"db670347d76ea2ef5bcfd4a28e938b06","labels":[],"modified_at":1776046404.4995,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_5"}]}' + - direction: send + payload: '{"entity_id": "sensor.sun_next_dawn", "id": 33, "type": "config/entity_registry/get"}' + - direction: recv + payload: '{"id":33,"type":"result","success":true,"result":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.288922,"name":null,"options":{},"original_name":"Next + dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}' + - direction: send + payload: '{"entity_id": "sensor.sun_next_dawn", "name": "Test Name", "id": 34, + "type": "config/entity_registry/update"}' + - direction: recv + payload: '{"id":34,"type":"result","success":true,"result":{"entity_entry":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.345672,"name":"Test + Name","options":{},"original_name":"Next dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}}' + - direction: send + payload: '{"entity_id": "sensor.sun_next_dawn", "name": null, "id": 35, "type": + "config/entity_registry/update"}' + - direction: recv + payload: '{"id":35,"type":"result","success":true,"result":{"entity_entry":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.346326,"name":null,"options":{},"original_name":"Next + dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}}' + - direction: send + payload: '{"name": "smoke_registry_remove_test", "id": 36, "type": "input_boolean/create"}' + - direction: recv + payload: '{"id":36,"type":"result","success":true,"result":{"id":"smoke_registry_remove_test_9","name":"smoke_registry_remove_test"}}' + - direction: send + payload: '{"entity_id": "input_boolean.smoke_registry_remove_test", "id": 37, + "type": "config/entity_registry/remove"}' + - direction: recv + payload: '{"id":37,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"id": 38, "type": "config/entity_registry/list"}' + - direction: recv + payload: '{"id":38,"type": "result","success":true,"result": [{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":0.0,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"person.test_user","has_entity_name":false,"hidden_by":null,"icon":null,"id":"e6de57e591560fad68f1c3b52bf0b295","labels":[],"modified_at":0.0,"name":null,"options":{},"original_name":"Test + User","platform":"person","translation_key":null,"unique_id":"test_user"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.346326,"name":null,"options":{},"original_name":"Next + dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.78036,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dusk","has_entity_name":true,"hidden_by":null,"icon":null,"id":"e1a35874a09227109783c6d1301a10cf","labels":[],"modified_at":1776048798.288781,"name":null,"options":{},"original_name":"Next + dusk","platform":"sun","translation_key":"next_dusk","unique_id":"5f8426fa502435857743f302651753c9-next_dusk"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780603,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_midnight","has_entity_name":true,"hidden_by":null,"icon":null,"id":"9ec059b13886380e2d5d4a9002e89879","labels":[],"modified_at":1776048798.28882,"name":null,"options":{},"original_name":"Next + midnight","platform":"sun","translation_key":"next_midnight","unique_id":"5f8426fa502435857743f302651753c9-next_midnight"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780796,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_noon","has_entity_name":true,"hidden_by":null,"icon":null,"id":"04bc6ee0081da1191cb27e2ee5842148","labels":[],"modified_at":1776048798.288848,"name":null,"options":{},"original_name":"Next + noon","platform":"sun","translation_key":"next_noon","unique_id":"5f8426fa502435857743f302651753c9-next_noon"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780976,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"ec87eec8ebe365ec0cd1119962627570","labels":[],"modified_at":1776048798.288874,"name":null,"options":{},"original_name":"Next + rising","platform":"sun","translation_key":"next_rising","unique_id":"5f8426fa502435857743f302651753c9-next_rising"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781147,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_setting","has_entity_name":true,"hidden_by":null,"icon":null,"id":"594acbedee290ea279f1d63cf6efbb3b","labels":[],"modified_at":1776048798.288898,"name":null,"options":{},"original_name":"Next + setting","platform":"sun","translation_key":"next_setting","unique_id":"5f8426fa502435857743f302651753c9-next_setting"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.7813,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_elevation","has_entity_name":true,"hidden_by":null,"icon":null,"id":"0df1d222a5fedd8d5e62a2ff2be79094","labels":[],"modified_at":1776046381.250753,"name":null,"options":{},"original_name":"Solar + elevation","platform":"sun","translation_key":"solar_elevation","unique_id":"5f8426fa502435857743f302651753c9-solar_elevation"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781397,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_azimuth","has_entity_name":true,"hidden_by":null,"icon":null,"id":"104de75b64e950af398ec4fe9998338c","labels":[],"modified_at":1776046381.250803,"name":null,"options":{},"original_name":"Solar + azimuth","platform":"sun","translation_key":"solar_azimuth","unique_id":"5f8426fa502435857743f302651753c9-solar_azimuth"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781483,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"888993d87923ff452ad1e53f6b3a943f","labels":[],"modified_at":1734400728.781506,"name":null,"options":{},"original_name":"Solar + rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":"01JFJGH76SD417XC4YJTG8QJWB","config_subentry_id":null,"created_at":1734714367.780994,"device_id":"6586dbdeb10a88ae4603b47e600c6124","disabled_by":null,"entity_category":null,"entity_id":"weather.forecast_home","has_entity_name":true,"hidden_by":null,"icon":null,"id":"6ae588672696a2601b0152f22ee235f3","labels":[],"modified_at":1734714367.781055,"name":null,"options":{},"original_name":"Home","platform":"met","translation_key":null,"unique_id":"52.3731339-4.8903147"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1776046381.249625,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"binary_sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"650017b39ced3c74c0cd7bafb5ad5a57","labels":[],"modified_at":1776046381.24967,"name":null,"options":{},"original_name":"Solar + rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338277,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"4d295ce067b386e8601e868e5b071e92","labels":[],"modified_at":1776046381.338296,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338357,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"24ac520911e2d3b522a12291161b78c2","labels":[],"modified_at":1776046381.338376,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338431,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"fc93bb35a45e27420489a129b4fe38b8","labels":[],"modified_at":1776046381.338446,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338496,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"61e6538380357146fb1cecbb68f00248","labels":[],"modified_at":1776046381.338512,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338564,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"3e82b7b9c95b42b0d3c0e0734a4b1111","labels":[],"modified_at":1776046381.338581,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_4"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.33863,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"7ec85badbe9d5bd0f21183877d745e43","labels":[],"modified_at":1776046381.338647,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_4"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945387,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"event.backup_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b7d0cc277170fa6a7bd4f528374b1317","labels":[],"modified_at":1776046381.945424,"name":null,"options":{},"original_name":"Automatic + backup","platform":"backup","translation_key":"automatic_backup_event","unique_id":"automatic_backup_event"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945778,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_backup_manager_state","has_entity_name":true,"hidden_by":null,"icon":null,"id":"a57e4837e900582b68c14d6cf02cdab1","labels":[],"modified_at":1776046381.945813,"name":null,"options":{},"original_name":"Backup + Manager state","platform":"backup","translation_key":"backup_manager_state","unique_id":"backup_manager_state"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945956,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_next_scheduled_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"064e76bb083bf2cca30865a0ac699279","labels":[],"modified_at":1776046381.945979,"name":null,"options":{},"original_name":"Next + scheduled automatic backup","platform":"backup","translation_key":"next_scheduled_automatic_backup","unique_id":"next_scheduled_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946098,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_successful_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b0c3747840a365bc0223d3eaa9532362","labels":[],"modified_at":1776046381.94612,"name":null,"options":{},"original_name":"Last + successful automatic backup","platform":"backup","translation_key":"last_successful_automatic_backup","unique_id":"last_successful_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946229,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_attempted_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"549177510d127dc95abeb083987ac50d","labels":[],"modified_at":1776046381.946248,"name":null,"options":{},"original_name":"Last + attempted automatic backup","platform":"backup","translation_key":"last_attempted_automatic_backup","unique_id":"last_attempted_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.491479,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"779f6487ac8bc7c5d182f6e9f6969d33","labels":[],"modified_at":1776046404.491511,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_5"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.499467,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"db670347d76ea2ef5bcfd4a28e938b06","labels":[],"modified_at":1776046404.4995,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_5"}]}' + - direction: send + payload: '{"event_type": "test_event", "id": 39, "type": "subscribe_events"}' + - direction: recv + payload: '{"id":39,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"event_type": "test_event", "event_data": {"message": "Triggered by + websocket client"}, "id": 40, "type": "fire_event"}' + - direction: recv + payload: '{"type":"event","event":{"event_type":"test_event","data":{"message":"Triggered + by websocket client"},"origin":"LOCAL","time_fired":"2026-04-13T02:53:18.399911+00:00","context":{"id":"01KP2C3YNZR4FYX186840GBNA7","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},"id":39}' + - direction: recv + payload: '{"id":40,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YNZR4FYX186840GBNA7","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}}' + - direction: send + payload: '{"subscription": 39, "id": 41, "type": "unsubscribe_events"}' + - direction: recv + payload: '{"id":41,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"template": "{{ (now() + timedelta(seconds=1)) }}", "report_errors": + true, "id": 42, "type": "render_template"}' + - direction: recv + payload: '{"id":42,"type":"result","success":true,"result":null}' + - direction: recv + payload: '{"id":42,"type":"event","event":{"result":"2026-04-12 21:53:19.402455-05:00","listeners":{"all":false,"entities":[],"domains":[],"time":true}}}' + - direction: send + payload: '{"subscription": 42, "id": 43, "type": "unsubscribe_events"}' + - direction: recv + payload: '{"id":43,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"trigger": {"platform": "time", "at": "21:53:19"}, "id": 44, "type": + "subscribe_trigger"}' + - direction: recv + payload: '{"id":44,"type":"result","success":true,"result":null}' + - direction: recv + payload: '{"id":44,"type":"event","event":{"variables":{"trigger":{"id":"0","idx":"0","alias":null,"platform":"time","now":"2026-04-12T21:53:19.295578-05:00","description":"time","entity_id":null}},"context":null}}' + - direction: send + payload: '{"subscription": 44, "id": 45, "type": "unsubscribe_events"}' + - direction: recv + payload: '{"id":45,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"id": 46, "type": "config_entries/subscribe"}' + - direction: recv + payload: '{"id":46,"type":"result","success":true,"result":null}' + - direction: recv + payload: '{"id":46,"type":"event","event":[{"type":null,"entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' + - direction: send + payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": "user", + "id": 47, "type": "config_entries/disable"}' + - direction: recv + payload: '{"id":46,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"unload_in_progress","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' + - direction: recv + payload: '{"id":46,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"not_loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' + - direction: recv + payload: '{"id":47,"type":"result","success":true,"result":{"require_restart":false}}' + - direction: send + payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": null, + "id": 48, "type": "config_entries/disable"}' + - direction: recv + payload: '{"id":46,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"setup_in_progress","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' + - direction: recv + payload: '{"id":46,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' + - direction: recv + payload: '{"id":48,"type":"result","success":true,"result":{"require_restart":false}}' + - direction: send + payload: '{"subscription": 46, "id": 49, "type": "unsubscribe_events"}' + - direction: recv + payload: '{"id":49,"type":"result","success":true,"result":null}' +- url: ws://127.0.0.1:8123/api/websocket + frames: + - direction: recv + payload: '{"type":"auth_required","ha_version":"2026.3.1"}' + - direction: send + payload: '{"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk", + "type": "auth"}' + - direction: recv + payload: '{"type":"auth_ok","ha_version":"2026.3.1"}' + - direction: send + payload: '{"features": {}, "id": 1, "type": "supported_features"}' + - direction: recv + payload: '{"id":1,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"template": "The sun is {{ states(\"sun.sun\").replace(\"_\", \" the + \") }}.", "report_errors": true, "id": 2, "type": "render_template"}' + - direction: recv + payload: '{"id":2,"type":"result","success":true,"result":null}' + - direction: recv + payload: '{"id":2,"type":"event","event":{"result":"The sun is below the horizon.","listeners":{"all":false,"entities":["sun.sun"],"domains":[],"time":false}}}' + - direction: send + payload: '{"subscription": 2, "id": 3, "type": "unsubscribe_events"}' + - direction: recv + payload: '{"id":3,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"id": 4, "type": "get_config"}' + - direction: recv + payload: '{"id":4,"type":"result","success":true,"result":{"allowlist_external_dirs":["/config/www","/media"],"allowlist_external_urls":[],"components":["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"],"config_dir":"/config","config_source":"storage","country":"US","currency":"USD","debug":false,"elevation":1000,"external_url":null,"internal_url":null,"language":"en","latitude":52.3731339,"location_name":"Testing + Server","longitude":4.8903147,"radius":100,"recovery_mode":false,"safe_mode":false,"state":"RUNNING","time_zone":"America/Chicago","unit_system":{"length":"km","accumulated_precipitation":"mm","area":"m²","mass":"g","pressure":"Pa","temperature":"°C","volume":"L","wind_speed":"m/s"},"version":"2026.3.1","whitelist_external_dirs":["/config/www","/media"]}}' + - direction: send + payload: '{"id": 5, "type": "get_states"}' + - direction: recv + payload: '{"id":5,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 6, "type": "get_states"}' + - direction: recv + payload: '{"id":6,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 7, "type": "get_states"}' + - direction: recv + payload: '{"id":7,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 8, "type": "get_states"}' + - direction: recv + payload: '{"id":8,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 9, "type": "get_states"}' + - direction: recv + payload: '{"id":9,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 10, "type": "get_services"}' + - direction: recv + payload: '{"id":10,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' + - direction: send + payload: '{"id": 11, "type": "get_services"}' + - direction: recv + payload: '{"id":11,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' + - direction: send + payload: '{"id": 12, "type": "config_entries/flow/progress"}' + - direction: recv + payload: '{"id":12,"type":"result","success":true,"result":[]}' + - direction: send + payload: '{"id": 13, "type": "config_entries/get"}' + - direction: recv + payload: '{"id":13,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' + - direction: send + payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": "user", + "id": 14, "type": "config_entries/disable"}' + - direction: recv + payload: '{"id":14,"type":"result","success":true,"result":{"require_restart":false}}' + - direction: send + payload: '{"id": 15, "type": "config_entries/get"}' + - direction: recv + payload: '{"id":15,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"not_loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' + - direction: send + payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": null, + "id": 16, "type": "config_entries/disable"}' + - direction: recv + payload: '{"id":16,"type":"result","success":true,"result":{"require_restart":false}}' + - direction: send + payload: '{"id": 17, "type": "config_entries/get"}' + - direction: recv + payload: '{"id":17,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' + - direction: send + payload: '{"flow_id": "", "title": "", "id": 18, "type": "config_entries/ignore_flow"}' + - direction: recv + payload: '{"id":18,"type":"result","success":false,"error":{"code":"not_found","message":"Config + entry not found"}}' + - direction: send + payload: '{"id": 19, "type": "config_entries/get"}' + - direction: recv + payload: '{"id":19,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' + - direction: send + payload: '{"id": 20, "type": "config_entries/get"}' + - direction: recv + payload: '{"id":20,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' + - direction: send + payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "id": 21, "type": "config_entries/subentries/list"}' + - direction: recv + payload: '{"id":21,"type":"result","success":true,"result":[]}' + - direction: send + payload: '{"entry_id": "", "subentry_id": "", "id": 22, "type": "config_entries/subentries/delete"}' + - direction: recv + payload: '{"id":22,"type":"result","success":false,"error":{"code":"not_found","message":"Config + entry not found"}}' + - direction: send + payload: '{"id": 23, "type": "get_services"}' + - direction: recv + payload: '{"id":23,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' + - direction: send + payload: '{"domain": "notify", "service": "persistent_notification", "service_data": + {"message": "Your API Test Suite just said hello!", "title": "Test Suite Notifcation"}, + "return_response": true, "id": 24, "type": "call_service"}' + - direction: recv + payload: '{"id":24,"type":"result","success":false,"error":{"code":"service_validation_error","message":"Validation + error: An action which does not return responses can''t be called with return_response=True","translation_key":"service_does_not_support_response","translation_placeholders":{"return_response":"return_response=True"},"translation_domain":"homeassistant"}}' + - direction: send + payload: '{"domain": "notify", "service": "persistent_notification", "service_data": + {"message": "Your API Test Suite just said hello!", "title": "Test Suite Notifcation"}, + "return_response": false, "id": 25, "type": "call_service"}' + - direction: recv + payload: '{"id":25,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YK4WETPTY5B4FBKP08W","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}}' + - direction: send + payload: '{"id": 26, "type": "get_services"}' + - direction: recv + payload: '{"id":26,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please + check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test + notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something + went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 + 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 + 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The + garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your + Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform + specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: + \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- + light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is + being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This + is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item + A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item + A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 + 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 + or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, + 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' + - direction: send + payload: '{"domain": "weather", "service": "get_forecasts", "service_data": {"entity_id": + "weather.forecast_home", "type": "hourly"}, "return_response": true, "id": 27, + "type": "call_service"}' + - direction: recv + payload: '{"id":27,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YKG1PRSM4A1BHJ0FPH9","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},"response":{"weather.forecast_home":{"forecast":[{"condition":"cloudy","datetime":"2026-04-13T03:00:00+00:00","wind_bearing":156.1,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.1,"wind_speed":5.8,"precipitation":0.0,"humidity":89},{"condition":"partlycloudy","datetime":"2026-04-13T04:00:00+00:00","wind_bearing":165.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.3,"wind_speed":5.4,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T05:00:00+00:00","wind_bearing":150.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.6,"wind_speed":5.0,"precipitation":0.0,"humidity":91},{"condition":"cloudy","datetime":"2026-04-13T06:00:00+00:00","wind_bearing":115.2,"cloud_coverage":100.0,"uv_index":0.2,"temperature":0.4,"wind_speed":6.5,"precipitation":0.0,"humidity":90},{"condition":"cloudy","datetime":"2026-04-13T07:00:00+00:00","wind_bearing":76.3,"cloud_coverage":100.0,"uv_index":0.6,"temperature":1.7,"wind_speed":5.0,"precipitation":0.0,"humidity":87},{"condition":"cloudy","datetime":"2026-04-13T08:00:00+00:00","wind_bearing":76.4,"cloud_coverage":100.0,"uv_index":1.3,"temperature":3.6,"wind_speed":5.8,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T09:00:00+00:00","wind_bearing":77.1,"cloud_coverage":100.0,"uv_index":2.2,"temperature":5.3,"wind_speed":6.8,"precipitation":0.0,"humidity":70},{"condition":"cloudy","datetime":"2026-04-13T10:00:00+00:00","wind_bearing":78.0,"cloud_coverage":100.0,"uv_index":3.0,"temperature":6.4,"wind_speed":7.6,"precipitation":0.0,"humidity":60},{"condition":"cloudy","datetime":"2026-04-13T11:00:00+00:00","wind_bearing":74.6,"cloud_coverage":100.0,"uv_index":3.5,"temperature":7.3,"wind_speed":8.3,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T12:00:00+00:00","wind_bearing":61.9,"cloud_coverage":100.0,"uv_index":3.4,"temperature":7.8,"wind_speed":8.3,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T13:00:00+00:00","wind_bearing":51.4,"cloud_coverage":100.0,"uv_index":2.9,"temperature":7.7,"wind_speed":9.4,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T14:00:00+00:00","wind_bearing":41.8,"cloud_coverage":100.0,"uv_index":2.2,"temperature":7.5,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T15:00:00+00:00","wind_bearing":54.7,"cloud_coverage":100.0,"uv_index":1.3,"temperature":7.3,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T16:00:00+00:00","wind_bearing":85.4,"cloud_coverage":100.0,"uv_index":0.6,"temperature":6.8,"wind_speed":9.0,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T17:00:00+00:00","wind_bearing":87.5,"cloud_coverage":100.0,"uv_index":0.2,"temperature":5.9,"wind_speed":9.0,"precipitation":0.0,"humidity":61},{"condition":"cloudy","datetime":"2026-04-13T18:00:00+00:00","wind_bearing":46.6,"cloud_coverage":100.0,"uv_index":0.0,"temperature":5.0,"wind_speed":10.1,"precipitation":0.0,"humidity":76},{"condition":"cloudy","datetime":"2026-04-13T19:00:00+00:00","wind_bearing":39.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":4.2,"wind_speed":8.6,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T20:00:00+00:00","wind_bearing":107.5,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.5,"wind_speed":5.4,"precipitation":0.0,"humidity":86},{"condition":"cloudy","datetime":"2026-04-13T21:00:00+00:00","wind_bearing":132.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.1,"wind_speed":4.7,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T22:00:00+00:00","wind_bearing":196.7,"cloud_coverage":94.5,"uv_index":0.0,"temperature":2.4,"wind_speed":3.6,"precipitation":0.0,"humidity":92},{"condition":"clear-night","datetime":"2026-04-13T23:00:00+00:00","wind_bearing":242.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":1.3,"wind_speed":5.4,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T00:00:00+00:00","wind_bearing":241.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.7,"wind_speed":6.1,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T01:00:00+00:00","wind_bearing":235.4,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.2,"wind_speed":6.1,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T02:00:00+00:00","wind_bearing":246.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.1,"wind_speed":6.8,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T03:00:00+00:00","wind_bearing":259.6,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-0.2,"wind_speed":7.9,"precipitation":0.0,"humidity":96},{"condition":"clear-night","datetime":"2026-04-14T04:00:00+00:00","wind_bearing":283.4,"cloud_coverage":0.8,"uv_index":0.0,"temperature":-0.4,"wind_speed":7.6,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T05:00:00+00:00","wind_bearing":296.2,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-1.0,"wind_speed":6.8,"precipitation":0.0,"humidity":99},{"condition":"sunny","datetime":"2026-04-14T06:00:00+00:00","wind_bearing":294.3,"cloud_coverage":0.0,"uv_index":0.2,"temperature":1.2,"wind_speed":7.9,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T07:00:00+00:00","wind_bearing":290.8,"cloud_coverage":0.0,"uv_index":0.6,"temperature":3.1,"wind_speed":6.8,"precipitation":0.0,"humidity":92},{"condition":"sunny","datetime":"2026-04-14T08:00:00+00:00","wind_bearing":299.7,"cloud_coverage":0.0,"uv_index":1.3,"temperature":4.7,"wind_speed":7.6,"precipitation":0.0,"humidity":80},{"condition":"sunny","datetime":"2026-04-14T09:00:00+00:00","wind_bearing":292.0,"cloud_coverage":0.0,"uv_index":2.1,"temperature":5.9,"wind_speed":6.1,"precipitation":0.0,"humidity":70},{"condition":"sunny","datetime":"2026-04-14T10:00:00+00:00","wind_bearing":273.7,"cloud_coverage":5.5,"uv_index":2.9,"temperature":6.9,"wind_speed":5.8,"precipitation":0.0,"humidity":63},{"condition":"partlycloudy","datetime":"2026-04-14T11:00:00+00:00","wind_bearing":266.8,"cloud_coverage":14.8,"uv_index":3.4,"temperature":7.7,"wind_speed":7.9,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T12:00:00+00:00","wind_bearing":268.4,"cloud_coverage":35.2,"uv_index":3.5,"temperature":8.2,"wind_speed":9.4,"precipitation":0.0,"humidity":56},{"condition":"partlycloudy","datetime":"2026-04-14T13:00:00+00:00","wind_bearing":276.8,"cloud_coverage":44.5,"uv_index":3.1,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T14:00:00+00:00","wind_bearing":284.2,"cloud_coverage":49.2,"uv_index":2.3,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T15:00:00+00:00","wind_bearing":294.2,"cloud_coverage":25.0,"uv_index":1.5,"temperature":7.8,"wind_speed":8.6,"precipitation":0.0,"humidity":55},{"condition":"partlycloudy","datetime":"2026-04-14T16:00:00+00:00","wind_bearing":293.2,"cloud_coverage":53.1,"uv_index":0.8,"temperature":7.3,"wind_speed":7.6,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T17:00:00+00:00","wind_bearing":297.4,"cloud_coverage":29.7,"uv_index":0.3,"temperature":6.6,"wind_speed":6.5,"precipitation":0.0,"humidity":62},{"condition":"partlycloudy","datetime":"2026-04-14T18:00:00+00:00","wind_bearing":314.1,"cloud_coverage":54.7,"uv_index":0.0,"temperature":5.3,"wind_speed":6.1,"precipitation":0.0,"humidity":72},{"condition":"partlycloudy","datetime":"2026-04-14T19:00:00+00:00","wind_bearing":36.4,"cloud_coverage":94.5,"uv_index":0.0,"temperature":3.8,"wind_speed":5.8,"precipitation":0.0,"humidity":84},{"condition":"partlycloudy","datetime":"2026-04-14T20:00:00+00:00","wind_bearing":62.6,"cloud_coverage":71.9,"uv_index":0.0,"temperature":3.0,"wind_speed":6.1,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T21:00:00+00:00","wind_bearing":86.1,"cloud_coverage":92.2,"uv_index":0.0,"temperature":2.6,"wind_speed":7.9,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T22:00:00+00:00","wind_bearing":100.7,"cloud_coverage":53.9,"uv_index":0.0,"temperature":2.2,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-14T23:00:00+00:00","wind_bearing":98.7,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.8,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-15T00:00:00+00:00","wind_bearing":106.5,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.5,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-15T01:00:00+00:00","wind_bearing":118.4,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.2,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"clear-night","datetime":"2026-04-15T02:00:00+00:00","wind_bearing":136.9,"cloud_coverage":0.8,"uv_index":0.0,"temperature":0.8,"wind_speed":10.4,"precipitation":0.0,"humidity":87}]}}}}' + - direction: send + payload: '{"id": 28, "type": "get_states"}' + - direction: recv + payload: '{"id":28,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing + Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test + User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun + Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather + forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast + Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup + Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup + Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup + Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In + the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]}' + - direction: send + payload: '{"id": 29, "type": "config/entity_registry/list"}' + - direction: recv + payload: '{"id":29,"type": "result","success":true,"result": [{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":0.0,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"person.test_user","has_entity_name":false,"hidden_by":null,"icon":null,"id":"e6de57e591560fad68f1c3b52bf0b295","labels":[],"modified_at":0.0,"name":null,"options":{},"original_name":"Test + User","platform":"person","translation_key":null,"unique_id":"test_user"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.346326,"name":null,"options":{},"original_name":"Next + dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.78036,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dusk","has_entity_name":true,"hidden_by":null,"icon":null,"id":"e1a35874a09227109783c6d1301a10cf","labels":[],"modified_at":1776048798.288781,"name":null,"options":{},"original_name":"Next + dusk","platform":"sun","translation_key":"next_dusk","unique_id":"5f8426fa502435857743f302651753c9-next_dusk"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780603,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_midnight","has_entity_name":true,"hidden_by":null,"icon":null,"id":"9ec059b13886380e2d5d4a9002e89879","labels":[],"modified_at":1776048798.28882,"name":null,"options":{},"original_name":"Next + midnight","platform":"sun","translation_key":"next_midnight","unique_id":"5f8426fa502435857743f302651753c9-next_midnight"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780796,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_noon","has_entity_name":true,"hidden_by":null,"icon":null,"id":"04bc6ee0081da1191cb27e2ee5842148","labels":[],"modified_at":1776048798.288848,"name":null,"options":{},"original_name":"Next + noon","platform":"sun","translation_key":"next_noon","unique_id":"5f8426fa502435857743f302651753c9-next_noon"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780976,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"ec87eec8ebe365ec0cd1119962627570","labels":[],"modified_at":1776048798.288874,"name":null,"options":{},"original_name":"Next + rising","platform":"sun","translation_key":"next_rising","unique_id":"5f8426fa502435857743f302651753c9-next_rising"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781147,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_setting","has_entity_name":true,"hidden_by":null,"icon":null,"id":"594acbedee290ea279f1d63cf6efbb3b","labels":[],"modified_at":1776048798.288898,"name":null,"options":{},"original_name":"Next + setting","platform":"sun","translation_key":"next_setting","unique_id":"5f8426fa502435857743f302651753c9-next_setting"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.7813,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_elevation","has_entity_name":true,"hidden_by":null,"icon":null,"id":"0df1d222a5fedd8d5e62a2ff2be79094","labels":[],"modified_at":1776046381.250753,"name":null,"options":{},"original_name":"Solar + elevation","platform":"sun","translation_key":"solar_elevation","unique_id":"5f8426fa502435857743f302651753c9-solar_elevation"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781397,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_azimuth","has_entity_name":true,"hidden_by":null,"icon":null,"id":"104de75b64e950af398ec4fe9998338c","labels":[],"modified_at":1776046381.250803,"name":null,"options":{},"original_name":"Solar + azimuth","platform":"sun","translation_key":"solar_azimuth","unique_id":"5f8426fa502435857743f302651753c9-solar_azimuth"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781483,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"888993d87923ff452ad1e53f6b3a943f","labels":[],"modified_at":1734400728.781506,"name":null,"options":{},"original_name":"Solar + rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":"01JFJGH76SD417XC4YJTG8QJWB","config_subentry_id":null,"created_at":1734714367.780994,"device_id":"6586dbdeb10a88ae4603b47e600c6124","disabled_by":null,"entity_category":null,"entity_id":"weather.forecast_home","has_entity_name":true,"hidden_by":null,"icon":null,"id":"6ae588672696a2601b0152f22ee235f3","labels":[],"modified_at":1734714367.781055,"name":null,"options":{},"original_name":"Home","platform":"met","translation_key":null,"unique_id":"52.3731339-4.8903147"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1776046381.249625,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"binary_sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"650017b39ced3c74c0cd7bafb5ad5a57","labels":[],"modified_at":1776046381.24967,"name":null,"options":{},"original_name":"Solar + rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338277,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"4d295ce067b386e8601e868e5b071e92","labels":[],"modified_at":1776046381.338296,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338357,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"24ac520911e2d3b522a12291161b78c2","labels":[],"modified_at":1776046381.338376,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338431,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"fc93bb35a45e27420489a129b4fe38b8","labels":[],"modified_at":1776046381.338446,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338496,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"61e6538380357146fb1cecbb68f00248","labels":[],"modified_at":1776046381.338512,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338564,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"3e82b7b9c95b42b0d3c0e0734a4b1111","labels":[],"modified_at":1776046381.338581,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_4"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.33863,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"7ec85badbe9d5bd0f21183877d745e43","labels":[],"modified_at":1776046381.338647,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_4"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945387,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"event.backup_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b7d0cc277170fa6a7bd4f528374b1317","labels":[],"modified_at":1776046381.945424,"name":null,"options":{},"original_name":"Automatic + backup","platform":"backup","translation_key":"automatic_backup_event","unique_id":"automatic_backup_event"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945778,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_backup_manager_state","has_entity_name":true,"hidden_by":null,"icon":null,"id":"a57e4837e900582b68c14d6cf02cdab1","labels":[],"modified_at":1776046381.945813,"name":null,"options":{},"original_name":"Backup + Manager state","platform":"backup","translation_key":"backup_manager_state","unique_id":"backup_manager_state"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945956,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_next_scheduled_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"064e76bb083bf2cca30865a0ac699279","labels":[],"modified_at":1776046381.945979,"name":null,"options":{},"original_name":"Next + scheduled automatic backup","platform":"backup","translation_key":"next_scheduled_automatic_backup","unique_id":"next_scheduled_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946098,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_successful_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b0c3747840a365bc0223d3eaa9532362","labels":[],"modified_at":1776046381.94612,"name":null,"options":{},"original_name":"Last + successful automatic backup","platform":"backup","translation_key":"last_successful_automatic_backup","unique_id":"last_successful_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946229,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_attempted_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"549177510d127dc95abeb083987ac50d","labels":[],"modified_at":1776046381.946248,"name":null,"options":{},"original_name":"Last + attempted automatic backup","platform":"backup","translation_key":"last_attempted_automatic_backup","unique_id":"last_attempted_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.491479,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"779f6487ac8bc7c5d182f6e9f6969d33","labels":[],"modified_at":1776046404.491511,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_5"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.499467,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"db670347d76ea2ef5bcfd4a28e938b06","labels":[],"modified_at":1776046404.4995,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_5"}]}' + - direction: send + payload: '{"entity_id": "sensor.sun_next_dawn", "id": 30, "type": "config/entity_registry/get"}' + - direction: recv + payload: '{"id":30,"type":"result","success":true,"result":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.346326,"name":null,"options":{},"original_name":"Next + dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}' + - direction: send + payload: '{"entity_id": "sensor.sun_next_dawn", "name": "Async Test Name", "id": + 31, "type": "config/entity_registry/update"}' + - direction: recv + payload: '{"id":31,"type":"result","success":true,"result":{"entity_entry":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.352262,"name":"Async + Test Name","options":{},"original_name":"Next dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}}' + - direction: send + payload: '{"entity_id": "sensor.sun_next_dawn", "name": null, "id": 32, "type": + "config/entity_registry/update"}' + - direction: recv + payload: '{"id":32,"type":"result","success":true,"result":{"entity_entry":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.352691,"name":null,"options":{},"original_name":"Next + dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}}' + - direction: send + payload: '{"name": "smoke_registry_remove_test_async", "id": 33, "type": "input_boolean/create"}' + - direction: recv + payload: '{"id":33,"type":"result","success":true,"result":{"id":"smoke_registry_remove_test_async_9","name":"smoke_registry_remove_test_async"}}' + - direction: send + payload: '{"entity_id": "input_boolean.smoke_registry_remove_test_async", "id": + 34, "type": "config/entity_registry/remove"}' + - direction: recv + payload: '{"id":34,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"id": 35, "type": "config/entity_registry/list"}' + - direction: recv + payload: '{"id":35,"type": "result","success":true,"result": [{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":0.0,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"person.test_user","has_entity_name":false,"hidden_by":null,"icon":null,"id":"e6de57e591560fad68f1c3b52bf0b295","labels":[],"modified_at":0.0,"name":null,"options":{},"original_name":"Test + User","platform":"person","translation_key":null,"unique_id":"test_user"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.352691,"name":null,"options":{},"original_name":"Next + dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.78036,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dusk","has_entity_name":true,"hidden_by":null,"icon":null,"id":"e1a35874a09227109783c6d1301a10cf","labels":[],"modified_at":1776048798.288781,"name":null,"options":{},"original_name":"Next + dusk","platform":"sun","translation_key":"next_dusk","unique_id":"5f8426fa502435857743f302651753c9-next_dusk"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780603,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_midnight","has_entity_name":true,"hidden_by":null,"icon":null,"id":"9ec059b13886380e2d5d4a9002e89879","labels":[],"modified_at":1776048798.28882,"name":null,"options":{},"original_name":"Next + midnight","platform":"sun","translation_key":"next_midnight","unique_id":"5f8426fa502435857743f302651753c9-next_midnight"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780796,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_noon","has_entity_name":true,"hidden_by":null,"icon":null,"id":"04bc6ee0081da1191cb27e2ee5842148","labels":[],"modified_at":1776048798.288848,"name":null,"options":{},"original_name":"Next + noon","platform":"sun","translation_key":"next_noon","unique_id":"5f8426fa502435857743f302651753c9-next_noon"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780976,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"ec87eec8ebe365ec0cd1119962627570","labels":[],"modified_at":1776048798.288874,"name":null,"options":{},"original_name":"Next + rising","platform":"sun","translation_key":"next_rising","unique_id":"5f8426fa502435857743f302651753c9-next_rising"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781147,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_setting","has_entity_name":true,"hidden_by":null,"icon":null,"id":"594acbedee290ea279f1d63cf6efbb3b","labels":[],"modified_at":1776048798.288898,"name":null,"options":{},"original_name":"Next + setting","platform":"sun","translation_key":"next_setting","unique_id":"5f8426fa502435857743f302651753c9-next_setting"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.7813,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_elevation","has_entity_name":true,"hidden_by":null,"icon":null,"id":"0df1d222a5fedd8d5e62a2ff2be79094","labels":[],"modified_at":1776046381.250753,"name":null,"options":{},"original_name":"Solar + elevation","platform":"sun","translation_key":"solar_elevation","unique_id":"5f8426fa502435857743f302651753c9-solar_elevation"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781397,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_azimuth","has_entity_name":true,"hidden_by":null,"icon":null,"id":"104de75b64e950af398ec4fe9998338c","labels":[],"modified_at":1776046381.250803,"name":null,"options":{},"original_name":"Solar + azimuth","platform":"sun","translation_key":"solar_azimuth","unique_id":"5f8426fa502435857743f302651753c9-solar_azimuth"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781483,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"888993d87923ff452ad1e53f6b3a943f","labels":[],"modified_at":1734400728.781506,"name":null,"options":{},"original_name":"Solar + rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":"01JFJGH76SD417XC4YJTG8QJWB","config_subentry_id":null,"created_at":1734714367.780994,"device_id":"6586dbdeb10a88ae4603b47e600c6124","disabled_by":null,"entity_category":null,"entity_id":"weather.forecast_home","has_entity_name":true,"hidden_by":null,"icon":null,"id":"6ae588672696a2601b0152f22ee235f3","labels":[],"modified_at":1734714367.781055,"name":null,"options":{},"original_name":"Home","platform":"met","translation_key":null,"unique_id":"52.3731339-4.8903147"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1776046381.249625,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"binary_sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"650017b39ced3c74c0cd7bafb5ad5a57","labels":[],"modified_at":1776046381.24967,"name":null,"options":{},"original_name":"Solar + rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338277,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"4d295ce067b386e8601e868e5b071e92","labels":[],"modified_at":1776046381.338296,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338357,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"24ac520911e2d3b522a12291161b78c2","labels":[],"modified_at":1776046381.338376,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338431,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"fc93bb35a45e27420489a129b4fe38b8","labels":[],"modified_at":1776046381.338446,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338496,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"61e6538380357146fb1cecbb68f00248","labels":[],"modified_at":1776046381.338512,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338564,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"3e82b7b9c95b42b0d3c0e0734a4b1111","labels":[],"modified_at":1776046381.338581,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_4"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.33863,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"7ec85badbe9d5bd0f21183877d745e43","labels":[],"modified_at":1776046381.338647,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_4"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945387,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"event.backup_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b7d0cc277170fa6a7bd4f528374b1317","labels":[],"modified_at":1776046381.945424,"name":null,"options":{},"original_name":"Automatic + backup","platform":"backup","translation_key":"automatic_backup_event","unique_id":"automatic_backup_event"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945778,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_backup_manager_state","has_entity_name":true,"hidden_by":null,"icon":null,"id":"a57e4837e900582b68c14d6cf02cdab1","labels":[],"modified_at":1776046381.945813,"name":null,"options":{},"original_name":"Backup + Manager state","platform":"backup","translation_key":"backup_manager_state","unique_id":"backup_manager_state"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945956,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_next_scheduled_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"064e76bb083bf2cca30865a0ac699279","labels":[],"modified_at":1776046381.945979,"name":null,"options":{},"original_name":"Next + scheduled automatic backup","platform":"backup","translation_key":"next_scheduled_automatic_backup","unique_id":"next_scheduled_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946098,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_successful_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b0c3747840a365bc0223d3eaa9532362","labels":[],"modified_at":1776046381.94612,"name":null,"options":{},"original_name":"Last + successful automatic backup","platform":"backup","translation_key":"last_successful_automatic_backup","unique_id":"last_successful_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946229,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_attempted_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"549177510d127dc95abeb083987ac50d","labels":[],"modified_at":1776046381.946248,"name":null,"options":{},"original_name":"Last + attempted automatic backup","platform":"backup","translation_key":"last_attempted_automatic_backup","unique_id":"last_attempted_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.491479,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"779f6487ac8bc7c5d182f6e9f6969d33","labels":[],"modified_at":1776046404.491511,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_5"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.499467,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"db670347d76ea2ef5bcfd4a28e938b06","labels":[],"modified_at":1776046404.4995,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_5"}]}' + - direction: send + payload: '{"event_type": "async_test_event", "id": 36, "type": "subscribe_events"}' + - direction: recv + payload: '{"id":36,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"event_type": "async_test_event", "event_data": {"message": "Triggered + by async websocket client"}, "id": 37, "type": "fire_event"}' + - direction: recv + payload: '{"type":"event","event":{"event_type":"async_test_event","data":{"message":"Triggered + by async websocket client"},"origin":"LOCAL","time_fired":"2026-04-13T02:53:18.401097+00:00","context":{"id":"01KP2C3YP1T3AJR81DTSWGZS2E","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},"id":36}' + - direction: recv + payload: '{"id":37,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YP1T3AJR81DTSWGZS2E","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}}' + - direction: send + payload: '{"subscription": 36, "id": 38, "type": "unsubscribe_events"}' + - direction: recv + payload: '{"id":38,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"id": 39, "type": "config_entries/subscribe"}' + - direction: recv + payload: '{"id":39,"type":"result","success":true,"result":null}' + - direction: recv + payload: '{"id":39,"type":"event","event":[{"type":null,"entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio + Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' + - direction: send + payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": "user", + "id": 40, "type": "config_entries/disable"}' + - direction: recv + payload: '{"id":39,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"unload_in_progress","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' + - direction: recv + payload: '{"id":39,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"not_loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' + - direction: recv + payload: '{"id":40,"type":"result","success":true,"result":{"require_restart":false}}' + - direction: send + payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": null, + "id": 41, "type": "config_entries/disable"}' + - direction: recv + payload: '{"id":39,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"setup_in_progress","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' + - direction: recv + payload: '{"id":39,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' + - direction: recv + payload: '{"id":41,"type":"result","success":true,"result":{"require_restart":false}}' + - direction: send + payload: '{"subscription": 39, "id": 42, "type": "unsubscribe_events"}' + - direction: recv + payload: '{"id":42,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"template": "{{ (now() + timedelta(seconds=1)) }}", "report_errors": + true, "id": 43, "type": "render_template"}' + - direction: recv + payload: '{"id":43,"type":"result","success":true,"result":null}' + - direction: recv + payload: '{"id":43,"type":"event","event":{"result":"2026-04-12 21:53:20.309822-05:00","listeners":{"all":false,"entities":[],"domains":[],"time":true}}}' + - direction: send + payload: '{"subscription": 43, "id": 44, "type": "unsubscribe_events"}' + - direction: recv + payload: '{"id":44,"type":"result","success":true,"result":null}' + - direction: send + payload: '{"trigger": {"platform": "time", "at": "21:53:20"}, "id": 45, "type": + "subscribe_trigger"}' + - direction: recv + payload: '{"id":45,"type":"result","success":true,"result":null}' + - direction: recv + payload: '{"id":45,"type":"event","event":{"variables":{"trigger":{"id":"0","idx":"0","alias":null,"platform":"time","now":"2026-04-12T21:53:20.403555-05:00","description":"time","entity_id":null}},"context":null}}' + - direction: send + payload: '{"subscription": 45, "id": 46, "type": "unsubscribe_events"}' + - direction: recv + payload: '{"id":46,"type":"result","success":true,"result":null}' +- url: ws://127.0.0.1:8123/api/websocket + frames: + - direction: recv + payload: '{"type":"auth_required","ha_version":"2026.3.1"}' + - direction: send + payload: '{"access_token": "lolthisisawrongtokenforsure", "type": "auth"}' + - direction: recv + payload: '{"type":"auth_invalid","message":"Invalid access token or password"}' +- url: ws://127.0.0.1:8123/api/websocket + frames: + - direction: recv + payload: '{"type":"auth_required","ha_version":"2026.3.1"}' + - direction: send + payload: '{"access_token": "lolthisisawrongtokenforsure", "type": "auth"}' + - direction: recv + payload: '{"type":"auth_invalid","message":"Invalid access token or password"}' diff --git a/packages/pytest-niquests-cassettes/pyproject.toml b/packages/pytest-niquests-cassettes/pyproject.toml new file mode 100644 index 00000000..dff38c11 --- /dev/null +++ b/packages/pytest-niquests-cassettes/pyproject.toml @@ -0,0 +1,20 @@ +[build-system] +build-backend = "hatchling.build" +requires = ["hatchling"] + +[project] +name = "pytest-niquests-cassettes" +version = "0.1.0" +description = "Record and replay niquests HTTP and WebSocket interactions in pytest" +requires-python = ">=3.11" +dependencies = [ + "niquests>=3", + "pytest>=8", + "PyYAML>=6", +] + +[project.entry-points.pytest11] +niquests-cassettes = "pytest_niquests_cassettes.plugin" + +[tool.hatch.build.targets.wheel] +packages = ["src/pytest_niquests_cassettes"] diff --git a/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/__init__.py b/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/__init__.py new file mode 100644 index 00000000..00b35437 --- /dev/null +++ b/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/__init__.py @@ -0,0 +1,5 @@ +"""pytest-niquests-cassettes: record and replay niquests HTTP/WebSocket interactions.""" + +from ._cassette import Cassette + +__all__ = ["Cassette"] diff --git a/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/_cassette.py b/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/_cassette.py new file mode 100644 index 00000000..adf46ca9 --- /dev/null +++ b/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/_cassette.py @@ -0,0 +1,381 @@ +""" +Core cassette machinery: record and replay niquests HTTP and WebSocket interactions. +""" + +from __future__ import annotations + +from collections import defaultdict +from typing import TYPE_CHECKING +from typing import Any +from typing import Self + +if TYPE_CHECKING: + from pathlib import Path +from unittest.mock import patch +from urllib.parse import urlparse + +import niquests +import yaml +from niquests import AsyncSession +from niquests import Response +from niquests import Session +from niquests.structures import CaseInsensitiveDict + +# ── URL utilities ──────────────────────────────────────────────────────────── + +#: Supported matcher names and the URL component each one examines. +SUPPORTED_MATCHERS: frozenset[str] = frozenset({"method", "host", "path", "query"}) + +#: Default matchers — path-only matching ignores dynamic query params (timestamps, etc.) +DEFAULT_MATCH_ON: frozenset[str] = frozenset({"method", "path"}) + + +def _http_key( + method: str, + url: str, + match_on: frozenset[str] = DEFAULT_MATCH_ON, +) -> str: + """Build a cassette lookup key from the parts of the request selected by *match_on*.""" + parsed = urlparse(url) + parts: list[str] = [] + if "method" in match_on: + parts.append(method.upper()) + if "host" in match_on: + parts.append(parsed.netloc) + if "path" in match_on: + parts.append(parsed.path) + if "query" in match_on and parsed.query: + parts.append(f"?{parsed.query}") + return " ".join(parts) + + +def _ws_key(url: str) -> str: + return f"WS {urlparse(url).path}" + + +def _is_ws(url: str) -> bool: + return url.startswith(("ws://", "wss://")) + + +# ── Fake extensions (replay mode) ──────────────────────────────────────────── + + +class FakeExtension: + """Replays pre-recorded WebSocket recv frames for sync clients.""" + + def __init__(self, frames: list[dict[str, str]]) -> None: + self._payloads = [f["payload"] for f in frames if f["direction"] == "recv"] + self._idx = 0 + + def next_payload(self) -> str | None: + if self._idx >= len(self._payloads): + return None + payload = self._payloads[self._idx] + self._idx += 1 + return payload + + def send_payload(self, data: str) -> None: + pass + + def close(self) -> None: + pass + + +class AsyncFakeExtension: + """Replays pre-recorded WebSocket recv frames for async clients.""" + + def __init__(self, frames: list[dict[str, str]]) -> None: + self._payloads = [f["payload"] for f in frames if f["direction"] == "recv"] + self._idx = 0 + + async def next_payload(self) -> str | None: + if self._idx >= len(self._payloads): + return None + payload = self._payloads[self._idx] + self._idx += 1 + return payload + + async def send_payload(self, data: str) -> None: + pass + + async def close(self) -> None: + pass + + +# ── Recording extensions (record mode) ─────────────────────────────────────── + + +class RecordingExtension: + """Wraps a live sync WS extension, appending every frame to a shared list.""" + + def __init__(self, real: Any, frames: list[dict[str, str]]) -> None: + self._real = real + self._frames = frames + + def next_payload(self) -> str | None: + raw = self._real.next_payload() + if raw is not None: + decoded = raw if isinstance(raw, str) else raw.decode() + self._frames.append({"direction": "recv", "payload": decoded}) + return raw + + def send_payload(self, data: str) -> None: + self._frames.append({"direction": "send", "payload": data}) + self._real.send_payload(data) + + def close(self) -> None: + self._real.close() + + +class AsyncRecordingExtension: + """Wraps a live async WS extension, appending every frame to a shared list.""" + + def __init__(self, real: Any, frames: list[dict[str, str]]) -> None: + self._real = real + self._frames = frames + + async def next_payload(self) -> str | None: + raw = await self._real.next_payload() + if raw is not None: + decoded = raw if isinstance(raw, str) else raw.decode() + self._frames.append({"direction": "recv", "payload": decoded}) + return raw + + async def send_payload(self, data: str) -> None: + self._frames.append({"direction": "send", "payload": data}) + await self._real.send_payload(data) + + async def close(self) -> None: + await self._real.close() + + +# ── Response construction ───────────────────────────────────────────────────── + + +class _FakeRaw: + """Minimal stand-in for urllib3's HTTPResponse, exposing just the extension attribute.""" + + def __init__(self, extension: Any) -> None: + self.extension = extension + + +def _build_response(recorded: dict[str, Any]) -> Response: + resp = Response() + resp.status_code = recorded["status"] + resp.headers = CaseInsensitiveDict(recorded.get("headers", {})) + body = recorded.get("body") or "" + resp._content = body.encode("utf-8") if isinstance(body, str) else bytes(body) + resp._content_consumed = True + resp.encoding = "utf-8" + resp.url = recorded.get("url", "") + return resp + + +def _ws_response(url: str, frames: list[dict[str, str]], *, is_async: bool) -> Response: + ext = AsyncFakeExtension(frames) if is_async else FakeExtension(frames) + resp = Response() + resp.status_code = 101 + resp._content = b"" + resp._content_consumed = True + resp.headers = CaseInsensitiveDict({"Upgrade": "websocket"}) + resp.encoding = "utf-8" + resp.url = url + resp.raw = _FakeRaw(ext) + return resp + + +# ── Cassette ────────────────────────────────────────────────────────────────── + + +class Cassette: + """ + Context manager that intercepts ``niquests.Session.send`` and + ``niquests.AsyncSession.send`` to record or replay HTTP and WebSocket + interactions. + + **Record mode** (``record=True``): calls pass through to the real network; + each interaction is captured and written to ``path`` on exit. + + **Replay mode** (default): responses are returned from the cassette file + without any network access. Responses are queued per the key derived from + ``match_on`` and popped FIFO, so repeated calls to the same endpoint work. + + :param match_on: Set of request components used to build the lookup key. + Supported values: ``"method"``, ``"host"``, ``"path"``, ``"query"``. + Defaults to ``{"method", "path"}``, which ignores dynamic query params + such as timestamps or pagination tokens. + """ + + def __init__( + self, + path: Path, + *, + record: bool = False, + match_on: frozenset[str] = DEFAULT_MATCH_ON, + ) -> None: + unknown = match_on - SUPPORTED_MATCHERS + if unknown: + msg = f"Unknown matcher(s): {unknown!r}. Supported: {SUPPORTED_MATCHERS!r}" + raise ValueError(msg) + self._path = path + self._record = record + self._match_on = match_on + # recorded[key] = list of raw interaction dicts (populated in record mode) + self._recorded: dict[str, list[Any]] = defaultdict(list) + # queues[key] = FIFO list of pre-loaded response dicts (replay mode) + self._queues: dict[str, list[Any]] = defaultdict(list) + self._patches: list[Any] = [] + + if not record: + self._load() + + # ── Persistence ────────────────────────────────────────────────────────── + + def _load(self) -> None: + if not self._path.exists(): + return + data = yaml.safe_load(self._path.read_text()) or {} + for entry in data.get("interactions", []): + # Cassettes store the full URL so all matchers work at load time. + key = _http_key( + entry["request"]["method"], + entry["request"]["url"], + self._match_on, + ) + self._queues[key].append(entry["response"]) + for ws in data.get("websocket_sessions", []): + key = _ws_key(ws["url"]) + self._queues[key].append(ws["frames"]) + + def save(self) -> None: + if not self._record: + return + interactions = [] + ws_sessions = [] + for key, entries in self._recorded.items(): + for entry in entries: + if key.startswith("WS "): + ws_sessions.append(entry) + else: + interactions.append(entry) + self._path.parent.mkdir(parents=True, exist_ok=True) + self._path.write_text( + yaml.dump( + {"interactions": interactions, "websocket_sessions": ws_sessions}, + default_flow_style=False, + allow_unicode=True, + sort_keys=False, + ), + ) + + # ── Internal helpers ────────────────────────────────────────────────────── + + def _record_http(self, method: str, url: str, resp: Response) -> None: + body = resp.text if resp._content else "" + # Store the full URL (not just path) so all match_on components are + # available when the cassette is loaded back for replay. + self._recorded[_http_key(method, url, self._match_on)].append( + { + "request": {"method": method, "url": url}, + "response": { + "status": resp.status_code, + "headers": dict(resp.headers), + "body": body, + "url": url, + }, + }, + ) + + def _record_ws(self, url: str) -> list[dict[str, str]]: + """Register a new WS session recording and return its mutable frame list.""" + frames: list[dict[str, str]] = [] + self._recorded[_ws_key(url)].append({"url": url, "frames": frames}) + return frames + + def _replay_http(self, method: str, url: str, request: Any) -> Response: + key = _http_key(method, url, self._match_on) + if not self._queues.get(key): + msg = f"No recorded response for {key!r} — re-run with --record to update cassettes" + raise KeyError(msg) + resp = _build_response(self._queues[key].pop(0)) + resp.request = request + return resp + + def _replay_ws(self, url: str, *, is_async: bool) -> Response: + key = _ws_key(url) + if not self._queues.get(key): + msg = f"No recorded WS session for {key!r} — re-run with --record to update cassettes" + raise KeyError(msg) + return _ws_response(url, self._queues[key].pop(0), is_async=is_async) + + # ── Send interceptors ───────────────────────────────────────────────────── + + def _make_sync_send(self, original: Any) -> Any: + cassette = self + + def send(session_self: Session, request: Any, **kwargs: Any) -> Response: + url = request.url or "" + method = request.method or "GET" + if cassette._record: + resp = original(session_self, request, **kwargs) + if _is_ws(url) and resp.extension is not None: + resp.raw._extension = RecordingExtension( + resp.extension, + cassette._record_ws(url), + ) + else: + cassette._record_http(method, url, resp) + return resp + if _is_ws(url): + return cassette._replay_ws(url, is_async=False) + return cassette._replay_http(method, url, request) + + return send + + def _make_async_send(self, original: Any) -> Any: + cassette = self + + async def send( + session_self: AsyncSession, + request: Any, + **kwargs: Any, + ) -> Response: + url = request.url or "" + method = request.method or "GET" + if cassette._record: + resp = await original(session_self, request, **kwargs) + if _is_ws(url) and resp.extension is not None: + resp.raw._extension = AsyncRecordingExtension( + resp.extension, + cassette._record_ws(url), + ) + else: + cassette._record_http(method, url, resp) + return resp + if _is_ws(url): + return cassette._replay_ws(url, is_async=True) + return cassette._replay_http(method, url, request) + + return send + + # ── Context manager ─────────────────────────────────────────────────────── + + def __enter__(self) -> Self: + sync_orig = niquests.Session.send + async_orig = niquests.AsyncSession.send + self._patches = [ + patch.object(niquests.Session, "send", self._make_sync_send(sync_orig)), + patch.object( + niquests.AsyncSession, + "send", + self._make_async_send(async_orig), + ), + ] + for p in self._patches: + p.start() + return self + + def __exit__(self, *_: object) -> None: + for p in self._patches: + p.stop() + self.save() diff --git a/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/plugin.py b/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/plugin.py new file mode 100644 index 00000000..4919a9f0 --- /dev/null +++ b/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/plugin.py @@ -0,0 +1,69 @@ +"""pytest plugin entry point for pytest-niquests-cassettes.""" + +from __future__ import annotations + +from pathlib import Path +from typing import TYPE_CHECKING + +import pytest + +if TYPE_CHECKING: + from collections.abc import Generator + +from ._cassette import DEFAULT_MATCH_ON +from ._cassette import SUPPORTED_MATCHERS +from ._cassette import Cassette + + +def pytest_addoption(parser: pytest.Parser) -> None: + group = parser.getgroup("niquests-cassettes") + group.addoption( + "--record", + action="store_true", + default=False, + help="Record cassettes from live network traffic instead of replaying stored ones.", + ) + group.addoption( + "--cassette-dir", + default="cassettes", + help="Directory to store cassette files (relative to rootdir). Default: cassettes/", + ) + group.addoption( + "--cassette-file", + default="session", + help="Cassette filename without extension. Default: session", + ) + default_matchers = ",".join(sorted(DEFAULT_MATCH_ON)) + supported = ", ".join(sorted(SUPPORTED_MATCHERS)) + group.addoption( + "--cassette-match-on", + default=default_matchers, + help=( + f"Comma-separated request components used to match cassette entries. " + f"Supported: {supported}. Default: {default_matchers}" + ), + ) + + +@pytest.fixture(scope="session", autouse=True) +def cassette(request: pytest.FixtureRequest) -> Generator[Cassette, None, None]: + """ + Session-scoped fixture that activates cassette record/replay for all + niquests HTTP and WebSocket traffic. + + Pass ``--record`` on the pytest command line to record a fresh cassette + from a live server. Without ``--record``, traffic is replayed from the + existing cassette file. + """ + record: bool = request.config.getoption("--record") + cassette_dir = Path(request.config.rootdir) / request.config.getoption( + "--cassette-dir", + ) + cassette_file = request.config.getoption("--cassette-file") + path = cassette_dir / f"{cassette_file}.yaml" + + raw_match_on: str = request.config.getoption("--cassette-match-on") + match_on = frozenset(m.strip() for m in raw_match_on.split(",") if m.strip()) + + with Cassette(path=path, record=record, match_on=match_on) as c: + yield c diff --git a/pyproject.toml b/pyproject.toml index f16647ae..082bc84a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,8 +41,15 @@ dev = [ "aiosqlite>=0.22", "prek>=0.3.8", "pre-commit>=4.5.1", + "pytest-niquests-cassettes", ] +[tool.uv.workspace] +members = ["packages/pytest-niquests-cassettes"] + +[tool.uv.sources] +pytest-niquests-cassettes = { workspace = true } + [tool.pytest.ini_options] asyncio_mode = "auto" asyncio_default_fixture_loop_scope = "session" @@ -98,6 +105,7 @@ ignore = [ "PLR2004", "INP001", ] +"packages/*" = ["SLF001"] [tool.ruff.lint.isort] force-single-line = true diff --git a/tests/conftest.py b/tests/conftest.py index 85a6439a..d3f2fd7f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -8,6 +8,7 @@ import pytest import pytest_asyncio from niquests.exceptions import ConnectionError as RequestsConnectionError +from pytest_niquests_cassettes import Cassette from homeassistant_api import AsyncClient from homeassistant_api import AsyncWebsocketClient @@ -16,13 +17,18 @@ logger = logging.getLogger(__name__) TIMEOUT = 300 -HA_URL = os.environ["HOMEASSISTANTAPI_URL"] -HA_WS_URL = os.environ["HOMEASSISTANTAPI_WS_URL"] -HA_TOKEN = os.environ["HOMEASSISTANTAPI_TOKEN"] +HA_URL = os.environ.get("HOMEASSISTANTAPI_URL", "http://localhost:8123/api") +HA_WS_URL = os.environ.get( + "HOMEASSISTANTAPI_WS_URL", + "ws://localhost:8123/api/websocket", +) +HA_TOKEN = os.environ.get("HOMEASSISTANTAPI_TOKEN", "") -def pytest_sessionstart() -> None: - """Wait for the HA server to be ready before running any tests.""" +def pytest_sessionstart(session: pytest.Session) -> None: + """Wait for the HA server to be ready — only needed in record mode.""" + if not session.config.getoption("--record", default=False): + return client = Client(HA_URL, HA_TOKEN) deadline = time.monotonic() + TIMEOUT while time.monotonic() < deadline: @@ -39,28 +45,34 @@ def pytest_sessionstart() -> None: @pytest.fixture(name="cached_client", scope="session") -def setup_cached_client() -> Generator[Client, None, None]: +def setup_cached_client(cassette: Cassette) -> Generator[Client, None, None]: # noqa: ARG001 """Initializes the Client and enters a cached session.""" with Client(HA_URL, HA_TOKEN) as client: yield client @pytest_asyncio.fixture(name="async_cached_client", scope="session") -async def setup_async_cached_client() -> AsyncGenerator[AsyncClient, None]: +async def setup_async_cached_client( + cassette: Cassette, # noqa: ARG001 +) -> AsyncGenerator[AsyncClient, None]: """Initializes the AsyncClient and enters an async cached session.""" async with AsyncClient(HA_URL, HA_TOKEN) as client: yield client @pytest.fixture(name="websocket_client", scope="session") -def setup_websocket_client() -> Generator[WebsocketClient, None, None]: +def setup_websocket_client( + cassette: Cassette, # noqa: ARG001 +) -> Generator[WebsocketClient, None, None]: """Initializes the Client and enters a WebSocket session.""" with WebsocketClient(HA_WS_URL, HA_TOKEN) as client: yield client @pytest_asyncio.fixture(name="async_websocket_client", scope="session") -async def setup_async_websocket_client() -> AsyncGenerator[AsyncWebsocketClient, None]: +async def setup_async_websocket_client( + cassette: Cassette, # noqa: ARG001 +) -> AsyncGenerator[AsyncWebsocketClient, None]: """Initializes the AsyncWebsocketClient and enters an async WebSocket session.""" async with AsyncWebsocketClient(HA_WS_URL, HA_TOKEN) as client: yield client diff --git a/tests/test_client.py b/tests/test_client.py index b4748eda..b6c8c9c6 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -12,8 +12,8 @@ def test_custom_session() -> None: with Client( - os.environ["HOMEASSISTANTAPI_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], + os.environ.get("HOMEASSISTANTAPI_URL", "http://localhost:8123/api"), + os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), session=niquests.Session(), ): pass @@ -21,16 +21,16 @@ def test_custom_session() -> None: def test_default_session() -> None: with Client( - os.environ["HOMEASSISTANTAPI_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], + os.environ.get("HOMEASSISTANTAPI_URL", "http://localhost:8123/api"), + os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), ): pass async def test_custom_async_session() -> None: async with AsyncClient( - os.environ["HOMEASSISTANTAPI_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], + os.environ.get("HOMEASSISTANTAPI_URL", "http://localhost:8123/api"), + os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), session=niquests.AsyncSession(), ): pass @@ -38,24 +38,24 @@ async def test_custom_async_session() -> None: async def test_default_async_session() -> None: async with AsyncClient( - os.environ["HOMEASSISTANTAPI_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], + os.environ.get("HOMEASSISTANTAPI_URL", "http://localhost:8123/api"), + os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), ): pass def test_websocket_client_ping() -> None: with WebsocketClient( - os.environ["HOMEASSISTANTAPI_WS_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], + os.environ.get("HOMEASSISTANTAPI_WS_URL", "ws://localhost:8123/api/websocket"), + os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), ) as client: assert client.ping_latency() > 0 async def test_async_websocket_client_ping() -> None: async with AsyncWebsocketClient( - os.environ["HOMEASSISTANTAPI_WS_URL"], - os.environ["HOMEASSISTANTAPI_TOKEN"], + os.environ.get("HOMEASSISTANTAPI_WS_URL", "ws://localhost:8123/api/websocket"), + os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), ) as client: assert (await client.ping_latency()) > 0 diff --git a/tests/test_endpoints.py b/tests/test_endpoints.py index 98ad65cb..e1ec090f 100644 --- a/tests/test_endpoints.py +++ b/tests/test_endpoints.py @@ -47,7 +47,7 @@ def test_get_logbook_entries(cached_client: Client) -> None: for entry in cached_client.get_logbook_entries( filter_entities="sun.red_sun", start_timestamp=datetime(2020, 1, 1, tzinfo=UTC), - end_timestamp=datetime.now(UTC), + end_timestamp=datetime(2030, 1, 1, tzinfo=UTC), ): assert entry @@ -57,7 +57,7 @@ async def test_async_get_logbook_entries(async_cached_client: AsyncClient) -> No async for entry in async_cached_client.get_logbook_entries( filter_entities="sun.red_sun", start_timestamp=datetime(2020, 1, 1, tzinfo=UTC), - end_timestamp=datetime.now(UTC), + end_timestamp=datetime(2030, 1, 1, tzinfo=UTC), ): assert entry @@ -79,7 +79,7 @@ def test_get_entity_histories(cached_client: Client) -> None: histories = list( cached_client.get_entity_histories( (sun,), - end_timestamp=datetime.now(tz=UTC), + end_timestamp=datetime(2030, 1, 1, tzinfo=UTC), start_timestamp=datetime(2020, 1, 1, tzinfo=UTC), significant_changes_only=True, ), diff --git a/tests/test_errors.py b/tests/test_errors.py index 34475195..6fd1777a 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -32,8 +32,11 @@ from homeassistant_api.processing import process_response from homeassistant_api.utils import prepare_entity_id -HA_URL = os.environ["HOMEASSISTANTAPI_URL"] -HA_WS_URL = os.environ["HOMEASSISTANTAPI_WS_URL"] +HA_URL = os.environ.get("HOMEASSISTANTAPI_URL", "http://localhost:8123/api") +HA_WS_URL = os.environ.get( + "HOMEASSISTANTAPI_WS_URL", + "ws://localhost:8123/api/websocket", +) WRONG_TOKEN = "lolthisisawrongtokenforsure" # noqa: S105 @@ -371,13 +374,13 @@ async def test_async_websocket_get_entity_histories_not_supported( def test_client_default_session() -> None: """Tests that Client creates a niquests.Session by default.""" - token = os.environ["HOMEASSISTANTAPI_TOKEN"] + token = os.environ.get("HOMEASSISTANTAPI_TOKEN", "") client = Client(HA_URL, token) assert isinstance(client._session, niquests.Session) async def test_async_client_default_session() -> None: """Tests that AsyncClient creates a niquests.AsyncSession by default.""" - token = os.environ["HOMEASSISTANTAPI_TOKEN"] + token = os.environ.get("HOMEASSISTANTAPI_TOKEN", "") client = AsyncClient(HA_URL, token) assert isinstance(client._session, niquests.AsyncSession) From 69f09a6473fbbed729111c98c007e4d5ddc33d4c Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Mon, 13 Apr 2026 01:23:22 -0700 Subject: [PATCH 29/34] Rewrite cassette plugin as nimax: per-test cassettes, RecordMode, matchers, serializers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Rename package pytest-niquests-cassettes → nimax - Add RecordMode enum (NONE, ONCE, NEW_EPISODES, ALL) replacing record: bool - Add BaseMatcher ABC with 8 built-in matchers (method, uri, host, path, query, headers, body, protocol) - Add BaseSerializer ABC with JSONSerializer and YAMLSerializer; auto-detect from file extension - Add Placeholder dataclass for cassette sanitization - Add Frame dataclass with type, offset_ms, close_code, close_reason; WebSocketSession with claim/cursor tracking - Add NimaxRecorder programmatic API with use_cassette() context manager and register_matcher/register_serializer - Switch from session-scoped autouse cassette to per-test nimax_session / nimax_async_session fixtures - Auto-migrate legacy YAML cassette format (flat status/body/url keys) on load - Add pyproject.toml config support via [tool.nimax] - Add nimax-design.md and nimax-implementation-plan.md design documents - Re-record all cassettes as per-test JSON files under cassettes/{module}/{test}.json - Update conftest.py and test_client.py to use new fixture API --- cassettes/session.yaml | 4401 ----------------- .../test_async_websocket_client_ping.json | 55 + .../test_custom_async_session.json | 126 + .../test_client/test_custom_session.json | 126 + .../test_default_async_session.json | 126 + .../test_client/test_default_session.json | 126 + .../test_websocket_client_ping.json | 55 + .../test_async_check_api_config.json | 172 + .../test_async_delete_entry_subentry.json | 55 + ...est_async_disable_enable_config_entry.json | 109 + .../test_endpoints/test_async_fire_event.json | 172 + .../test_async_get_components.json | 172 + .../test_endpoints/test_async_get_config.json | 172 + .../test_async_get_config_entries.json | 55 + .../test_endpoints/test_async_get_domain.json | 172 + .../test_async_get_domains.json | 172 + .../test_async_get_entities.json | 172 + .../test_endpoints/test_async_get_entity.json | 169 + .../test_async_get_entity_histories.json | 215 + .../test_async_get_entry_subentries.json | 67 + .../test_async_get_error_log.json | 178 + .../test_endpoints/test_async_get_events.json | 172 + .../test_async_get_logbook_entries.json | 172 + ...t_async_get_nonuser_flows_in_progress.json | 55 + .../test_async_get_rendered_template.json | 169 + .../test_endpoints/test_async_get_state.json | 169 + .../test_endpoints/test_async_get_states.json | 172 + .../test_async_ignore_config_flow.json | 55 + .../test_endpoints/test_async_set_state.json | 175 + .../test_async_trigger_service.json | 218 + ...t_async_trigger_service_with_response.json | 206 + .../test_async_websocket_get_config.json | 55 + .../test_async_websocket_get_domain.json | 61 + .../test_async_websocket_get_domains.json | 67 + .../test_async_websocket_get_entities.json | 85 + ...ync_websocket_get_entity_by_entity_id.json | 91 + ...nc_websocket_get_entity_by_group_slug.json | 91 + ...st_async_websocket_get_entity_no_args.json | 43 + ...async_websocket_get_rendered_template.json | 73 + .../test_async_websocket_get_state.json | 109 + ...t_async_websocket_get_state_not_found.json | 79 + .../test_async_websocket_get_states.json | 79 + .../test_async_websocket_trigger_service.json | 85 + ...bsocket_trigger_service_with_response.json | 85 + .../test_endpoints/test_check_api_config.json | 172 + .../test_delete_entry_subentry.json | 55 + .../test_disable_enable_config_entry.json | 121 + cassettes/test_endpoints/test_fire_event.json | 172 + .../test_endpoints/test_get_components.json | 172 + cassettes/test_endpoints/test_get_config.json | 172 + .../test_get_config_entries.json | 61 + cassettes/test_endpoints/test_get_domain.json | 172 + .../test_endpoints/test_get_domains.json | 172 + .../test_endpoints/test_get_entities.json | 172 + cassettes/test_endpoints/test_get_entity.json | 169 + .../test_get_entity_histories.json | 215 + .../test_get_entry_subentries.json | 73 + .../test_endpoints/test_get_error_log.json | 178 + cassettes/test_endpoints/test_get_events.json | 172 + .../test_get_logbook_entries.json | 172 + .../test_get_nonuser_flows_in_progress.json | 55 + .../test_get_rendered_template.json | 169 + cassettes/test_endpoints/test_get_state.json | 169 + cassettes/test_endpoints/test_get_states.json | 172 + .../test_ignore_config_flow.json | 55 + cassettes/test_endpoints/test_set_state.json | 175 + .../test_endpoints/test_trigger_service.json | 218 + .../test_trigger_service_with_response.json | 206 + .../test_websocket_get_config.json | 55 + .../test_websocket_get_domain.json | 85 + .../test_websocket_get_domains.json | 79 + .../test_websocket_get_entities.json | 253 + ...est_websocket_get_entity_by_entity_id.json | 283 ++ ...st_websocket_get_entity_by_group_slug.json | 247 + .../test_websocket_get_entity_no_args.json | 43 + .../test_websocket_get_rendered_template.json | 73 + .../test_websocket_get_state.json | 247 + .../test_websocket_get_state_not_found.json | 259 + .../test_websocket_get_states.json | 265 + .../test_websocket_trigger_service.json | 103 + ...socket_trigger_service_with_entity_id.json | 451 ++ ...bsocket_trigger_service_with_response.json | 103 + .../test_async_get_entity_registry_entry.json | 55 + .../test_async_list_entity_registry.json | 97 + ...st_async_remove_entity_registry_entry.json | 133 + ...st_async_update_entity_registry_entry.json | 67 + .../test_get_entity_registry_entry.json | 55 + .../test_list_entity_registry.json | 433 ++ .../test_remove_entity_registry_entry.json | 445 ++ .../test_update_entity_registry_entry.json | 67 + .../test_async_endpoint_not_found_error.json | 169 + .../test_async_invalid_template.json | 172 + .../test_async_method_not_allowed_error.json | 172 + ..._async_no_entity_information_provided.json | 126 + ...et_get_entity_histories_not_supported.json | 43 + ...ync_websocket_set_state_not_supported.json | 43 + .../test_errors/test_async_wrong_headers.json | 126 + ...est_domain_missing_services_attribute.json | 126 + .../test_endpoint_not_found_error.json | 169 + .../test_errors/test_invalid_template.json | 172 + .../test_method_not_allowed_error.json | 172 + .../test_no_entity_information_provided.json | 126 + ...et_get_entity_histories_not_supported.json | 43 + ...est_websocket_set_state_not_supported.json | 43 + cassettes/test_errors/test_wrong_headers.json | 126 + .../test_async_listen_config_entries.json | 127 + .../test_events/test_async_listen_events.json | 85 + .../test_async_listen_trigger.json | 103 + .../test_listen_config_entries.json | 127 + cassettes/test_events/test_listen_events.json | 85 + .../test_events/test_listen_trigger.json | 103 + .../test_async_entity_get_entity.json | 172 + .../test_async_entity_get_history.json | 215 + .../test_async_entity_get_history_none.json | 215 + .../test_async_entity_update_state.json | 218 + .../test_models/test_async_fire_event.json | 218 + .../test_models/test_async_get_domains.json | 172 + .../test_models/test_async_get_event.json | 172 + ...omain_from_json_invalid_services_type.json | 126 + ...in_from_json_with_client_missing_keys.json | 126 + .../test_domain_service_attribute_access.json | 172 + .../test_models/test_entity_get_entity.json | 172 + .../test_models/test_entity_get_history.json | 215 + .../test_entity_get_history_none.json | 215 + .../test_models/test_entity_update_state.json | 218 + cassettes/test_models/test_fire_event.json | 218 + cassettes/test_models/test_get_domain.json | 172 + cassettes/test_models/test_get_event.json | 172 + nimax-design.md | 542 ++ nimax-implementation-plan.md | 235 + .../pyproject.toml | 7 +- packages/nimax/src/nimax/__init__.py | 21 + packages/nimax/src/nimax/_adapter.py | 99 + packages/nimax/src/nimax/_cassette.py | 495 ++ packages/nimax/src/nimax/_matchers.py | 125 + packages/nimax/src/nimax/_placeholders.py | 31 + packages/nimax/src/nimax/_record_mode.py | 20 + packages/nimax/src/nimax/_serializers.py | 55 + packages/nimax/src/nimax/_websocket.py | 218 + packages/nimax/src/nimax/plugin.py | 175 + .../src/pytest_niquests_cassettes/__init__.py | 5 - .../pytest_niquests_cassettes/_cassette.py | 381 -- .../src/pytest_niquests_cassettes/plugin.py | 69 - pyproject.toml | 6 +- tests/conftest.py | 48 +- tests/test_client.py | 22 +- volumes/config/.storage/core.restore_state | 108 +- 147 files changed, 20587 insertions(+), 4891 deletions(-) delete mode 100644 cassettes/session.yaml create mode 100644 cassettes/test_client/test_async_websocket_client_ping.json create mode 100644 cassettes/test_client/test_custom_async_session.json create mode 100644 cassettes/test_client/test_custom_session.json create mode 100644 cassettes/test_client/test_default_async_session.json create mode 100644 cassettes/test_client/test_default_session.json create mode 100644 cassettes/test_client/test_websocket_client_ping.json create mode 100644 cassettes/test_endpoints/test_async_check_api_config.json create mode 100644 cassettes/test_endpoints/test_async_delete_entry_subentry.json create mode 100644 cassettes/test_endpoints/test_async_disable_enable_config_entry.json create mode 100644 cassettes/test_endpoints/test_async_fire_event.json create mode 100644 cassettes/test_endpoints/test_async_get_components.json create mode 100644 cassettes/test_endpoints/test_async_get_config.json create mode 100644 cassettes/test_endpoints/test_async_get_config_entries.json create mode 100644 cassettes/test_endpoints/test_async_get_domain.json create mode 100644 cassettes/test_endpoints/test_async_get_domains.json create mode 100644 cassettes/test_endpoints/test_async_get_entities.json create mode 100644 cassettes/test_endpoints/test_async_get_entity.json create mode 100644 cassettes/test_endpoints/test_async_get_entity_histories.json create mode 100644 cassettes/test_endpoints/test_async_get_entry_subentries.json create mode 100644 cassettes/test_endpoints/test_async_get_error_log.json create mode 100644 cassettes/test_endpoints/test_async_get_events.json create mode 100644 cassettes/test_endpoints/test_async_get_logbook_entries.json create mode 100644 cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json create mode 100644 cassettes/test_endpoints/test_async_get_rendered_template.json create mode 100644 cassettes/test_endpoints/test_async_get_state.json create mode 100644 cassettes/test_endpoints/test_async_get_states.json create mode 100644 cassettes/test_endpoints/test_async_ignore_config_flow.json create mode 100644 cassettes/test_endpoints/test_async_set_state.json create mode 100644 cassettes/test_endpoints/test_async_trigger_service.json create mode 100644 cassettes/test_endpoints/test_async_trigger_service_with_response.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_config.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_domain.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_domains.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_entities.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_entity_no_args.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_rendered_template.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_state.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_state_not_found.json create mode 100644 cassettes/test_endpoints/test_async_websocket_get_states.json create mode 100644 cassettes/test_endpoints/test_async_websocket_trigger_service.json create mode 100644 cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json create mode 100644 cassettes/test_endpoints/test_check_api_config.json create mode 100644 cassettes/test_endpoints/test_delete_entry_subentry.json create mode 100644 cassettes/test_endpoints/test_disable_enable_config_entry.json create mode 100644 cassettes/test_endpoints/test_fire_event.json create mode 100644 cassettes/test_endpoints/test_get_components.json create mode 100644 cassettes/test_endpoints/test_get_config.json create mode 100644 cassettes/test_endpoints/test_get_config_entries.json create mode 100644 cassettes/test_endpoints/test_get_domain.json create mode 100644 cassettes/test_endpoints/test_get_domains.json create mode 100644 cassettes/test_endpoints/test_get_entities.json create mode 100644 cassettes/test_endpoints/test_get_entity.json create mode 100644 cassettes/test_endpoints/test_get_entity_histories.json create mode 100644 cassettes/test_endpoints/test_get_entry_subentries.json create mode 100644 cassettes/test_endpoints/test_get_error_log.json create mode 100644 cassettes/test_endpoints/test_get_events.json create mode 100644 cassettes/test_endpoints/test_get_logbook_entries.json create mode 100644 cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json create mode 100644 cassettes/test_endpoints/test_get_rendered_template.json create mode 100644 cassettes/test_endpoints/test_get_state.json create mode 100644 cassettes/test_endpoints/test_get_states.json create mode 100644 cassettes/test_endpoints/test_ignore_config_flow.json create mode 100644 cassettes/test_endpoints/test_set_state.json create mode 100644 cassettes/test_endpoints/test_trigger_service.json create mode 100644 cassettes/test_endpoints/test_trigger_service_with_response.json create mode 100644 cassettes/test_endpoints/test_websocket_get_config.json create mode 100644 cassettes/test_endpoints/test_websocket_get_domain.json create mode 100644 cassettes/test_endpoints/test_websocket_get_domains.json create mode 100644 cassettes/test_endpoints/test_websocket_get_entities.json create mode 100644 cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json create mode 100644 cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json create mode 100644 cassettes/test_endpoints/test_websocket_get_entity_no_args.json create mode 100644 cassettes/test_endpoints/test_websocket_get_rendered_template.json create mode 100644 cassettes/test_endpoints/test_websocket_get_state.json create mode 100644 cassettes/test_endpoints/test_websocket_get_state_not_found.json create mode 100644 cassettes/test_endpoints/test_websocket_get_states.json create mode 100644 cassettes/test_endpoints/test_websocket_trigger_service.json create mode 100644 cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json create mode 100644 cassettes/test_endpoints/test_websocket_trigger_service_with_response.json create mode 100644 cassettes/test_entity_registry/test_async_get_entity_registry_entry.json create mode 100644 cassettes/test_entity_registry/test_async_list_entity_registry.json create mode 100644 cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json create mode 100644 cassettes/test_entity_registry/test_async_update_entity_registry_entry.json create mode 100644 cassettes/test_entity_registry/test_get_entity_registry_entry.json create mode 100644 cassettes/test_entity_registry/test_list_entity_registry.json create mode 100644 cassettes/test_entity_registry/test_remove_entity_registry_entry.json create mode 100644 cassettes/test_entity_registry/test_update_entity_registry_entry.json create mode 100644 cassettes/test_errors/test_async_endpoint_not_found_error.json create mode 100644 cassettes/test_errors/test_async_invalid_template.json create mode 100644 cassettes/test_errors/test_async_method_not_allowed_error.json create mode 100644 cassettes/test_errors/test_async_no_entity_information_provided.json create mode 100644 cassettes/test_errors/test_async_websocket_get_entity_histories_not_supported.json create mode 100644 cassettes/test_errors/test_async_websocket_set_state_not_supported.json create mode 100644 cassettes/test_errors/test_async_wrong_headers.json create mode 100644 cassettes/test_errors/test_domain_missing_services_attribute.json create mode 100644 cassettes/test_errors/test_endpoint_not_found_error.json create mode 100644 cassettes/test_errors/test_invalid_template.json create mode 100644 cassettes/test_errors/test_method_not_allowed_error.json create mode 100644 cassettes/test_errors/test_no_entity_information_provided.json create mode 100644 cassettes/test_errors/test_websocket_get_entity_histories_not_supported.json create mode 100644 cassettes/test_errors/test_websocket_set_state_not_supported.json create mode 100644 cassettes/test_errors/test_wrong_headers.json create mode 100644 cassettes/test_events/test_async_listen_config_entries.json create mode 100644 cassettes/test_events/test_async_listen_events.json create mode 100644 cassettes/test_events/test_async_listen_trigger.json create mode 100644 cassettes/test_events/test_listen_config_entries.json create mode 100644 cassettes/test_events/test_listen_events.json create mode 100644 cassettes/test_events/test_listen_trigger.json create mode 100644 cassettes/test_models/test_async_entity_get_entity.json create mode 100644 cassettes/test_models/test_async_entity_get_history.json create mode 100644 cassettes/test_models/test_async_entity_get_history_none.json create mode 100644 cassettes/test_models/test_async_entity_update_state.json create mode 100644 cassettes/test_models/test_async_fire_event.json create mode 100644 cassettes/test_models/test_async_get_domains.json create mode 100644 cassettes/test_models/test_async_get_event.json create mode 100644 cassettes/test_models/test_base_domain_from_json_invalid_services_type.json create mode 100644 cassettes/test_models/test_domain_from_json_with_client_missing_keys.json create mode 100644 cassettes/test_models/test_domain_service_attribute_access.json create mode 100644 cassettes/test_models/test_entity_get_entity.json create mode 100644 cassettes/test_models/test_entity_get_history.json create mode 100644 cassettes/test_models/test_entity_get_history_none.json create mode 100644 cassettes/test_models/test_entity_update_state.json create mode 100644 cassettes/test_models/test_fire_event.json create mode 100644 cassettes/test_models/test_get_domain.json create mode 100644 cassettes/test_models/test_get_event.json create mode 100644 nimax-design.md create mode 100644 nimax-implementation-plan.md rename packages/{pytest-niquests-cassettes => nimax}/pyproject.toml (72%) create mode 100644 packages/nimax/src/nimax/__init__.py create mode 100644 packages/nimax/src/nimax/_adapter.py create mode 100644 packages/nimax/src/nimax/_cassette.py create mode 100644 packages/nimax/src/nimax/_matchers.py create mode 100644 packages/nimax/src/nimax/_placeholders.py create mode 100644 packages/nimax/src/nimax/_record_mode.py create mode 100644 packages/nimax/src/nimax/_serializers.py create mode 100644 packages/nimax/src/nimax/_websocket.py create mode 100644 packages/nimax/src/nimax/plugin.py delete mode 100644 packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/__init__.py delete mode 100644 packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/_cassette.py delete mode 100644 packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/plugin.py diff --git a/cassettes/session.yaml b/cassettes/session.yaml deleted file mode 100644 index 18a87be6..00000000 --- a/cassettes/session.yaml +++ /dev/null @@ -1,4401 +0,0 @@ -interactions: -- request: - method: GET - url: http://127.0.0.1:8123/api/ - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '34' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"API running."}' - url: http://127.0.0.1:8123/api/ -- request: - method: GET - url: http://127.0.0.1:8123/api/ - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '34' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"API running."}' - url: http://127.0.0.1:8123/api/ -- request: - method: GET - url: http://127.0.0.1:8123/api/ - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '34' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"API running."}' - url: http://127.0.0.1:8123/api/ -- request: - method: GET - url: http://127.0.0.1:8123/api/ - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '34' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"API running."}' - url: http://127.0.0.1:8123/api/ -- request: - method: GET - url: http://127.0.0.1:8123/api/ - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '34' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"API running."}' - url: http://127.0.0.1:8123/api/ -- request: - method: GET - url: http://127.0.0.1:8123/api/ - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '34' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"API running."}' - url: http://127.0.0.1:8123/api/ -- request: - method: GET - url: http://127.0.0.1:8123/api/ - response: - status: 401 - headers: - Content-Type: text/plain; charset=utf-8 - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '17' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '401: Unauthorized' - url: http://127.0.0.1:8123/api/ -- request: - method: GET - url: http://127.0.0.1:8123/api/ - response: - status: 401 - headers: - Content-Type: text/plain; charset=utf-8 - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '17' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '401: Unauthorized' - url: http://127.0.0.1:8123/api/ -- request: - method: GET - url: http://127.0.0.1:8123/api/error_log - response: - status: 200 - headers: - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Type: application/octet-stream - Etag: '"18a5caf8d7909b21-7cfb"' - Last-Modified: Mon, 13 Apr 2026 02:53:19 GMT - Accept-Ranges: bytes - Content-Encoding: deflate - Transfer-Encoding: chunked - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '2026-04-13 02:13:01.093 INFO (MainThread) [homeassistant.setup] Setting - up system_log - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain - http took 0.02 seconds - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain - logger took 0.02 seconds - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain - system_log took 0.02 seconds - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setting up websocket_api - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain - websocket_api took 0.00 seconds - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setting up network - - 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setup of domain - network took 0.00 seconds - - 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.bootstrap] Setting - up stage labs: {''labs''}; already set up: {} - - Dependencies: {}; already set up: {} - - 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setting up labs - - 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setup of domain - labs took 0.00 seconds - - 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.bootstrap] Setting - up stage frontend: {''frontend''}; already set up: {} - - Dependencies: {''diagnostics'', ''device_automation'', ''lovelace'', ''api'', - ''file_upload'', ''config'', ''search'', ''repairs'', ''onboarding'', ''auth''}; - already set up: {''http'', ''websocket_api'', ''system_log''} - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up diagnostics - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain - diagnostics took 0.00 seconds - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up device_automation - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain - device_automation took 0.00 seconds - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up auth - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain - auth took 0.00 seconds - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up onboarding - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain - onboarding took 0.00 seconds - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up lovelace - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain - lovelace took 0.00 seconds - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up file_upload - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain - file_upload took 0.00 seconds - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up config - - 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain - config took 0.00 seconds - - 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setting up search - - 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain - search took 0.00 seconds - - 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setting up repairs - - 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain - repairs took 0.00 seconds - - 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setting up api - - 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setup of domain - api took 0.00 seconds - - 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setting up frontend - - 2026-04-13 02:13:01.120 INFO (MainThread) [homeassistant.setup] Setup of domain - frontend took 0.00 seconds - - 2026-04-13 02:13:01.120 INFO (MainThread) [homeassistant.bootstrap] Setting - up stage recorder: {''recorder''}; already set up: {} - - Dependencies: {}; already set up: {} - - 2026-04-13 02:13:01.121 INFO (MainThread) [homeassistant.setup] Setting up recorder - - 2026-04-13 02:13:01.122 INFO (MainThread) [homeassistant.components.http] Now - listening on port 8123 - - 2026-04-13 02:13:01.122 INFO (MainThread) [homeassistant.setup] Setup of domain - http took 0.00 seconds - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setup of domain - recorder took 0.11 seconds - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing - to set up in stage debugger: {''debugpy''} - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing - to set up in stage zeroconf: {''zeroconf''} - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing - to set up in stage 1: {''usb'', ''ssdp'', ''cloud'', ''bluetooth'', ''hassio'', - ''dhcp'', ''mqtt_eventstream''} - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Setting - up stage 2: {''history'', ''notify'', ''counter'', ''input_button'', ''weather'', - ''automation'', ''input_text'', ''input_select'', ''script'', ''tag'', ''brands'', - ''radio_browser'', ''person'', ''schedule'', ''zone'', ''application_credentials'', - ''scene'', ''input_boolean'', ''input_number'', ''trace'', ''system_health'', - ''sun'', ''backup'', ''hardware'', ''analytics'', ''logbook'', ''input_datetime'', - ''met'', ''timer''}; already set up: {''network'', ''http'', ''logger'', ''labs'', - ''frontend'', ''api''} - - Dependencies: {''blueprint'', ''image_upload''}; already set up: {''device_automation'', - ''recorder'', ''search'', ''repairs'', ''http'', ''api'', ''auth'', ''diagnostics'', - ''websocket_api'', ''lovelace'', ''file_upload'', ''config'', ''system_log'', - ''onboarding'', ''frontend''} - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setting up notify - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setup of domain - notify took 0.00 seconds - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setting up scene - - 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.components.scene] Setting - up homeassistant.scene - - 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setup of domain - scene took 0.00 seconds - - 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setting up history - - 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setup of domain - history took 0.00 seconds - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up trace - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain - trace took 0.00 seconds - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up system_health - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain - system_health took 0.00 seconds - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up blueprint - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain - blueprint took 0.00 seconds - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up automation - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain - automation took 0.00 seconds - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up backup - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up logbook - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setup of domain - logbook took 0.00 seconds - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up script - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setup of domain - script took 0.00 seconds - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up image_upload - - 2026-04-13 02:13:01.233 INFO (MainThread) [homeassistant.setup] Setup of domain - image_upload took 0.00 seconds - - 2026-04-13 02:13:01.233 INFO (MainThread) [homeassistant.setup] Setting up zone - - 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setup of domain - zone took 0.00 seconds - - 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setting up person - - 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setting up input_number - - 2026-04-13 02:13:01.235 INFO (MainThread) [homeassistant.setup] Setup of domain - input_number took 0.00 seconds - - 2026-04-13 02:13:01.235 INFO (MainThread) [homeassistant.setup] Setup of domain - person took 0.00 seconds - - 2026-04-13 02:13:01.236 INFO (MainThread) [homeassistant.setup] Setup of domain - backup took 0.00 seconds - - 2026-04-13 02:13:01.243 INFO (MainThread) [homeassistant.setup] Setting up weather - - 2026-04-13 02:13:01.243 INFO (MainThread) [homeassistant.setup] Setup of domain - weather took 0.00 seconds - - 2026-04-13 02:13:01.244 INFO (MainThread) [homeassistant.setup] Setting up counter - - 2026-04-13 02:13:01.245 INFO (MainThread) [homeassistant.setup] Setup of domain - counter took 0.00 seconds - - 2026-04-13 02:13:01.245 INFO (MainThread) [homeassistant.setup] Setting up input_button - - 2026-04-13 02:13:01.246 INFO (MainThread) [homeassistant.setup] Setup of domain - input_button took 0.00 seconds - - 2026-04-13 02:13:01.248 INFO (MainThread) [homeassistant.setup] Setting up sun - - 2026-04-13 02:13:01.248 INFO (MainThread) [homeassistant.setup] Setup of domain - sun took 0.00 seconds - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setting up binary_sensor - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setup of domain - binary_sensor took 0.00 seconds - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new binary_sensor.sun entity: binary_sensor.sun_solar_rising - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setting up sensor - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setup of domain - sensor took 0.00 seconds - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:13:01.255 INFO (MainThread) [homeassistant.setup] Setting up hardware - - 2026-04-13 02:13:01.267 INFO (MainThread) [homeassistant.setup] Setup of domain - hardware took 0.01 seconds - - 2026-04-13 02:13:01.267 INFO (MainThread) [homeassistant.setup] Setting up analytics - - 2026-04-13 02:13:01.268 INFO (MainThread) [homeassistant.setup] Setup of domain - analytics took 0.00 seconds - - 2026-04-13 02:13:01.269 INFO (MainThread) [homeassistant.setup] Setting up input_text - - 2026-04-13 02:13:01.269 INFO (MainThread) [homeassistant.setup] Setup of domain - input_text took 0.00 seconds - - 2026-04-13 02:13:01.271 INFO (MainThread) [homeassistant.setup] Setting up input_select - - 2026-04-13 02:13:01.272 INFO (MainThread) [homeassistant.setup] Setup of domain - input_select took 0.00 seconds - - 2026-04-13 02:13:01.273 INFO (MainThread) [homeassistant.setup] Setting up input_datetime - - 2026-04-13 02:13:01.274 INFO (MainThread) [homeassistant.setup] Setup of domain - input_datetime took 0.00 seconds - - 2026-04-13 02:13:01.275 INFO (MainThread) [homeassistant.setup] Setting up tag - - 2026-04-13 02:13:01.275 INFO (MainThread) [homeassistant.setup] Setup of domain - tag took 0.00 seconds - - 2026-04-13 02:13:01.283 INFO (MainThread) [homeassistant.setup] Setting up met - - 2026-04-13 02:13:01.283 INFO (MainThread) [homeassistant.setup] Setup of domain - met took 0.00 seconds - - 2026-04-13 02:13:01.285 INFO (MainThread) [homeassistant.setup] Setting up brands - - 2026-04-13 02:13:01.285 INFO (MainThread) [homeassistant.setup] Setup of domain - brands took 0.00 seconds - - 2026-04-13 02:13:01.331 INFO (MainThread) [homeassistant.setup] Setting up radio_browser - - 2026-04-13 02:13:01.331 INFO (MainThread) [homeassistant.setup] Setup of domain - radio_browser took 0.00 seconds - - 2026-04-13 02:13:01.333 INFO (MainThread) [homeassistant.setup] Setting up schedule - - 2026-04-13 02:13:01.334 INFO (MainThread) [homeassistant.setup] Setup of domain - schedule took 0.00 seconds - - 2026-04-13 02:13:01.334 INFO (MainThread) [homeassistant.setup] Setting up timer - - 2026-04-13 02:13:01.335 INFO (MainThread) [homeassistant.setup] Setup of domain - timer took 0.00 seconds - - 2026-04-13 02:13:01.336 INFO (MainThread) [homeassistant.setup] Setting up application_credentials - - 2026-04-13 02:13:01.337 INFO (MainThread) [homeassistant.setup] Setup of domain - application_credentials took 0.00 seconds - - 2026-04-13 02:13:01.337 INFO (MainThread) [homeassistant.setup] Setting up input_boolean - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_2 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_2 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_3 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_3 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_4 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_4 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.setup] Setup of domain - input_boolean took 0.00 seconds - - 2026-04-13 02:13:01.876 INFO (MainThread) [homeassistant.components.weather] - Setting up met.weather - - 2026-04-13 02:13:01.935 INFO (MainThread) [homeassistant.bootstrap] Home Assistant - initialized in 1.63s - - 2026-04-13 02:13:01.935 INFO (MainThread) [homeassistant.core] Starting Home - Assistant 2026.3.1 - - 2026-04-13 02:13:01.944 INFO (MainThread) [homeassistant.setup] Setting up event - - 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.components.event] Setting - up backup.event - - 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new event.backup entity: event.backup_automatic_backup - - 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.components.sensor] - Setting up backup.sensor - - 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new sensor.backup entity: sensor.backup_backup_manager_state - - 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new sensor.backup entity: sensor.backup_next_scheduled_automatic_backup - - 2026-04-13 02:13:01.946 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new sensor.backup entity: sensor.backup_last_successful_automatic_backup - - 2026-04-13 02:13:01.946 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new sensor.backup entity: sensor.backup_last_attempted_automatic_backup - - 2026-04-13 02:13:23.954 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135819133024] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:13:23.959 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135807829344] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:13:24.403 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:13:24.404 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:13:24.409 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:13:24.409 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:13:24.434 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135808187712] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:13:24.437 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135845987200] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:13:24.491 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_5 - - 2026-04-13 02:13:24.499 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_5 - - 2026-04-13 02:13:24.504 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default - (172.18.0.3). Requested URL: ''/api/''. (niquests/3.18.5) - - 2026-04-13 02:13:24.509 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default - (172.18.0.3). Requested URL: ''/api/websocket''. (niquests/3.18.5) - - 2026-04-13 02:13:24.512 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default - (172.18.0.3). Requested URL: ''/api/websocket''. (niquests/3.18.5) - - 2026-04-13 02:13:24.521 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default - (172.18.0.3). Requested URL: ''/api/''. (niquests/3.18.5) - - 2026-04-13 02:13:24.573 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135808187712] Initialized trigger - - 2026-04-13 02:13:25.407 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:13:25.407 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:13:25.413 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:13:25.413 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:13:25.417 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135845987200] Initialized trigger - - 2026-04-13 02:13:26.389 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135845987200] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:13:26.389 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135808187712] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:28:02.416 INFO (MainThread) [homeassistant.components.analytics] - Submitted analytics to Home Assistant servers. Information submitted includes - {''uuid'': ''7b023d740661490db49ce807f6e76fdc'', ''version'': ''2026.3.1'', - ''installation_type'': ''Home Assistant Container'', ''certificate'': False, - ''integrations'': [''history'', ''notify'', ''weather'', ''counter'', ''http'', - ''logger'', ''input_text'', ''api'', ''tag'', ''radio_browser'', ''person'', - ''input_boolean'', ''input_number'', ''trace'', ''sun'', ''backup'', ''logbook'', - ''input_datetime'', ''met'', ''timer''], ''custom_integrations'': [], ''recorder'': - {''engine'': ''sqlite'', ''version'': }, - ''state_count'': 24, ''automation_count'': 0, ''integration_count'': 20, ''user_count'': - 1} - - 2026-04-13 02:43:47.640 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046289504] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:43:47.643 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046288384] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:43:47.722 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:43:47.723 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:43:47.729 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:43:47.729 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:43:47.747 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046270656] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:43:47.750 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046290144] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:43:47.791 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test - - 2026-04-13 02:43:47.798 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async - - 2026-04-13 02:43:47.810 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:43:47.845 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046270656] Initialized trigger - - 2026-04-13 02:43:48.398 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:43:48.398 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:43:48.403 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:43:48.403 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:43:48.406 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046290144] Initialized trigger - - 2026-04-13 02:43:49.492 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046290144] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:43:49.493 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046270656] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:47:33.433 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046267936] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:47:33.436 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046294944] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:47:33.519 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:47:33.520 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:47:33.524 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:47:33.524 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:47:33.539 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046267456] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:47:33.541 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046289984] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:47:33.573 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test - - 2026-04-13 02:47:33.578 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async - - 2026-04-13 02:47:33.591 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:47:33.599 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:47:33.600 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:47:33.600 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:47:33.635 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046267456] Initialized trigger - - 2026-04-13 02:47:34.079 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:47:34.079 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:47:34.084 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:47:34.084 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:47:34.088 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046289984] Initialized trigger - - 2026-04-13 02:47:35.366 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046289984] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:47:35.367 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046267456] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:50:58.891 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:50:58.959 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:51:06.013 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:51:06.075 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:51:23.053 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046297024] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:51:23.056 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046302784] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:51:23.145 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:51:23.145 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:51:23.149 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:51:23.150 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:51:23.167 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046303424] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:51:23.169 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046298944] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:51:23.202 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test - - 2026-04-13 02:51:23.207 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async - - 2026-04-13 02:51:23.218 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:51:23.252 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046303424] Initialized trigger - - 2026-04-13 02:51:24.295 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:51:24.295 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:51:24.302 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:51:24.303 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:51:24.307 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046298944] Initialized trigger - - 2026-04-13 02:51:25.484 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046298944] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:51:25.484 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046303424] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:53:18.180 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046303264] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:53:18.185 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046302624] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - ' - url: http://127.0.0.1:8123/api/error_log -- request: - method: GET - url: http://127.0.0.1:8123/api/error_log - response: - status: 200 - headers: - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Type: application/octet-stream - Etag: '"18a5caf8d7909b21-7cfb"' - Last-Modified: Mon, 13 Apr 2026 02:53:19 GMT - Accept-Ranges: bytes - Content-Encoding: deflate - Transfer-Encoding: chunked - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '2026-04-13 02:13:01.093 INFO (MainThread) [homeassistant.setup] Setting - up system_log - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain - http took 0.02 seconds - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain - logger took 0.02 seconds - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain - system_log took 0.02 seconds - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setting up websocket_api - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setup of domain - websocket_api took 0.00 seconds - - 2026-04-13 02:13:01.112 INFO (MainThread) [homeassistant.setup] Setting up network - - 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setup of domain - network took 0.00 seconds - - 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.bootstrap] Setting - up stage labs: {''labs''}; already set up: {} - - Dependencies: {}; already set up: {} - - 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setting up labs - - 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.setup] Setup of domain - labs took 0.00 seconds - - 2026-04-13 02:13:01.113 INFO (MainThread) [homeassistant.bootstrap] Setting - up stage frontend: {''frontend''}; already set up: {} - - Dependencies: {''diagnostics'', ''device_automation'', ''lovelace'', ''api'', - ''file_upload'', ''config'', ''search'', ''repairs'', ''onboarding'', ''auth''}; - already set up: {''http'', ''websocket_api'', ''system_log''} - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up diagnostics - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain - diagnostics took 0.00 seconds - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up device_automation - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain - device_automation took 0.00 seconds - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up auth - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setup of domain - auth took 0.00 seconds - - 2026-04-13 02:13:01.114 INFO (MainThread) [homeassistant.setup] Setting up onboarding - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain - onboarding took 0.00 seconds - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up lovelace - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain - lovelace took 0.00 seconds - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up file_upload - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setup of domain - file_upload took 0.00 seconds - - 2026-04-13 02:13:01.115 INFO (MainThread) [homeassistant.setup] Setting up config - - 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain - config took 0.00 seconds - - 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setting up search - - 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain - search took 0.00 seconds - - 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setting up repairs - - 2026-04-13 02:13:01.116 INFO (MainThread) [homeassistant.setup] Setup of domain - repairs took 0.00 seconds - - 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setting up api - - 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setup of domain - api took 0.00 seconds - - 2026-04-13 02:13:01.117 INFO (MainThread) [homeassistant.setup] Setting up frontend - - 2026-04-13 02:13:01.120 INFO (MainThread) [homeassistant.setup] Setup of domain - frontend took 0.00 seconds - - 2026-04-13 02:13:01.120 INFO (MainThread) [homeassistant.bootstrap] Setting - up stage recorder: {''recorder''}; already set up: {} - - Dependencies: {}; already set up: {} - - 2026-04-13 02:13:01.121 INFO (MainThread) [homeassistant.setup] Setting up recorder - - 2026-04-13 02:13:01.122 INFO (MainThread) [homeassistant.components.http] Now - listening on port 8123 - - 2026-04-13 02:13:01.122 INFO (MainThread) [homeassistant.setup] Setup of domain - http took 0.00 seconds - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setup of domain - recorder took 0.11 seconds - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing - to set up in stage debugger: {''debugpy''} - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing - to set up in stage zeroconf: {''zeroconf''} - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Nothing - to set up in stage 1: {''usb'', ''ssdp'', ''cloud'', ''bluetooth'', ''hassio'', - ''dhcp'', ''mqtt_eventstream''} - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.bootstrap] Setting - up stage 2: {''history'', ''notify'', ''counter'', ''input_button'', ''weather'', - ''automation'', ''input_text'', ''input_select'', ''script'', ''tag'', ''brands'', - ''radio_browser'', ''person'', ''schedule'', ''zone'', ''application_credentials'', - ''scene'', ''input_boolean'', ''input_number'', ''trace'', ''system_health'', - ''sun'', ''backup'', ''hardware'', ''analytics'', ''logbook'', ''input_datetime'', - ''met'', ''timer''}; already set up: {''network'', ''http'', ''logger'', ''labs'', - ''frontend'', ''api''} - - Dependencies: {''blueprint'', ''image_upload''}; already set up: {''device_automation'', - ''recorder'', ''search'', ''repairs'', ''http'', ''api'', ''auth'', ''diagnostics'', - ''websocket_api'', ''lovelace'', ''file_upload'', ''config'', ''system_log'', - ''onboarding'', ''frontend''} - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setting up notify - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setup of domain - notify took 0.00 seconds - - 2026-04-13 02:13:01.229 INFO (MainThread) [homeassistant.setup] Setting up scene - - 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.components.scene] Setting - up homeassistant.scene - - 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setup of domain - scene took 0.00 seconds - - 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setting up history - - 2026-04-13 02:13:01.230 INFO (MainThread) [homeassistant.setup] Setup of domain - history took 0.00 seconds - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up trace - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain - trace took 0.00 seconds - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up system_health - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain - system_health took 0.00 seconds - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up blueprint - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain - blueprint took 0.00 seconds - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setting up automation - - 2026-04-13 02:13:01.231 INFO (MainThread) [homeassistant.setup] Setup of domain - automation took 0.00 seconds - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up backup - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up logbook - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setup of domain - logbook took 0.00 seconds - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up script - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setup of domain - script took 0.00 seconds - - 2026-04-13 02:13:01.232 INFO (MainThread) [homeassistant.setup] Setting up image_upload - - 2026-04-13 02:13:01.233 INFO (MainThread) [homeassistant.setup] Setup of domain - image_upload took 0.00 seconds - - 2026-04-13 02:13:01.233 INFO (MainThread) [homeassistant.setup] Setting up zone - - 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setup of domain - zone took 0.00 seconds - - 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setting up person - - 2026-04-13 02:13:01.234 INFO (MainThread) [homeassistant.setup] Setting up input_number - - 2026-04-13 02:13:01.235 INFO (MainThread) [homeassistant.setup] Setup of domain - input_number took 0.00 seconds - - 2026-04-13 02:13:01.235 INFO (MainThread) [homeassistant.setup] Setup of domain - person took 0.00 seconds - - 2026-04-13 02:13:01.236 INFO (MainThread) [homeassistant.setup] Setup of domain - backup took 0.00 seconds - - 2026-04-13 02:13:01.243 INFO (MainThread) [homeassistant.setup] Setting up weather - - 2026-04-13 02:13:01.243 INFO (MainThread) [homeassistant.setup] Setup of domain - weather took 0.00 seconds - - 2026-04-13 02:13:01.244 INFO (MainThread) [homeassistant.setup] Setting up counter - - 2026-04-13 02:13:01.245 INFO (MainThread) [homeassistant.setup] Setup of domain - counter took 0.00 seconds - - 2026-04-13 02:13:01.245 INFO (MainThread) [homeassistant.setup] Setting up input_button - - 2026-04-13 02:13:01.246 INFO (MainThread) [homeassistant.setup] Setup of domain - input_button took 0.00 seconds - - 2026-04-13 02:13:01.248 INFO (MainThread) [homeassistant.setup] Setting up sun - - 2026-04-13 02:13:01.248 INFO (MainThread) [homeassistant.setup] Setup of domain - sun took 0.00 seconds - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setting up binary_sensor - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setup of domain - binary_sensor took 0.00 seconds - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new binary_sensor.sun entity: binary_sensor.sun_solar_rising - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setting up sensor - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.setup] Setup of domain - sensor took 0.00 seconds - - 2026-04-13 02:13:01.249 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:13:01.255 INFO (MainThread) [homeassistant.setup] Setting up hardware - - 2026-04-13 02:13:01.267 INFO (MainThread) [homeassistant.setup] Setup of domain - hardware took 0.01 seconds - - 2026-04-13 02:13:01.267 INFO (MainThread) [homeassistant.setup] Setting up analytics - - 2026-04-13 02:13:01.268 INFO (MainThread) [homeassistant.setup] Setup of domain - analytics took 0.00 seconds - - 2026-04-13 02:13:01.269 INFO (MainThread) [homeassistant.setup] Setting up input_text - - 2026-04-13 02:13:01.269 INFO (MainThread) [homeassistant.setup] Setup of domain - input_text took 0.00 seconds - - 2026-04-13 02:13:01.271 INFO (MainThread) [homeassistant.setup] Setting up input_select - - 2026-04-13 02:13:01.272 INFO (MainThread) [homeassistant.setup] Setup of domain - input_select took 0.00 seconds - - 2026-04-13 02:13:01.273 INFO (MainThread) [homeassistant.setup] Setting up input_datetime - - 2026-04-13 02:13:01.274 INFO (MainThread) [homeassistant.setup] Setup of domain - input_datetime took 0.00 seconds - - 2026-04-13 02:13:01.275 INFO (MainThread) [homeassistant.setup] Setting up tag - - 2026-04-13 02:13:01.275 INFO (MainThread) [homeassistant.setup] Setup of domain - tag took 0.00 seconds - - 2026-04-13 02:13:01.283 INFO (MainThread) [homeassistant.setup] Setting up met - - 2026-04-13 02:13:01.283 INFO (MainThread) [homeassistant.setup] Setup of domain - met took 0.00 seconds - - 2026-04-13 02:13:01.285 INFO (MainThread) [homeassistant.setup] Setting up brands - - 2026-04-13 02:13:01.285 INFO (MainThread) [homeassistant.setup] Setup of domain - brands took 0.00 seconds - - 2026-04-13 02:13:01.331 INFO (MainThread) [homeassistant.setup] Setting up radio_browser - - 2026-04-13 02:13:01.331 INFO (MainThread) [homeassistant.setup] Setup of domain - radio_browser took 0.00 seconds - - 2026-04-13 02:13:01.333 INFO (MainThread) [homeassistant.setup] Setting up schedule - - 2026-04-13 02:13:01.334 INFO (MainThread) [homeassistant.setup] Setup of domain - schedule took 0.00 seconds - - 2026-04-13 02:13:01.334 INFO (MainThread) [homeassistant.setup] Setting up timer - - 2026-04-13 02:13:01.335 INFO (MainThread) [homeassistant.setup] Setup of domain - timer took 0.00 seconds - - 2026-04-13 02:13:01.336 INFO (MainThread) [homeassistant.setup] Setting up application_credentials - - 2026-04-13 02:13:01.337 INFO (MainThread) [homeassistant.setup] Setup of domain - application_credentials took 0.00 seconds - - 2026-04-13 02:13:01.337 INFO (MainThread) [homeassistant.setup] Setting up input_boolean - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_2 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_2 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_3 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_3 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_4 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_4 - - 2026-04-13 02:13:01.338 INFO (MainThread) [homeassistant.setup] Setup of domain - input_boolean took 0.00 seconds - - 2026-04-13 02:13:01.876 INFO (MainThread) [homeassistant.components.weather] - Setting up met.weather - - 2026-04-13 02:13:01.935 INFO (MainThread) [homeassistant.bootstrap] Home Assistant - initialized in 1.63s - - 2026-04-13 02:13:01.935 INFO (MainThread) [homeassistant.core] Starting Home - Assistant 2026.3.1 - - 2026-04-13 02:13:01.944 INFO (MainThread) [homeassistant.setup] Setting up event - - 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.components.event] Setting - up backup.event - - 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new event.backup entity: event.backup_automatic_backup - - 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.components.sensor] - Setting up backup.sensor - - 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new sensor.backup entity: sensor.backup_backup_manager_state - - 2026-04-13 02:13:01.945 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new sensor.backup entity: sensor.backup_next_scheduled_automatic_backup - - 2026-04-13 02:13:01.946 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new sensor.backup entity: sensor.backup_last_successful_automatic_backup - - 2026-04-13 02:13:01.946 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new sensor.backup entity: sensor.backup_last_attempted_automatic_backup - - 2026-04-13 02:13:23.954 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135819133024] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:13:23.959 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135807829344] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:13:24.403 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:13:24.404 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:13:24.409 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:13:24.409 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:13:24.434 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135808187712] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:13:24.437 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135845987200] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:13:24.491 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_5 - - 2026-04-13 02:13:24.499 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_5 - - 2026-04-13 02:13:24.504 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default - (172.18.0.3). Requested URL: ''/api/''. (niquests/3.18.5) - - 2026-04-13 02:13:24.509 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default - (172.18.0.3). Requested URL: ''/api/websocket''. (niquests/3.18.5) - - 2026-04-13 02:13:24.512 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default - (172.18.0.3). Requested URL: ''/api/websocket''. (niquests/3.18.5) - - 2026-04-13 02:13:24.521 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from homeassistantapi-tests-1.homeassistantapi_default - (172.18.0.3). Requested URL: ''/api/''. (niquests/3.18.5) - - 2026-04-13 02:13:24.573 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135808187712] Initialized trigger - - 2026-04-13 02:13:25.407 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:13:25.407 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:13:25.413 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:13:25.413 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:13:25.417 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135845987200] Initialized trigger - - 2026-04-13 02:13:26.389 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135845987200] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:13:26.389 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135808187712] Test User from 172.18.0.3 (niquests/3.18.5): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:28:02.416 INFO (MainThread) [homeassistant.components.analytics] - Submitted analytics to Home Assistant servers. Information submitted includes - {''uuid'': ''7b023d740661490db49ce807f6e76fdc'', ''version'': ''2026.3.1'', - ''installation_type'': ''Home Assistant Container'', ''certificate'': False, - ''integrations'': [''history'', ''notify'', ''weather'', ''counter'', ''http'', - ''logger'', ''input_text'', ''api'', ''tag'', ''radio_browser'', ''person'', - ''input_boolean'', ''input_number'', ''trace'', ''sun'', ''backup'', ''logbook'', - ''input_datetime'', ''met'', ''timer''], ''custom_integrations'': [], ''recorder'': - {''engine'': ''sqlite'', ''version'': }, - ''state_count'': 24, ''automation_count'': 0, ''integration_count'': 20, ''user_count'': - 1} - - 2026-04-13 02:43:47.640 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046289504] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:43:47.643 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046288384] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:43:47.722 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:43:47.723 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:43:47.729 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:43:47.729 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:43:47.747 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046270656] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:43:47.750 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046290144] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:43:47.791 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test - - 2026-04-13 02:43:47.798 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async - - 2026-04-13 02:43:47.810 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:43:47.820 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:43:47.845 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046270656] Initialized trigger - - 2026-04-13 02:43:48.398 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:43:48.398 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:43:48.403 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:43:48.403 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:43:48.406 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046290144] Initialized trigger - - 2026-04-13 02:43:49.492 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046290144] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:43:49.493 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046270656] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:47:33.433 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046267936] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:47:33.436 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046294944] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:47:33.519 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:47:33.520 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:47:33.524 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:47:33.524 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:47:33.539 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046267456] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:47:33.541 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046289984] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:47:33.573 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test - - 2026-04-13 02:47:33.578 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async - - 2026-04-13 02:47:33.591 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:47:33.599 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:47:33.600 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:47:33.600 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:47:33.635 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046267456] Initialized trigger - - 2026-04-13 02:47:34.079 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:47:34.079 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:47:34.084 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:47:34.084 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:47:34.088 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046289984] Initialized trigger - - 2026-04-13 02:47:35.366 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046289984] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:47:35.367 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046267456] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:50:58.891 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:50:58.959 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:51:06.013 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:51:06.075 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:51:23.053 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046297024] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:51:23.056 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046302784] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:51:23.145 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:51:23.145 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:51:23.149 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:51:23.150 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:51:23.167 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046303424] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:51:23.169 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046298944] An action which does not return responses can''t be called - with return_response=True - - 2026-04-13 02:51:23.202 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test - - 2026-04-13 02:51:23.207 INFO (MainThread) [homeassistant.helpers.entity_registry] - Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async - - 2026-04-13 02:51:23.218 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/''. (niquests/3.18.4) - - 2026-04-13 02:51:23.227 WARNING (MainThread) [homeassistant.components.http.ban] - Login attempt or request with invalid authentication from al-ubuntu.local (172.18.0.1). - Requested URL: ''/api/websocket''. (niquests/3.18.4) - - 2026-04-13 02:51:23.252 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046303424] Initialized trigger - - 2026-04-13 02:51:24.295 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:51:24.295 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:51:24.302 INFO (MainThread) [homeassistant.components.binary_sensor] - Setting up sun.binary_sensor - - 2026-04-13 02:51:24.303 INFO (MainThread) [homeassistant.components.sensor] - Setting up sun.sensor - - 2026-04-13 02:51:24.307 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046298944] Initialized trigger - - 2026-04-13 02:51:25.484 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046298944] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:51:25.484 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046303424] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:53:18.180 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046303264] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - 2026-04-13 02:53:18.185 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] - [135135046302624] Test User from 172.18.0.1 (niquests/3.18.4): Disconnected: - Received error message during command phase: Invalid close code: 0 - - ' - url: http://127.0.0.1:8123/api/error_log -- request: - method: GET - url: http://127.0.0.1:8123/api/config - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '729' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"allowlist_external_dirs":["/config/www","/media"],"allowlist_external_urls":[],"components":["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"],"config_dir":"/config","config_source":"storage","country":"US","currency":"USD","debug":false,"elevation":1000,"external_url":null,"internal_url":null,"language":"en","latitude":52.3731339,"location_name":"Testing - Server","longitude":4.8903147,"radius":100,"recovery_mode":false,"safe_mode":false,"state":"RUNNING","time_zone":"America/Chicago","unit_system":{"length":"km","accumulated_precipitation":"mm","area":"m²","mass":"g","pressure":"Pa","temperature":"°C","volume":"L","wind_speed":"m/s"},"version":"2026.3.1","whitelist_external_dirs":["/config/www","/media"]}' - url: http://127.0.0.1:8123/api/config -- request: - method: GET - url: http://127.0.0.1:8123/api/config - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '729' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"allowlist_external_dirs":["/config/www","/media"],"allowlist_external_urls":[],"components":["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"],"config_dir":"/config","config_source":"storage","country":"US","currency":"USD","debug":false,"elevation":1000,"external_url":null,"internal_url":null,"language":"en","latitude":52.3731339,"location_name":"Testing - Server","longitude":4.8903147,"radius":100,"recovery_mode":false,"safe_mode":false,"state":"RUNNING","time_zone":"America/Chicago","unit_system":{"length":"km","accumulated_precipitation":"mm","area":"m²","mass":"g","pressure":"Pa","temperature":"°C","volume":"L","wind_speed":"m/s"},"version":"2026.3.1","whitelist_external_dirs":["/config/www","/media"]}' - url: http://127.0.0.1:8123/api/config -- request: - method: GET - url: http://127.0.0.1:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00 - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2392' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"state":"In the palm of your hand.","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T19:27:50.187008+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T19:27:50.188976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T20:14:17.952319+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:14:20.269589+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T20:18:41.651312+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:18:43.424823+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:18:43.428906+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T20:20:27.513300+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:20:29.305124+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:20:29.306983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T23:48:00.054460+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:48:02.242653+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T23:51:06.403505+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:51:08.473987+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:51:08.477615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T00:19:06.717604+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T00:19:08.348669+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T00:19:08.352685+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T01:06:39.111375+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T01:06:41.197900+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T01:06:41.201386+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T06:08:39.026829+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:08:41.393630+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:08:41.395869+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T06:23:31.832858+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:23:33.196752+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:23:33.198606+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T06:52:43.940264+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:52:45.149824+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:52:45.152541+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T06:57:15.492065+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:57:17.136735+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:57:17.139877+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:16:08.844623+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:16:10.271126+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:16:10.274221+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:37:19.623575+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:37:21.474646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:37:21.476533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:38:23.966380+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:38:26.295291+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:38:26.297879+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:39:01.044672+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:39:03.208646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:39:03.210405+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:47:41.508301+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:47:42.121232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:47:42.128741+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:48:32.383700+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:48:33.258806+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:48:33.262264+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:49:22.252691+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:49:24.220764+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:49:24.227974+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T08:00:08.826242+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:10.381140+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:10.385764+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T08:00:52.364084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:54.489108+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:54.490797+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T16:18:23.396544+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T16:18:25.448757+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T16:18:25.451976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T04:07:27.922734+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:07:30.085084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:07:30.086615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T04:27:27.788795+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:27:29.407685+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:27:29.410545+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T04:29:59.193835+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:30:01.306462+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:30:01.308306+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T05:10:54.152667+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T05:10:56.421533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T05:10:56.423317+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:05:06.745290+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:05:08.326324+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:05:08.332050+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:21:38.409103+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:21:40.436201+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:21:40.438976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:22.773549+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:22.776296+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:54.008615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:54.010983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:39:00.615373+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:39:02.101278+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:39:02.104138+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:40:22.131490+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:24.408285+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:24.410113+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:40:57.312395+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:59.453163+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:59.454845+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:42:28.669154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:42:30.311707+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:42:30.313646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T08:04:31.460098+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:04:33.148836+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:04:33.156597+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T08:09:46.852056+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:09:48.343104+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:09:48.344710+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T20:11:46.403813+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:11:48.348486+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:11:48.350154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T20:18:22.305984+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:18:24.488311+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:18:24.492535+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-03T03:28:03.377257+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:28:05.492697+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:28:05.494309+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-03T03:29:32.176801+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:41:47.150987+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:41:47.152934+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-03T03:47:01.293257+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:47:03.271756+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:47:03.274717+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-05T00:42:55.928882+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:42:57.253045+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:42:57.255084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-05T00:43:35.727279+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:43:37.465382+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:43:37.469311+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-05T03:38:00.874260+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:38:02.077616+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:38:02.079600+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-05T03:49:24.133682+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:49:26.296678+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:49:26.298983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T06:57:00.262568+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T06:57:00.265797+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:02:10.770833+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:02:11.513315+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:02:11.516677+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:05:57.223587+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:05:57.966241+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:05:57.969502+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:09:51.891525+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:09:52.657550+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:09:52.660772+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:18:37.650155+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:18:39.344208+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:18:39.349195+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:19:11.303211+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:13.228810+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:13.233539+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:19:29.117210+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:29.482204+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:29.484149+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:30:59.574324+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:31:01.402084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:31:01.404785+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:36:47.076982+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:36:49.411149+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:36:49.420321+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:11:23.520470+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:11:23.524980+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-09T06:12:16.812464+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:12:18.258279+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:12:18.265813+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T16:55:41.110963+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T16:55:41.119621+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T17:19:22.358232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T17:19:24.477027+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T17:19:24.480650+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T19:59:32.543524+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T19:59:34.106033+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T19:59:34.114379+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T20:00:38.304081+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:00:40.452651+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:00:40.456491+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T20:12:20.215130+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:12:22.485769+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:12:22.488968+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:13:22.126108+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:13:22.129912+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T20:14:24.748612+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:14:26.151747+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:14:26.157637+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T21:53:31.380533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T21:53:33.198160+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T21:53:33.202674+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T22:09:48.532848+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:09:50.235887+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:09:50.238504+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T22:49:52.990232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:49:55.304099+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:49:55.306463+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:07:35.095384+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:07:37.123731+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:07:37.127154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:13:26.326392+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:13:26.329639+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:43:47.778724+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:43:49.457976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:43:49.460006+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:47:33.561670+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:47:35.331567+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:47:35.333591+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:50:58.591940+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:50:59.336033+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:50:59.338197+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:51:05.718969+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:06.453867+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:06.456042+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:51:23.190762+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:25.433029+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:25.437129+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}]' - url: http://127.0.0.1:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00 -- request: - method: GET - url: http://127.0.0.1:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00 - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2392' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"state":"In the palm of your hand.","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T19:27:50.187008+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T19:27:50.188976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T20:14:17.952319+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:14:20.269589+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T20:18:41.651312+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:18:43.424823+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:18:43.428906+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T20:20:27.513300+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:20:29.305124+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T20:20:29.306983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T23:48:00.054460+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:48:02.242653+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-30T23:51:06.403505+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:51:08.473987+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-30T23:51:08.477615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T00:19:06.717604+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T00:19:08.348669+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T00:19:08.352685+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T01:06:39.111375+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T01:06:41.197900+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T01:06:41.201386+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T06:08:39.026829+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:08:41.393630+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:08:41.395869+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T06:23:31.832858+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:23:33.196752+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:23:33.198606+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T06:52:43.940264+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:52:45.149824+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:52:45.152541+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T06:57:15.492065+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:57:17.136735+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T06:57:17.139877+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:16:08.844623+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:16:10.271126+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:16:10.274221+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:37:19.623575+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:37:21.474646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:37:21.476533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:38:23.966380+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:38:26.295291+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:38:26.297879+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:39:01.044672+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:39:03.208646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:39:03.210405+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:47:41.508301+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:47:42.121232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:47:42.128741+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:48:32.383700+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:48:33.258806+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:48:33.262264+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T07:49:22.252691+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:49:24.220764+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T07:49:24.227974+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T08:00:08.826242+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:10.381140+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:10.385764+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T08:00:52.364084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:54.489108+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T08:00:54.490797+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-03-31T16:18:23.396544+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T16:18:25.448757+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-03-31T16:18:25.451976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T04:07:27.922734+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:07:30.085084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:07:30.086615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T04:27:27.788795+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:27:29.407685+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:27:29.410545+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T04:29:59.193835+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:30:01.306462+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T04:30:01.308306+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T05:10:54.152667+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T05:10:56.421533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T05:10:56.423317+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:05:06.745290+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:05:08.326324+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:05:08.332050+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:21:38.409103+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:21:40.436201+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:21:40.438976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:22.773549+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:22.776296+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:54.008615+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:38:54.010983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:39:00.615373+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:39:02.101278+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:39:02.104138+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:40:22.131490+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:24.408285+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:24.410113+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:40:57.312395+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:59.453163+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:40:59.454845+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T06:42:28.669154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:42:30.311707+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T06:42:30.313646+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T08:04:31.460098+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:04:33.148836+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:04:33.156597+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T08:09:46.852056+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:09:48.343104+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T08:09:48.344710+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T20:11:46.403813+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:11:48.348486+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:11:48.350154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-01T20:18:22.305984+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:18:24.488311+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-01T20:18:24.492535+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-03T03:28:03.377257+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:28:05.492697+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:28:05.494309+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-03T03:29:32.176801+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:41:47.150987+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:41:47.152934+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-03T03:47:01.293257+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:47:03.271756+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-03T03:47:03.274717+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-05T00:42:55.928882+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:42:57.253045+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:42:57.255084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-05T00:43:35.727279+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:43:37.465382+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T00:43:37.469311+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-05T03:38:00.874260+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:38:02.077616+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:38:02.079600+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-05T03:49:24.133682+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:49:26.296678+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-05T03:49:26.298983+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T06:57:00.262568+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T06:57:00.265797+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:02:10.770833+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:02:11.513315+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:02:11.516677+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:05:57.223587+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:05:57.966241+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:05:57.969502+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:09:51.891525+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:09:52.657550+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:09:52.660772+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:18:37.650155+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:18:39.344208+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:18:39.349195+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:19:11.303211+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:13.228810+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:13.233539+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:19:29.117210+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:29.482204+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:19:29.484149+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:30:59.574324+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:31:01.402084+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:31:01.404785+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-07T07:36:47.076982+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:36:49.411149+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-07T07:36:49.420321+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:11:23.520470+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:11:23.524980+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-09T06:12:16.812464+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:12:18.258279+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-09T06:12:18.265813+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T16:55:41.110963+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T16:55:41.119621+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T17:19:22.358232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T17:19:24.477027+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T17:19:24.480650+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T19:59:32.543524+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T19:59:34.106033+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T19:59:34.114379+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T20:00:38.304081+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:00:40.452651+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:00:40.456491+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T20:12:20.215130+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:12:22.485769+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:12:22.488968+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:13:22.126108+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:13:22.129912+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T20:14:24.748612+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:14:26.151747+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T20:14:26.157637+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T21:53:31.380533+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T21:53:33.198160+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T21:53:33.202674+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T22:09:48.532848+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:09:50.235887+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:09:50.238504+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-12T22:49:52.990232+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:49:55.304099+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-12T22:49:55.306463+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:07:35.095384+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:07:37.123731+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:07:37.127154+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:13:26.326392+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:13:26.329639+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:43:47.778724+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:43:49.457976+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:43:49.460006+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:47:33.561670+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:47:35.331567+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:47:35.333591+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:50:58.591940+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:50:59.336033+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:50:59.338197+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:51:05.718969+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:06.453867+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:06.456042+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"beyond_our_solar_system","entity_id":"sun.red_sun","name":"red - sun","when":"2026-04-13T02:51:23.190762+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of your hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:25.433029+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},{"state":"In - the palm of my hand.","entity_id":"sun.red_sun","name":"red sun","when":"2026-04-13T02:51:25.437129+00:00","context_user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}]' - url: http://127.0.0.1:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00 -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '639' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/sun.sun -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '639' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/sun.sun -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '639' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/sun.sun -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '639' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/sun.sun -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '639' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/sun.sun -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '639' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/sun.sun -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '639' - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:19.306659+00:00","last_reported":"2026-04-13T02:53:19.306659+00:00","last_updated":"2026-04-13T02:53:19.306659+00:00","context":{"id":"01KP2C3ZJA54Z1BEWJT01D1HJG","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/sun.sun -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '639' - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:19.306659+00:00","last_reported":"2026-04-13T02:53:19.306659+00:00","last_updated":"2026-04-13T02:53:19.306659+00:00","context":{"id":"01KP2C3ZJA54Z1BEWJT01D1HJG","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/sun.sun -- request: - method: GET - url: http://127.0.0.1:8123/api/history/period/2020-01-01T00:00:00+00:00?filter_entity_id=sun.sun&end_time=2030-01-01T00%3A00%3A01%2B00%3A00&significant_changes_only - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '8017' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[[{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T19:27:40.353829+00:00","last_updated":"2026-03-30T19:27:40.353829+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T19:27:48.290087+00:00","last_updated":"2026-03-30T19:27:48.290087+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T19:27:48.292749+00:00","last_updated":"2026-03-30T19:27:48.292749+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T19:27:48.296218+00:00","last_updated":"2026-03-30T19:27:48.296218+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T19:27:48.298479+00:00","last_updated":"2026-03-30T19:27:48.298479+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T19:27:49.209155+00:00","last_updated":"2026-03-30T19:27:49.209155+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T19:27:49.211565+00:00","last_updated":"2026-03-30T19:27:49.211565+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T19:27:49.216016+00:00","last_updated":"2026-03-30T19:27:49.216016+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T19:27:49.217914+00:00","last_updated":"2026-03-30T19:27:49.217914+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:14:17.824344+00:00","last_updated":"2026-03-30T20:14:17.824344+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:14:17.826179+00:00","last_updated":"2026-03-30T20:14:17.826179+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:14:17.829201+00:00","last_updated":"2026-03-30T20:14:17.829201+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:14:17.830984+00:00","last_updated":"2026-03-30T20:14:17.830984+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:14:19.095210+00:00","last_updated":"2026-03-30T20:14:19.095210+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:14:19.101483+00:00","last_updated":"2026-03-30T20:14:19.101483+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:14:19.114091+00:00","last_updated":"2026-03-30T20:14:19.114091+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:14:19.121051+00:00","last_updated":"2026-03-30T20:14:19.121051+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:18:41.545737+00:00","last_updated":"2026-03-30T20:18:41.545737+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:18:41.547920+00:00","last_updated":"2026-03-30T20:18:41.547920+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:18:41.551002+00:00","last_updated":"2026-03-30T20:18:41.551002+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:18:41.552909+00:00","last_updated":"2026-03-30T20:18:41.552909+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:18:42.491323+00:00","last_updated":"2026-03-30T20:18:42.491323+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:18:42.495904+00:00","last_updated":"2026-03-30T20:18:42.495904+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:18:42.501754+00:00","last_updated":"2026-03-30T20:18:42.501754+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:18:42.504375+00:00","last_updated":"2026-03-30T20:18:42.504375+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:20:27.422104+00:00","last_updated":"2026-03-30T20:20:27.422104+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:20:27.424151+00:00","last_updated":"2026-03-30T20:20:27.424151+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:20:27.426788+00:00","last_updated":"2026-03-30T20:20:27.426788+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:20:27.428507+00:00","last_updated":"2026-03-30T20:20:27.428507+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:20:28.079990+00:00","last_updated":"2026-03-30T20:20:28.079990+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:20:28.088989+00:00","last_updated":"2026-03-30T20:20:28.088989+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T20:20:28.103212+00:00","last_updated":"2026-03-30T20:20:28.103212+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T20:20:28.110267+00:00","last_updated":"2026-03-30T20:20:28.110267+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:47:59.969292+00:00","last_updated":"2026-03-30T23:47:59.969292+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:47:59.971066+00:00","last_updated":"2026-03-30T23:47:59.971066+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:47:59.973570+00:00","last_updated":"2026-03-30T23:47:59.973570+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:47:59.975265+00:00","last_updated":"2026-03-30T23:47:59.975265+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:48:01.282335+00:00","last_updated":"2026-03-30T23:48:01.282335+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:48:01.288195+00:00","last_updated":"2026-03-30T23:48:01.288195+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:48:01.298126+00:00","last_updated":"2026-03-30T23:48:01.298126+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:48:01.301592+00:00","last_updated":"2026-03-30T23:48:01.301592+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:51:06.354553+00:00","last_updated":"2026-03-30T23:51:06.354553+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:51:06.356342+00:00","last_updated":"2026-03-30T23:51:06.356342+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:51:06.358963+00:00","last_updated":"2026-03-30T23:51:06.358963+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:51:06.360637+00:00","last_updated":"2026-03-30T23:51:06.360637+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:51:07.063104+00:00","last_updated":"2026-03-30T23:51:07.063104+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:51:07.073602+00:00","last_updated":"2026-03-30T23:51:07.073602+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-30T23:51:07.084636+00:00","last_updated":"2026-03-30T23:51:07.084636+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-30T23:51:07.087917+00:00","last_updated":"2026-03-30T23:51:07.087917+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T00:19:06.672240+00:00","last_updated":"2026-03-31T00:19:06.672240+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T00:19:06.673981+00:00","last_updated":"2026-03-31T00:19:06.673981+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T00:19:06.676727+00:00","last_updated":"2026-03-31T00:19:06.676727+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T00:19:06.678275+00:00","last_updated":"2026-03-31T00:19:06.678275+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T00:19:07.273545+00:00","last_updated":"2026-03-31T00:19:07.273545+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T00:19:07.281550+00:00","last_updated":"2026-03-31T00:19:07.281550+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T00:19:07.297864+00:00","last_updated":"2026-03-31T00:19:07.297864+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T00:19:07.305609+00:00","last_updated":"2026-03-31T00:19:07.305609+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T01:06:39.067711+00:00","last_updated":"2026-03-31T01:06:39.067711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T01:06:39.069669+00:00","last_updated":"2026-03-31T01:06:39.069669+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T01:06:39.072478+00:00","last_updated":"2026-03-31T01:06:39.072478+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T01:06:39.073924+00:00","last_updated":"2026-03-31T01:06:39.073924+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T01:06:40.106386+00:00","last_updated":"2026-03-31T01:06:40.106386+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T01:06:40.115899+00:00","last_updated":"2026-03-31T01:06:40.115899+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T01:06:40.125591+00:00","last_updated":"2026-03-31T01:06:40.125591+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T01:06:40.130075+00:00","last_updated":"2026-03-31T01:06:40.130075+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T05:16:48.025090+00:00","last_updated":"2026-03-31T05:16:48.025090+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:08:38.975112+00:00","last_updated":"2026-03-31T06:08:38.975112+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:08:38.977238+00:00","last_updated":"2026-03-31T06:08:38.977238+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:08:38.980411+00:00","last_updated":"2026-03-31T06:08:38.980411+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:08:38.982354+00:00","last_updated":"2026-03-31T06:08:38.982354+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:08:40.079722+00:00","last_updated":"2026-03-31T06:08:40.079722+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:08:40.090985+00:00","last_updated":"2026-03-31T06:08:40.090985+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:08:40.099005+00:00","last_updated":"2026-03-31T06:08:40.099005+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:08:40.101268+00:00","last_updated":"2026-03-31T06:08:40.101268+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:23:31.782099+00:00","last_updated":"2026-03-31T06:23:31.782099+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:23:31.784075+00:00","last_updated":"2026-03-31T06:23:31.784075+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:23:31.787232+00:00","last_updated":"2026-03-31T06:23:31.787232+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:23:31.789220+00:00","last_updated":"2026-03-31T06:23:31.789220+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:23:32.096002+00:00","last_updated":"2026-03-31T06:23:32.096002+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:23:32.106626+00:00","last_updated":"2026-03-31T06:23:32.106626+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:23:32.127274+00:00","last_updated":"2026-03-31T06:23:32.127274+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:23:32.133912+00:00","last_updated":"2026-03-31T06:23:32.133912+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:52:43.894076+00:00","last_updated":"2026-03-31T06:52:43.894076+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:52:43.895940+00:00","last_updated":"2026-03-31T06:52:43.895940+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:52:43.898646+00:00","last_updated":"2026-03-31T06:52:43.898646+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:52:43.900151+00:00","last_updated":"2026-03-31T06:52:43.900151+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:52:44.362143+00:00","last_updated":"2026-03-31T06:52:44.362143+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:52:44.373987+00:00","last_updated":"2026-03-31T06:52:44.373987+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:52:44.383253+00:00","last_updated":"2026-03-31T06:52:44.383253+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:52:44.387291+00:00","last_updated":"2026-03-31T06:52:44.387291+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:57:15.439435+00:00","last_updated":"2026-03-31T06:57:15.439435+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:57:15.441371+00:00","last_updated":"2026-03-31T06:57:15.441371+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:57:15.444808+00:00","last_updated":"2026-03-31T06:57:15.444808+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:57:15.446704+00:00","last_updated":"2026-03-31T06:57:15.446704+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:57:16.207577+00:00","last_updated":"2026-03-31T06:57:16.207577+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:57:16.217375+00:00","last_updated":"2026-03-31T06:57:16.217375+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T06:57:16.225367+00:00","last_updated":"2026-03-31T06:57:16.225367+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T06:57:16.231247+00:00","last_updated":"2026-03-31T06:57:16.231247+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:16:08.792299+00:00","last_updated":"2026-03-31T07:16:08.792299+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:16:08.794433+00:00","last_updated":"2026-03-31T07:16:08.794433+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:16:08.797719+00:00","last_updated":"2026-03-31T07:16:08.797719+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:16:08.799534+00:00","last_updated":"2026-03-31T07:16:08.799534+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:16:09.474304+00:00","last_updated":"2026-03-31T07:16:09.474304+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:16:09.484054+00:00","last_updated":"2026-03-31T07:16:09.484054+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:16:09.498644+00:00","last_updated":"2026-03-31T07:16:09.498644+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:16:09.501654+00:00","last_updated":"2026-03-31T07:16:09.501654+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:37:19.574215+00:00","last_updated":"2026-03-31T07:37:19.574215+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:37:19.576163+00:00","last_updated":"2026-03-31T07:37:19.576163+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:37:19.579011+00:00","last_updated":"2026-03-31T07:37:19.579011+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:37:19.580670+00:00","last_updated":"2026-03-31T07:37:19.580670+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:37:20.393973+00:00","last_updated":"2026-03-31T07:37:20.393973+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:37:20.400818+00:00","last_updated":"2026-03-31T07:37:20.400818+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:37:20.414024+00:00","last_updated":"2026-03-31T07:37:20.414024+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:37:20.417896+00:00","last_updated":"2026-03-31T07:37:20.417896+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:38:23.910821+00:00","last_updated":"2026-03-31T07:38:23.910821+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:38:23.913002+00:00","last_updated":"2026-03-31T07:38:23.913002+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:38:23.916499+00:00","last_updated":"2026-03-31T07:38:23.916499+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:38:23.918216+00:00","last_updated":"2026-03-31T07:38:23.918216+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:38:25.085946+00:00","last_updated":"2026-03-31T07:38:25.085946+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:38:25.092692+00:00","last_updated":"2026-03-31T07:38:25.092692+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:38:25.101776+00:00","last_updated":"2026-03-31T07:38:25.101776+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:38:25.104389+00:00","last_updated":"2026-03-31T07:38:25.104389+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:39:00.992624+00:00","last_updated":"2026-03-31T07:39:00.992624+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:39:00.994377+00:00","last_updated":"2026-03-31T07:39:00.994377+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:39:00.997338+00:00","last_updated":"2026-03-31T07:39:00.997338+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:39:00.998882+00:00","last_updated":"2026-03-31T07:39:00.998882+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:39:02.249183+00:00","last_updated":"2026-03-31T07:39:02.249183+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:39:02.255087+00:00","last_updated":"2026-03-31T07:39:02.255087+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:39:02.266466+00:00","last_updated":"2026-03-31T07:39:02.266466+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:39:02.269211+00:00","last_updated":"2026-03-31T07:39:02.269211+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:47:41.461427+00:00","last_updated":"2026-03-31T07:47:41.461427+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:47:41.463433+00:00","last_updated":"2026-03-31T07:47:41.463433+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:47:41.466439+00:00","last_updated":"2026-03-31T07:47:41.466439+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:47:41.468213+00:00","last_updated":"2026-03-31T07:47:41.468213+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:47:41.571800+00:00","last_updated":"2026-03-31T07:47:41.571800+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:47:41.573781+00:00","last_updated":"2026-03-31T07:47:41.573781+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:47:41.577332+00:00","last_updated":"2026-03-31T07:47:41.577332+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:47:41.579181+00:00","last_updated":"2026-03-31T07:47:41.579181+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:48:32.334214+00:00","last_updated":"2026-03-31T07:48:32.334214+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:48:32.336047+00:00","last_updated":"2026-03-31T07:48:32.336047+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:48:32.338834+00:00","last_updated":"2026-03-31T07:48:32.338834+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:48:32.340830+00:00","last_updated":"2026-03-31T07:48:32.340830+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:48:32.441515+00:00","last_updated":"2026-03-31T07:48:32.441515+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:48:32.443764+00:00","last_updated":"2026-03-31T07:48:32.443764+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:48:32.447773+00:00","last_updated":"2026-03-31T07:48:32.447773+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:48:32.449476+00:00","last_updated":"2026-03-31T07:48:32.449476+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:49:22.204307+00:00","last_updated":"2026-03-31T07:49:22.204307+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:49:22.206065+00:00","last_updated":"2026-03-31T07:49:22.206065+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:49:22.208891+00:00","last_updated":"2026-03-31T07:49:22.208891+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:49:22.210546+00:00","last_updated":"2026-03-31T07:49:22.210546+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:49:23.195106+00:00","last_updated":"2026-03-31T07:49:23.195106+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:49:23.207187+00:00","last_updated":"2026-03-31T07:49:23.207187+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T07:49:23.216744+00:00","last_updated":"2026-03-31T07:49:23.216744+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T07:49:23.219191+00:00","last_updated":"2026-03-31T07:49:23.219191+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:08.778323+00:00","last_updated":"2026-03-31T08:00:08.778323+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:08.780598+00:00","last_updated":"2026-03-31T08:00:08.780598+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:08.783757+00:00","last_updated":"2026-03-31T08:00:08.783757+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:08.785286+00:00","last_updated":"2026-03-31T08:00:08.785286+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:09.165863+00:00","last_updated":"2026-03-31T08:00:09.165863+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:09.175870+00:00","last_updated":"2026-03-31T08:00:09.175870+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:09.188334+00:00","last_updated":"2026-03-31T08:00:09.188334+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:09.193151+00:00","last_updated":"2026-03-31T08:00:09.193151+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:52.317484+00:00","last_updated":"2026-03-31T08:00:52.317484+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:52.319379+00:00","last_updated":"2026-03-31T08:00:52.319379+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:52.322342+00:00","last_updated":"2026-03-31T08:00:52.322342+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:52.323976+00:00","last_updated":"2026-03-31T08:00:52.323976+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:53.293668+00:00","last_updated":"2026-03-31T08:00:53.293668+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:53.303213+00:00","last_updated":"2026-03-31T08:00:53.303213+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T08:00:53.316506+00:00","last_updated":"2026-03-31T08:00:53.316506+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T08:00:53.319419+00:00","last_updated":"2026-03-31T08:00:53.319419+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T16:18:23.318807+00:00","last_updated":"2026-03-31T16:18:23.318807+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T16:18:23.321467+00:00","last_updated":"2026-03-31T16:18:23.321467+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T16:18:23.325769+00:00","last_updated":"2026-03-31T16:18:23.325769+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T16:18:23.328132+00:00","last_updated":"2026-03-31T16:18:23.328132+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T16:18:24.504741+00:00","last_updated":"2026-03-31T16:18:24.504741+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T16:18:24.507261+00:00","last_updated":"2026-03-31T16:18:24.507261+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-03-31T16:18:24.510971+00:00","last_updated":"2026-03-31T16:18:24.510971+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T16:18:24.512552+00:00","last_updated":"2026-03-31T16:18:24.512552+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-03-31T18:14:50.158665+00:00","last_updated":"2026-03-31T18:14:50.158665+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:07:27.826406+00:00","last_updated":"2026-04-01T04:07:27.826406+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:07:27.829295+00:00","last_updated":"2026-04-01T04:07:27.829295+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:07:27.842366+00:00","last_updated":"2026-04-01T04:07:27.842366+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:07:27.847840+00:00","last_updated":"2026-04-01T04:07:27.847840+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:07:29.412544+00:00","last_updated":"2026-04-01T04:07:29.412544+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:07:29.414516+00:00","last_updated":"2026-04-01T04:07:29.414516+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:07:29.417509+00:00","last_updated":"2026-04-01T04:07:29.417509+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:07:29.419691+00:00","last_updated":"2026-04-01T04:07:29.419691+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:27:27.618239+00:00","last_updated":"2026-04-01T04:27:27.618239+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:27:27.731729+00:00","last_updated":"2026-04-01T04:27:27.731729+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:27:27.737711+00:00","last_updated":"2026-04-01T04:27:27.737711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:27:27.739861+00:00","last_updated":"2026-04-01T04:27:27.739861+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:27:28.410854+00:00","last_updated":"2026-04-01T04:27:28.410854+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:27:28.413109+00:00","last_updated":"2026-04-01T04:27:28.413109+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:27:28.416334+00:00","last_updated":"2026-04-01T04:27:28.416334+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:27:28.417992+00:00","last_updated":"2026-04-01T04:27:28.417992+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:29:59.130678+00:00","last_updated":"2026-04-01T04:29:59.130678+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:29:59.132640+00:00","last_updated":"2026-04-01T04:29:59.132640+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:29:59.138228+00:00","last_updated":"2026-04-01T04:29:59.138228+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:29:59.140699+00:00","last_updated":"2026-04-01T04:29:59.140699+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:30:00.418760+00:00","last_updated":"2026-04-01T04:30:00.418760+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:30:00.421037+00:00","last_updated":"2026-04-01T04:30:00.421037+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T04:30:00.425693+00:00","last_updated":"2026-04-01T04:30:00.425693+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T04:30:00.427370+00:00","last_updated":"2026-04-01T04:30:00.427370+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T05:10:54.084994+00:00","last_updated":"2026-04-01T05:10:54.084994+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T05:10:54.087400+00:00","last_updated":"2026-04-01T05:10:54.087400+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T05:10:54.091612+00:00","last_updated":"2026-04-01T05:10:54.091612+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T05:10:54.093909+00:00","last_updated":"2026-04-01T05:10:54.093909+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T05:10:55.495018+00:00","last_updated":"2026-04-01T05:10:55.495018+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T05:10:55.496944+00:00","last_updated":"2026-04-01T05:10:55.496944+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T05:10:55.500202+00:00","last_updated":"2026-04-01T05:10:55.500202+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T05:10:55.502406+00:00","last_updated":"2026-04-01T05:10:55.502406+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T05:14:55.505460+00:00","last_updated":"2026-04-01T05:14:55.505460+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:05:06.677041+00:00","last_updated":"2026-04-01T06:05:06.677041+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:05:06.679289+00:00","last_updated":"2026-04-01T06:05:06.679289+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:05:06.682555+00:00","last_updated":"2026-04-01T06:05:06.682555+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:05:06.684932+00:00","last_updated":"2026-04-01T06:05:06.684932+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:05:07.304414+00:00","last_updated":"2026-04-01T06:05:07.304414+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:05:07.306131+00:00","last_updated":"2026-04-01T06:05:07.306131+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:05:07.308970+00:00","last_updated":"2026-04-01T06:05:07.308970+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:05:07.310350+00:00","last_updated":"2026-04-01T06:05:07.310350+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:21:38.342940+00:00","last_updated":"2026-04-01T06:21:38.342940+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:21:38.345667+00:00","last_updated":"2026-04-01T06:21:38.345667+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:21:38.350476+00:00","last_updated":"2026-04-01T06:21:38.350476+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:21:38.353287+00:00","last_updated":"2026-04-01T06:21:38.353287+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:21:39.092660+00:00","last_updated":"2026-04-01T06:21:39.092660+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:21:39.095831+00:00","last_updated":"2026-04-01T06:21:39.095831+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:21:39.100971+00:00","last_updated":"2026-04-01T06:21:39.100971+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:21:39.102639+00:00","last_updated":"2026-04-01T06:21:39.102639+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:39:00.551540+00:00","last_updated":"2026-04-01T06:39:00.551540+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:39:00.554372+00:00","last_updated":"2026-04-01T06:39:00.554372+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:39:00.557469+00:00","last_updated":"2026-04-01T06:39:00.557469+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:39:00.559346+00:00","last_updated":"2026-04-01T06:39:00.559346+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:39:01.197728+00:00","last_updated":"2026-04-01T06:39:01.197728+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:39:01.199993+00:00","last_updated":"2026-04-01T06:39:01.199993+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:39:01.203340+00:00","last_updated":"2026-04-01T06:39:01.203340+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:39:01.204890+00:00","last_updated":"2026-04-01T06:39:01.204890+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:22.058819+00:00","last_updated":"2026-04-01T06:40:22.058819+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:22.061453+00:00","last_updated":"2026-04-01T06:40:22.061453+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:22.065215+00:00","last_updated":"2026-04-01T06:40:22.065215+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:22.067142+00:00","last_updated":"2026-04-01T06:40:22.067142+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:23.446482+00:00","last_updated":"2026-04-01T06:40:23.446482+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:23.449088+00:00","last_updated":"2026-04-01T06:40:23.449088+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:23.453538+00:00","last_updated":"2026-04-01T06:40:23.453538+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:23.455879+00:00","last_updated":"2026-04-01T06:40:23.455879+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:57.240757+00:00","last_updated":"2026-04-01T06:40:57.240757+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:57.243328+00:00","last_updated":"2026-04-01T06:40:57.243328+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:57.246734+00:00","last_updated":"2026-04-01T06:40:57.246734+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:57.248325+00:00","last_updated":"2026-04-01T06:40:57.248325+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:58.470465+00:00","last_updated":"2026-04-01T06:40:58.470465+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:58.473243+00:00","last_updated":"2026-04-01T06:40:58.473243+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:40:58.476948+00:00","last_updated":"2026-04-01T06:40:58.476948+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:40:58.479183+00:00","last_updated":"2026-04-01T06:40:58.479183+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:42:28.604257+00:00","last_updated":"2026-04-01T06:42:28.604257+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:42:28.608298+00:00","last_updated":"2026-04-01T06:42:28.608298+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:42:28.613876+00:00","last_updated":"2026-04-01T06:42:28.613876+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:42:28.615704+00:00","last_updated":"2026-04-01T06:42:28.615704+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:42:29.301585+00:00","last_updated":"2026-04-01T06:42:29.301585+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:42:29.303315+00:00","last_updated":"2026-04-01T06:42:29.303315+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T06:42:29.307213+00:00","last_updated":"2026-04-01T06:42:29.307213+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T06:42:29.309176+00:00","last_updated":"2026-04-01T06:42:29.309176+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T07:48:52.650521+00:00","last_updated":"2026-04-01T07:48:52.650521+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T07:48:52.652305+00:00","last_updated":"2026-04-01T07:48:52.652305+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T07:48:52.656399+00:00","last_updated":"2026-04-01T07:48:52.656399+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T07:48:52.658254+00:00","last_updated":"2026-04-01T07:48:52.658254+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T07:52:19.775556+00:00","last_updated":"2026-04-01T07:52:19.775556+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T07:52:19.777028+00:00","last_updated":"2026-04-01T07:52:19.777028+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T07:52:19.782326+00:00","last_updated":"2026-04-01T07:52:19.782326+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T07:52:19.785055+00:00","last_updated":"2026-04-01T07:52:19.785055+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:01:53.594851+00:00","last_updated":"2026-04-01T08:01:53.594851+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:01:53.599109+00:00","last_updated":"2026-04-01T08:01:53.599109+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:01:53.613187+00:00","last_updated":"2026-04-01T08:01:53.613187+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:01:53.618975+00:00","last_updated":"2026-04-01T08:01:53.618975+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:03:07.503131+00:00","last_updated":"2026-04-01T08:03:07.503131+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:03:07.505165+00:00","last_updated":"2026-04-01T08:03:07.505165+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:03:07.509811+00:00","last_updated":"2026-04-01T08:03:07.509811+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:03:07.511999+00:00","last_updated":"2026-04-01T08:03:07.511999+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:04:31.316192+00:00","last_updated":"2026-04-01T08:04:31.316192+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:04:31.320536+00:00","last_updated":"2026-04-01T08:04:31.320536+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:04:31.325963+00:00","last_updated":"2026-04-01T08:04:31.325963+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:04:31.328010+00:00","last_updated":"2026-04-01T08:04:31.328010+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:04:32.272656+00:00","last_updated":"2026-04-01T08:04:32.272656+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:04:32.281021+00:00","last_updated":"2026-04-01T08:04:32.281021+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:04:32.298280+00:00","last_updated":"2026-04-01T08:04:32.298280+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:04:32.307347+00:00","last_updated":"2026-04-01T08:04:32.307347+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:46.793136+00:00","last_updated":"2026-04-01T08:09:46.793136+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:46.798095+00:00","last_updated":"2026-04-01T08:09:46.798095+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:46.803897+00:00","last_updated":"2026-04-01T08:09:46.803897+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:46.807675+00:00","last_updated":"2026-04-01T08:09:46.807675+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:47.478226+00:00","last_updated":"2026-04-01T08:09:47.478226+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:47.488296+00:00","last_updated":"2026-04-01T08:09:47.488296+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:47.500976+00:00","last_updated":"2026-04-01T08:09:47.500976+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:47.507899+00:00","last_updated":"2026-04-01T08:09:47.507899+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:55.143245+00:00","last_updated":"2026-04-01T08:09:55.143245+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:55.146719+00:00","last_updated":"2026-04-01T08:09:55.146719+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T08:09:55.152536+00:00","last_updated":"2026-04-01T08:09:55.152536+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T08:09:55.155356+00:00","last_updated":"2026-04-01T08:09:55.155356+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T18:16:32.849500+00:00","last_updated":"2026-04-01T18:16:32.849500+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:46.360164+00:00","last_updated":"2026-04-01T20:11:46.360164+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:46.361940+00:00","last_updated":"2026-04-01T20:11:46.361940+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:46.364510+00:00","last_updated":"2026-04-01T20:11:46.364510+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:46.366031+00:00","last_updated":"2026-04-01T20:11:46.366031+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:47.209649+00:00","last_updated":"2026-04-01T20:11:47.209649+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:47.223096+00:00","last_updated":"2026-04-01T20:11:47.223096+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:47.234063+00:00","last_updated":"2026-04-01T20:11:47.234063+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:47.245140+00:00","last_updated":"2026-04-01T20:11:47.245140+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:50.859251+00:00","last_updated":"2026-04-01T20:11:50.859251+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:50.860645+00:00","last_updated":"2026-04-01T20:11:50.860645+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:11:50.863545+00:00","last_updated":"2026-04-01T20:11:50.863545+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:11:50.864919+00:00","last_updated":"2026-04-01T20:11:50.864919+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:18:22.261569+00:00","last_updated":"2026-04-01T20:18:22.261569+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:18:22.263259+00:00","last_updated":"2026-04-01T20:18:22.263259+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:18:22.265963+00:00","last_updated":"2026-04-01T20:18:22.265963+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:18:22.267450+00:00","last_updated":"2026-04-01T20:18:22.267450+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:18:23.108421+00:00","last_updated":"2026-04-01T20:18:23.108421+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:18:23.110959+00:00","last_updated":"2026-04-01T20:18:23.110959+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:18:23.114415+00:00","last_updated":"2026-04-01T20:18:23.114415+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:18:23.115919+00:00","last_updated":"2026-04-01T20:18:23.115919+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:27:09.881792+00:00","last_updated":"2026-04-01T20:27:09.881792+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:27:09.884453+00:00","last_updated":"2026-04-01T20:27:09.884453+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:27:09.892252+00:00","last_updated":"2026-04-01T20:27:09.892252+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:27:09.896194+00:00","last_updated":"2026-04-01T20:27:09.896194+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:40:00.832470+00:00","last_updated":"2026-04-01T20:40:00.832470+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:40:00.834205+00:00","last_updated":"2026-04-01T20:40:00.834205+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-01T20:40:00.837336+00:00","last_updated":"2026-04-01T20:40:00.837336+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-01T20:40:00.838900+00:00","last_updated":"2026-04-01T20:40:00.838900+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-02T05:12:07.722893+00:00","last_updated":"2026-04-02T05:12:07.722893+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-02T18:18:15.184887+00:00","last_updated":"2026-04-02T18:18:15.184887+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:28:03.210491+00:00","last_updated":"2026-04-03T03:28:03.210491+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:28:03.212855+00:00","last_updated":"2026-04-03T03:28:03.212855+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:28:03.217245+00:00","last_updated":"2026-04-03T03:28:03.217245+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:28:03.219486+00:00","last_updated":"2026-04-03T03:28:03.219486+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:28:04.463708+00:00","last_updated":"2026-04-03T03:28:04.463708+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:28:04.465640+00:00","last_updated":"2026-04-03T03:28:04.465640+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:28:04.469420+00:00","last_updated":"2026-04-03T03:28:04.469420+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:28:04.470984+00:00","last_updated":"2026-04-03T03:28:04.470984+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:29:32.016026+00:00","last_updated":"2026-04-03T03:29:32.016026+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:29:32.018471+00:00","last_updated":"2026-04-03T03:29:32.018471+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:29:32.021702+00:00","last_updated":"2026-04-03T03:29:32.021702+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:29:32.023468+00:00","last_updated":"2026-04-03T03:29:32.023468+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:27.464673+00:00","last_updated":"2026-04-03T03:41:27.464673+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:27.466756+00:00","last_updated":"2026-04-03T03:41:27.466756+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:27.469846+00:00","last_updated":"2026-04-03T03:41:27.469846+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:27.471901+00:00","last_updated":"2026-04-03T03:41:27.471901+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:45.862297+00:00","last_updated":"2026-04-03T03:41:45.862297+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:45.864547+00:00","last_updated":"2026-04-03T03:41:45.864547+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:45.868306+00:00","last_updated":"2026-04-03T03:41:45.868306+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:45.870773+00:00","last_updated":"2026-04-03T03:41:45.870773+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:46.348316+00:00","last_updated":"2026-04-03T03:41:46.348316+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:46.349986+00:00","last_updated":"2026-04-03T03:41:46.349986+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:41:46.353109+00:00","last_updated":"2026-04-03T03:41:46.353109+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:41:46.354717+00:00","last_updated":"2026-04-03T03:41:46.354717+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:47:01.232644+00:00","last_updated":"2026-04-03T03:47:01.232644+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:47:01.235714+00:00","last_updated":"2026-04-03T03:47:01.235714+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:47:01.239685+00:00","last_updated":"2026-04-03T03:47:01.239685+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:47:01.241221+00:00","last_updated":"2026-04-03T03:47:01.241221+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:47:02.490523+00:00","last_updated":"2026-04-03T03:47:02.490523+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:47:02.492982+00:00","last_updated":"2026-04-03T03:47:02.492982+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-03T03:47:02.499558+00:00","last_updated":"2026-04-03T03:47:02.499558+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T03:47:02.501496+00:00","last_updated":"2026-04-03T03:47:02.501496+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T05:09:47.947397+00:00","last_updated":"2026-04-03T05:09:47.947397+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-03T18:21:56.947214+00:00","last_updated":"2026-04-03T18:21:56.947214+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-04T05:07:28.459574+00:00","last_updated":"2026-04-04T05:07:28.459574+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-04T18:23:38.287729+00:00","last_updated":"2026-04-04T18:23:38.287729+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:42:55.825678+00:00","last_updated":"2026-04-05T00:42:55.825678+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:42:55.827499+00:00","last_updated":"2026-04-05T00:42:55.827499+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:42:55.830418+00:00","last_updated":"2026-04-05T00:42:55.830418+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:42:55.833757+00:00","last_updated":"2026-04-05T00:42:55.833757+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:42:56.377152+00:00","last_updated":"2026-04-05T00:42:56.377152+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:42:56.382746+00:00","last_updated":"2026-04-05T00:42:56.382746+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:42:56.389357+00:00","last_updated":"2026-04-05T00:42:56.389357+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:42:56.393998+00:00","last_updated":"2026-04-05T00:42:56.393998+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:43:35.682695+00:00","last_updated":"2026-04-05T00:43:35.682695+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:43:35.684665+00:00","last_updated":"2026-04-05T00:43:35.684665+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:43:35.687558+00:00","last_updated":"2026-04-05T00:43:35.687558+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:43:35.689188+00:00","last_updated":"2026-04-05T00:43:35.689188+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:43:36.394291+00:00","last_updated":"2026-04-05T00:43:36.394291+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:43:36.396443+00:00","last_updated":"2026-04-05T00:43:36.396443+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:43:36.399662+00:00","last_updated":"2026-04-05T00:43:36.399662+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:43:36.401598+00:00","last_updated":"2026-04-05T00:43:36.401598+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:56:18.433945+00:00","last_updated":"2026-04-05T00:56:18.433945+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:56:18.441552+00:00","last_updated":"2026-04-05T00:56:18.441552+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T00:56:18.456850+00:00","last_updated":"2026-04-05T00:56:18.456850+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T00:56:18.463460+00:00","last_updated":"2026-04-05T00:56:18.463460+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:38:00.809478+00:00","last_updated":"2026-04-05T03:38:00.809478+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:38:00.812908+00:00","last_updated":"2026-04-05T03:38:00.812908+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:38:00.820958+00:00","last_updated":"2026-04-05T03:38:00.820958+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:38:00.823215+00:00","last_updated":"2026-04-05T03:38:00.823215+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:38:01.242531+00:00","last_updated":"2026-04-05T03:38:01.242531+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:38:01.244342+00:00","last_updated":"2026-04-05T03:38:01.244342+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:38:01.247846+00:00","last_updated":"2026-04-05T03:38:01.247846+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:38:01.249937+00:00","last_updated":"2026-04-05T03:38:01.249937+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:49:24.047959+00:00","last_updated":"2026-04-05T03:49:24.047959+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:49:24.050436+00:00","last_updated":"2026-04-05T03:49:24.050436+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:49:24.075097+00:00","last_updated":"2026-04-05T03:49:24.075097+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:49:24.077058+00:00","last_updated":"2026-04-05T03:49:24.077058+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:49:25.335453+00:00","last_updated":"2026-04-05T03:49:25.335453+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:49:25.337230+00:00","last_updated":"2026-04-05T03:49:25.337230+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-05T03:49:25.359644+00:00","last_updated":"2026-04-05T03:49:25.359644+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T03:49:25.364632+00:00","last_updated":"2026-04-05T03:49:25.364632+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T05:05:09.282330+00:00","last_updated":"2026-04-05T05:05:09.282330+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-05T18:25:19.091073+00:00","last_updated":"2026-04-05T18:25:19.091073+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T06:55:03.198995+00:00","last_updated":"2026-04-07T06:55:03.198995+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:18:37.602606+00:00","last_updated":"2026-04-07T07:18:37.602606+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:18:37.605257+00:00","last_updated":"2026-04-07T07:18:37.605257+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:18:37.608230+00:00","last_updated":"2026-04-07T07:18:37.608230+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:18:37.610167+00:00","last_updated":"2026-04-07T07:18:37.610167+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:18:38.400873+00:00","last_updated":"2026-04-07T07:18:38.400873+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:18:38.402933+00:00","last_updated":"2026-04-07T07:18:38.402933+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:18:38.416822+00:00","last_updated":"2026-04-07T07:18:38.416822+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:18:38.425937+00:00","last_updated":"2026-04-07T07:18:38.425937+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:19:11.262208+00:00","last_updated":"2026-04-07T07:19:11.262208+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:19:11.263941+00:00","last_updated":"2026-04-07T07:19:11.263941+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:19:11.266368+00:00","last_updated":"2026-04-07T07:19:11.266368+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:19:11.268234+00:00","last_updated":"2026-04-07T07:19:11.268234+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:19:12.226209+00:00","last_updated":"2026-04-07T07:19:12.226209+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:19:12.235126+00:00","last_updated":"2026-04-07T07:19:12.235126+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:19:12.242244+00:00","last_updated":"2026-04-07T07:19:12.242244+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:19:12.251347+00:00","last_updated":"2026-04-07T07:19:12.251347+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:30:59.526517+00:00","last_updated":"2026-04-07T07:30:59.526517+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:30:59.528166+00:00","last_updated":"2026-04-07T07:30:59.528166+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:30:59.530789+00:00","last_updated":"2026-04-07T07:30:59.530789+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:30:59.532307+00:00","last_updated":"2026-04-07T07:30:59.532307+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:31:00.358874+00:00","last_updated":"2026-04-07T07:31:00.358874+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:31:00.363967+00:00","last_updated":"2026-04-07T07:31:00.363967+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:31:00.369575+00:00","last_updated":"2026-04-07T07:31:00.369575+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:31:00.371264+00:00","last_updated":"2026-04-07T07:31:00.371264+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:36:47.013211+00:00","last_updated":"2026-04-07T07:36:47.013211+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:36:47.015137+00:00","last_updated":"2026-04-07T07:36:47.015137+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:36:47.018521+00:00","last_updated":"2026-04-07T07:36:47.018521+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:36:47.020194+00:00","last_updated":"2026-04-07T07:36:47.020194+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:36:48.363259+00:00","last_updated":"2026-04-07T07:36:48.363259+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:36:48.372581+00:00","last_updated":"2026-04-07T07:36:48.372581+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-07T07:36:48.392615+00:00","last_updated":"2026-04-07T07:36:48.392615+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T07:36:48.397353+00:00","last_updated":"2026-04-07T07:36:48.397353+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-07T18:28:39.433578+00:00","last_updated":"2026-04-07T18:28:39.433578+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-08T04:58:13.956939+00:00","last_updated":"2026-04-08T04:58:13.956939+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:11:13.273609+00:00","last_updated":"2026-04-09T06:11:13.273609+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:11:21.691439+00:00","last_updated":"2026-04-09T06:11:21.691439+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:11:21.693828+00:00","last_updated":"2026-04-09T06:11:21.693828+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:11:21.697431+00:00","last_updated":"2026-04-09T06:11:21.697431+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:11:21.699241+00:00","last_updated":"2026-04-09T06:11:21.699241+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:11:22.452752+00:00","last_updated":"2026-04-09T06:11:22.452752+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:11:22.461845+00:00","last_updated":"2026-04-09T06:11:22.461845+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:11:22.482137+00:00","last_updated":"2026-04-09T06:11:22.482137+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:11:22.487029+00:00","last_updated":"2026-04-09T06:11:22.487029+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:12:16.750139+00:00","last_updated":"2026-04-09T06:12:16.750139+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:12:16.751925+00:00","last_updated":"2026-04-09T06:12:16.751925+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:12:16.754874+00:00","last_updated":"2026-04-09T06:12:16.754874+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:12:16.756817+00:00","last_updated":"2026-04-09T06:12:16.756817+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:12:17.154931+00:00","last_updated":"2026-04-09T06:12:17.154931+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:12:17.162853+00:00","last_updated":"2026-04-09T06:12:17.162853+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-09T06:12:17.181298+00:00","last_updated":"2026-04-09T06:12:17.181298+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T06:12:17.190899+00:00","last_updated":"2026-04-09T06:12:17.190899+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-09T18:31:57.963000+00:00","last_updated":"2026-04-09T18:31:57.963000+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-10T04:53:39.245622+00:00","last_updated":"2026-04-10T04:53:39.245622+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:30.295367+00:00","last_updated":"2026-04-12T16:55:30.295367+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.905124+00:00","last_updated":"2026-04-12T16:55:38.905124+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.909797+00:00","last_updated":"2026-04-12T16:55:38.909797+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.914742+00:00","last_updated":"2026-04-12T16:55:38.914742+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.916826+00:00","last_updated":"2026-04-12T16:55:38.916826+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.140140+00:00","last_updated":"2026-04-12T16:55:40.140140+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.142125+00:00","last_updated":"2026-04-12T16:55:40.142125+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.146982+00:00","last_updated":"2026-04-12T16:55:40.146982+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.150118+00:00","last_updated":"2026-04-12T16:55:40.150118+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.278074+00:00","last_updated":"2026-04-12T17:19:22.278074+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.280331+00:00","last_updated":"2026-04-12T17:19:22.280331+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.284613+00:00","last_updated":"2026-04-12T17:19:22.284613+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.286764+00:00","last_updated":"2026-04-12T17:19:22.286764+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.195136+00:00","last_updated":"2026-04-12T17:19:23.195136+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.197078+00:00","last_updated":"2026-04-12T17:19:23.197078+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.200907+00:00","last_updated":"2026-04-12T17:19:23.200907+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.202677+00:00","last_updated":"2026-04-12T17:19:23.202677+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T18:36:52.438177+00:00","last_updated":"2026-04-12T18:36:52.438177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.474959+00:00","last_updated":"2026-04-12T19:59:32.474959+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.477394+00:00","last_updated":"2026-04-12T19:59:32.477394+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.481787+00:00","last_updated":"2026-04-12T19:59:32.481787+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.483929+00:00","last_updated":"2026-04-12T19:59:32.483929+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.228622+00:00","last_updated":"2026-04-12T19:59:33.228622+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.230875+00:00","last_updated":"2026-04-12T19:59:33.230875+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.235056+00:00","last_updated":"2026-04-12T19:59:33.235056+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.236850+00:00","last_updated":"2026-04-12T19:59:33.236850+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.219213+00:00","last_updated":"2026-04-12T20:00:38.219213+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.221401+00:00","last_updated":"2026-04-12T20:00:38.221401+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.225309+00:00","last_updated":"2026-04-12T20:00:38.225309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.227147+00:00","last_updated":"2026-04-12T20:00:38.227147+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.124540+00:00","last_updated":"2026-04-12T20:00:39.124540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.133407+00:00","last_updated":"2026-04-12T20:00:39.133407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.140792+00:00","last_updated":"2026-04-12T20:00:39.140792+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.143051+00:00","last_updated":"2026-04-12T20:00:39.143051+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.151640+00:00","last_updated":"2026-04-12T20:12:20.151640+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.153514+00:00","last_updated":"2026-04-12T20:12:20.153514+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.156801+00:00","last_updated":"2026-04-12T20:12:20.156801+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.158648+00:00","last_updated":"2026-04-12T20:12:20.158648+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.400924+00:00","last_updated":"2026-04-12T20:12:21.400924+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.410656+00:00","last_updated":"2026-04-12T20:12:21.410656+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.433198+00:00","last_updated":"2026-04-12T20:12:21.433198+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.443464+00:00","last_updated":"2026-04-12T20:12:21.443464+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:49.798177+00:00","last_updated":"2026-04-12T20:12:49.798177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.835351+00:00","last_updated":"2026-04-12T20:13:19.835351+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.837431+00:00","last_updated":"2026-04-12T20:13:19.837431+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.841967+00:00","last_updated":"2026-04-12T20:13:19.841967+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.844827+00:00","last_updated":"2026-04-12T20:13:19.844827+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.345057+00:00","last_updated":"2026-04-12T20:13:21.345057+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.354928+00:00","last_updated":"2026-04-12T20:13:21.354928+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.365000+00:00","last_updated":"2026-04-12T20:13:21.365000+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.367110+00:00","last_updated":"2026-04-12T20:13:21.367110+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.680694+00:00","last_updated":"2026-04-12T20:14:24.680694+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.682407+00:00","last_updated":"2026-04-12T20:14:24.682407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.687103+00:00","last_updated":"2026-04-12T20:14:24.687103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.689225+00:00","last_updated":"2026-04-12T20:14:24.689225+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.215024+00:00","last_updated":"2026-04-12T20:14:25.215024+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.225798+00:00","last_updated":"2026-04-12T20:14:25.225798+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.245103+00:00","last_updated":"2026-04-12T20:14:25.245103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.250534+00:00","last_updated":"2026-04-12T20:14:25.250534+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.259333+00:00","last_updated":"2026-04-12T21:53:31.259333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.279280+00:00","last_updated":"2026-04-12T21:53:31.279280+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.288007+00:00","last_updated":"2026-04-12T21:53:31.288007+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.290023+00:00","last_updated":"2026-04-12T21:53:31.290023+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.402675+00:00","last_updated":"2026-04-12T21:53:32.402675+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.404767+00:00","last_updated":"2026-04-12T21:53:32.404767+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.411340+00:00","last_updated":"2026-04-12T21:53:32.411340+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.414079+00:00","last_updated":"2026-04-12T21:53:32.414079+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.450874+00:00","last_updated":"2026-04-12T22:09:48.450874+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.454263+00:00","last_updated":"2026-04-12T22:09:48.454263+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.458321+00:00","last_updated":"2026-04-12T22:09:48.458321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.460981+00:00","last_updated":"2026-04-12T22:09:48.460981+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.479321+00:00","last_updated":"2026-04-12T22:09:49.479321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.481724+00:00","last_updated":"2026-04-12T22:09:49.481724+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.486616+00:00","last_updated":"2026-04-12T22:09:49.486616+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.489216+00:00","last_updated":"2026-04-12T22:09:49.489216+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.922712+00:00","last_updated":"2026-04-12T22:49:52.922712+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.925844+00:00","last_updated":"2026-04-12T22:49:52.925844+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.929358+00:00","last_updated":"2026-04-12T22:49:52.929358+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.931005+00:00","last_updated":"2026-04-12T22:49:52.931005+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.320333+00:00","last_updated":"2026-04-12T22:49:54.320333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.322256+00:00","last_updated":"2026-04-12T22:49:54.322256+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.326036+00:00","last_updated":"2026-04-12T22:49:54.326036+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.327845+00:00","last_updated":"2026-04-12T22:49:54.327845+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.971895+00:00","last_updated":"2026-04-13T02:07:34.971895+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.976250+00:00","last_updated":"2026-04-13T02:07:34.976250+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.984187+00:00","last_updated":"2026-04-13T02:07:34.984187+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.988317+00:00","last_updated":"2026-04-13T02:07:34.988317+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.155988+00:00","last_updated":"2026-04-13T02:07:36.155988+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.157938+00:00","last_updated":"2026-04-13T02:07:36.157938+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.162182+00:00","last_updated":"2026-04-13T02:07:36.162182+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.164156+00:00","last_updated":"2026-04-13T02:07:36.164156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:01.248961+00:00","last_updated":"2026-04-13T02:13:01.248961+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.401147+00:00","last_updated":"2026-04-13T02:13:24.401147+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.403707+00:00","last_updated":"2026-04-13T02:13:24.403707+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.407551+00:00","last_updated":"2026-04-13T02:13:24.407551+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.409239+00:00","last_updated":"2026-04-13T02:13:24.409239+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.405309+00:00","last_updated":"2026-04-13T02:13:25.405309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.407245+00:00","last_updated":"2026-04-13T02:13:25.407245+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.411493+00:00","last_updated":"2026-04-13T02:13:25.411493+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.413286+00:00","last_updated":"2026-04-13T02:13:25.413286+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.721043+00:00","last_updated":"2026-04-13T02:43:47.721043+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.722854+00:00","last_updated":"2026-04-13T02:43:47.722854+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.726509+00:00","last_updated":"2026-04-13T02:43:47.726509+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.729508+00:00","last_updated":"2026-04-13T02:43:47.729508+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.396388+00:00","last_updated":"2026-04-13T02:43:48.396388+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.398325+00:00","last_updated":"2026-04-13T02:43:48.398325+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.401451+00:00","last_updated":"2026-04-13T02:43:48.401451+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.403268+00:00","last_updated":"2026-04-13T02:43:48.403268+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.517973+00:00","last_updated":"2026-04-13T02:47:33.517973+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.519750+00:00","last_updated":"2026-04-13T02:47:33.519750+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.522540+00:00","last_updated":"2026-04-13T02:47:33.522540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.524065+00:00","last_updated":"2026-04-13T02:47:33.524065+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.077119+00:00","last_updated":"2026-04-13T02:47:34.077119+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.079477+00:00","last_updated":"2026-04-13T02:47:34.079477+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.082548+00:00","last_updated":"2026-04-13T02:47:34.082548+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.084168+00:00","last_updated":"2026-04-13T02:47:34.084168+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.143156+00:00","last_updated":"2026-04-13T02:51:23.143156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.145077+00:00","last_updated":"2026-04-13T02:51:23.145077+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.148011+00:00","last_updated":"2026-04-13T02:51:23.148011+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.149785+00:00","last_updated":"2026-04-13T02:51:23.149785+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.293711+00:00","last_updated":"2026-04-13T02:51:24.293711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.295520+00:00","last_updated":"2026-04-13T02:51:24.295520+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.299886+00:00","last_updated":"2026-04-13T02:51:24.299886+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00"}]]' - url: http://127.0.0.1:8123/api/history/period/2020-01-01T00:00:00+00:00?filter_entity_id=sun.sun&end_time=2030-01-01T00%3A00%3A01%2B00%3A00&significant_changes_only -- request: - method: GET - url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '1834' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[[{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T02:53:18.229440+00:00","last_updated":"2026-04-12T02:53:18.229440+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:30.295367+00:00","last_updated":"2026-04-12T16:55:30.295367+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.905124+00:00","last_updated":"2026-04-12T16:55:38.905124+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.909797+00:00","last_updated":"2026-04-12T16:55:38.909797+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.914742+00:00","last_updated":"2026-04-12T16:55:38.914742+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.916826+00:00","last_updated":"2026-04-12T16:55:38.916826+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.140140+00:00","last_updated":"2026-04-12T16:55:40.140140+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.142125+00:00","last_updated":"2026-04-12T16:55:40.142125+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.146982+00:00","last_updated":"2026-04-12T16:55:40.146982+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.150118+00:00","last_updated":"2026-04-12T16:55:40.150118+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.278074+00:00","last_updated":"2026-04-12T17:19:22.278074+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.280331+00:00","last_updated":"2026-04-12T17:19:22.280331+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.284613+00:00","last_updated":"2026-04-12T17:19:22.284613+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.286764+00:00","last_updated":"2026-04-12T17:19:22.286764+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.195136+00:00","last_updated":"2026-04-12T17:19:23.195136+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.197078+00:00","last_updated":"2026-04-12T17:19:23.197078+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.200907+00:00","last_updated":"2026-04-12T17:19:23.200907+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.202677+00:00","last_updated":"2026-04-12T17:19:23.202677+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T18:36:52.438177+00:00","last_updated":"2026-04-12T18:36:52.438177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.474959+00:00","last_updated":"2026-04-12T19:59:32.474959+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.477394+00:00","last_updated":"2026-04-12T19:59:32.477394+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.481787+00:00","last_updated":"2026-04-12T19:59:32.481787+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.483929+00:00","last_updated":"2026-04-12T19:59:32.483929+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.228622+00:00","last_updated":"2026-04-12T19:59:33.228622+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.230875+00:00","last_updated":"2026-04-12T19:59:33.230875+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.235056+00:00","last_updated":"2026-04-12T19:59:33.235056+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.236850+00:00","last_updated":"2026-04-12T19:59:33.236850+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.219213+00:00","last_updated":"2026-04-12T20:00:38.219213+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.221401+00:00","last_updated":"2026-04-12T20:00:38.221401+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.225309+00:00","last_updated":"2026-04-12T20:00:38.225309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.227147+00:00","last_updated":"2026-04-12T20:00:38.227147+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.124540+00:00","last_updated":"2026-04-12T20:00:39.124540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.133407+00:00","last_updated":"2026-04-12T20:00:39.133407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.140792+00:00","last_updated":"2026-04-12T20:00:39.140792+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.143051+00:00","last_updated":"2026-04-12T20:00:39.143051+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.151640+00:00","last_updated":"2026-04-12T20:12:20.151640+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.153514+00:00","last_updated":"2026-04-12T20:12:20.153514+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.156801+00:00","last_updated":"2026-04-12T20:12:20.156801+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.158648+00:00","last_updated":"2026-04-12T20:12:20.158648+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.400924+00:00","last_updated":"2026-04-12T20:12:21.400924+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.410656+00:00","last_updated":"2026-04-12T20:12:21.410656+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.433198+00:00","last_updated":"2026-04-12T20:12:21.433198+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.443464+00:00","last_updated":"2026-04-12T20:12:21.443464+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:49.798177+00:00","last_updated":"2026-04-12T20:12:49.798177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.835351+00:00","last_updated":"2026-04-12T20:13:19.835351+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.837431+00:00","last_updated":"2026-04-12T20:13:19.837431+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.841967+00:00","last_updated":"2026-04-12T20:13:19.841967+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.844827+00:00","last_updated":"2026-04-12T20:13:19.844827+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.345057+00:00","last_updated":"2026-04-12T20:13:21.345057+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.354928+00:00","last_updated":"2026-04-12T20:13:21.354928+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.365000+00:00","last_updated":"2026-04-12T20:13:21.365000+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.367110+00:00","last_updated":"2026-04-12T20:13:21.367110+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.680694+00:00","last_updated":"2026-04-12T20:14:24.680694+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.682407+00:00","last_updated":"2026-04-12T20:14:24.682407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.687103+00:00","last_updated":"2026-04-12T20:14:24.687103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.689225+00:00","last_updated":"2026-04-12T20:14:24.689225+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.215024+00:00","last_updated":"2026-04-12T20:14:25.215024+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.225798+00:00","last_updated":"2026-04-12T20:14:25.225798+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.245103+00:00","last_updated":"2026-04-12T20:14:25.245103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.250534+00:00","last_updated":"2026-04-12T20:14:25.250534+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.259333+00:00","last_updated":"2026-04-12T21:53:31.259333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.279280+00:00","last_updated":"2026-04-12T21:53:31.279280+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.288007+00:00","last_updated":"2026-04-12T21:53:31.288007+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.290023+00:00","last_updated":"2026-04-12T21:53:31.290023+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.402675+00:00","last_updated":"2026-04-12T21:53:32.402675+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.404767+00:00","last_updated":"2026-04-12T21:53:32.404767+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.411340+00:00","last_updated":"2026-04-12T21:53:32.411340+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.414079+00:00","last_updated":"2026-04-12T21:53:32.414079+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.450874+00:00","last_updated":"2026-04-12T22:09:48.450874+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.454263+00:00","last_updated":"2026-04-12T22:09:48.454263+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.458321+00:00","last_updated":"2026-04-12T22:09:48.458321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.460981+00:00","last_updated":"2026-04-12T22:09:48.460981+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.479321+00:00","last_updated":"2026-04-12T22:09:49.479321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.481724+00:00","last_updated":"2026-04-12T22:09:49.481724+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.486616+00:00","last_updated":"2026-04-12T22:09:49.486616+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.489216+00:00","last_updated":"2026-04-12T22:09:49.489216+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.922712+00:00","last_updated":"2026-04-12T22:49:52.922712+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.925844+00:00","last_updated":"2026-04-12T22:49:52.925844+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.929358+00:00","last_updated":"2026-04-12T22:49:52.929358+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.931005+00:00","last_updated":"2026-04-12T22:49:52.931005+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.320333+00:00","last_updated":"2026-04-12T22:49:54.320333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.322256+00:00","last_updated":"2026-04-12T22:49:54.322256+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.326036+00:00","last_updated":"2026-04-12T22:49:54.326036+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.327845+00:00","last_updated":"2026-04-12T22:49:54.327845+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.971895+00:00","last_updated":"2026-04-13T02:07:34.971895+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.976250+00:00","last_updated":"2026-04-13T02:07:34.976250+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.984187+00:00","last_updated":"2026-04-13T02:07:34.984187+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.988317+00:00","last_updated":"2026-04-13T02:07:34.988317+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.155988+00:00","last_updated":"2026-04-13T02:07:36.155988+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.157938+00:00","last_updated":"2026-04-13T02:07:36.157938+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.162182+00:00","last_updated":"2026-04-13T02:07:36.162182+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.164156+00:00","last_updated":"2026-04-13T02:07:36.164156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:01.248961+00:00","last_updated":"2026-04-13T02:13:01.248961+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.401147+00:00","last_updated":"2026-04-13T02:13:24.401147+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.403707+00:00","last_updated":"2026-04-13T02:13:24.403707+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.407551+00:00","last_updated":"2026-04-13T02:13:24.407551+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.409239+00:00","last_updated":"2026-04-13T02:13:24.409239+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.405309+00:00","last_updated":"2026-04-13T02:13:25.405309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.407245+00:00","last_updated":"2026-04-13T02:13:25.407245+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.411493+00:00","last_updated":"2026-04-13T02:13:25.411493+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.413286+00:00","last_updated":"2026-04-13T02:13:25.413286+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.721043+00:00","last_updated":"2026-04-13T02:43:47.721043+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.722854+00:00","last_updated":"2026-04-13T02:43:47.722854+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.726509+00:00","last_updated":"2026-04-13T02:43:47.726509+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.729508+00:00","last_updated":"2026-04-13T02:43:47.729508+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.396388+00:00","last_updated":"2026-04-13T02:43:48.396388+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.398325+00:00","last_updated":"2026-04-13T02:43:48.398325+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.401451+00:00","last_updated":"2026-04-13T02:43:48.401451+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.403268+00:00","last_updated":"2026-04-13T02:43:48.403268+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.517973+00:00","last_updated":"2026-04-13T02:47:33.517973+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.519750+00:00","last_updated":"2026-04-13T02:47:33.519750+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.522540+00:00","last_updated":"2026-04-13T02:47:33.522540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.524065+00:00","last_updated":"2026-04-13T02:47:33.524065+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.077119+00:00","last_updated":"2026-04-13T02:47:34.077119+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.079477+00:00","last_updated":"2026-04-13T02:47:34.079477+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.082548+00:00","last_updated":"2026-04-13T02:47:34.082548+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.084168+00:00","last_updated":"2026-04-13T02:47:34.084168+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.143156+00:00","last_updated":"2026-04-13T02:51:23.143156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.145077+00:00","last_updated":"2026-04-13T02:51:23.145077+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.148011+00:00","last_updated":"2026-04-13T02:51:23.148011+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.149785+00:00","last_updated":"2026-04-13T02:51:23.149785+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.293711+00:00","last_updated":"2026-04-13T02:51:24.293711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.295520+00:00","last_updated":"2026-04-13T02:51:24.295520+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.299886+00:00","last_updated":"2026-04-13T02:51:24.299886+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00"}]]' - url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun -- request: - method: GET - url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '1829' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[[{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T02:53:20.431981+00:00","last_updated":"2026-04-12T02:53:20.431981+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:30.295367+00:00","last_updated":"2026-04-12T16:55:30.295367+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.905124+00:00","last_updated":"2026-04-12T16:55:38.905124+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.909797+00:00","last_updated":"2026-04-12T16:55:38.909797+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.914742+00:00","last_updated":"2026-04-12T16:55:38.914742+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.916826+00:00","last_updated":"2026-04-12T16:55:38.916826+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.140140+00:00","last_updated":"2026-04-12T16:55:40.140140+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.142125+00:00","last_updated":"2026-04-12T16:55:40.142125+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.146982+00:00","last_updated":"2026-04-12T16:55:40.146982+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.150118+00:00","last_updated":"2026-04-12T16:55:40.150118+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.278074+00:00","last_updated":"2026-04-12T17:19:22.278074+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.280331+00:00","last_updated":"2026-04-12T17:19:22.280331+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.284613+00:00","last_updated":"2026-04-12T17:19:22.284613+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.286764+00:00","last_updated":"2026-04-12T17:19:22.286764+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.195136+00:00","last_updated":"2026-04-12T17:19:23.195136+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.197078+00:00","last_updated":"2026-04-12T17:19:23.197078+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.200907+00:00","last_updated":"2026-04-12T17:19:23.200907+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.202677+00:00","last_updated":"2026-04-12T17:19:23.202677+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T18:36:52.438177+00:00","last_updated":"2026-04-12T18:36:52.438177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.474959+00:00","last_updated":"2026-04-12T19:59:32.474959+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.477394+00:00","last_updated":"2026-04-12T19:59:32.477394+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.481787+00:00","last_updated":"2026-04-12T19:59:32.481787+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.483929+00:00","last_updated":"2026-04-12T19:59:32.483929+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.228622+00:00","last_updated":"2026-04-12T19:59:33.228622+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.230875+00:00","last_updated":"2026-04-12T19:59:33.230875+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.235056+00:00","last_updated":"2026-04-12T19:59:33.235056+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.236850+00:00","last_updated":"2026-04-12T19:59:33.236850+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.219213+00:00","last_updated":"2026-04-12T20:00:38.219213+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.221401+00:00","last_updated":"2026-04-12T20:00:38.221401+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.225309+00:00","last_updated":"2026-04-12T20:00:38.225309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.227147+00:00","last_updated":"2026-04-12T20:00:38.227147+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.124540+00:00","last_updated":"2026-04-12T20:00:39.124540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.133407+00:00","last_updated":"2026-04-12T20:00:39.133407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.140792+00:00","last_updated":"2026-04-12T20:00:39.140792+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.143051+00:00","last_updated":"2026-04-12T20:00:39.143051+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.151640+00:00","last_updated":"2026-04-12T20:12:20.151640+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.153514+00:00","last_updated":"2026-04-12T20:12:20.153514+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.156801+00:00","last_updated":"2026-04-12T20:12:20.156801+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.158648+00:00","last_updated":"2026-04-12T20:12:20.158648+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.400924+00:00","last_updated":"2026-04-12T20:12:21.400924+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.410656+00:00","last_updated":"2026-04-12T20:12:21.410656+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.433198+00:00","last_updated":"2026-04-12T20:12:21.433198+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.443464+00:00","last_updated":"2026-04-12T20:12:21.443464+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:49.798177+00:00","last_updated":"2026-04-12T20:12:49.798177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.835351+00:00","last_updated":"2026-04-12T20:13:19.835351+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.837431+00:00","last_updated":"2026-04-12T20:13:19.837431+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.841967+00:00","last_updated":"2026-04-12T20:13:19.841967+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.844827+00:00","last_updated":"2026-04-12T20:13:19.844827+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.345057+00:00","last_updated":"2026-04-12T20:13:21.345057+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.354928+00:00","last_updated":"2026-04-12T20:13:21.354928+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.365000+00:00","last_updated":"2026-04-12T20:13:21.365000+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.367110+00:00","last_updated":"2026-04-12T20:13:21.367110+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.680694+00:00","last_updated":"2026-04-12T20:14:24.680694+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.682407+00:00","last_updated":"2026-04-12T20:14:24.682407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.687103+00:00","last_updated":"2026-04-12T20:14:24.687103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.689225+00:00","last_updated":"2026-04-12T20:14:24.689225+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.215024+00:00","last_updated":"2026-04-12T20:14:25.215024+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.225798+00:00","last_updated":"2026-04-12T20:14:25.225798+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.245103+00:00","last_updated":"2026-04-12T20:14:25.245103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.250534+00:00","last_updated":"2026-04-12T20:14:25.250534+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.259333+00:00","last_updated":"2026-04-12T21:53:31.259333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.279280+00:00","last_updated":"2026-04-12T21:53:31.279280+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.288007+00:00","last_updated":"2026-04-12T21:53:31.288007+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.290023+00:00","last_updated":"2026-04-12T21:53:31.290023+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.402675+00:00","last_updated":"2026-04-12T21:53:32.402675+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.404767+00:00","last_updated":"2026-04-12T21:53:32.404767+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.411340+00:00","last_updated":"2026-04-12T21:53:32.411340+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.414079+00:00","last_updated":"2026-04-12T21:53:32.414079+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.450874+00:00","last_updated":"2026-04-12T22:09:48.450874+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.454263+00:00","last_updated":"2026-04-12T22:09:48.454263+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.458321+00:00","last_updated":"2026-04-12T22:09:48.458321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.460981+00:00","last_updated":"2026-04-12T22:09:48.460981+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.479321+00:00","last_updated":"2026-04-12T22:09:49.479321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.481724+00:00","last_updated":"2026-04-12T22:09:49.481724+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.486616+00:00","last_updated":"2026-04-12T22:09:49.486616+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.489216+00:00","last_updated":"2026-04-12T22:09:49.489216+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.922712+00:00","last_updated":"2026-04-12T22:49:52.922712+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.925844+00:00","last_updated":"2026-04-12T22:49:52.925844+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.929358+00:00","last_updated":"2026-04-12T22:49:52.929358+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.931005+00:00","last_updated":"2026-04-12T22:49:52.931005+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.320333+00:00","last_updated":"2026-04-12T22:49:54.320333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.322256+00:00","last_updated":"2026-04-12T22:49:54.322256+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.326036+00:00","last_updated":"2026-04-12T22:49:54.326036+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.327845+00:00","last_updated":"2026-04-12T22:49:54.327845+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.971895+00:00","last_updated":"2026-04-13T02:07:34.971895+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.976250+00:00","last_updated":"2026-04-13T02:07:34.976250+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.984187+00:00","last_updated":"2026-04-13T02:07:34.984187+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.988317+00:00","last_updated":"2026-04-13T02:07:34.988317+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.155988+00:00","last_updated":"2026-04-13T02:07:36.155988+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.157938+00:00","last_updated":"2026-04-13T02:07:36.157938+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.162182+00:00","last_updated":"2026-04-13T02:07:36.162182+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.164156+00:00","last_updated":"2026-04-13T02:07:36.164156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:01.248961+00:00","last_updated":"2026-04-13T02:13:01.248961+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.401147+00:00","last_updated":"2026-04-13T02:13:24.401147+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.403707+00:00","last_updated":"2026-04-13T02:13:24.403707+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.407551+00:00","last_updated":"2026-04-13T02:13:24.407551+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.409239+00:00","last_updated":"2026-04-13T02:13:24.409239+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.405309+00:00","last_updated":"2026-04-13T02:13:25.405309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.407245+00:00","last_updated":"2026-04-13T02:13:25.407245+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.411493+00:00","last_updated":"2026-04-13T02:13:25.411493+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.413286+00:00","last_updated":"2026-04-13T02:13:25.413286+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.721043+00:00","last_updated":"2026-04-13T02:43:47.721043+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.722854+00:00","last_updated":"2026-04-13T02:43:47.722854+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.726509+00:00","last_updated":"2026-04-13T02:43:47.726509+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.729508+00:00","last_updated":"2026-04-13T02:43:47.729508+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.396388+00:00","last_updated":"2026-04-13T02:43:48.396388+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.398325+00:00","last_updated":"2026-04-13T02:43:48.398325+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.401451+00:00","last_updated":"2026-04-13T02:43:48.401451+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.403268+00:00","last_updated":"2026-04-13T02:43:48.403268+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.517973+00:00","last_updated":"2026-04-13T02:47:33.517973+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.519750+00:00","last_updated":"2026-04-13T02:47:33.519750+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.522540+00:00","last_updated":"2026-04-13T02:47:33.522540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.524065+00:00","last_updated":"2026-04-13T02:47:33.524065+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.077119+00:00","last_updated":"2026-04-13T02:47:34.077119+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.079477+00:00","last_updated":"2026-04-13T02:47:34.079477+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.082548+00:00","last_updated":"2026-04-13T02:47:34.082548+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.084168+00:00","last_updated":"2026-04-13T02:47:34.084168+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.143156+00:00","last_updated":"2026-04-13T02:51:23.143156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.145077+00:00","last_updated":"2026-04-13T02:51:23.145077+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.148011+00:00","last_updated":"2026-04-13T02:51:23.148011+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.149785+00:00","last_updated":"2026-04-13T02:51:23.149785+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.293711+00:00","last_updated":"2026-04-13T02:51:24.293711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.295520+00:00","last_updated":"2026-04-13T02:51:24.295520+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.299886+00:00","last_updated":"2026-04-13T02:51:24.299886+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00"}]]' - url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun -- request: - method: GET - url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '1831' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[[{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T02:53:20.436147+00:00","last_updated":"2026-04-12T02:53:20.436147+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:30.295367+00:00","last_updated":"2026-04-12T16:55:30.295367+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.905124+00:00","last_updated":"2026-04-12T16:55:38.905124+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.909797+00:00","last_updated":"2026-04-12T16:55:38.909797+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:38.914742+00:00","last_updated":"2026-04-12T16:55:38.914742+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:38.916826+00:00","last_updated":"2026-04-12T16:55:38.916826+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.140140+00:00","last_updated":"2026-04-12T16:55:40.140140+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.142125+00:00","last_updated":"2026-04-12T16:55:40.142125+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T16:55:40.146982+00:00","last_updated":"2026-04-12T16:55:40.146982+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T16:55:40.150118+00:00","last_updated":"2026-04-12T16:55:40.150118+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.278074+00:00","last_updated":"2026-04-12T17:19:22.278074+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.280331+00:00","last_updated":"2026-04-12T17:19:22.280331+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:22.284613+00:00","last_updated":"2026-04-12T17:19:22.284613+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:22.286764+00:00","last_updated":"2026-04-12T17:19:22.286764+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.195136+00:00","last_updated":"2026-04-12T17:19:23.195136+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.197078+00:00","last_updated":"2026-04-12T17:19:23.197078+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T17:19:23.200907+00:00","last_updated":"2026-04-12T17:19:23.200907+00:00"},{"entity_id":"sun.sun","state":"above_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T17:19:23.202677+00:00","last_updated":"2026-04-12T17:19:23.202677+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T18:36:52.438177+00:00","last_updated":"2026-04-12T18:36:52.438177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.474959+00:00","last_updated":"2026-04-12T19:59:32.474959+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.477394+00:00","last_updated":"2026-04-12T19:59:32.477394+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:32.481787+00:00","last_updated":"2026-04-12T19:59:32.481787+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:32.483929+00:00","last_updated":"2026-04-12T19:59:32.483929+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.228622+00:00","last_updated":"2026-04-12T19:59:33.228622+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.230875+00:00","last_updated":"2026-04-12T19:59:33.230875+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T19:59:33.235056+00:00","last_updated":"2026-04-12T19:59:33.235056+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T19:59:33.236850+00:00","last_updated":"2026-04-12T19:59:33.236850+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.219213+00:00","last_updated":"2026-04-12T20:00:38.219213+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.221401+00:00","last_updated":"2026-04-12T20:00:38.221401+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:38.225309+00:00","last_updated":"2026-04-12T20:00:38.225309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:38.227147+00:00","last_updated":"2026-04-12T20:00:38.227147+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.124540+00:00","last_updated":"2026-04-12T20:00:39.124540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.133407+00:00","last_updated":"2026-04-12T20:00:39.133407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:00:39.140792+00:00","last_updated":"2026-04-12T20:00:39.140792+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:00:39.143051+00:00","last_updated":"2026-04-12T20:00:39.143051+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.151640+00:00","last_updated":"2026-04-12T20:12:20.151640+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.153514+00:00","last_updated":"2026-04-12T20:12:20.153514+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:20.156801+00:00","last_updated":"2026-04-12T20:12:20.156801+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:20.158648+00:00","last_updated":"2026-04-12T20:12:20.158648+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.400924+00:00","last_updated":"2026-04-12T20:12:21.400924+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.410656+00:00","last_updated":"2026-04-12T20:12:21.410656+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:12:21.433198+00:00","last_updated":"2026-04-12T20:12:21.433198+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:21.443464+00:00","last_updated":"2026-04-12T20:12:21.443464+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:12:49.798177+00:00","last_updated":"2026-04-12T20:12:49.798177+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.835351+00:00","last_updated":"2026-04-12T20:13:19.835351+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.837431+00:00","last_updated":"2026-04-12T20:13:19.837431+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:19.841967+00:00","last_updated":"2026-04-12T20:13:19.841967+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:19.844827+00:00","last_updated":"2026-04-12T20:13:19.844827+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.345057+00:00","last_updated":"2026-04-12T20:13:21.345057+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.354928+00:00","last_updated":"2026-04-12T20:13:21.354928+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:13:21.365000+00:00","last_updated":"2026-04-12T20:13:21.365000+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:13:21.367110+00:00","last_updated":"2026-04-12T20:13:21.367110+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.680694+00:00","last_updated":"2026-04-12T20:14:24.680694+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.682407+00:00","last_updated":"2026-04-12T20:14:24.682407+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:24.687103+00:00","last_updated":"2026-04-12T20:14:24.687103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:24.689225+00:00","last_updated":"2026-04-12T20:14:24.689225+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.215024+00:00","last_updated":"2026-04-12T20:14:25.215024+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.225798+00:00","last_updated":"2026-04-12T20:14:25.225798+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T20:14:25.245103+00:00","last_updated":"2026-04-12T20:14:25.245103+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T20:14:25.250534+00:00","last_updated":"2026-04-12T20:14:25.250534+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.259333+00:00","last_updated":"2026-04-12T21:53:31.259333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.279280+00:00","last_updated":"2026-04-12T21:53:31.279280+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:31.288007+00:00","last_updated":"2026-04-12T21:53:31.288007+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:31.290023+00:00","last_updated":"2026-04-12T21:53:31.290023+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.402675+00:00","last_updated":"2026-04-12T21:53:32.402675+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.404767+00:00","last_updated":"2026-04-12T21:53:32.404767+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T21:53:32.411340+00:00","last_updated":"2026-04-12T21:53:32.411340+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T21:53:32.414079+00:00","last_updated":"2026-04-12T21:53:32.414079+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.450874+00:00","last_updated":"2026-04-12T22:09:48.450874+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.454263+00:00","last_updated":"2026-04-12T22:09:48.454263+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:48.458321+00:00","last_updated":"2026-04-12T22:09:48.458321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:48.460981+00:00","last_updated":"2026-04-12T22:09:48.460981+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.479321+00:00","last_updated":"2026-04-12T22:09:49.479321+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.481724+00:00","last_updated":"2026-04-12T22:09:49.481724+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:09:49.486616+00:00","last_updated":"2026-04-12T22:09:49.486616+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:09:49.489216+00:00","last_updated":"2026-04-12T22:09:49.489216+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.922712+00:00","last_updated":"2026-04-12T22:49:52.922712+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.925844+00:00","last_updated":"2026-04-12T22:49:52.925844+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:52.929358+00:00","last_updated":"2026-04-12T22:49:52.929358+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:52.931005+00:00","last_updated":"2026-04-12T22:49:52.931005+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.320333+00:00","last_updated":"2026-04-12T22:49:54.320333+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.322256+00:00","last_updated":"2026-04-12T22:49:54.322256+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-12T22:49:54.326036+00:00","last_updated":"2026-04-12T22:49:54.326036+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-12T22:49:54.327845+00:00","last_updated":"2026-04-12T22:49:54.327845+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.971895+00:00","last_updated":"2026-04-13T02:07:34.971895+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.976250+00:00","last_updated":"2026-04-13T02:07:34.976250+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:34.984187+00:00","last_updated":"2026-04-13T02:07:34.984187+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:34.988317+00:00","last_updated":"2026-04-13T02:07:34.988317+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.155988+00:00","last_updated":"2026-04-13T02:07:36.155988+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.157938+00:00","last_updated":"2026-04-13T02:07:36.157938+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:07:36.162182+00:00","last_updated":"2026-04-13T02:07:36.162182+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:07:36.164156+00:00","last_updated":"2026-04-13T02:07:36.164156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:01.248961+00:00","last_updated":"2026-04-13T02:13:01.248961+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.401147+00:00","last_updated":"2026-04-13T02:13:24.401147+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.403707+00:00","last_updated":"2026-04-13T02:13:24.403707+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:24.407551+00:00","last_updated":"2026-04-13T02:13:24.407551+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:24.409239+00:00","last_updated":"2026-04-13T02:13:24.409239+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.405309+00:00","last_updated":"2026-04-13T02:13:25.405309+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.407245+00:00","last_updated":"2026-04-13T02:13:25.407245+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:13:25.411493+00:00","last_updated":"2026-04-13T02:13:25.411493+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:13:25.413286+00:00","last_updated":"2026-04-13T02:13:25.413286+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.721043+00:00","last_updated":"2026-04-13T02:43:47.721043+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.722854+00:00","last_updated":"2026-04-13T02:43:47.722854+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:47.726509+00:00","last_updated":"2026-04-13T02:43:47.726509+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:47.729508+00:00","last_updated":"2026-04-13T02:43:47.729508+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.396388+00:00","last_updated":"2026-04-13T02:43:48.396388+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.398325+00:00","last_updated":"2026-04-13T02:43:48.398325+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:43:48.401451+00:00","last_updated":"2026-04-13T02:43:48.401451+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:43:48.403268+00:00","last_updated":"2026-04-13T02:43:48.403268+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.517973+00:00","last_updated":"2026-04-13T02:47:33.517973+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.519750+00:00","last_updated":"2026-04-13T02:47:33.519750+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:33.522540+00:00","last_updated":"2026-04-13T02:47:33.522540+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:33.524065+00:00","last_updated":"2026-04-13T02:47:33.524065+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.077119+00:00","last_updated":"2026-04-13T02:47:34.077119+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.079477+00:00","last_updated":"2026-04-13T02:47:34.079477+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:47:34.082548+00:00","last_updated":"2026-04-13T02:47:34.082548+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:47:34.084168+00:00","last_updated":"2026-04-13T02:47:34.084168+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.143156+00:00","last_updated":"2026-04-13T02:51:23.143156+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.145077+00:00","last_updated":"2026-04-13T02:51:23.145077+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:23.148011+00:00","last_updated":"2026-04-13T02:51:23.148011+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:23.149785+00:00","last_updated":"2026-04-13T02:51:23.149785+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.293711+00:00","last_updated":"2026-04-13T02:51:24.293711+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.295520+00:00","last_updated":"2026-04-13T02:51:24.295520+00:00"},{"entity_id":"sun.sun","state":"","attributes":{},"last_changed":"2026-04-13T02:51:24.299886+00:00","last_updated":"2026-04-13T02:51:24.299886+00:00"},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00"}]]' - url: http://127.0.0.1:8123/api/history/period?filter_entity_id=sun.sun -- request: - method: POST - url: http://127.0.0.1:8123/api/template - response: - status: 200 - headers: - Content-Type: text/plain; charset=utf-8 - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '29' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: The sun is below the horizon. - url: http://127.0.0.1:8123/api/template -- request: - method: POST - url: http://127.0.0.1:8123/api/template - response: - status: 200 - headers: - Content-Type: text/plain; charset=utf-8 - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '29' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: The sun is below the horizon. - url: http://127.0.0.1:8123/api/template -- request: - method: POST - url: http://127.0.0.1:8123/api/template - response: - status: 400 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '100' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"Error rendering template: TemplateSyntaxError: expected token - ''end of print statement'', got ''lol''"}' - url: http://127.0.0.1:8123/api/template -- request: - method: POST - url: http://127.0.0.1:8123/api/template - response: - status: 400 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '100' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"Error rendering template: TemplateSyntaxError: expected token - ''end of print statement'', got ''lol''"}' - url: http://127.0.0.1:8123/api/template -- request: - method: POST - url: http://127.0.0.1:8123/api/config/core/check_config - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '56' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"result":"valid","errors":null,"warnings":null}' - url: http://127.0.0.1:8123/api/config/core/check_config -- request: - method: POST - url: http://127.0.0.1:8123/api/config/core/check_config - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '56' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"result":"valid","errors":null,"warnings":null}' - url: http://127.0.0.1:8123/api/config/core/check_config -- request: - method: GET - url: http://127.0.0.1:8123/api/states - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2120' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]' - url: http://127.0.0.1:8123/api/states -- request: - method: GET - url: http://127.0.0.1:8123/api/states - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2120' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]' - url: http://127.0.0.1:8123/api/states -- request: - method: GET - url: http://127.0.0.1:8123/api/states - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2124' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]' - url: http://127.0.0.1:8123/api/states -- request: - method: GET - url: http://127.0.0.1:8123/api/states - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2124' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]' - url: http://127.0.0.1:8123/api/states -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: GET - url: http://127.0.0.1:8123/api/services - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '2577' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[{"domain":"persistent_notification","services":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}}},{"domain":"homeassistant","services":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}}},{"domain":"logger","services":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}}},{"domain":"system_log","services":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"frontend","services":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}}},{"domain":"recorder","services":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}}},{"domain":"notify","services":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}}},{"domain":"scene","services":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}}},{"domain":"automation","services":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}}},{"domain":"logbook","services":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}}},{"domain":"script","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}}},{"domain":"zone","services":{"reload":{"fields":{}}}},{"domain":"input_number","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}}},{"domain":"person","services":{"reload":{"fields":{}}}},{"domain":"backup","services":{"create":{"fields":{}},"create_automatic":{"fields":{}}}},{"domain":"weather","services":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}}},{"domain":"counter","services":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}}},{"domain":"input_button","services":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}}},{"domain":"input_text","services":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}}},{"domain":"input_select","services":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}}},{"domain":"input_datetime","services":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}}},{"domain":"schedule","services":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}}},{"domain":"timer","services":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}}},{"domain":"input_boolean","services":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}]' - url: http://127.0.0.1:8123/api/services -- request: - method: POST - url: http://127.0.0.1:8123/api/services/notify/persistent_notification?return_response - response: - status: 400 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '82' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"Service does not support responses. Remove return_response - from request."}' - url: http://127.0.0.1:8123/api/services/notify/persistent_notification?return_response -- request: - method: POST - url: http://127.0.0.1:8123/api/services/notify/persistent_notification - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '10' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[]' - url: http://127.0.0.1:8123/api/services/notify/persistent_notification -- request: - method: POST - url: http://127.0.0.1:8123/api/services/notify/persistent_notification?return_response - response: - status: 400 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '82' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"Service does not support responses. Remove return_response - from request."}' - url: http://127.0.0.1:8123/api/services/notify/persistent_notification?return_response -- request: - method: POST - url: http://127.0.0.1:8123/api/services/notify/persistent_notification - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '10' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[]' - url: http://127.0.0.1:8123/api/services/notify/persistent_notification -- request: - method: POST - url: http://127.0.0.1:8123/api/services/weather/get_forecasts?return_response - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '1281' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"changed_states":[],"service_response":{"weather.forecast_home":{"forecast":[{"condition":"cloudy","datetime":"2026-04-13T03:00:00+00:00","wind_bearing":156.1,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.1,"wind_speed":5.8,"precipitation":0.0,"humidity":89},{"condition":"partlycloudy","datetime":"2026-04-13T04:00:00+00:00","wind_bearing":165.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.3,"wind_speed":5.4,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T05:00:00+00:00","wind_bearing":150.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.6,"wind_speed":5.0,"precipitation":0.0,"humidity":91},{"condition":"cloudy","datetime":"2026-04-13T06:00:00+00:00","wind_bearing":115.2,"cloud_coverage":100.0,"uv_index":0.2,"temperature":0.4,"wind_speed":6.5,"precipitation":0.0,"humidity":90},{"condition":"cloudy","datetime":"2026-04-13T07:00:00+00:00","wind_bearing":76.3,"cloud_coverage":100.0,"uv_index":0.6,"temperature":1.7,"wind_speed":5.0,"precipitation":0.0,"humidity":87},{"condition":"cloudy","datetime":"2026-04-13T08:00:00+00:00","wind_bearing":76.4,"cloud_coverage":100.0,"uv_index":1.3,"temperature":3.6,"wind_speed":5.8,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T09:00:00+00:00","wind_bearing":77.1,"cloud_coverage":100.0,"uv_index":2.2,"temperature":5.3,"wind_speed":6.8,"precipitation":0.0,"humidity":70},{"condition":"cloudy","datetime":"2026-04-13T10:00:00+00:00","wind_bearing":78.0,"cloud_coverage":100.0,"uv_index":3.0,"temperature":6.4,"wind_speed":7.6,"precipitation":0.0,"humidity":60},{"condition":"cloudy","datetime":"2026-04-13T11:00:00+00:00","wind_bearing":74.6,"cloud_coverage":100.0,"uv_index":3.5,"temperature":7.3,"wind_speed":8.3,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T12:00:00+00:00","wind_bearing":61.9,"cloud_coverage":100.0,"uv_index":3.4,"temperature":7.8,"wind_speed":8.3,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T13:00:00+00:00","wind_bearing":51.4,"cloud_coverage":100.0,"uv_index":2.9,"temperature":7.7,"wind_speed":9.4,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T14:00:00+00:00","wind_bearing":41.8,"cloud_coverage":100.0,"uv_index":2.2,"temperature":7.5,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T15:00:00+00:00","wind_bearing":54.7,"cloud_coverage":100.0,"uv_index":1.3,"temperature":7.3,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T16:00:00+00:00","wind_bearing":85.4,"cloud_coverage":100.0,"uv_index":0.6,"temperature":6.8,"wind_speed":9.0,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T17:00:00+00:00","wind_bearing":87.5,"cloud_coverage":100.0,"uv_index":0.2,"temperature":5.9,"wind_speed":9.0,"precipitation":0.0,"humidity":61},{"condition":"cloudy","datetime":"2026-04-13T18:00:00+00:00","wind_bearing":46.6,"cloud_coverage":100.0,"uv_index":0.0,"temperature":5.0,"wind_speed":10.1,"precipitation":0.0,"humidity":76},{"condition":"cloudy","datetime":"2026-04-13T19:00:00+00:00","wind_bearing":39.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":4.2,"wind_speed":8.6,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T20:00:00+00:00","wind_bearing":107.5,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.5,"wind_speed":5.4,"precipitation":0.0,"humidity":86},{"condition":"cloudy","datetime":"2026-04-13T21:00:00+00:00","wind_bearing":132.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.1,"wind_speed":4.7,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T22:00:00+00:00","wind_bearing":196.7,"cloud_coverage":94.5,"uv_index":0.0,"temperature":2.4,"wind_speed":3.6,"precipitation":0.0,"humidity":92},{"condition":"clear-night","datetime":"2026-04-13T23:00:00+00:00","wind_bearing":242.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":1.3,"wind_speed":5.4,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T00:00:00+00:00","wind_bearing":241.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.7,"wind_speed":6.1,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T01:00:00+00:00","wind_bearing":235.4,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.2,"wind_speed":6.1,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T02:00:00+00:00","wind_bearing":246.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.1,"wind_speed":6.8,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T03:00:00+00:00","wind_bearing":259.6,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-0.2,"wind_speed":7.9,"precipitation":0.0,"humidity":96},{"condition":"clear-night","datetime":"2026-04-14T04:00:00+00:00","wind_bearing":283.4,"cloud_coverage":0.8,"uv_index":0.0,"temperature":-0.4,"wind_speed":7.6,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T05:00:00+00:00","wind_bearing":296.2,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-1.0,"wind_speed":6.8,"precipitation":0.0,"humidity":99},{"condition":"sunny","datetime":"2026-04-14T06:00:00+00:00","wind_bearing":294.3,"cloud_coverage":0.0,"uv_index":0.2,"temperature":1.2,"wind_speed":7.9,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T07:00:00+00:00","wind_bearing":290.8,"cloud_coverage":0.0,"uv_index":0.6,"temperature":3.1,"wind_speed":6.8,"precipitation":0.0,"humidity":92},{"condition":"sunny","datetime":"2026-04-14T08:00:00+00:00","wind_bearing":299.7,"cloud_coverage":0.0,"uv_index":1.3,"temperature":4.7,"wind_speed":7.6,"precipitation":0.0,"humidity":80},{"condition":"sunny","datetime":"2026-04-14T09:00:00+00:00","wind_bearing":292.0,"cloud_coverage":0.0,"uv_index":2.1,"temperature":5.9,"wind_speed":6.1,"precipitation":0.0,"humidity":70},{"condition":"sunny","datetime":"2026-04-14T10:00:00+00:00","wind_bearing":273.7,"cloud_coverage":5.5,"uv_index":2.9,"temperature":6.9,"wind_speed":5.8,"precipitation":0.0,"humidity":63},{"condition":"partlycloudy","datetime":"2026-04-14T11:00:00+00:00","wind_bearing":266.8,"cloud_coverage":14.8,"uv_index":3.4,"temperature":7.7,"wind_speed":7.9,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T12:00:00+00:00","wind_bearing":268.4,"cloud_coverage":35.2,"uv_index":3.5,"temperature":8.2,"wind_speed":9.4,"precipitation":0.0,"humidity":56},{"condition":"partlycloudy","datetime":"2026-04-14T13:00:00+00:00","wind_bearing":276.8,"cloud_coverage":44.5,"uv_index":3.1,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T14:00:00+00:00","wind_bearing":284.2,"cloud_coverage":49.2,"uv_index":2.3,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T15:00:00+00:00","wind_bearing":294.2,"cloud_coverage":25.0,"uv_index":1.5,"temperature":7.8,"wind_speed":8.6,"precipitation":0.0,"humidity":55},{"condition":"partlycloudy","datetime":"2026-04-14T16:00:00+00:00","wind_bearing":293.2,"cloud_coverage":53.1,"uv_index":0.8,"temperature":7.3,"wind_speed":7.6,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T17:00:00+00:00","wind_bearing":297.4,"cloud_coverage":29.7,"uv_index":0.3,"temperature":6.6,"wind_speed":6.5,"precipitation":0.0,"humidity":62},{"condition":"partlycloudy","datetime":"2026-04-14T18:00:00+00:00","wind_bearing":314.1,"cloud_coverage":54.7,"uv_index":0.0,"temperature":5.3,"wind_speed":6.1,"precipitation":0.0,"humidity":72},{"condition":"partlycloudy","datetime":"2026-04-14T19:00:00+00:00","wind_bearing":36.4,"cloud_coverage":94.5,"uv_index":0.0,"temperature":3.8,"wind_speed":5.8,"precipitation":0.0,"humidity":84},{"condition":"partlycloudy","datetime":"2026-04-14T20:00:00+00:00","wind_bearing":62.6,"cloud_coverage":71.9,"uv_index":0.0,"temperature":3.0,"wind_speed":6.1,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T21:00:00+00:00","wind_bearing":86.1,"cloud_coverage":92.2,"uv_index":0.0,"temperature":2.6,"wind_speed":7.9,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T22:00:00+00:00","wind_bearing":100.7,"cloud_coverage":53.9,"uv_index":0.0,"temperature":2.2,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-14T23:00:00+00:00","wind_bearing":98.7,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.8,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-15T00:00:00+00:00","wind_bearing":106.5,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.5,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-15T01:00:00+00:00","wind_bearing":118.4,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.2,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"clear-night","datetime":"2026-04-15T02:00:00+00:00","wind_bearing":136.9,"cloud_coverage":0.8,"uv_index":0.0,"temperature":0.8,"wind_speed":10.4,"precipitation":0.0,"humidity":87}]}}}' - url: http://127.0.0.1:8123/api/services/weather/get_forecasts?return_response -- request: - method: POST - url: http://127.0.0.1:8123/api/services/weather/get_forecasts?return_response - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '1281' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"changed_states":[],"service_response":{"weather.forecast_home":{"forecast":[{"condition":"cloudy","datetime":"2026-04-13T03:00:00+00:00","wind_bearing":156.1,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.1,"wind_speed":5.8,"precipitation":0.0,"humidity":89},{"condition":"partlycloudy","datetime":"2026-04-13T04:00:00+00:00","wind_bearing":165.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.3,"wind_speed":5.4,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T05:00:00+00:00","wind_bearing":150.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.6,"wind_speed":5.0,"precipitation":0.0,"humidity":91},{"condition":"cloudy","datetime":"2026-04-13T06:00:00+00:00","wind_bearing":115.2,"cloud_coverage":100.0,"uv_index":0.2,"temperature":0.4,"wind_speed":6.5,"precipitation":0.0,"humidity":90},{"condition":"cloudy","datetime":"2026-04-13T07:00:00+00:00","wind_bearing":76.3,"cloud_coverage":100.0,"uv_index":0.6,"temperature":1.7,"wind_speed":5.0,"precipitation":0.0,"humidity":87},{"condition":"cloudy","datetime":"2026-04-13T08:00:00+00:00","wind_bearing":76.4,"cloud_coverage":100.0,"uv_index":1.3,"temperature":3.6,"wind_speed":5.8,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T09:00:00+00:00","wind_bearing":77.1,"cloud_coverage":100.0,"uv_index":2.2,"temperature":5.3,"wind_speed":6.8,"precipitation":0.0,"humidity":70},{"condition":"cloudy","datetime":"2026-04-13T10:00:00+00:00","wind_bearing":78.0,"cloud_coverage":100.0,"uv_index":3.0,"temperature":6.4,"wind_speed":7.6,"precipitation":0.0,"humidity":60},{"condition":"cloudy","datetime":"2026-04-13T11:00:00+00:00","wind_bearing":74.6,"cloud_coverage":100.0,"uv_index":3.5,"temperature":7.3,"wind_speed":8.3,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T12:00:00+00:00","wind_bearing":61.9,"cloud_coverage":100.0,"uv_index":3.4,"temperature":7.8,"wind_speed":8.3,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T13:00:00+00:00","wind_bearing":51.4,"cloud_coverage":100.0,"uv_index":2.9,"temperature":7.7,"wind_speed":9.4,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T14:00:00+00:00","wind_bearing":41.8,"cloud_coverage":100.0,"uv_index":2.2,"temperature":7.5,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T15:00:00+00:00","wind_bearing":54.7,"cloud_coverage":100.0,"uv_index":1.3,"temperature":7.3,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T16:00:00+00:00","wind_bearing":85.4,"cloud_coverage":100.0,"uv_index":0.6,"temperature":6.8,"wind_speed":9.0,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T17:00:00+00:00","wind_bearing":87.5,"cloud_coverage":100.0,"uv_index":0.2,"temperature":5.9,"wind_speed":9.0,"precipitation":0.0,"humidity":61},{"condition":"cloudy","datetime":"2026-04-13T18:00:00+00:00","wind_bearing":46.6,"cloud_coverage":100.0,"uv_index":0.0,"temperature":5.0,"wind_speed":10.1,"precipitation":0.0,"humidity":76},{"condition":"cloudy","datetime":"2026-04-13T19:00:00+00:00","wind_bearing":39.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":4.2,"wind_speed":8.6,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T20:00:00+00:00","wind_bearing":107.5,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.5,"wind_speed":5.4,"precipitation":0.0,"humidity":86},{"condition":"cloudy","datetime":"2026-04-13T21:00:00+00:00","wind_bearing":132.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.1,"wind_speed":4.7,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T22:00:00+00:00","wind_bearing":196.7,"cloud_coverage":94.5,"uv_index":0.0,"temperature":2.4,"wind_speed":3.6,"precipitation":0.0,"humidity":92},{"condition":"clear-night","datetime":"2026-04-13T23:00:00+00:00","wind_bearing":242.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":1.3,"wind_speed":5.4,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T00:00:00+00:00","wind_bearing":241.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.7,"wind_speed":6.1,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T01:00:00+00:00","wind_bearing":235.4,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.2,"wind_speed":6.1,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T02:00:00+00:00","wind_bearing":246.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.1,"wind_speed":6.8,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T03:00:00+00:00","wind_bearing":259.6,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-0.2,"wind_speed":7.9,"precipitation":0.0,"humidity":96},{"condition":"clear-night","datetime":"2026-04-14T04:00:00+00:00","wind_bearing":283.4,"cloud_coverage":0.8,"uv_index":0.0,"temperature":-0.4,"wind_speed":7.6,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T05:00:00+00:00","wind_bearing":296.2,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-1.0,"wind_speed":6.8,"precipitation":0.0,"humidity":99},{"condition":"sunny","datetime":"2026-04-14T06:00:00+00:00","wind_bearing":294.3,"cloud_coverage":0.0,"uv_index":0.2,"temperature":1.2,"wind_speed":7.9,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T07:00:00+00:00","wind_bearing":290.8,"cloud_coverage":0.0,"uv_index":0.6,"temperature":3.1,"wind_speed":6.8,"precipitation":0.0,"humidity":92},{"condition":"sunny","datetime":"2026-04-14T08:00:00+00:00","wind_bearing":299.7,"cloud_coverage":0.0,"uv_index":1.3,"temperature":4.7,"wind_speed":7.6,"precipitation":0.0,"humidity":80},{"condition":"sunny","datetime":"2026-04-14T09:00:00+00:00","wind_bearing":292.0,"cloud_coverage":0.0,"uv_index":2.1,"temperature":5.9,"wind_speed":6.1,"precipitation":0.0,"humidity":70},{"condition":"sunny","datetime":"2026-04-14T10:00:00+00:00","wind_bearing":273.7,"cloud_coverage":5.5,"uv_index":2.9,"temperature":6.9,"wind_speed":5.8,"precipitation":0.0,"humidity":63},{"condition":"partlycloudy","datetime":"2026-04-14T11:00:00+00:00","wind_bearing":266.8,"cloud_coverage":14.8,"uv_index":3.4,"temperature":7.7,"wind_speed":7.9,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T12:00:00+00:00","wind_bearing":268.4,"cloud_coverage":35.2,"uv_index":3.5,"temperature":8.2,"wind_speed":9.4,"precipitation":0.0,"humidity":56},{"condition":"partlycloudy","datetime":"2026-04-14T13:00:00+00:00","wind_bearing":276.8,"cloud_coverage":44.5,"uv_index":3.1,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T14:00:00+00:00","wind_bearing":284.2,"cloud_coverage":49.2,"uv_index":2.3,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T15:00:00+00:00","wind_bearing":294.2,"cloud_coverage":25.0,"uv_index":1.5,"temperature":7.8,"wind_speed":8.6,"precipitation":0.0,"humidity":55},{"condition":"partlycloudy","datetime":"2026-04-14T16:00:00+00:00","wind_bearing":293.2,"cloud_coverage":53.1,"uv_index":0.8,"temperature":7.3,"wind_speed":7.6,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T17:00:00+00:00","wind_bearing":297.4,"cloud_coverage":29.7,"uv_index":0.3,"temperature":6.6,"wind_speed":6.5,"precipitation":0.0,"humidity":62},{"condition":"partlycloudy","datetime":"2026-04-14T18:00:00+00:00","wind_bearing":314.1,"cloud_coverage":54.7,"uv_index":0.0,"temperature":5.3,"wind_speed":6.1,"precipitation":0.0,"humidity":72},{"condition":"partlycloudy","datetime":"2026-04-14T19:00:00+00:00","wind_bearing":36.4,"cloud_coverage":94.5,"uv_index":0.0,"temperature":3.8,"wind_speed":5.8,"precipitation":0.0,"humidity":84},{"condition":"partlycloudy","datetime":"2026-04-14T20:00:00+00:00","wind_bearing":62.6,"cloud_coverage":71.9,"uv_index":0.0,"temperature":3.0,"wind_speed":6.1,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T21:00:00+00:00","wind_bearing":86.1,"cloud_coverage":92.2,"uv_index":0.0,"temperature":2.6,"wind_speed":7.9,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T22:00:00+00:00","wind_bearing":100.7,"cloud_coverage":53.9,"uv_index":0.0,"temperature":2.2,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-14T23:00:00+00:00","wind_bearing":98.7,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.8,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-15T00:00:00+00:00","wind_bearing":106.5,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.5,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-15T01:00:00+00:00","wind_bearing":118.4,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.2,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"clear-night","datetime":"2026-04-15T02:00:00+00:00","wind_bearing":136.9,"cloud_coverage":0.8,"uv_index":0.0,"temperature":0.8,"wind_speed":10.4,"precipitation":0.0,"humidity":87}]}}}' - url: http://127.0.0.1:8123/api/services/weather/get_forecasts?return_response -- request: - method: POST - url: http://127.0.0.1:8123/api/states/sun.red_sun - response: - status: 200 - headers: - Content-Type: application/json - Location: /api/states/sun.red_sun - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '217' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"entity_id":"sun.red_sun","state":"beyond_our_solar_system","attributes":{},"last_changed":"2026-04-13T02:53:18.332242+00:00","last_reported":"2026-04-13T02:53:18.332242+00:00","last_updated":"2026-04-13T02:53:18.332242+00:00","context":{"id":"01KP2C3YKWF89DG9TRKA44EBEC","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' - url: http://127.0.0.1:8123/api/states/sun.red_sun -- request: - method: POST - url: http://127.0.0.1:8123/api/states/sun.red_sun - response: - status: 200 - headers: - Content-Type: application/json - Location: /api/states/sun.red_sun - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '217' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"entity_id":"sun.red_sun","state":"beyond_our_solar_system","attributes":{},"last_changed":"2026-04-13T02:53:18.332242+00:00","last_reported":"2026-04-13T02:53:18.332242+00:00","last_updated":"2026-04-13T02:53:18.332242+00:00","context":{"id":"01KP2C3YKWF89DG9TRKA44EBEC","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' - url: http://127.0.0.1:8123/api/states/sun.red_sun -- request: - method: POST - url: http://127.0.0.1:8123/api/states/sun.red_sun - response: - status: 200 - headers: - Content-Type: application/json - Location: /api/states/sun.red_sun - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '218' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"sun.red_sun","state":"In the palm of your hand.","attributes":{},"last_changed":"2026-04-13T02:53:20.410392+00:00","last_reported":"2026-04-13T02:53:20.410392+00:00","last_updated":"2026-04-13T02:53:20.410392+00:00","context":{"id":"01KP2C40MTQTAAE2FCA32JK08S","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' - url: http://127.0.0.1:8123/api/states/sun.red_sun -- request: - method: POST - url: http://127.0.0.1:8123/api/states/sun.red_sun - response: - status: 200 - headers: - Content-Type: application/json - Location: /api/states/sun.red_sun - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '219' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"sun.red_sun","state":"In the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:53:20.412448+00:00","last_reported":"2026-04-13T02:53:20.412448+00:00","last_updated":"2026-04-13T02:53:20.412448+00:00","context":{"id":"01KP2C40MWNPCN8YAWXRCA8XJ4","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' - url: http://127.0.0.1:8123/api/states/sun.red_sun -- request: - method: GET - url: http://127.0.0.1:8123/api/events - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '215' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' - url: http://127.0.0.1:8123/api/events -- request: - method: GET - url: http://127.0.0.1:8123/api/events - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '215' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' - url: http://127.0.0.1:8123/api/events -- request: - method: GET - url: http://127.0.0.1:8123/api/events - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '215' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' - url: http://127.0.0.1:8123/api/events -- request: - method: GET - url: http://127.0.0.1:8123/api/events - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '215' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' - url: http://127.0.0.1:8123/api/events -- request: - method: GET - url: http://127.0.0.1:8123/api/events - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '215' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' - url: http://127.0.0.1:8123/api/events -- request: - method: GET - url: http://127.0.0.1:8123/api/events - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '215' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[{"event":"*","listener_count":1},{"event":"logging_changed","listener_count":3},{"event":"entity_registry_updated","listener_count":6},{"event":"homeassistant_start","listener_count":1},{"event":"homeassistant_stop","listener_count":16},{"event":"core_config_updated","listener_count":3},{"event":"floor_registry_updated","listener_count":1},{"event":"label_registry_updated","listener_count":3},{"event":"device_registry_updated","listener_count":2},{"event":"category_registry_updated","listener_count":1},{"event":"labs_updated","listener_count":5},{"event":"component_loaded","listener_count":1},{"event":"homeassistant_final_write","listener_count":4},{"event":"homeassistant_close","listener_count":6},{"event":"state_changed","listener_count":3},{"event":"user_removed","listener_count":1}]' - url: http://127.0.0.1:8123/api/events -- request: - method: POST - url: http://127.0.0.1:8123/api/events/my_new_event - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '47' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"Event my_new_event fired."}' - url: http://127.0.0.1:8123/api/events/my_new_event -- request: - method: POST - url: http://127.0.0.1:8123/api/events/my_new_event - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '47' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '{"message":"Event my_new_event fired."}' - url: http://127.0.0.1:8123/api/events/my_new_event -- request: - method: GET - url: http://127.0.0.1:8123/api/components - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '365' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"]' - url: http://127.0.0.1:8123/api/components -- request: - method: GET - url: http://127.0.0.1:8123/api/components - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '365' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"]' - url: http://127.0.0.1:8123/api/components -- request: - method: GET - url: http://127.0.0.1:8123/api/qwertyuioasdfghjkzxcvbnm - response: - status: 404 - headers: - Content-Type: text/plain; charset=utf-8 - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '14' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '404: Not Found' - url: http://127.0.0.1:8123/api/qwertyuioasdfghjkzxcvbnm -- request: - method: GET - url: http://127.0.0.1:8123/api/qwertyuioasdfghjkzxcvbnm - response: - status: 404 - headers: - Content-Type: text/plain; charset=utf-8 - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '14' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '404: Not Found' - url: http://127.0.0.1:8123/api/qwertyuioasdfghjkzxcvbnm -- request: - method: DELETE - url: http://127.0.0.1:8123/api/ - response: - status: 405 - headers: - Content-Type: text/plain; charset=utf-8 - Allow: GET,OPTIONS - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '23' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '405: Method Not Allowed' - url: http://127.0.0.1:8123/api/ -- request: - method: DELETE - url: http://127.0.0.1:8123/api/ - response: - status: 405 - headers: - Content-Type: text/plain; charset=utf-8 - Allow: GET,OPTIONS - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '23' - Date: Mon, 13 Apr 2026 02:53:18 GMT - body: '405: Method Not Allowed' - url: http://127.0.0.1:8123/api/ -- request: - method: GET - url: http://127.0.0.1:8123/api/states/person.test_user - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '421' - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/person.test_user -- request: - method: GET - url: http://127.0.0.1:8123/api/states/person.test_user - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '421' - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/person.test_user -- request: - method: GET - url: http://127.0.0.1:8123/api/states/person.test_user - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '421' - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/person.test_user -- request: - method: GET - url: http://127.0.0.1:8123/api/states/person.test_user - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '421' - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}}' - url: http://127.0.0.1:8123/api/states/person.test_user -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.red_sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '336' - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"sun.red_sun","state":"beyond_our_solar_system","attributes":{},"last_changed":"2026-04-13T02:53:18.332242+00:00","last_reported":"2026-04-13T02:53:18.332242+00:00","last_updated":"2026-04-13T02:53:18.332242+00:00","context":{"id":"01KP2C3YKWF89DG9TRKA44EBEC","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' - url: http://127.0.0.1:8123/api/states/sun.red_sun -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.red_sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '338' - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"sun.red_sun","state":"In the palm of your hand.","attributes":{},"last_changed":"2026-04-13T02:53:20.410392+00:00","last_reported":"2026-04-13T02:53:20.410392+00:00","last_updated":"2026-04-13T02:53:20.410392+00:00","context":{"id":"01KP2C40MTQTAAE2FCA32JK08S","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' - url: http://127.0.0.1:8123/api/states/sun.red_sun -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.red_sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '336' - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"sun.red_sun","state":"In the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:53:20.412448+00:00","last_reported":"2026-04-13T02:53:20.412448+00:00","last_updated":"2026-04-13T02:53:20.412448+00:00","context":{"id":"01KP2C40MWNPCN8YAWXRCA8XJ4","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' - url: http://127.0.0.1:8123/api/states/sun.red_sun -- request: - method: GET - url: http://127.0.0.1:8123/api/states/sun.red_sun - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '336' - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"entity_id":"sun.red_sun","state":"In the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:53:20.412448+00:00","last_reported":"2026-04-13T02:53:20.412448+00:00","last_updated":"2026-04-13T02:53:20.412448+00:00","context":{"id":"01KP2C40MWNPCN8YAWXRCA8XJ4","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}' - url: http://127.0.0.1:8123/api/states/sun.red_sun -- request: - method: POST - url: http://127.0.0.1:8123/api/events/core_config_updated - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '54' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"message":"Event core_config_updated fired."}' - url: http://127.0.0.1:8123/api/events/core_config_updated -- request: - method: POST - url: http://127.0.0.1:8123/api/events/core_config_updated - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '54' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '{"message":"Event core_config_updated fired."}' - url: http://127.0.0.1:8123/api/events/core_config_updated -- request: - method: GET - url: http://127.0.0.1:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00 - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '10' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[]' - url: http://127.0.0.1:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00 -- request: - method: GET - url: http://127.0.0.1:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00 - response: - status: 200 - headers: - Content-Type: application/json - Referrer-Policy: no-referrer - X-Content-Type-Options: nosniff - Server: '' - X-Frame-Options: SAMEORIGIN - Content-Length: '10' - Content-Encoding: deflate - Date: Mon, 13 Apr 2026 02:53:20 GMT - body: '[]' - url: http://127.0.0.1:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00 -websocket_sessions: -- url: ws://127.0.0.1:8123/api/websocket - frames: - - direction: recv - payload: '{"type":"auth_required","ha_version":"2026.3.1"}' - - direction: send - payload: '{"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk", - "type": "auth"}' - - direction: recv - payload: '{"type":"auth_ok","ha_version":"2026.3.1"}' - - direction: send - payload: '{"features": {}, "id": 1, "type": "supported_features"}' - - direction: recv - payload: '{"id":1,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"id": 2, "type": "ping"}' - - direction: recv - payload: '{"id":2,"type":"pong"}' -- url: ws://127.0.0.1:8123/api/websocket - frames: - - direction: recv - payload: '{"type":"auth_required","ha_version":"2026.3.1"}' - - direction: send - payload: '{"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk", - "type": "auth"}' - - direction: recv - payload: '{"type":"auth_ok","ha_version":"2026.3.1"}' - - direction: send - payload: '{"features": {}, "id": 1, "type": "supported_features"}' - - direction: recv - payload: '{"id":1,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"id": 2, "type": "ping"}' - - direction: recv - payload: '{"id":2,"type":"pong"}' -- url: ws://127.0.0.1:8123/api/websocket - frames: - - direction: recv - payload: '{"type":"auth_required","ha_version":"2026.3.1"}' - - direction: send - payload: '{"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk", - "type": "auth"}' - - direction: recv - payload: '{"type":"auth_ok","ha_version":"2026.3.1"}' - - direction: send - payload: '{"features": {}, "id": 1, "type": "supported_features"}' - - direction: recv - payload: '{"id":1,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"template": "The sun is {{ states(\"sun.sun\").replace(\"_\", \" the - \") }}.", "report_errors": true, "id": 2, "type": "render_template"}' - - direction: recv - payload: '{"id":2,"type":"result","success":true,"result":null}' - - direction: recv - payload: '{"id":2,"type":"event","event":{"result":"The sun is below the horizon.","listeners":{"all":false,"entities":["sun.sun"],"domains":[],"time":false}}}' - - direction: send - payload: '{"subscription": 2, "id": 3, "type": "unsubscribe_events"}' - - direction: recv - payload: '{"id":3,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"id": 4, "type": "get_config"}' - - direction: recv - payload: '{"id":4,"type":"result","success":true,"result":{"allowlist_external_dirs":["/config/www","/media"],"allowlist_external_urls":[],"components":["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"],"config_dir":"/config","config_source":"storage","country":"US","currency":"USD","debug":false,"elevation":1000,"external_url":null,"internal_url":null,"language":"en","latitude":52.3731339,"location_name":"Testing - Server","longitude":4.8903147,"radius":100,"recovery_mode":false,"safe_mode":false,"state":"RUNNING","time_zone":"America/Chicago","unit_system":{"length":"km","accumulated_precipitation":"mm","area":"m²","mass":"g","pressure":"Pa","temperature":"°C","volume":"L","wind_speed":"m/s"},"version":"2026.3.1","whitelist_external_dirs":["/config/www","/media"]}}' - - direction: send - payload: '{"id": 5, "type": "get_states"}' - - direction: recv - payload: '{"id":5,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 6, "type": "get_states"}' - - direction: recv - payload: '{"id":6,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 7, "type": "get_states"}' - - direction: recv - payload: '{"id":7,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 8, "type": "get_states"}' - - direction: recv - payload: '{"id":8,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 9, "type": "get_states"}' - - direction: recv - payload: '{"id":9,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 10, "type": "get_services"}' - - direction: recv - payload: '{"id":10,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' - - direction: send - payload: '{"id": 11, "type": "get_services"}' - - direction: recv - payload: '{"id":11,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' - - direction: send - payload: '{"id": 12, "type": "config_entries/flow/progress"}' - - direction: recv - payload: '{"id":12,"type":"result","success":true,"result":[]}' - - direction: send - payload: '{"id": 13, "type": "config_entries/get"}' - - direction: recv - payload: '{"id":13,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' - - direction: send - payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": "user", - "id": 14, "type": "config_entries/disable"}' - - direction: recv - payload: '{"id":14,"type":"result","success":true,"result":{"require_restart":false}}' - - direction: send - payload: '{"id": 15, "type": "config_entries/get"}' - - direction: recv - payload: '{"id":15,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"not_loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' - - direction: send - payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": null, - "id": 16, "type": "config_entries/disable"}' - - direction: recv - payload: '{"id":16,"type":"result","success":true,"result":{"require_restart":false}}' - - direction: send - payload: '{"id": 17, "type": "config_entries/get"}' - - direction: recv - payload: '{"id":17,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' - - direction: send - payload: '{"flow_id": "", "title": "", "id": 18, "type": "config_entries/ignore_flow"}' - - direction: recv - payload: '{"id":18,"type":"result","success":false,"error":{"code":"not_found","message":"Config - entry not found"}}' - - direction: send - payload: '{"id": 19, "type": "config_entries/get"}' - - direction: recv - payload: '{"id":19,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' - - direction: send - payload: '{"id": 20, "type": "config_entries/get"}' - - direction: recv - payload: '{"id":20,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' - - direction: send - payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "id": 21, "type": "config_entries/subentries/list"}' - - direction: recv - payload: '{"id":21,"type":"result","success":true,"result":[]}' - - direction: send - payload: '{"entry_id": "", "subentry_id": "", "id": 22, "type": "config_entries/subentries/delete"}' - - direction: recv - payload: '{"id":22,"type":"result","success":false,"error":{"code":"not_found","message":"Config - entry not found"}}' - - direction: send - payload: '{"id": 23, "type": "get_services"}' - - direction: recv - payload: '{"id":23,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' - - direction: send - payload: '{"domain": "notify", "service": "persistent_notification", "service_data": - {"message": "Your API Test Suite just said hello!", "title": "Test Suite Notifcation"}, - "return_response": true, "id": 24, "type": "call_service"}' - - direction: recv - payload: '{"id":24,"type":"result","success":false,"error":{"code":"service_validation_error","message":"Validation - error: An action which does not return responses can''t be called with return_response=True","translation_key":"service_does_not_support_response","translation_placeholders":{"return_response":"return_response=True"},"translation_domain":"homeassistant"}}' - - direction: send - payload: '{"domain": "notify", "service": "persistent_notification", "service_data": - {"message": "Your API Test Suite just said hello!", "title": "Test Suite Notifcation"}, - "return_response": false, "id": 25, "type": "call_service"}' - - direction: recv - payload: '{"id":25,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YK2WE6QT23F115RE5WG","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}}' - - direction: send - payload: '{"id": 26, "type": "get_states"}' - - direction: recv - payload: '{"id":26,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"domain": "homeassistant", "service": "update_entity", "service_data": - {"entity_id": "sun.sun"}, "return_response": false, "id": 27, "type": "call_service"}' - - direction: recv - payload: '{"id":27,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YK66QB8KJAWCVVHP8D2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}}' - - direction: send - payload: '{"id": 28, "type": "get_states"}' - - direction: recv - payload: '{"id":28,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 29, "type": "get_services"}' - - direction: recv - payload: '{"id":29,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' - - direction: send - payload: '{"domain": "weather", "service": "get_forecasts", "service_data": {"entity_id": - "weather.forecast_home", "type": "hourly"}, "return_response": true, "id": 30, - "type": "call_service"}' - - direction: recv - payload: '{"id":30,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YKE140CDHC465SK99QR","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},"response":{"weather.forecast_home":{"forecast":[{"condition":"cloudy","datetime":"2026-04-13T03:00:00+00:00","wind_bearing":156.1,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.1,"wind_speed":5.8,"precipitation":0.0,"humidity":89},{"condition":"partlycloudy","datetime":"2026-04-13T04:00:00+00:00","wind_bearing":165.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.3,"wind_speed":5.4,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T05:00:00+00:00","wind_bearing":150.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.6,"wind_speed":5.0,"precipitation":0.0,"humidity":91},{"condition":"cloudy","datetime":"2026-04-13T06:00:00+00:00","wind_bearing":115.2,"cloud_coverage":100.0,"uv_index":0.2,"temperature":0.4,"wind_speed":6.5,"precipitation":0.0,"humidity":90},{"condition":"cloudy","datetime":"2026-04-13T07:00:00+00:00","wind_bearing":76.3,"cloud_coverage":100.0,"uv_index":0.6,"temperature":1.7,"wind_speed":5.0,"precipitation":0.0,"humidity":87},{"condition":"cloudy","datetime":"2026-04-13T08:00:00+00:00","wind_bearing":76.4,"cloud_coverage":100.0,"uv_index":1.3,"temperature":3.6,"wind_speed":5.8,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T09:00:00+00:00","wind_bearing":77.1,"cloud_coverage":100.0,"uv_index":2.2,"temperature":5.3,"wind_speed":6.8,"precipitation":0.0,"humidity":70},{"condition":"cloudy","datetime":"2026-04-13T10:00:00+00:00","wind_bearing":78.0,"cloud_coverage":100.0,"uv_index":3.0,"temperature":6.4,"wind_speed":7.6,"precipitation":0.0,"humidity":60},{"condition":"cloudy","datetime":"2026-04-13T11:00:00+00:00","wind_bearing":74.6,"cloud_coverage":100.0,"uv_index":3.5,"temperature":7.3,"wind_speed":8.3,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T12:00:00+00:00","wind_bearing":61.9,"cloud_coverage":100.0,"uv_index":3.4,"temperature":7.8,"wind_speed":8.3,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T13:00:00+00:00","wind_bearing":51.4,"cloud_coverage":100.0,"uv_index":2.9,"temperature":7.7,"wind_speed":9.4,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T14:00:00+00:00","wind_bearing":41.8,"cloud_coverage":100.0,"uv_index":2.2,"temperature":7.5,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T15:00:00+00:00","wind_bearing":54.7,"cloud_coverage":100.0,"uv_index":1.3,"temperature":7.3,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T16:00:00+00:00","wind_bearing":85.4,"cloud_coverage":100.0,"uv_index":0.6,"temperature":6.8,"wind_speed":9.0,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T17:00:00+00:00","wind_bearing":87.5,"cloud_coverage":100.0,"uv_index":0.2,"temperature":5.9,"wind_speed":9.0,"precipitation":0.0,"humidity":61},{"condition":"cloudy","datetime":"2026-04-13T18:00:00+00:00","wind_bearing":46.6,"cloud_coverage":100.0,"uv_index":0.0,"temperature":5.0,"wind_speed":10.1,"precipitation":0.0,"humidity":76},{"condition":"cloudy","datetime":"2026-04-13T19:00:00+00:00","wind_bearing":39.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":4.2,"wind_speed":8.6,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T20:00:00+00:00","wind_bearing":107.5,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.5,"wind_speed":5.4,"precipitation":0.0,"humidity":86},{"condition":"cloudy","datetime":"2026-04-13T21:00:00+00:00","wind_bearing":132.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.1,"wind_speed":4.7,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T22:00:00+00:00","wind_bearing":196.7,"cloud_coverage":94.5,"uv_index":0.0,"temperature":2.4,"wind_speed":3.6,"precipitation":0.0,"humidity":92},{"condition":"clear-night","datetime":"2026-04-13T23:00:00+00:00","wind_bearing":242.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":1.3,"wind_speed":5.4,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T00:00:00+00:00","wind_bearing":241.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.7,"wind_speed":6.1,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T01:00:00+00:00","wind_bearing":235.4,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.2,"wind_speed":6.1,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T02:00:00+00:00","wind_bearing":246.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.1,"wind_speed":6.8,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T03:00:00+00:00","wind_bearing":259.6,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-0.2,"wind_speed":7.9,"precipitation":0.0,"humidity":96},{"condition":"clear-night","datetime":"2026-04-14T04:00:00+00:00","wind_bearing":283.4,"cloud_coverage":0.8,"uv_index":0.0,"temperature":-0.4,"wind_speed":7.6,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T05:00:00+00:00","wind_bearing":296.2,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-1.0,"wind_speed":6.8,"precipitation":0.0,"humidity":99},{"condition":"sunny","datetime":"2026-04-14T06:00:00+00:00","wind_bearing":294.3,"cloud_coverage":0.0,"uv_index":0.2,"temperature":1.2,"wind_speed":7.9,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T07:00:00+00:00","wind_bearing":290.8,"cloud_coverage":0.0,"uv_index":0.6,"temperature":3.1,"wind_speed":6.8,"precipitation":0.0,"humidity":92},{"condition":"sunny","datetime":"2026-04-14T08:00:00+00:00","wind_bearing":299.7,"cloud_coverage":0.0,"uv_index":1.3,"temperature":4.7,"wind_speed":7.6,"precipitation":0.0,"humidity":80},{"condition":"sunny","datetime":"2026-04-14T09:00:00+00:00","wind_bearing":292.0,"cloud_coverage":0.0,"uv_index":2.1,"temperature":5.9,"wind_speed":6.1,"precipitation":0.0,"humidity":70},{"condition":"sunny","datetime":"2026-04-14T10:00:00+00:00","wind_bearing":273.7,"cloud_coverage":5.5,"uv_index":2.9,"temperature":6.9,"wind_speed":5.8,"precipitation":0.0,"humidity":63},{"condition":"partlycloudy","datetime":"2026-04-14T11:00:00+00:00","wind_bearing":266.8,"cloud_coverage":14.8,"uv_index":3.4,"temperature":7.7,"wind_speed":7.9,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T12:00:00+00:00","wind_bearing":268.4,"cloud_coverage":35.2,"uv_index":3.5,"temperature":8.2,"wind_speed":9.4,"precipitation":0.0,"humidity":56},{"condition":"partlycloudy","datetime":"2026-04-14T13:00:00+00:00","wind_bearing":276.8,"cloud_coverage":44.5,"uv_index":3.1,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T14:00:00+00:00","wind_bearing":284.2,"cloud_coverage":49.2,"uv_index":2.3,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T15:00:00+00:00","wind_bearing":294.2,"cloud_coverage":25.0,"uv_index":1.5,"temperature":7.8,"wind_speed":8.6,"precipitation":0.0,"humidity":55},{"condition":"partlycloudy","datetime":"2026-04-14T16:00:00+00:00","wind_bearing":293.2,"cloud_coverage":53.1,"uv_index":0.8,"temperature":7.3,"wind_speed":7.6,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T17:00:00+00:00","wind_bearing":297.4,"cloud_coverage":29.7,"uv_index":0.3,"temperature":6.6,"wind_speed":6.5,"precipitation":0.0,"humidity":62},{"condition":"partlycloudy","datetime":"2026-04-14T18:00:00+00:00","wind_bearing":314.1,"cloud_coverage":54.7,"uv_index":0.0,"temperature":5.3,"wind_speed":6.1,"precipitation":0.0,"humidity":72},{"condition":"partlycloudy","datetime":"2026-04-14T19:00:00+00:00","wind_bearing":36.4,"cloud_coverage":94.5,"uv_index":0.0,"temperature":3.8,"wind_speed":5.8,"precipitation":0.0,"humidity":84},{"condition":"partlycloudy","datetime":"2026-04-14T20:00:00+00:00","wind_bearing":62.6,"cloud_coverage":71.9,"uv_index":0.0,"temperature":3.0,"wind_speed":6.1,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T21:00:00+00:00","wind_bearing":86.1,"cloud_coverage":92.2,"uv_index":0.0,"temperature":2.6,"wind_speed":7.9,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T22:00:00+00:00","wind_bearing":100.7,"cloud_coverage":53.9,"uv_index":0.0,"temperature":2.2,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-14T23:00:00+00:00","wind_bearing":98.7,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.8,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-15T00:00:00+00:00","wind_bearing":106.5,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.5,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-15T01:00:00+00:00","wind_bearing":118.4,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.2,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"clear-night","datetime":"2026-04-15T02:00:00+00:00","wind_bearing":136.9,"cloud_coverage":0.8,"uv_index":0.0,"temperature":0.8,"wind_speed":10.4,"precipitation":0.0,"humidity":87}]}}}}' - - direction: send - payload: '{"id": 31, "type": "get_states"}' - - direction: recv - payload: '{"id":31,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 32, "type": "config/entity_registry/list"}' - - direction: recv - payload: '{"id":32,"type": "result","success":true,"result": [{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":0.0,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"person.test_user","has_entity_name":false,"hidden_by":null,"icon":null,"id":"e6de57e591560fad68f1c3b52bf0b295","labels":[],"modified_at":0.0,"name":null,"options":{},"original_name":"Test - User","platform":"person","translation_key":null,"unique_id":"test_user"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.288922,"name":null,"options":{},"original_name":"Next - dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.78036,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dusk","has_entity_name":true,"hidden_by":null,"icon":null,"id":"e1a35874a09227109783c6d1301a10cf","labels":[],"modified_at":1776048798.288781,"name":null,"options":{},"original_name":"Next - dusk","platform":"sun","translation_key":"next_dusk","unique_id":"5f8426fa502435857743f302651753c9-next_dusk"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780603,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_midnight","has_entity_name":true,"hidden_by":null,"icon":null,"id":"9ec059b13886380e2d5d4a9002e89879","labels":[],"modified_at":1776048798.28882,"name":null,"options":{},"original_name":"Next - midnight","platform":"sun","translation_key":"next_midnight","unique_id":"5f8426fa502435857743f302651753c9-next_midnight"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780796,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_noon","has_entity_name":true,"hidden_by":null,"icon":null,"id":"04bc6ee0081da1191cb27e2ee5842148","labels":[],"modified_at":1776048798.288848,"name":null,"options":{},"original_name":"Next - noon","platform":"sun","translation_key":"next_noon","unique_id":"5f8426fa502435857743f302651753c9-next_noon"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780976,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"ec87eec8ebe365ec0cd1119962627570","labels":[],"modified_at":1776048798.288874,"name":null,"options":{},"original_name":"Next - rising","platform":"sun","translation_key":"next_rising","unique_id":"5f8426fa502435857743f302651753c9-next_rising"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781147,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_setting","has_entity_name":true,"hidden_by":null,"icon":null,"id":"594acbedee290ea279f1d63cf6efbb3b","labels":[],"modified_at":1776048798.288898,"name":null,"options":{},"original_name":"Next - setting","platform":"sun","translation_key":"next_setting","unique_id":"5f8426fa502435857743f302651753c9-next_setting"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.7813,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_elevation","has_entity_name":true,"hidden_by":null,"icon":null,"id":"0df1d222a5fedd8d5e62a2ff2be79094","labels":[],"modified_at":1776046381.250753,"name":null,"options":{},"original_name":"Solar - elevation","platform":"sun","translation_key":"solar_elevation","unique_id":"5f8426fa502435857743f302651753c9-solar_elevation"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781397,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_azimuth","has_entity_name":true,"hidden_by":null,"icon":null,"id":"104de75b64e950af398ec4fe9998338c","labels":[],"modified_at":1776046381.250803,"name":null,"options":{},"original_name":"Solar - azimuth","platform":"sun","translation_key":"solar_azimuth","unique_id":"5f8426fa502435857743f302651753c9-solar_azimuth"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781483,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"888993d87923ff452ad1e53f6b3a943f","labels":[],"modified_at":1734400728.781506,"name":null,"options":{},"original_name":"Solar - rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":"01JFJGH76SD417XC4YJTG8QJWB","config_subentry_id":null,"created_at":1734714367.780994,"device_id":"6586dbdeb10a88ae4603b47e600c6124","disabled_by":null,"entity_category":null,"entity_id":"weather.forecast_home","has_entity_name":true,"hidden_by":null,"icon":null,"id":"6ae588672696a2601b0152f22ee235f3","labels":[],"modified_at":1734714367.781055,"name":null,"options":{},"original_name":"Home","platform":"met","translation_key":null,"unique_id":"52.3731339-4.8903147"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1776046381.249625,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"binary_sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"650017b39ced3c74c0cd7bafb5ad5a57","labels":[],"modified_at":1776046381.24967,"name":null,"options":{},"original_name":"Solar - rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338277,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"4d295ce067b386e8601e868e5b071e92","labels":[],"modified_at":1776046381.338296,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338357,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"24ac520911e2d3b522a12291161b78c2","labels":[],"modified_at":1776046381.338376,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338431,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"fc93bb35a45e27420489a129b4fe38b8","labels":[],"modified_at":1776046381.338446,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338496,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"61e6538380357146fb1cecbb68f00248","labels":[],"modified_at":1776046381.338512,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338564,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"3e82b7b9c95b42b0d3c0e0734a4b1111","labels":[],"modified_at":1776046381.338581,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_4"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.33863,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"7ec85badbe9d5bd0f21183877d745e43","labels":[],"modified_at":1776046381.338647,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_4"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945387,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"event.backup_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b7d0cc277170fa6a7bd4f528374b1317","labels":[],"modified_at":1776046381.945424,"name":null,"options":{},"original_name":"Automatic - backup","platform":"backup","translation_key":"automatic_backup_event","unique_id":"automatic_backup_event"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945778,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_backup_manager_state","has_entity_name":true,"hidden_by":null,"icon":null,"id":"a57e4837e900582b68c14d6cf02cdab1","labels":[],"modified_at":1776046381.945813,"name":null,"options":{},"original_name":"Backup - Manager state","platform":"backup","translation_key":"backup_manager_state","unique_id":"backup_manager_state"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945956,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_next_scheduled_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"064e76bb083bf2cca30865a0ac699279","labels":[],"modified_at":1776046381.945979,"name":null,"options":{},"original_name":"Next - scheduled automatic backup","platform":"backup","translation_key":"next_scheduled_automatic_backup","unique_id":"next_scheduled_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946098,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_successful_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b0c3747840a365bc0223d3eaa9532362","labels":[],"modified_at":1776046381.94612,"name":null,"options":{},"original_name":"Last - successful automatic backup","platform":"backup","translation_key":"last_successful_automatic_backup","unique_id":"last_successful_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946229,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_attempted_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"549177510d127dc95abeb083987ac50d","labels":[],"modified_at":1776046381.946248,"name":null,"options":{},"original_name":"Last - attempted automatic backup","platform":"backup","translation_key":"last_attempted_automatic_backup","unique_id":"last_attempted_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.491479,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"779f6487ac8bc7c5d182f6e9f6969d33","labels":[],"modified_at":1776046404.491511,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_5"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.499467,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"db670347d76ea2ef5bcfd4a28e938b06","labels":[],"modified_at":1776046404.4995,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_5"}]}' - - direction: send - payload: '{"entity_id": "sensor.sun_next_dawn", "id": 33, "type": "config/entity_registry/get"}' - - direction: recv - payload: '{"id":33,"type":"result","success":true,"result":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.288922,"name":null,"options":{},"original_name":"Next - dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}' - - direction: send - payload: '{"entity_id": "sensor.sun_next_dawn", "name": "Test Name", "id": 34, - "type": "config/entity_registry/update"}' - - direction: recv - payload: '{"id":34,"type":"result","success":true,"result":{"entity_entry":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.345672,"name":"Test - Name","options":{},"original_name":"Next dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}}' - - direction: send - payload: '{"entity_id": "sensor.sun_next_dawn", "name": null, "id": 35, "type": - "config/entity_registry/update"}' - - direction: recv - payload: '{"id":35,"type":"result","success":true,"result":{"entity_entry":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.346326,"name":null,"options":{},"original_name":"Next - dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}}' - - direction: send - payload: '{"name": "smoke_registry_remove_test", "id": 36, "type": "input_boolean/create"}' - - direction: recv - payload: '{"id":36,"type":"result","success":true,"result":{"id":"smoke_registry_remove_test_9","name":"smoke_registry_remove_test"}}' - - direction: send - payload: '{"entity_id": "input_boolean.smoke_registry_remove_test", "id": 37, - "type": "config/entity_registry/remove"}' - - direction: recv - payload: '{"id":37,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"id": 38, "type": "config/entity_registry/list"}' - - direction: recv - payload: '{"id":38,"type": "result","success":true,"result": [{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":0.0,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"person.test_user","has_entity_name":false,"hidden_by":null,"icon":null,"id":"e6de57e591560fad68f1c3b52bf0b295","labels":[],"modified_at":0.0,"name":null,"options":{},"original_name":"Test - User","platform":"person","translation_key":null,"unique_id":"test_user"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.346326,"name":null,"options":{},"original_name":"Next - dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.78036,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dusk","has_entity_name":true,"hidden_by":null,"icon":null,"id":"e1a35874a09227109783c6d1301a10cf","labels":[],"modified_at":1776048798.288781,"name":null,"options":{},"original_name":"Next - dusk","platform":"sun","translation_key":"next_dusk","unique_id":"5f8426fa502435857743f302651753c9-next_dusk"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780603,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_midnight","has_entity_name":true,"hidden_by":null,"icon":null,"id":"9ec059b13886380e2d5d4a9002e89879","labels":[],"modified_at":1776048798.28882,"name":null,"options":{},"original_name":"Next - midnight","platform":"sun","translation_key":"next_midnight","unique_id":"5f8426fa502435857743f302651753c9-next_midnight"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780796,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_noon","has_entity_name":true,"hidden_by":null,"icon":null,"id":"04bc6ee0081da1191cb27e2ee5842148","labels":[],"modified_at":1776048798.288848,"name":null,"options":{},"original_name":"Next - noon","platform":"sun","translation_key":"next_noon","unique_id":"5f8426fa502435857743f302651753c9-next_noon"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780976,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"ec87eec8ebe365ec0cd1119962627570","labels":[],"modified_at":1776048798.288874,"name":null,"options":{},"original_name":"Next - rising","platform":"sun","translation_key":"next_rising","unique_id":"5f8426fa502435857743f302651753c9-next_rising"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781147,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_setting","has_entity_name":true,"hidden_by":null,"icon":null,"id":"594acbedee290ea279f1d63cf6efbb3b","labels":[],"modified_at":1776048798.288898,"name":null,"options":{},"original_name":"Next - setting","platform":"sun","translation_key":"next_setting","unique_id":"5f8426fa502435857743f302651753c9-next_setting"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.7813,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_elevation","has_entity_name":true,"hidden_by":null,"icon":null,"id":"0df1d222a5fedd8d5e62a2ff2be79094","labels":[],"modified_at":1776046381.250753,"name":null,"options":{},"original_name":"Solar - elevation","platform":"sun","translation_key":"solar_elevation","unique_id":"5f8426fa502435857743f302651753c9-solar_elevation"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781397,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_azimuth","has_entity_name":true,"hidden_by":null,"icon":null,"id":"104de75b64e950af398ec4fe9998338c","labels":[],"modified_at":1776046381.250803,"name":null,"options":{},"original_name":"Solar - azimuth","platform":"sun","translation_key":"solar_azimuth","unique_id":"5f8426fa502435857743f302651753c9-solar_azimuth"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781483,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"888993d87923ff452ad1e53f6b3a943f","labels":[],"modified_at":1734400728.781506,"name":null,"options":{},"original_name":"Solar - rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":"01JFJGH76SD417XC4YJTG8QJWB","config_subentry_id":null,"created_at":1734714367.780994,"device_id":"6586dbdeb10a88ae4603b47e600c6124","disabled_by":null,"entity_category":null,"entity_id":"weather.forecast_home","has_entity_name":true,"hidden_by":null,"icon":null,"id":"6ae588672696a2601b0152f22ee235f3","labels":[],"modified_at":1734714367.781055,"name":null,"options":{},"original_name":"Home","platform":"met","translation_key":null,"unique_id":"52.3731339-4.8903147"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1776046381.249625,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"binary_sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"650017b39ced3c74c0cd7bafb5ad5a57","labels":[],"modified_at":1776046381.24967,"name":null,"options":{},"original_name":"Solar - rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338277,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"4d295ce067b386e8601e868e5b071e92","labels":[],"modified_at":1776046381.338296,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338357,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"24ac520911e2d3b522a12291161b78c2","labels":[],"modified_at":1776046381.338376,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338431,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"fc93bb35a45e27420489a129b4fe38b8","labels":[],"modified_at":1776046381.338446,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338496,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"61e6538380357146fb1cecbb68f00248","labels":[],"modified_at":1776046381.338512,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338564,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"3e82b7b9c95b42b0d3c0e0734a4b1111","labels":[],"modified_at":1776046381.338581,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_4"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.33863,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"7ec85badbe9d5bd0f21183877d745e43","labels":[],"modified_at":1776046381.338647,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_4"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945387,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"event.backup_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b7d0cc277170fa6a7bd4f528374b1317","labels":[],"modified_at":1776046381.945424,"name":null,"options":{},"original_name":"Automatic - backup","platform":"backup","translation_key":"automatic_backup_event","unique_id":"automatic_backup_event"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945778,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_backup_manager_state","has_entity_name":true,"hidden_by":null,"icon":null,"id":"a57e4837e900582b68c14d6cf02cdab1","labels":[],"modified_at":1776046381.945813,"name":null,"options":{},"original_name":"Backup - Manager state","platform":"backup","translation_key":"backup_manager_state","unique_id":"backup_manager_state"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945956,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_next_scheduled_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"064e76bb083bf2cca30865a0ac699279","labels":[],"modified_at":1776046381.945979,"name":null,"options":{},"original_name":"Next - scheduled automatic backup","platform":"backup","translation_key":"next_scheduled_automatic_backup","unique_id":"next_scheduled_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946098,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_successful_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b0c3747840a365bc0223d3eaa9532362","labels":[],"modified_at":1776046381.94612,"name":null,"options":{},"original_name":"Last - successful automatic backup","platform":"backup","translation_key":"last_successful_automatic_backup","unique_id":"last_successful_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946229,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_attempted_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"549177510d127dc95abeb083987ac50d","labels":[],"modified_at":1776046381.946248,"name":null,"options":{},"original_name":"Last - attempted automatic backup","platform":"backup","translation_key":"last_attempted_automatic_backup","unique_id":"last_attempted_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.491479,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"779f6487ac8bc7c5d182f6e9f6969d33","labels":[],"modified_at":1776046404.491511,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_5"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.499467,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"db670347d76ea2ef5bcfd4a28e938b06","labels":[],"modified_at":1776046404.4995,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_5"}]}' - - direction: send - payload: '{"event_type": "test_event", "id": 39, "type": "subscribe_events"}' - - direction: recv - payload: '{"id":39,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"event_type": "test_event", "event_data": {"message": "Triggered by - websocket client"}, "id": 40, "type": "fire_event"}' - - direction: recv - payload: '{"type":"event","event":{"event_type":"test_event","data":{"message":"Triggered - by websocket client"},"origin":"LOCAL","time_fired":"2026-04-13T02:53:18.399911+00:00","context":{"id":"01KP2C3YNZR4FYX186840GBNA7","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},"id":39}' - - direction: recv - payload: '{"id":40,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YNZR4FYX186840GBNA7","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}}' - - direction: send - payload: '{"subscription": 39, "id": 41, "type": "unsubscribe_events"}' - - direction: recv - payload: '{"id":41,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"template": "{{ (now() + timedelta(seconds=1)) }}", "report_errors": - true, "id": 42, "type": "render_template"}' - - direction: recv - payload: '{"id":42,"type":"result","success":true,"result":null}' - - direction: recv - payload: '{"id":42,"type":"event","event":{"result":"2026-04-12 21:53:19.402455-05:00","listeners":{"all":false,"entities":[],"domains":[],"time":true}}}' - - direction: send - payload: '{"subscription": 42, "id": 43, "type": "unsubscribe_events"}' - - direction: recv - payload: '{"id":43,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"trigger": {"platform": "time", "at": "21:53:19"}, "id": 44, "type": - "subscribe_trigger"}' - - direction: recv - payload: '{"id":44,"type":"result","success":true,"result":null}' - - direction: recv - payload: '{"id":44,"type":"event","event":{"variables":{"trigger":{"id":"0","idx":"0","alias":null,"platform":"time","now":"2026-04-12T21:53:19.295578-05:00","description":"time","entity_id":null}},"context":null}}' - - direction: send - payload: '{"subscription": 44, "id": 45, "type": "unsubscribe_events"}' - - direction: recv - payload: '{"id":45,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"id": 46, "type": "config_entries/subscribe"}' - - direction: recv - payload: '{"id":46,"type":"result","success":true,"result":null}' - - direction: recv - payload: '{"id":46,"type":"event","event":[{"type":null,"entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' - - direction: send - payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": "user", - "id": 47, "type": "config_entries/disable"}' - - direction: recv - payload: '{"id":46,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"unload_in_progress","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' - - direction: recv - payload: '{"id":46,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"not_loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' - - direction: recv - payload: '{"id":47,"type":"result","success":true,"result":{"require_restart":false}}' - - direction: send - payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": null, - "id": 48, "type": "config_entries/disable"}' - - direction: recv - payload: '{"id":46,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"setup_in_progress","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' - - direction: recv - payload: '{"id":46,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' - - direction: recv - payload: '{"id":48,"type":"result","success":true,"result":{"require_restart":false}}' - - direction: send - payload: '{"subscription": 46, "id": 49, "type": "unsubscribe_events"}' - - direction: recv - payload: '{"id":49,"type":"result","success":true,"result":null}' -- url: ws://127.0.0.1:8123/api/websocket - frames: - - direction: recv - payload: '{"type":"auth_required","ha_version":"2026.3.1"}' - - direction: send - payload: '{"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk", - "type": "auth"}' - - direction: recv - payload: '{"type":"auth_ok","ha_version":"2026.3.1"}' - - direction: send - payload: '{"features": {}, "id": 1, "type": "supported_features"}' - - direction: recv - payload: '{"id":1,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"template": "The sun is {{ states(\"sun.sun\").replace(\"_\", \" the - \") }}.", "report_errors": true, "id": 2, "type": "render_template"}' - - direction: recv - payload: '{"id":2,"type":"result","success":true,"result":null}' - - direction: recv - payload: '{"id":2,"type":"event","event":{"result":"The sun is below the horizon.","listeners":{"all":false,"entities":["sun.sun"],"domains":[],"time":false}}}' - - direction: send - payload: '{"subscription": 2, "id": 3, "type": "unsubscribe_events"}' - - direction: recv - payload: '{"id":3,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"id": 4, "type": "get_config"}' - - direction: recv - payload: '{"id":4,"type":"result","success":true,"result":{"allowlist_external_dirs":["/config/www","/media"],"allowlist_external_urls":[],"components":["history","notify","weather","counter","input_button","automation","recorder","repairs","http","logger","labs","input_text","image_upload","input_select","script","api","auth","sun.sensor","diagnostics","blueprint","websocket_api","tag","lovelace","file_upload","brands","radio_browser","person","schedule","met.weather","zone","backup.sensor","application_credentials","scene","input_boolean","persistent_notification","input_number","trace","system_health","event","device_automation","sun","backup","sun.binary_sensor","search","network","hardware","analytics","homeassistant.scene","homeassistant","sensor","logbook","backup.event","input_datetime","met","config","system_log","timer","onboarding","frontend","binary_sensor"],"config_dir":"/config","config_source":"storage","country":"US","currency":"USD","debug":false,"elevation":1000,"external_url":null,"internal_url":null,"language":"en","latitude":52.3731339,"location_name":"Testing - Server","longitude":4.8903147,"radius":100,"recovery_mode":false,"safe_mode":false,"state":"RUNNING","time_zone":"America/Chicago","unit_system":{"length":"km","accumulated_precipitation":"mm","area":"m²","mass":"g","pressure":"Pa","temperature":"°C","volume":"L","wind_speed":"m/s"},"version":"2026.3.1","whitelist_external_dirs":["/config/www","/media"]}}' - - direction: send - payload: '{"id": 5, "type": "get_states"}' - - direction: recv - payload: '{"id":5,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 6, "type": "get_states"}' - - direction: recv - payload: '{"id":6,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 7, "type": "get_states"}' - - direction: recv - payload: '{"id":7,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 8, "type": "get_states"}' - - direction: recv - payload: '{"id":8,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 9, "type": "get_states"}' - - direction: recv - payload: '{"id":9,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:51:24.303209+00:00","last_reported":"2026-04-13T02:51:24.303209+00:00","last_updated":"2026-04-13T02:51:24.303209+00:00","context":{"id":"01KP2C0F8FMS2NQC4M3WJ0B0MM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:51:24.303335+00:00","last_reported":"2026-04-13T02:51:24.303335+00:00","last_updated":"2026-04-13T02:51:24.303335+00:00","context":{"id":"01KP2C0F8FA4XPCGEWD37QB4YM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:51:24.303447+00:00","last_reported":"2026-04-13T02:51:24.303447+00:00","last_updated":"2026-04-13T02:51:24.303447+00:00","context":{"id":"01KP2C0F8FJE18AA1JHVQZMAFZ","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:51:24.303553+00:00","last_reported":"2026-04-13T02:51:24.303553+00:00","last_updated":"2026-04-13T02:51:24.303553+00:00","context":{"id":"01KP2C0F8F2SSGQJZ8CK1390E0","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:51:24.303661+00:00","last_reported":"2026-04-13T02:51:24.303661+00:00","last_updated":"2026-04-13T02:51:24.303661+00:00","context":{"id":"01KP2C0F8FR5FDDXH1P5SRQJ3Y","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:51:24.303769+00:00","last_reported":"2026-04-13T02:51:24.303769+00:00","last_updated":"2026-04-13T02:51:24.303769+00:00","context":{"id":"01KP2C0F8FKB82E7VH5W0HE2TJ","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.39,"azimuth":49.48,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:51:24.302647+00:00","last_reported":"2026-04-13T02:51:24.302647+00:00","last_updated":"2026-04-13T02:51:24.302647+00:00","context":{"id":"01KP2C0F8EF4AD8QJQ8SVCMCRR","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 10, "type": "get_services"}' - - direction: recv - payload: '{"id":10,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' - - direction: send - payload: '{"id": 11, "type": "get_services"}' - - direction: recv - payload: '{"id":11,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' - - direction: send - payload: '{"id": 12, "type": "config_entries/flow/progress"}' - - direction: recv - payload: '{"id":12,"type":"result","success":true,"result":[]}' - - direction: send - payload: '{"id": 13, "type": "config_entries/get"}' - - direction: recv - payload: '{"id":13,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' - - direction: send - payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": "user", - "id": 14, "type": "config_entries/disable"}' - - direction: recv - payload: '{"id":14,"type":"result","success":true,"result":{"require_restart":false}}' - - direction: send - payload: '{"id": 15, "type": "config_entries/get"}' - - direction: recv - payload: '{"id":15,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"not_loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' - - direction: send - payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": null, - "id": 16, "type": "config_entries/disable"}' - - direction: recv - payload: '{"id":16,"type":"result","success":true,"result":{"require_restart":false}}' - - direction: send - payload: '{"id": 17, "type": "config_entries/get"}' - - direction: recv - payload: '{"id":17,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' - - direction: send - payload: '{"flow_id": "", "title": "", "id": 18, "type": "config_entries/ignore_flow"}' - - direction: recv - payload: '{"id":18,"type":"result","success":false,"error":{"code":"not_found","message":"Config - entry not found"}}' - - direction: send - payload: '{"id": 19, "type": "config_entries/get"}' - - direction: recv - payload: '{"id":19,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' - - direction: send - payload: '{"id": 20, "type": "config_entries/get"}' - - direction: recv - payload: '{"id":20,"type":"result","success":true,"result":[{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0},{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}]}' - - direction: send - payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "id": 21, "type": "config_entries/subentries/list"}' - - direction: recv - payload: '{"id":21,"type":"result","success":true,"result":[]}' - - direction: send - payload: '{"entry_id": "", "subentry_id": "", "id": 22, "type": "config_entries/subentries/delete"}' - - direction: recv - payload: '{"id":22,"type":"result","success":false,"error":{"code":"not_found","message":"Config - entry not found"}}' - - direction: send - payload: '{"id": 23, "type": "get_services"}' - - direction: recv - payload: '{"id":23,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' - - direction: send - payload: '{"domain": "notify", "service": "persistent_notification", "service_data": - {"message": "Your API Test Suite just said hello!", "title": "Test Suite Notifcation"}, - "return_response": true, "id": 24, "type": "call_service"}' - - direction: recv - payload: '{"id":24,"type":"result","success":false,"error":{"code":"service_validation_error","message":"Validation - error: An action which does not return responses can''t be called with return_response=True","translation_key":"service_does_not_support_response","translation_placeholders":{"return_response":"return_response=True"},"translation_domain":"homeassistant"}}' - - direction: send - payload: '{"domain": "notify", "service": "persistent_notification", "service_data": - {"message": "Your API Test Suite just said hello!", "title": "Test Suite Notifcation"}, - "return_response": false, "id": 25, "type": "call_service"}' - - direction: recv - payload: '{"id":25,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YK4WETPTY5B4FBKP08W","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}}' - - direction: send - payload: '{"id": 26, "type": "get_services"}' - - direction: recv - payload: '{"id":26,"type":"result","success":true,"result":{"persistent_notification":{"create":{"fields":{"message":{"required":true,"example":"Please - check your configuration.yaml.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Test - notification","selector":{"text":{"multiline":false,"multiple":false}}},"notification_id":{"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss":{"fields":{"notification_id":{"required":true,"example":1234,"selector":{"text":{"multiline":false,"multiple":false}}}}},"dismiss_all":{"fields":{}}},"homeassistant":{"save_persistent_states":{"fields":{}},"turn_off":{"fields":{},"target":{}},"turn_on":{"fields":{},"target":{}},"toggle":{"fields":{},"target":{}},"stop":{"fields":{}},"restart":{"fields":{}},"check_config":{"fields":{}},"update_entity":{"fields":{"entity_id":{"required":true,"selector":{"entity":{"multiple":true,"reorder":false}}}}},"reload_core_config":{"fields":{}},"set_location":{"fields":{"latitude":{"required":true,"example":32.87336,"selector":{"number":{"mode":"box","min":-90.0,"max":90.0,"step":"any"}}},"longitude":{"required":true,"example":117.22743,"selector":{"number":{"mode":"box","min":-180.0,"max":180.0,"step":"any"}}},"elevation":{"required":false,"example":120,"selector":{"number":{"mode":"box","step":"any"}}}}},"reload_custom_templates":{"fields":{}},"reload_config_entry":{"fields":{"entry_id":{"advanced":true,"required":false,"example":"8955375327824e14ba89e4b29cc3ec9a","selector":{"config_entry":{}}}},"target":{}},"reload_all":{"fields":{}}},"logger":{"set_default_level":{"fields":{"level":{"selector":{"select":{"options":["debug","info","warning","error","fatal","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}}}},"set_level":{"fields":{}}},"system_log":{"clear":{"fields":{}},"write":{"fields":{"message":{"required":true,"example":"Something - went wrong","selector":{"text":{"multiline":false,"multiple":false}}},"level":{"default":"error","selector":{"select":{"options":["debug","info","warning","error","critical"],"translation_key":"level","custom_value":false,"sort":false,"multiple":false}}},"logger":{"example":"mycomponent.myplatform","selector":{"text":{"multiline":false,"multiple":false}}}}}},"frontend":{"set_theme":{"fields":{"name":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}},"name_dark":{"required":false,"example":"default","selector":{"theme":{"include_default":true}}}}},"reload_themes":{"fields":{}}},"recorder":{"purge":{"fields":{"keep_days":{"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}},"repack":{"default":false,"selector":{"boolean":{}}},"apply_filter":{"default":false,"selector":{"boolean":{}}}}},"purge_entities":{"fields":{"entity_id":{"required":false,"selector":{"entity":{"multiple":true,"reorder":false}}},"domains":{"example":"sun","required":false,"selector":{"object":{"multiple":false}}},"entity_globs":{"example":"domain*.object_id*","required":false,"selector":{"object":{"multiple":false}}},"keep_days":{"default":0,"selector":{"number":{"min":0.0,"max":365.0,"unit_of_measurement":"days","step":1.0,"mode":"slider"}}}}},"enable":{"fields":{}},"disable":{"fields":{}},"get_statistics":{"fields":{"start_time":{"required":true,"example":"2025-01-01 - 00:00:00","selector":{"datetime":{}}},"end_time":{"required":false,"example":"2025-01-02 - 00:00:00","selector":{"datetime":{}}},"statistic_ids":{"required":true,"example":["sensor.energy_consumption","sensor.temperature"],"selector":{"statistic":{"multiple":true}}},"period":{"required":true,"example":"hour","selector":{"select":{"options":["5minute","hour","day","week","month","year"],"custom_value":false,"sort":false,"multiple":false}}},"types":{"required":true,"example":["mean","sum"],"selector":{"select":{"options":["change","last_reset","max","mean","min","state","sum"],"multiple":true,"custom_value":false,"sort":false}}},"units":{"required":false,"example":{"energy":"kWh","temperature":"°C"},"selector":{"object":{"multiple":false}}}},"response":{"optional":false}}},"notify":{"send_message":{"fields":{"message":{"required":true,"selector":{"text":{"multiline":false,"multiple":false}}},"title":{"required":false,"selector":{"text":{"multiline":false,"multiple":false}},"filter":{"supported_features":[1]}}},"target":{"entity":[{"domain":["notify"]}]}},"persistent_notification":{"fields":{"message":{"required":true,"example":"The - garage door has been open for 10 minutes.","selector":{"text":{"multiline":false,"multiple":false}}},"title":{"example":"Your - Garage Door Friend","selector":{"text":{"multiline":false,"multiple":false}}},"data":{"example":"platform - specific","selector":{"object":{"multiple":false}}}}}},"scene":{"reload":{"fields":{}},"apply":{"fields":{"entities":{"required":true,"example":"light.kitchen: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 80\n","selector":{"object":{"multiple":false}}},"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}}},"create":{"fields":{"scene_id":{"required":true,"example":"all_lights","selector":{"text":{"multiline":false,"multiple":false}}},"entities":{"advanced":true,"example":"light.tv_back_light: - \"on\"\nlight.ceiling:\n state: \"on\"\n brightness: 200\n","selector":{"object":{"multiple":false}}},"snapshot_entities":{"example":"- - light.ceiling\n- light.kitchen\n","selector":{"entity":{"multiple":true,"reorder":false}}}}},"delete":{"fields":{},"target":{"entity":[{"integration":"homeassistant","domain":["scene"]}]}},"turn_on":{"fields":{"transition":{"selector":{"number":{"min":0.0,"max":300.0,"unit_of_measurement":"seconds","step":1.0,"mode":"slider"}}}},"target":{"entity":[{"domain":["scene"]}]}}},"automation":{"trigger":{"fields":{"skip_condition":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["automation"]}]}},"turn_off":{"fields":{"stop_actions":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["automation"]}]}},"reload":{"fields":{}}},"logbook":{"log":{"fields":{"name":{"required":true,"example":"Kitchen","selector":{"text":{"multiline":false,"multiple":false}}},"message":{"required":true,"example":"is - being used","selector":{"text":{"multiline":false,"multiple":false}}},"entity_id":{"selector":{"entity":{"reorder":false,"multiple":false}}},"domain":{"example":"light","selector":{"text":{"multiline":false,"multiple":false}}}}}},"script":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["script"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["script"]}]}}},"zone":{"reload":{"fields":{}}},"input_number":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"step":0.001,"mode":"box"}}}},"target":{"entity":[{"domain":["input_number"]}]}},"increment":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["input_number"]}]}}},"person":{"reload":{"fields":{}}},"backup":{"create":{"fields":{}},"create_automatic":{"fields":{}}},"weather":{"get_forecasts":{"fields":{"type":{"required":true,"selector":{"select":{"options":["daily","hourly","twice_daily"],"translation_key":"forecast_type","custom_value":false,"sort":false,"multiple":false}}}},"target":{"entity":[{"domain":["weather"],"supported_features":[1,2,4]}]},"response":{"optional":false}}},"counter":{"increment":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"decrement":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"reset":{"fields":{},"target":{"entity":[{"domain":["counter"]}]}},"set_value":{"fields":{"value":{"required":true,"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["counter"]}]}}},"input_button":{"reload":{"fields":{}},"press":{"fields":{},"target":{"entity":[{"domain":["input_button"]}]}}},"input_text":{"reload":{"fields":{}},"set_value":{"fields":{"value":{"required":true,"example":"This - is an example text","selector":{"text":{"multiline":false,"multiple":false}}}},"target":{"entity":[{"domain":["input_text"]}]}}},"input_select":{"reload":{"fields":{}},"select_first":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_last":{"fields":{},"target":{"entity":[{"domain":["input_select"]}]}},"select_next":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_option":{"fields":{"option":{"required":true,"example":"\"Item - A\"","selector":{"state":{"hide_states":["unavailable","unknown"],"multiple":false}}}},"target":{"entity":[{"domain":["input_select"]}]}},"select_previous":{"fields":{"cycle":{"default":true,"selector":{"boolean":{}}}},"target":{"entity":[{"domain":["input_select"]}]}},"set_options":{"fields":{"options":{"required":true,"example":"[\"Item - A\", \"Item B\", \"Item C\"]","selector":{"text":{"multiple":true,"multiline":false}}}},"target":{"entity":[{"domain":["input_select"]}]}}},"input_datetime":{"reload":{"fields":{}},"set_datetime":{"fields":{"date":{"example":"\"2019-04-20\"","selector":{"text":{"multiline":false,"multiple":false}}},"time":{"example":"\"05:04:20\"","selector":{"time":{}}},"datetime":{"example":"\"2019-04-20 - 05:04:20\"","selector":{"text":{"multiline":false,"multiple":false}}},"timestamp":{"selector":{"number":{"min":0.0,"max":9.223372036854776e18,"mode":"box","step":1.0}}}},"target":{"entity":[{"domain":["input_datetime"]}]}}},"schedule":{"reload":{"fields":{}},"get_schedule":{"fields":{},"target":{"entity":[{"domain":["schedule"]}]},"response":{"optional":false}}},"timer":{"reload":{"fields":{}},"start":{"fields":{"duration":{"example":"00:01:00 - or 60","selector":{"duration":{"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}},"pause":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"cancel":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"finish":{"fields":{},"target":{"entity":[{"domain":["timer"]}]}},"change":{"fields":{"duration":{"default":0,"required":true,"example":"00:01:00, - 60 or -60","selector":{"duration":{"allow_negative":true,"enable_second":true}}}},"target":{"entity":[{"domain":["timer"]}]}}},"input_boolean":{"reload":{"fields":{}},"turn_on":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"turn_off":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}},"toggle":{"fields":{},"target":{"entity":[{"domain":["input_boolean"]}]}}}}}' - - direction: send - payload: '{"domain": "weather", "service": "get_forecasts", "service_data": {"entity_id": - "weather.forecast_home", "type": "hourly"}, "return_response": true, "id": 27, - "type": "call_service"}' - - direction: recv - payload: '{"id":27,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YKG1PRSM4A1BHJ0FPH9","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"},"response":{"weather.forecast_home":{"forecast":[{"condition":"cloudy","datetime":"2026-04-13T03:00:00+00:00","wind_bearing":156.1,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.1,"wind_speed":5.8,"precipitation":0.0,"humidity":89},{"condition":"partlycloudy","datetime":"2026-04-13T04:00:00+00:00","wind_bearing":165.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.3,"wind_speed":5.4,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T05:00:00+00:00","wind_bearing":150.3,"cloud_coverage":100.0,"uv_index":0.0,"temperature":-0.6,"wind_speed":5.0,"precipitation":0.0,"humidity":91},{"condition":"cloudy","datetime":"2026-04-13T06:00:00+00:00","wind_bearing":115.2,"cloud_coverage":100.0,"uv_index":0.2,"temperature":0.4,"wind_speed":6.5,"precipitation":0.0,"humidity":90},{"condition":"cloudy","datetime":"2026-04-13T07:00:00+00:00","wind_bearing":76.3,"cloud_coverage":100.0,"uv_index":0.6,"temperature":1.7,"wind_speed":5.0,"precipitation":0.0,"humidity":87},{"condition":"cloudy","datetime":"2026-04-13T08:00:00+00:00","wind_bearing":76.4,"cloud_coverage":100.0,"uv_index":1.3,"temperature":3.6,"wind_speed":5.8,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T09:00:00+00:00","wind_bearing":77.1,"cloud_coverage":100.0,"uv_index":2.2,"temperature":5.3,"wind_speed":6.8,"precipitation":0.0,"humidity":70},{"condition":"cloudy","datetime":"2026-04-13T10:00:00+00:00","wind_bearing":78.0,"cloud_coverage":100.0,"uv_index":3.0,"temperature":6.4,"wind_speed":7.6,"precipitation":0.0,"humidity":60},{"condition":"cloudy","datetime":"2026-04-13T11:00:00+00:00","wind_bearing":74.6,"cloud_coverage":100.0,"uv_index":3.5,"temperature":7.3,"wind_speed":8.3,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T12:00:00+00:00","wind_bearing":61.9,"cloud_coverage":100.0,"uv_index":3.4,"temperature":7.8,"wind_speed":8.3,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T13:00:00+00:00","wind_bearing":51.4,"cloud_coverage":100.0,"uv_index":2.9,"temperature":7.7,"wind_speed":9.4,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T14:00:00+00:00","wind_bearing":41.8,"cloud_coverage":100.0,"uv_index":2.2,"temperature":7.5,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T15:00:00+00:00","wind_bearing":54.7,"cloud_coverage":100.0,"uv_index":1.3,"temperature":7.3,"wind_speed":9.7,"precipitation":0.0,"humidity":50},{"condition":"cloudy","datetime":"2026-04-13T16:00:00+00:00","wind_bearing":85.4,"cloud_coverage":100.0,"uv_index":0.6,"temperature":6.8,"wind_speed":9.0,"precipitation":0.0,"humidity":53},{"condition":"cloudy","datetime":"2026-04-13T17:00:00+00:00","wind_bearing":87.5,"cloud_coverage":100.0,"uv_index":0.2,"temperature":5.9,"wind_speed":9.0,"precipitation":0.0,"humidity":61},{"condition":"cloudy","datetime":"2026-04-13T18:00:00+00:00","wind_bearing":46.6,"cloud_coverage":100.0,"uv_index":0.0,"temperature":5.0,"wind_speed":10.1,"precipitation":0.0,"humidity":76},{"condition":"cloudy","datetime":"2026-04-13T19:00:00+00:00","wind_bearing":39.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":4.2,"wind_speed":8.6,"precipitation":0.0,"humidity":80},{"condition":"cloudy","datetime":"2026-04-13T20:00:00+00:00","wind_bearing":107.5,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.5,"wind_speed":5.4,"precipitation":0.0,"humidity":86},{"condition":"cloudy","datetime":"2026-04-13T21:00:00+00:00","wind_bearing":132.2,"cloud_coverage":100.0,"uv_index":0.0,"temperature":3.1,"wind_speed":4.7,"precipitation":0.0,"humidity":89},{"condition":"cloudy","datetime":"2026-04-13T22:00:00+00:00","wind_bearing":196.7,"cloud_coverage":94.5,"uv_index":0.0,"temperature":2.4,"wind_speed":3.6,"precipitation":0.0,"humidity":92},{"condition":"clear-night","datetime":"2026-04-13T23:00:00+00:00","wind_bearing":242.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":1.3,"wind_speed":5.4,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T00:00:00+00:00","wind_bearing":241.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.7,"wind_speed":6.1,"precipitation":0.0,"humidity":94},{"condition":"clear-night","datetime":"2026-04-14T01:00:00+00:00","wind_bearing":235.4,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.2,"wind_speed":6.1,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T02:00:00+00:00","wind_bearing":246.9,"cloud_coverage":0.0,"uv_index":0.0,"temperature":0.1,"wind_speed":6.8,"precipitation":0.0,"humidity":95},{"condition":"clear-night","datetime":"2026-04-14T03:00:00+00:00","wind_bearing":259.6,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-0.2,"wind_speed":7.9,"precipitation":0.0,"humidity":96},{"condition":"clear-night","datetime":"2026-04-14T04:00:00+00:00","wind_bearing":283.4,"cloud_coverage":0.8,"uv_index":0.0,"temperature":-0.4,"wind_speed":7.6,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T05:00:00+00:00","wind_bearing":296.2,"cloud_coverage":0.0,"uv_index":0.0,"temperature":-1.0,"wind_speed":6.8,"precipitation":0.0,"humidity":99},{"condition":"sunny","datetime":"2026-04-14T06:00:00+00:00","wind_bearing":294.3,"cloud_coverage":0.0,"uv_index":0.2,"temperature":1.2,"wind_speed":7.9,"precipitation":0.0,"humidity":97},{"condition":"sunny","datetime":"2026-04-14T07:00:00+00:00","wind_bearing":290.8,"cloud_coverage":0.0,"uv_index":0.6,"temperature":3.1,"wind_speed":6.8,"precipitation":0.0,"humidity":92},{"condition":"sunny","datetime":"2026-04-14T08:00:00+00:00","wind_bearing":299.7,"cloud_coverage":0.0,"uv_index":1.3,"temperature":4.7,"wind_speed":7.6,"precipitation":0.0,"humidity":80},{"condition":"sunny","datetime":"2026-04-14T09:00:00+00:00","wind_bearing":292.0,"cloud_coverage":0.0,"uv_index":2.1,"temperature":5.9,"wind_speed":6.1,"precipitation":0.0,"humidity":70},{"condition":"sunny","datetime":"2026-04-14T10:00:00+00:00","wind_bearing":273.7,"cloud_coverage":5.5,"uv_index":2.9,"temperature":6.9,"wind_speed":5.8,"precipitation":0.0,"humidity":63},{"condition":"partlycloudy","datetime":"2026-04-14T11:00:00+00:00","wind_bearing":266.8,"cloud_coverage":14.8,"uv_index":3.4,"temperature":7.7,"wind_speed":7.9,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T12:00:00+00:00","wind_bearing":268.4,"cloud_coverage":35.2,"uv_index":3.5,"temperature":8.2,"wind_speed":9.4,"precipitation":0.0,"humidity":56},{"condition":"partlycloudy","datetime":"2026-04-14T13:00:00+00:00","wind_bearing":276.8,"cloud_coverage":44.5,"uv_index":3.1,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T14:00:00+00:00","wind_bearing":284.2,"cloud_coverage":49.2,"uv_index":2.3,"temperature":8.1,"wind_speed":9.7,"precipitation":0.0,"humidity":53},{"condition":"partlycloudy","datetime":"2026-04-14T15:00:00+00:00","wind_bearing":294.2,"cloud_coverage":25.0,"uv_index":1.5,"temperature":7.8,"wind_speed":8.6,"precipitation":0.0,"humidity":55},{"condition":"partlycloudy","datetime":"2026-04-14T16:00:00+00:00","wind_bearing":293.2,"cloud_coverage":53.1,"uv_index":0.8,"temperature":7.3,"wind_speed":7.6,"precipitation":0.0,"humidity":58},{"condition":"partlycloudy","datetime":"2026-04-14T17:00:00+00:00","wind_bearing":297.4,"cloud_coverage":29.7,"uv_index":0.3,"temperature":6.6,"wind_speed":6.5,"precipitation":0.0,"humidity":62},{"condition":"partlycloudy","datetime":"2026-04-14T18:00:00+00:00","wind_bearing":314.1,"cloud_coverage":54.7,"uv_index":0.0,"temperature":5.3,"wind_speed":6.1,"precipitation":0.0,"humidity":72},{"condition":"partlycloudy","datetime":"2026-04-14T19:00:00+00:00","wind_bearing":36.4,"cloud_coverage":94.5,"uv_index":0.0,"temperature":3.8,"wind_speed":5.8,"precipitation":0.0,"humidity":84},{"condition":"partlycloudy","datetime":"2026-04-14T20:00:00+00:00","wind_bearing":62.6,"cloud_coverage":71.9,"uv_index":0.0,"temperature":3.0,"wind_speed":6.1,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T21:00:00+00:00","wind_bearing":86.1,"cloud_coverage":92.2,"uv_index":0.0,"temperature":2.6,"wind_speed":7.9,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-14T22:00:00+00:00","wind_bearing":100.7,"cloud_coverage":53.9,"uv_index":0.0,"temperature":2.2,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-14T23:00:00+00:00","wind_bearing":98.7,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.8,"wind_speed":9.7,"precipitation":0.0,"humidity":86},{"condition":"partlycloudy","datetime":"2026-04-15T00:00:00+00:00","wind_bearing":106.5,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.5,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"partlycloudy","datetime":"2026-04-15T01:00:00+00:00","wind_bearing":118.4,"cloud_coverage":14.1,"uv_index":0.0,"temperature":1.2,"wind_speed":10.8,"precipitation":0.0,"humidity":87},{"condition":"clear-night","datetime":"2026-04-15T02:00:00+00:00","wind_bearing":136.9,"cloud_coverage":0.8,"uv_index":0.0,"temperature":0.8,"wind_speed":10.4,"precipitation":0.0,"humidity":87}]}}}}' - - direction: send - payload: '{"id": 28, "type": "get_states"}' - - direction: recv - payload: '{"id":28,"type":"result","success":true,"result":[{"entity_id":"zone.home","state":"0","attributes":{"latitude":52.3731339,"longitude":4.8903147,"radius":100,"passive":false,"persons":[],"editable":true,"icon":"mdi:home","friendly_name":"Testing - Server"},"last_changed":"2026-04-13T02:13:01.234025+00:00","last_reported":"2026-04-13T02:13:01.234025+00:00","last_updated":"2026-04-13T02:13:01.234025+00:00","context":{"id":"01KP29T65JE1AR53GSW6PBSYEQ","parent_id":null,"user_id":null}},{"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test - User"},"last_changed":"2026-04-13T02:13:01.235291+00:00","last_reported":"2026-04-13T02:13:01.935786+00:00","last_updated":"2026-04-13T02:13:01.935786+00:00","context":{"id":"01KP29T6VF2G2BKBASRQTWZMVP","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dawn","state":"2026-04-13T04:04:09+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dawn"},"last_changed":"2026-04-13T02:53:18.290627+00:00","last_reported":"2026-04-13T02:53:18.290627+00:00","last_updated":"2026-04-13T02:53:18.290627+00:00","context":{"id":"01KP2C3YJJXNZEF51570MP61EB","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_dusk","state":"2026-04-13T19:19:07+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next dusk"},"last_changed":"2026-04-13T02:53:18.290748+00:00","last_reported":"2026-04-13T02:53:18.290748+00:00","last_updated":"2026-04-13T02:53:18.290748+00:00","context":{"id":"01KP2C3YJJ0SGAJ1T8J3C0PGXM","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_midnight","state":"2026-04-13T23:40:43+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next midnight"},"last_changed":"2026-04-13T02:53:18.290926+00:00","last_reported":"2026-04-13T02:53:18.290926+00:00","last_updated":"2026-04-13T02:53:18.290926+00:00","context":{"id":"01KP2C3YJJH1CMPARS9MDH6FJT","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_noon","state":"2026-04-13T11:41:04+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next noon"},"last_changed":"2026-04-13T02:53:18.291008+00:00","last_reported":"2026-04-13T02:53:18.291008+00:00","last_updated":"2026-04-13T02:53:18.291008+00:00","context":{"id":"01KP2C3YJK3K5E95296RG0A6FS","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_rising","state":"2026-04-13T04:42:51+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next rising"},"last_changed":"2026-04-13T02:53:18.291063+00:00","last_reported":"2026-04-13T02:53:18.291063+00:00","last_updated":"2026-04-13T02:53:18.291063+00:00","context":{"id":"01KP2C3YJK3RMQ57Z03RVJV154","parent_id":null,"user_id":null}},{"entity_id":"sensor.sun_next_setting","state":"2026-04-13T18:40:12+00:00","attributes":{"device_class":"timestamp","friendly_name":"Sun - Next setting"},"last_changed":"2026-04-13T02:53:18.291118+00:00","last_reported":"2026-04-13T02:53:18.291118+00:00","last_updated":"2026-04-13T02:53:18.291118+00:00","context":{"id":"01KP2C3YJKVGYFMF06N2WWJBQ5","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338337+00:00","last_reported":"2026-04-13T02:13:01.338337+00:00","last_updated":"2026-04-13T02:13:01.338337+00:00","context":{"id":"01KP29T68T3GN0AE0T0GRYA3HF","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338411+00:00","last_reported":"2026-04-13T02:13:01.338411+00:00","last_updated":"2026-04-13T02:13:01.338411+00:00","context":{"id":"01KP29T68TJ3RWN71AA1D9M0R3","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338479+00:00","last_reported":"2026-04-13T02:13:01.338479+00:00","last_updated":"2026-04-13T02:13:01.338479+00:00","context":{"id":"01KP29T68TP8M0VNWW4V7GAKAN","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338546+00:00","last_reported":"2026-04-13T02:13:01.338546+00:00","last_updated":"2026-04-13T02:13:01.338546+00:00","context":{"id":"01KP29T68TDNZPTH9CR2N3HMP4","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:01.338614+00:00","last_reported":"2026-04-13T02:13:01.338614+00:00","last_updated":"2026-04-13T02:13:01.338614+00:00","context":{"id":"01KP29T68TABK9S3S5TF9B0ATA","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:01.338676+00:00","last_reported":"2026-04-13T02:13:01.338676+00:00","last_updated":"2026-04-13T02:13:01.338676+00:00","context":{"id":"01KP29T68THMCKRG4KNNCZX5W9","parent_id":null,"user_id":null}},{"entity_id":"weather.forecast_home","state":"partlycloudy","attributes":{"temperature":0.3,"dew_point":-1.7,"temperature_unit":"°C","humidity":88,"cloud_coverage":100.0,"uv_index":0.0,"pressure":1014.8,"pressure_unit":"hPa","wind_bearing":149.8,"wind_speed":6.5,"wind_speed_unit":"km/h","visibility_unit":"km","precipitation_unit":"mm","attribution":"Weather - forecast from met.no, delivered by the Norwegian Meteorological Institute.","friendly_name":"Forecast - Home","supported_features":3},"last_changed":"2026-04-13T02:13:01.877554+00:00","last_reported":"2026-04-13T02:13:01.877554+00:00","last_updated":"2026-04-13T02:13:01.877554+00:00","context":{"id":"01KP29T6SN07MNSQDJQ8MQTYV5","parent_id":null,"user_id":null}},{"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup - Automatic backup"},"last_changed":"2026-04-13T02:13:01.945551+00:00","last_reported":"2026-04-13T02:13:01.945551+00:00","last_updated":"2026-04-13T02:13:01.945551+00:00","context":{"id":"01KP29T6VS541ND7X87WYW6582","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_backup_manager_state","state":"idle","attributes":{"options":["idle","create_backup","blocked","receive_backup","restore_backup"],"device_class":"enum","friendly_name":"Backup - Backup Manager state"},"last_changed":"2026-04-13T02:13:01.945898+00:00","last_reported":"2026-04-13T02:13:01.945898+00:00","last_updated":"2026-04-13T02:13:01.945898+00:00","context":{"id":"01KP29T6VS1PRS2AV47VDXZW51","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_next_scheduled_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Next scheduled automatic backup"},"last_changed":"2026-04-13T02:13:01.946038+00:00","last_reported":"2026-04-13T02:13:01.946038+00:00","last_updated":"2026-04-13T02:13:01.946038+00:00","context":{"id":"01KP29T6VTAWQ3HY175AW2DGNQ","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_successful_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last successful automatic backup"},"last_changed":"2026-04-13T02:13:01.946177+00:00","last_reported":"2026-04-13T02:13:01.946177+00:00","last_updated":"2026-04-13T02:13:01.946177+00:00","context":{"id":"01KP29T6VTTMGRTW6NR7H9CZFX","parent_id":null,"user_id":null}},{"entity_id":"sensor.backup_last_attempted_automatic_backup","state":"unknown","attributes":{"device_class":"timestamp","friendly_name":"Backup - Last attempted automatic backup"},"last_changed":"2026-04-13T02:13:01.946297+00:00","last_reported":"2026-04-13T02:13:01.946297+00:00","last_updated":"2026-04-13T02:13:01.946297+00:00","context":{"id":"01KP29T6VTQ8W9ECK03W5DRGST","parent_id":null,"user_id":null}},{"entity_id":"sun.red_sun","state":"In - the palm of my hand.","attributes":{},"last_changed":"2026-04-13T02:51:25.437129+00:00","last_reported":"2026-04-13T02:51:25.437129+00:00","last_updated":"2026-04-13T02:51:25.437129+00:00","context":{"id":"01KP2C0GBXAD36J8V7VGJ780S2","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},{"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T02:13:24.491614+00:00","last_reported":"2026-04-13T02:13:24.491614+00:00","last_updated":"2026-04-13T02:13:24.491614+00:00","context":{"id":"01KP29TWWBMDX60QCTDANXG9B8","parent_id":null,"user_id":null}},{"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T02:13:24.499588+00:00","last_reported":"2026-04-13T02:13:24.499588+00:00","last_updated":"2026-04-13T02:13:24.499588+00:00","context":{"id":"01KP29TWWK5PB0ZHQ6HVTVCQ65","parent_id":null,"user_id":null}},{"entity_id":"sun.sun","state":"below_horizon","attributes":{"next_dawn":"2026-04-13T04:04:09.445359+00:00","next_dusk":"2026-04-13T19:19:07.658611+00:00","next_midnight":"2026-04-13T23:40:43+00:00","next_noon":"2026-04-13T11:41:04+00:00","next_rising":"2026-04-13T04:42:51.046497+00:00","next_setting":"2026-04-13T18:40:12.835183+00:00","elevation":-16.17,"azimuth":49.91,"rising":true,"friendly_name":"Sun"},"last_changed":"2026-04-13T02:53:18.290066+00:00","last_reported":"2026-04-13T02:53:18.290066+00:00","last_updated":"2026-04-13T02:53:18.290066+00:00","context":{"id":"01KP2C3YJJCKY3TG4T8YKK9X5A","parent_id":null,"user_id":null}}]}' - - direction: send - payload: '{"id": 29, "type": "config/entity_registry/list"}' - - direction: recv - payload: '{"id":29,"type": "result","success":true,"result": [{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":0.0,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"person.test_user","has_entity_name":false,"hidden_by":null,"icon":null,"id":"e6de57e591560fad68f1c3b52bf0b295","labels":[],"modified_at":0.0,"name":null,"options":{},"original_name":"Test - User","platform":"person","translation_key":null,"unique_id":"test_user"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.346326,"name":null,"options":{},"original_name":"Next - dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.78036,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dusk","has_entity_name":true,"hidden_by":null,"icon":null,"id":"e1a35874a09227109783c6d1301a10cf","labels":[],"modified_at":1776048798.288781,"name":null,"options":{},"original_name":"Next - dusk","platform":"sun","translation_key":"next_dusk","unique_id":"5f8426fa502435857743f302651753c9-next_dusk"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780603,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_midnight","has_entity_name":true,"hidden_by":null,"icon":null,"id":"9ec059b13886380e2d5d4a9002e89879","labels":[],"modified_at":1776048798.28882,"name":null,"options":{},"original_name":"Next - midnight","platform":"sun","translation_key":"next_midnight","unique_id":"5f8426fa502435857743f302651753c9-next_midnight"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780796,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_noon","has_entity_name":true,"hidden_by":null,"icon":null,"id":"04bc6ee0081da1191cb27e2ee5842148","labels":[],"modified_at":1776048798.288848,"name":null,"options":{},"original_name":"Next - noon","platform":"sun","translation_key":"next_noon","unique_id":"5f8426fa502435857743f302651753c9-next_noon"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780976,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"ec87eec8ebe365ec0cd1119962627570","labels":[],"modified_at":1776048798.288874,"name":null,"options":{},"original_name":"Next - rising","platform":"sun","translation_key":"next_rising","unique_id":"5f8426fa502435857743f302651753c9-next_rising"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781147,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_setting","has_entity_name":true,"hidden_by":null,"icon":null,"id":"594acbedee290ea279f1d63cf6efbb3b","labels":[],"modified_at":1776048798.288898,"name":null,"options":{},"original_name":"Next - setting","platform":"sun","translation_key":"next_setting","unique_id":"5f8426fa502435857743f302651753c9-next_setting"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.7813,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_elevation","has_entity_name":true,"hidden_by":null,"icon":null,"id":"0df1d222a5fedd8d5e62a2ff2be79094","labels":[],"modified_at":1776046381.250753,"name":null,"options":{},"original_name":"Solar - elevation","platform":"sun","translation_key":"solar_elevation","unique_id":"5f8426fa502435857743f302651753c9-solar_elevation"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781397,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_azimuth","has_entity_name":true,"hidden_by":null,"icon":null,"id":"104de75b64e950af398ec4fe9998338c","labels":[],"modified_at":1776046381.250803,"name":null,"options":{},"original_name":"Solar - azimuth","platform":"sun","translation_key":"solar_azimuth","unique_id":"5f8426fa502435857743f302651753c9-solar_azimuth"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781483,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"888993d87923ff452ad1e53f6b3a943f","labels":[],"modified_at":1734400728.781506,"name":null,"options":{},"original_name":"Solar - rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":"01JFJGH76SD417XC4YJTG8QJWB","config_subentry_id":null,"created_at":1734714367.780994,"device_id":"6586dbdeb10a88ae4603b47e600c6124","disabled_by":null,"entity_category":null,"entity_id":"weather.forecast_home","has_entity_name":true,"hidden_by":null,"icon":null,"id":"6ae588672696a2601b0152f22ee235f3","labels":[],"modified_at":1734714367.781055,"name":null,"options":{},"original_name":"Home","platform":"met","translation_key":null,"unique_id":"52.3731339-4.8903147"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1776046381.249625,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"binary_sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"650017b39ced3c74c0cd7bafb5ad5a57","labels":[],"modified_at":1776046381.24967,"name":null,"options":{},"original_name":"Solar - rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338277,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"4d295ce067b386e8601e868e5b071e92","labels":[],"modified_at":1776046381.338296,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338357,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"24ac520911e2d3b522a12291161b78c2","labels":[],"modified_at":1776046381.338376,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338431,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"fc93bb35a45e27420489a129b4fe38b8","labels":[],"modified_at":1776046381.338446,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338496,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"61e6538380357146fb1cecbb68f00248","labels":[],"modified_at":1776046381.338512,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338564,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"3e82b7b9c95b42b0d3c0e0734a4b1111","labels":[],"modified_at":1776046381.338581,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_4"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.33863,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"7ec85badbe9d5bd0f21183877d745e43","labels":[],"modified_at":1776046381.338647,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_4"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945387,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"event.backup_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b7d0cc277170fa6a7bd4f528374b1317","labels":[],"modified_at":1776046381.945424,"name":null,"options":{},"original_name":"Automatic - backup","platform":"backup","translation_key":"automatic_backup_event","unique_id":"automatic_backup_event"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945778,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_backup_manager_state","has_entity_name":true,"hidden_by":null,"icon":null,"id":"a57e4837e900582b68c14d6cf02cdab1","labels":[],"modified_at":1776046381.945813,"name":null,"options":{},"original_name":"Backup - Manager state","platform":"backup","translation_key":"backup_manager_state","unique_id":"backup_manager_state"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945956,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_next_scheduled_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"064e76bb083bf2cca30865a0ac699279","labels":[],"modified_at":1776046381.945979,"name":null,"options":{},"original_name":"Next - scheduled automatic backup","platform":"backup","translation_key":"next_scheduled_automatic_backup","unique_id":"next_scheduled_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946098,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_successful_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b0c3747840a365bc0223d3eaa9532362","labels":[],"modified_at":1776046381.94612,"name":null,"options":{},"original_name":"Last - successful automatic backup","platform":"backup","translation_key":"last_successful_automatic_backup","unique_id":"last_successful_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946229,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_attempted_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"549177510d127dc95abeb083987ac50d","labels":[],"modified_at":1776046381.946248,"name":null,"options":{},"original_name":"Last - attempted automatic backup","platform":"backup","translation_key":"last_attempted_automatic_backup","unique_id":"last_attempted_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.491479,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"779f6487ac8bc7c5d182f6e9f6969d33","labels":[],"modified_at":1776046404.491511,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_5"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.499467,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"db670347d76ea2ef5bcfd4a28e938b06","labels":[],"modified_at":1776046404.4995,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_5"}]}' - - direction: send - payload: '{"entity_id": "sensor.sun_next_dawn", "id": 30, "type": "config/entity_registry/get"}' - - direction: recv - payload: '{"id":30,"type":"result","success":true,"result":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.346326,"name":null,"options":{},"original_name":"Next - dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}' - - direction: send - payload: '{"entity_id": "sensor.sun_next_dawn", "name": "Async Test Name", "id": - 31, "type": "config/entity_registry/update"}' - - direction: recv - payload: '{"id":31,"type":"result","success":true,"result":{"entity_entry":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.352262,"name":"Async - Test Name","options":{},"original_name":"Next dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}}' - - direction: send - payload: '{"entity_id": "sensor.sun_next_dawn", "name": null, "id": 32, "type": - "config/entity_registry/update"}' - - direction: recv - payload: '{"id":32,"type":"result","success":true,"result":{"entity_entry":{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.352691,"name":null,"options":{},"original_name":"Next - dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn","aliases":[],"capabilities":null,"device_class":null,"original_device_class":"timestamp","original_icon":null}}}' - - direction: send - payload: '{"name": "smoke_registry_remove_test_async", "id": 33, "type": "input_boolean/create"}' - - direction: recv - payload: '{"id":33,"type":"result","success":true,"result":{"id":"smoke_registry_remove_test_async_9","name":"smoke_registry_remove_test_async"}}' - - direction: send - payload: '{"entity_id": "input_boolean.smoke_registry_remove_test_async", "id": - 34, "type": "config/entity_registry/remove"}' - - direction: recv - payload: '{"id":34,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"id": 35, "type": "config/entity_registry/list"}' - - direction: recv - payload: '{"id":35,"type": "result","success":true,"result": [{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":0.0,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"person.test_user","has_entity_name":false,"hidden_by":null,"icon":null,"id":"e6de57e591560fad68f1c3b52bf0b295","labels":[],"modified_at":0.0,"name":null,"options":{},"original_name":"Test - User","platform":"person","translation_key":null,"unique_id":"test_user"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780004,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dawn","has_entity_name":true,"hidden_by":null,"icon":null,"id":"d7e14c775a20078d98703325848bd203","labels":[],"modified_at":1776048798.352691,"name":null,"options":{},"original_name":"Next - dawn","platform":"sun","translation_key":"next_dawn","unique_id":"5f8426fa502435857743f302651753c9-next_dawn"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.78036,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_dusk","has_entity_name":true,"hidden_by":null,"icon":null,"id":"e1a35874a09227109783c6d1301a10cf","labels":[],"modified_at":1776048798.288781,"name":null,"options":{},"original_name":"Next - dusk","platform":"sun","translation_key":"next_dusk","unique_id":"5f8426fa502435857743f302651753c9-next_dusk"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780603,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_midnight","has_entity_name":true,"hidden_by":null,"icon":null,"id":"9ec059b13886380e2d5d4a9002e89879","labels":[],"modified_at":1776048798.28882,"name":null,"options":{},"original_name":"Next - midnight","platform":"sun","translation_key":"next_midnight","unique_id":"5f8426fa502435857743f302651753c9-next_midnight"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780796,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_noon","has_entity_name":true,"hidden_by":null,"icon":null,"id":"04bc6ee0081da1191cb27e2ee5842148","labels":[],"modified_at":1776048798.288848,"name":null,"options":{},"original_name":"Next - noon","platform":"sun","translation_key":"next_noon","unique_id":"5f8426fa502435857743f302651753c9-next_noon"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.780976,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"ec87eec8ebe365ec0cd1119962627570","labels":[],"modified_at":1776048798.288874,"name":null,"options":{},"original_name":"Next - rising","platform":"sun","translation_key":"next_rising","unique_id":"5f8426fa502435857743f302651753c9-next_rising"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781147,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":null,"entity_category":"diagnostic","entity_id":"sensor.sun_next_setting","has_entity_name":true,"hidden_by":null,"icon":null,"id":"594acbedee290ea279f1d63cf6efbb3b","labels":[],"modified_at":1776048798.288898,"name":null,"options":{},"original_name":"Next - setting","platform":"sun","translation_key":"next_setting","unique_id":"5f8426fa502435857743f302651753c9-next_setting"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.7813,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_elevation","has_entity_name":true,"hidden_by":null,"icon":null,"id":"0df1d222a5fedd8d5e62a2ff2be79094","labels":[],"modified_at":1776046381.250753,"name":null,"options":{},"original_name":"Solar - elevation","platform":"sun","translation_key":"solar_elevation","unique_id":"5f8426fa502435857743f302651753c9-solar_elevation"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781397,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_azimuth","has_entity_name":true,"hidden_by":null,"icon":null,"id":"104de75b64e950af398ec4fe9998338c","labels":[],"modified_at":1776046381.250803,"name":null,"options":{},"original_name":"Solar - azimuth","platform":"sun","translation_key":"solar_azimuth","unique_id":"5f8426fa502435857743f302651753c9-solar_azimuth"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1734400728.781483,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"888993d87923ff452ad1e53f6b3a943f","labels":[],"modified_at":1734400728.781506,"name":null,"options":{},"original_name":"Solar - rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":"01JFJGH76SD417XC4YJTG8QJWB","config_subentry_id":null,"created_at":1734714367.780994,"device_id":"6586dbdeb10a88ae4603b47e600c6124","disabled_by":null,"entity_category":null,"entity_id":"weather.forecast_home","has_entity_name":true,"hidden_by":null,"icon":null,"id":"6ae588672696a2601b0152f22ee235f3","labels":[],"modified_at":1734714367.781055,"name":null,"options":{},"original_name":"Home","platform":"met","translation_key":null,"unique_id":"52.3731339-4.8903147"},{"area_id":null,"categories":{},"config_entry_id":"5f8426fa502435857743f302651753c9","config_subentry_id":null,"created_at":1776046381.249625,"device_id":"b3d3fadee11d077d99d948c173631abc","disabled_by":"integration","entity_category":"diagnostic","entity_id":"binary_sensor.sun_solar_rising","has_entity_name":true,"hidden_by":null,"icon":null,"id":"650017b39ced3c74c0cd7bafb5ad5a57","labels":[],"modified_at":1776046381.24967,"name":null,"options":{},"original_name":"Solar - rising","platform":"sun","translation_key":"solar_rising","unique_id":"5f8426fa502435857743f302651753c9-solar_rising"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338277,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"4d295ce067b386e8601e868e5b071e92","labels":[],"modified_at":1776046381.338296,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338357,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_2","has_entity_name":false,"hidden_by":null,"icon":null,"id":"24ac520911e2d3b522a12291161b78c2","labels":[],"modified_at":1776046381.338376,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_2"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338431,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"fc93bb35a45e27420489a129b4fe38b8","labels":[],"modified_at":1776046381.338446,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338496,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_3","has_entity_name":false,"hidden_by":null,"icon":null,"id":"61e6538380357146fb1cecbb68f00248","labels":[],"modified_at":1776046381.338512,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_3"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.338564,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"3e82b7b9c95b42b0d3c0e0734a4b1111","labels":[],"modified_at":1776046381.338581,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_4"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046381.33863,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_4","has_entity_name":false,"hidden_by":null,"icon":null,"id":"7ec85badbe9d5bd0f21183877d745e43","labels":[],"modified_at":1776046381.338647,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_4"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945387,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"event.backup_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b7d0cc277170fa6a7bd4f528374b1317","labels":[],"modified_at":1776046381.945424,"name":null,"options":{},"original_name":"Automatic - backup","platform":"backup","translation_key":"automatic_backup_event","unique_id":"automatic_backup_event"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945778,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_backup_manager_state","has_entity_name":true,"hidden_by":null,"icon":null,"id":"a57e4837e900582b68c14d6cf02cdab1","labels":[],"modified_at":1776046381.945813,"name":null,"options":{},"original_name":"Backup - Manager state","platform":"backup","translation_key":"backup_manager_state","unique_id":"backup_manager_state"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.945956,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_next_scheduled_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"064e76bb083bf2cca30865a0ac699279","labels":[],"modified_at":1776046381.945979,"name":null,"options":{},"original_name":"Next - scheduled automatic backup","platform":"backup","translation_key":"next_scheduled_automatic_backup","unique_id":"next_scheduled_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946098,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_successful_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"b0c3747840a365bc0223d3eaa9532362","labels":[],"modified_at":1776046381.94612,"name":null,"options":{},"original_name":"Last - successful automatic backup","platform":"backup","translation_key":"last_successful_automatic_backup","unique_id":"last_successful_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","config_subentry_id":null,"created_at":1776046381.946229,"device_id":"c0347c7ecbe9909815f9ac84b309b932","disabled_by":null,"entity_category":null,"entity_id":"sensor.backup_last_attempted_automatic_backup","has_entity_name":true,"hidden_by":null,"icon":null,"id":"549177510d127dc95abeb083987ac50d","labels":[],"modified_at":1776046381.946248,"name":null,"options":{},"original_name":"Last - attempted automatic backup","platform":"backup","translation_key":"last_attempted_automatic_backup","unique_id":"last_attempted_automatic_backup"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.491479,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"779f6487ac8bc7c5d182f6e9f6969d33","labels":[],"modified_at":1776046404.491511,"name":null,"options":{},"original_name":"smoke_registry_remove_test","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_5"},{"area_id":null,"categories":{},"config_entry_id":null,"config_subentry_id":null,"created_at":1776046404.499467,"device_id":null,"disabled_by":null,"entity_category":null,"entity_id":"input_boolean.smoke_registry_remove_test_async_5","has_entity_name":false,"hidden_by":null,"icon":null,"id":"db670347d76ea2ef5bcfd4a28e938b06","labels":[],"modified_at":1776046404.4995,"name":null,"options":{},"original_name":"smoke_registry_remove_test_async","platform":"input_boolean","translation_key":null,"unique_id":"smoke_registry_remove_test_async_5"}]}' - - direction: send - payload: '{"event_type": "async_test_event", "id": 36, "type": "subscribe_events"}' - - direction: recv - payload: '{"id":36,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"event_type": "async_test_event", "event_data": {"message": "Triggered - by async websocket client"}, "id": 37, "type": "fire_event"}' - - direction: recv - payload: '{"type":"event","event":{"event_type":"async_test_event","data":{"message":"Triggered - by async websocket client"},"origin":"LOCAL","time_fired":"2026-04-13T02:53:18.401097+00:00","context":{"id":"01KP2C3YP1T3AJR81DTSWGZS2E","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}},"id":36}' - - direction: recv - payload: '{"id":37,"type":"result","success":true,"result":{"context":{"id":"01KP2C3YP1T3AJR81DTSWGZS2E","parent_id":null,"user_id":"e85fc7b7b8924dc9b024ce90ad23799e"}}}' - - direction: send - payload: '{"subscription": 36, "id": 38, "type": "unsubscribe_events"}' - - direction: recv - payload: '{"id":38,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"id": 39, "type": "config_entries/subscribe"}' - - direction: recv - payload: '{"id":39,"type":"result","success":true,"result":null}' - - direction: recv - payload: '{"id":39,"type":"event","event":[{"type":null,"entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":0.0,"entry_id":"bb18b688994e8cfa5e4e880452735628","domain":"radio_browser","modified_at":0.0,"title":"Radio - Browser","source":"onboarding","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":1734714367.193748,"entry_id":"01JFJGH76SD417XC4YJTG8QJWB","domain":"met","modified_at":1734714367.193752,"title":"Home","source":"user","state":"loaded","supports_options":true,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}},{"type":null,"entry":{"created_at":1776046381.939127,"entry_id":"01KP29T6VK1P4KRN33H2QXTXDJ","domain":"backup","modified_at":1776046381.939128,"title":"Backup","source":"system","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' - - direction: send - payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": "user", - "id": 40, "type": "config_entries/disable"}' - - direction: recv - payload: '{"id":39,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"unload_in_progress","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' - - direction: recv - payload: '{"id":39,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"not_loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":"user","reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' - - direction: recv - payload: '{"id":40,"type":"result","success":true,"result":{"require_restart":false}}' - - direction: send - payload: '{"entry_id": "5f8426fa502435857743f302651753c9", "disabled_by": null, - "id": 41, "type": "config_entries/disable"}' - - direction: recv - payload: '{"id":39,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"setup_in_progress","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' - - direction: recv - payload: '{"id":39,"type":"event","event":[{"type":"updated","entry":{"created_at":0.0,"entry_id":"5f8426fa502435857743f302651753c9","domain":"sun","modified_at":0.0,"title":"Sun","source":"import","state":"loaded","supports_options":false,"supports_remove_device":false,"supports_unload":true,"supports_reconfigure":false,"supported_subentry_types":{},"pref_disable_new_entities":false,"pref_disable_polling":false,"disabled_by":null,"reason":null,"error_reason_translation_key":null,"error_reason_translation_placeholders":null,"num_subentries":0}}]}' - - direction: recv - payload: '{"id":41,"type":"result","success":true,"result":{"require_restart":false}}' - - direction: send - payload: '{"subscription": 39, "id": 42, "type": "unsubscribe_events"}' - - direction: recv - payload: '{"id":42,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"template": "{{ (now() + timedelta(seconds=1)) }}", "report_errors": - true, "id": 43, "type": "render_template"}' - - direction: recv - payload: '{"id":43,"type":"result","success":true,"result":null}' - - direction: recv - payload: '{"id":43,"type":"event","event":{"result":"2026-04-12 21:53:20.309822-05:00","listeners":{"all":false,"entities":[],"domains":[],"time":true}}}' - - direction: send - payload: '{"subscription": 43, "id": 44, "type": "unsubscribe_events"}' - - direction: recv - payload: '{"id":44,"type":"result","success":true,"result":null}' - - direction: send - payload: '{"trigger": {"platform": "time", "at": "21:53:20"}, "id": 45, "type": - "subscribe_trigger"}' - - direction: recv - payload: '{"id":45,"type":"result","success":true,"result":null}' - - direction: recv - payload: '{"id":45,"type":"event","event":{"variables":{"trigger":{"id":"0","idx":"0","alias":null,"platform":"time","now":"2026-04-12T21:53:20.403555-05:00","description":"time","entity_id":null}},"context":null}}' - - direction: send - payload: '{"subscription": 45, "id": 46, "type": "unsubscribe_events"}' - - direction: recv - payload: '{"id":46,"type":"result","success":true,"result":null}' -- url: ws://127.0.0.1:8123/api/websocket - frames: - - direction: recv - payload: '{"type":"auth_required","ha_version":"2026.3.1"}' - - direction: send - payload: '{"access_token": "lolthisisawrongtokenforsure", "type": "auth"}' - - direction: recv - payload: '{"type":"auth_invalid","message":"Invalid access token or password"}' -- url: ws://127.0.0.1:8123/api/websocket - frames: - - direction: recv - payload: '{"type":"auth_required","ha_version":"2026.3.1"}' - - direction: send - payload: '{"access_token": "lolthisisawrongtokenforsure", "type": "auth"}' - - direction: recv - payload: '{"type":"auth_invalid","message":"Invalid access token or password"}' diff --git a/cassettes/test_client/test_async_websocket_client_ping.json b/cassettes/test_client/test_async_websocket_client_ping.json new file mode 100644 index 00000000..eb887be8 --- /dev/null +++ b/cassettes/test_client/test_async_websocket_client_ping.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:10:02.986248+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"ping\"}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"pong\"}", + "offset_ms": 15 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_client/test_custom_async_session.json b/cassettes/test_client/test_custom_async_session.json new file mode 100644 index 00000000..346c0dbc --- /dev/null +++ b/cassettes/test_client/test_custom_async_session.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:10:02 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "201" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fdf76d77b024-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:10:02.816235+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:10:02 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:10:02.826100+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_client/test_custom_session.json b/cassettes/test_client/test_custom_session.json new file mode 100644 index 00000000..32f1096d --- /dev/null +++ b/cassettes/test_client/test_custom_session.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:10:02 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "201" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fdf69cf20024-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:10:02.687782+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:10:02 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:10:02.696971+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_client/test_default_async_session.json b/cassettes/test_client/test_default_async_session.json new file mode 100644 index 00000000..9b9ad97d --- /dev/null +++ b/cassettes/test_client/test_default_async_session.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:10:02 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "201" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fdf7da008636-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:10:02.880935+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:10:02 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:10:02.891397+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_client/test_default_session.json b/cassettes/test_client/test_default_session.json new file mode 100644 index 00000000..b98f2232 --- /dev/null +++ b/cassettes/test_client/test_default_session.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:10:02 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "201" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fdf70ca31d89-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:10:02.746572+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:10:02 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:10:02.757991+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_client/test_websocket_client_ping.json b/cassettes/test_client/test_websocket_client_ping.json new file mode 100644 index 00000000..c4a6b88f --- /dev/null +++ b/cassettes/test_client/test_websocket_client_ping.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:10:02.930742+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"ping\"}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"pong\"}", + "offset_ms": 15 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_check_api_config.json b/cassettes/test_endpoints/test_async_check_api_config.json new file mode 100644 index 00000000..281b902f --- /dev/null +++ b/cassettes/test_endpoints/test_async_check_api_config.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:53 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "132" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc43e9df4598-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:53.134131+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:53 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:53.145060+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/config/core/check_config", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:53 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "56" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"result\":\"valid\",\"errors\":null,\"warnings\":null}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/config/core/check_config" + }, + "recorded_at": "2026-04-13T08:08:53.242853+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_delete_entry_subentry.json b/cassettes/test_endpoints/test_async_delete_entry_subentry.json new file mode 100644 index 00000000..a464006a --- /dev/null +++ b/cassettes/test_endpoints/test_async_delete_entry_subentry.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:56.942003+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"\", \"subentry_id\": \"\", \"id\": 2, \"type\": \"config_entries/subentries/delete\"}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"not_found\",\"message\":\"Config entry not found\"}}", + "offset_ms": 16 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_disable_enable_config_entry.json b/cassettes/test_endpoints/test_async_disable_enable_config_entry.json new file mode 100644 index 00000000..e9b21acc --- /dev/null +++ b/cassettes/test_endpoints/test_async_disable_enable_config_entry.json @@ -0,0 +1,109 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:56.221123+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 12 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.3", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "56199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 19 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", + "offset_ms": 20 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 28 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 4, \"type\": \"config_entries/get\"}", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 34 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": null, \"id\": 5, \"type\": \"config_entries/disable\"}", + "offset_ms": 34 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 265 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 6, \"type\": \"config_entries/get\"}", + "offset_ms": 265 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":6,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 270 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_fire_event.json b/cassettes/test_endpoints/test_async_fire_event.json new file mode 100644 index 00000000..8c4afb2f --- /dev/null +++ b/cassettes/test_endpoints/test_async_fire_event.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:59 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "138" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc68ef985332-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:59.056394+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:59 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:59.069319+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/events/my_new_event", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:59 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "47" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"Event my_new_event fired.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/events/my_new_event" + }, + "recorded_at": "2026-04-13T08:08:59.080276+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_components.json b/cassettes/test_endpoints/test_async_get_components.json new file mode 100644 index 00000000..454d50e8 --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_components.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:59 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "138" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc6a0db08864-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:59.231214+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:59 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:59.242450+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/components", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:59 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "1125" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/components" + }, + "recorded_at": "2026-04-13T08:08:59.252139+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_config.json b/cassettes/test_endpoints/test_async_get_config.json new file mode 100644 index 00000000..1c45c05d --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_config.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "130" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc3afaa34e7c-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:51.704804+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:51.717423+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/config", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "1542" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"allowlist_external_dirs\":[\"/config/www\",\"/media\"],\"allowlist_external_urls\":[],\"components\":[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":0,\"external_url\":null,\"internal_url\":\"https://ha.krkn.cc\",\"language\":\"en\",\"latitude\":45.2486428320808,\"location_name\":\"Logan's Landing\",\"longitude\":-123.11064967054175,\"radius\":129,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Los_Angeles\",\"unit_system\":{\"length\":\"mi\",\"accumulated_precipitation\":\"in\",\"area\":\"ft²\",\"mass\":\"lb\",\"pressure\":\"psi\",\"temperature\":\"°F\",\"volume\":\"gal\",\"wind_speed\":\"mph\"},\"version\":\"2026.1.2\",\"whitelist_external_dirs\":[\"/config/www\",\"/media\"]}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/config" + }, + "recorded_at": "2026-04-13T08:08:51.726900+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_config_entries.json b/cassettes/test_endpoints/test_async_get_config_entries.json new file mode 100644 index 00000000..f14dd5d1 --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_config_entries.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:56.683860+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 19 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_domain.json b/cassettes/test_endpoints/test_async_get_domain.json new file mode 100644 index 00000000..39772f33 --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_domain.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:55 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "134" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc50ec888b90-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:55.211076+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:55 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:55.220851+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:55 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:08:55.234783+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_domains.json b/cassettes/test_endpoints/test_async_get_domains.json new file mode 100644 index 00000000..d51cf004 --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_domains.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:54 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "133" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc4eeace8636-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:54.889891+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:54 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:54.901406+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:54 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:08:54.917750+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_entities.json b/cassettes/test_endpoints/test_async_get_entities.json new file mode 100644 index 00000000..534672db --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_entities.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:53 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "132" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc45a825dab7-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:53.418559+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:53 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:53.430589+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:53 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "90985" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states" + }, + "recorded_at": "2026-04-13T08:08:53.465372+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_entity.json b/cassettes/test_endpoints/test_async_get_entity.json new file mode 100644 index 00000000..71118b5f --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_entity.json @@ -0,0 +1,169 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "131" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc3f1828b57f-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:52.364263+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:52.377404+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "641" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.sun" + }, + "recorded_at": "2026-04-13T08:08:52.386963+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_entity_histories.json b/cassettes/test_endpoints/test_async_get_entity_histories.json new file mode 100644 index 00000000..0aef5299 --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_entity_histories.json @@ -0,0 +1,215 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "131" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc405b0fe22a-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:52.557546+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:52.569217+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "641" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.sun" + }, + "recorded_at": "2026-04-13T08:08:52.579080+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "189" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T08:08:52.570731+00:00\",\"last_updated\":\"2026-04-12T08:08:52.570731+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T13:31:27.886086+00:00\",\"last_updated\":\"2026-04-12T13:31:27.886086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_updated\":\"2026-04-13T02:58:29.987568+00:00\"}]]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun" + }, + "recorded_at": "2026-04-13T08:08:52.595432+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_entry_subentries.json b/cassettes/test_endpoints/test_async_get_entry_subentries.json new file mode 100644 index 00000000..3c68f011 --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_entry_subentries.json @@ -0,0 +1,67 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:56.812624+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 20 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"id\": 3, \"type\": \"config_entries/subentries/list\"}", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":[]}", + "offset_ms": 28 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_error_log.json b/cassettes/test_endpoints/test_async_get_error_log.json new file mode 100644 index 00000000..9ffadb1d --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_error_log.json @@ -0,0 +1,178 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "130" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc39ef2c3d1b-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:51.532914+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:51.543027+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/error_log", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "content-type": [ + "application/octet-stream" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "etag": [ + "\"18a5dc3110c7d305-1f862\"" + ], + "last-modified": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "accept-ranges": [ + "bytes" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "2026-04-11 01:19:59.797 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration anomaly which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.798 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration average which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.799 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.799 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration apsystems_ecur which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.800 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration emporia_vue which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.800 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration opensprinkler which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration dahua which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smartthinq_sensors which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration anomaly which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.802 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration average which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.802 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration apsystems_ecur which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration emporia_vue which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration opensprinkler which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.804 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration dahua which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.804 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smartthinq_sensors which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:20:08.151 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for freezer_sensor @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-11 01:20:08.152 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for mariah_light_1 @ 10.0.0.236: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.236', port=6053))]: [Errno 113] Connect call failed ('10.0.0.236', 6053) (SocketAPIError)\n2026-04-11 01:20:08.153 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for mariah_light_2 @ 10.0.0.199: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.199', port=6053))]: [Errno 113] Connect call failed ('10.0.0.199', 6053) (SocketAPIError)\n2026-04-11 01:20:15.271 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_4 @ 10.0.0.186: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.186', port=6053))]: [Errno 113] Connect call failed ('10.0.0.186', 6053) (SocketAPIError)\n2026-04-11 01:40:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 02:40:30.108 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 02:43:36.782 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 02:54:41.494 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 03:20:04.571 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 03:35:04.543 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 03:50:42.249 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 03:55:45.919 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 04:02:12.600 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 04:10:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 04:30:04.570 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 04:47:28.788 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 04:55:04.579 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 05:30:00.435 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-11 05:30:00.487 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-11 05:50:04.546 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:05:04.541 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:42:45.759 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 06:45:04.549 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:51:36.935 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:51:43.899 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 06:55:12.312 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:57:19.452 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:57:33.875 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:00:14.241 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:03:40.790 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 07:03:53.650 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-11 07:04:12.347 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:19:03.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 07:30:04.540 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 07:45:04.570 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:05:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:20:04.560 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:20:05.539 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:05.541 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:06.659 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:06.660 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.312 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.313 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.574 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:22:05.394 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:23:05.430 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:24:05.399 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:25:05.378 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:55:04.566 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 09:33:15.066 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 09:36:09.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 09:40:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:10:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:35:04.578 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:50:04.568 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 11:11:57.239 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 12:05:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 12:30:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 13:05:04.557 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 13:10:50.728 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 14:00:00.204 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-11 14:00:00.409 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 14:10:04.544 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 14:55:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 15:10:04.555 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:15:04.551 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:16:17.888 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:40:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:49:48.102 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:52:05.205 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:59:55.350 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 17:01:19.647 ERROR (MainThread) [homeassistant] Error doing job: Task exception was never retrieved (task: None)\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/_websocket/writer.py\", line 240, in _send_compressed_frame_async_locked\n self._write_websocket_frame(\n ~~~~~~~~~~~~~~~~~~~~~~~~~~~^\n (\n ^\n ...<8 lines>...\n 0x40,\n ^^^^^\n )\n ^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/_websocket/writer.py\", line 151, in _write_websocket_frame\n raise ClientConnectionResetError(\"Cannot write to closing transport\")\naiohttp.client_exceptions.ClientConnectionResetError: Cannot write to closing transport\n2026-04-11 17:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 17:24:26.562 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 17:30:04.574 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 17:38:09.456 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 17:46:52.016 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 17:48:39.466 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:25:04.536 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 18:32:20.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 18:43:58.735 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:46:58.026 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 18:47:17.168 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:59:33.868 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:01:14.708 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:09:25.459 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:16:54.600 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:21:32.275 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:29:18.916 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:37:53.860 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:40:16.378 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 20:10:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 20:35:04.594 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 20:48:55.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 21:30:04.547 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:00:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:25:04.545 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:40:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:48:08.946 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 22:48:31.970 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-11 23:10:54.388 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for freezer_sensor @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-11 23:10:56.464 WARNING (MainThread) [aioesphomeapi.connection] 10.0.0.210: Connection error occurred: 10.0.0.210: Connection requires encryption\n2026-04-11 23:33:33.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 23:40:04.565 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:05:04.593 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:28:55.491 ERROR (MainThread) [homeassistant.components.script.kitchen_lights_off] Kitchen Lights Off: Error executing script. Error for call_service at pos 1: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:28:55.492 ERROR (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Error executing script. Error for call_service at pos 1: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:28:55.493 ERROR (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] Error while executing automation automation.motion_kitchen_lights_off: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:30:04.572 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:31:37.583 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 00:58:50.816 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 01:00:42.766 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 01:15:06.135 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 01:26:54.287 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 01:29:28.512 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:33:58.759 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 01:46:32.286 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.160: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 01:46:42.287 ERROR (MainThread) [aioesphomeapi.connection] office_light_2 @ 10.0.0.160: disconnect request failed\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\nTimeoutError\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 890, in send_messages_await_response_complex\naioesphomeapi.core.TimeoutAPIError: Timeout waiting for DisconnectResponse after 10.0s\n2026-04-12 01:46:50.386 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 01:49:55.510 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:56:25.049 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:58:20.381 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 02:01:22.067 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 02:02:02.419 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:03:27.620 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:05:15.378 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:14:17.225 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 02:15:49.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:16:51.475 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:21:01.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:23:21.961 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 02:30:20.709 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 02:33:12.004 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:35:04.544 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 02:38:54.035 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:39:27.942 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for garage-parking @ 10.0.0.210: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))] (TimeoutAPIError)\n2026-04-12 02:43:43.676 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:46:25.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:51:52.320 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 02:52:56.540 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.2s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:54:58.536 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 02:59:33.887 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 03:11:17.708 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:11:20.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 03:12:08.766 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 03:13:20.248 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:20:50.624 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:23:09.898 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 03:24:40.686 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 03:36:06.787 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 03:37:27.816 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:40:17.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 03:45:04.555 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 03:48:58.546 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:51:48.500 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 04:01:17.510 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 04:02:03.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 04:05:40.470 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 04:09:59.830 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 04:15:00.962 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.185: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 04:15:10.963 ERROR (MainThread) [aioesphomeapi.connection] front_porch_3 @ 10.0.0.185: disconnect request failed\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\nTimeoutError\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 890, in send_messages_await_response_complex\naioesphomeapi.core.TimeoutAPIError: Timeout waiting for DisconnectResponse after 10.0s\n2026-04-12 04:15:55.452 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Timeout waiting for HelloResponse after 30.0s (TimeoutAPIError)\n2026-04-12 04:28:36.466 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:30:04.591 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 04:31:40.208 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 04:41:05.548 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 04:45:54.593 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:46:47.195 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:50:15.480 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:50:18.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 04:52:34.012 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 04:55:04.539 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 04:56:36.677 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.160: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 04:56:39.705 ERROR (MainThread) [aioesphomeapi.connection] office_light_2 @ 10.0.0.160: disconnect request failed\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/asyncio/selector_events.py\", line 1005, in _read_ready__data_received\n data = self._sock.recv(self.max_size)\nConnectionResetError: [Errno 104] Connection reset by peer\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\naioesphomeapi.core.ReadFailedAPIError: [Errno 104] Connection reset by peer\n2026-04-12 05:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 05:30:00.435 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-12 05:30:00.485 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-12 06:15:04.540 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 06:16:37.279 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-12 06:17:08.627 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 06:40:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 07:10:04.547 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 08:32:03.113 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 08:48:19.617 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 08:55:04.567 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 09:21:47.304 WARNING (SyncWorker_7) [custom_components.apsystems_ecur] Using cached data from last successful communication from ECU. Exception error: 'NoneType' object does not support item assignment\n2026-04-12 09:26:52.302 WARNING (SyncWorker_0) [custom_components.apsystems_ecur] Using cached data from last successful communication from ECU. Invalid data error: [Errno 111] Connection refused\n2026-04-12 09:40:04.560 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:09:02.498 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-12 10:09:31.130 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 10:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:30:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:55:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 11:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 11:50:18.052 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 12:20:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 12:33:09.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 12:36:37.398 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: HTTPSConnectionPool(host='api.emporiaenergy.com', port=443): Read timed out. (read timeout=10.03)\n2026-04-12 12:36:37.399 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: HTTPSConnectionPool(host='api.emporiaenergy.com', port=443): Read timed out. (read timeout=10.03)\n2026-04-12 13:03:49.371 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:14:38.271 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:21:57.324 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:30:51.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 14:00:00.203 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-12 14:00:04.543 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 14:20:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 14:40:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 15:11:01.011 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:14:29.549 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 15:14:50.963 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 1: Call cancelled\n2026-04-12 15:15:04.578 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 15:37:07.990 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:48:27.189 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:50:04.572 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 16:15:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 16:21:30.964 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 16:50:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 17:06:11.516 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 17:12:18.296 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error demuxing stream (Operation timed out, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:20.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 17:12:20.264 ERROR (MainThread) [homeassistant.components.roku.coordinator] Error fetching roku data: Invalid response from API: Timeout occurred while connecting to device\n2026-04-12 17:12:26.948 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Error occurred while communicating with WLED device at 10.0.0.187\n2026-04-12 17:12:29.355 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:31.429 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:32.871 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:36.229 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:12:36.229 ERROR (MainThread) [custom_components.dahua] Error fetching dahua data: \n2026-04-12 17:12:40.059 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 17:12:43.040 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Timeout occurred while connecting to WLED device at 10.0.0.176\n2026-04-12 17:12:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:45.058 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 17:12:47.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:52.548 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:02.072 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:08.149 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:13:13.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:17.111 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:23.748 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:13:28.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:31.831 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:38.153 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 1 (10.0.0.190) data\n2026-04-12 17:13:38.252 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bedroom 1 (10.0.0.177) data\n2026-04-12 17:13:38.285 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 6 (10.0.0.195) data\n2026-04-12 17:13:38.288 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Shower (10.0.0.197) data\n2026-04-12 17:13:38.337 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 2 (10.0.0.191) data\n2026-04-12 17:13:38.420 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 4 (10.0.0.193) data\n2026-04-12 17:13:38.451 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Entry Light (10.0.0.196) data\n2026-04-12 17:13:38.452 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 5 (10.0.0.194) data\n2026-04-12 17:13:38.507 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bedroom 2 (10.0.0.178) data\n2026-04-12 17:13:38.532 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 3 (10.0.0.192) data\n2026-04-12 17:13:38.535 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Matter Bath Toilet (10.0.0.198) data\n2026-04-12 17:13:39.349 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:13:41.557 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Mariah Light (10.0.0.110) data\n2026-04-12 17:13:42.180 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 1 (10.0.0.150) data\n2026-04-12 17:13:42.320 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 3 (10.0.0.152) data\n2026-04-12 17:13:42.375 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 2 (10.0.0.151) data\n2026-04-12 17:13:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:44.224 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 3 (10.0.0.182) data\n2026-04-12 17:13:44.244 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 2 (10.0.0.181) data\n2026-04-12 17:13:45.194 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Living Room 1 (10.0.0.170) data\n2026-04-12 17:13:45.460 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 1 (10.0.0.180) data\n2026-04-12 17:13:46.872 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:47.271 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Living Room 2 (10.0.0.171) data\n2026-04-12 17:13:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:58.948 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 17:14:01.591 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:04.068 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for leks_lamp @ 10.0.0.49: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.49', port=6053))]: [Errno 113] Connect call failed ('10.0.0.49', 6053) (SocketAPIError)\n2026-04-12 17:14:05.348 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:14:06.149 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_4 @ 10.0.0.162: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.162', port=6053))]: [Errno 113] Connect call failed ('10.0.0.162', 6053) (SocketAPIError)\n2026-04-12 17:14:06.318 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.185', port=6053))]: [Errno 113] Connect call failed ('10.0.0.185', 6053) (SocketAPIError)\n2026-04-12 17:14:07.188 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_3 @ 10.0.0.161: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.161', port=6053))]: [Errno 113] Connect call failed ('10.0.0.161', 6053) (SocketAPIError)\n2026-04-12 17:14:09.828 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_lamp_1 @ 10.0.0.163: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.163', port=6053))]: [Errno 113] Connect call failed ('10.0.0.163', 6053) (SocketAPIError)\n2026-04-12 17:14:11.989 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:14:12.558 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_2 @ 10.0.0.184: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.184', port=6053))]: [Errno 113] Connect call failed ('10.0.0.184', 6053) (SocketAPIError)\n2026-04-12 17:14:13.361 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:14.788 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_1 @ 10.0.0.183: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.183', port=6053))]: [Errno 113] Connect call failed ('10.0.0.183', 6053) (SocketAPIError)\n2026-04-12 17:14:17.111 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.2s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:17.268 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_1 @ 10.0.0.159: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.159', port=6053))]: [Errno 113] Connect call failed ('10.0.0.159', 6053) (SocketAPIError)\n2026-04-12 17:14:28.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:32.311 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:43.439 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:14:46.951 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:58.308 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:14:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:02.241 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 17:15:13.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:14.239 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:15:16.871 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:28.401 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:31.911 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:46.229 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:15:47.041 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:58.628 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:16:16.376 ERROR (MainThread) [custom_components.dahua] server closed the connection\n2026-04-12 17:16:16.377 WARNING (MainThread) [custom_components.dahua] Disconnected from VTO at 10.0.0.107, reconnecting in 5s\n2026-04-12 17:20:00.850 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 17:22:42.937 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 17:36:58.262 ERROR (MainThread) [homeassistant.components.roku.coordinator] Error fetching roku data: Invalid response from API: Timeout occurred while connecting to device\n2026-04-12 17:41:28.993 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error demuxing stream (Operation timed out, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:41:29.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 17:41:32.148 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:41:32.148 ERROR (MainThread) [custom_components.dahua] Error fetching dahua data: \n2026-04-12 17:41:52.632 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Timeout occurred while connecting to WLED device at 10.0.0.187\n2026-04-12 17:41:54.059 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 18:08:22.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 18:15:57.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 18:30:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 18:33:30.868 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for garage-parking @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-12 18:34:56.001 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:35:20.098 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:37:00.945 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:37:01.877 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:37:37.665 ERROR (MainThread) [snitun.multiplexer.core] Timeout error while pinging peer\n2026-04-12 18:37:53.449 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:37:54.500 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:38:12.624 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:38:13.568 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:38:43.881 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:38:44.821 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:41:28.326 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 18:47:50.237 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:47:51.234 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:11.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:11.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:21.244 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:36.683 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:49:01.774 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:49:04.943 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:49:14.523 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.13/site-packages/turbojpeg.py:947: UserWarning: Corrupt JPEG data: 608 extraneous bytes before marker 0xfe\n warnings.warn(self.__get_error_string(handle))\n\n2026-04-12 18:50:19.341 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 18:50:37.444 ERROR (MainThread) [homeassistant.components.automation.notify_garage_lights_left_on] NOTIFY - Garage Lights Left On: Error executing script. Service not found for call_service at pos 1: Action notify.mobile_app_adam_s_pixel_7 not found\n2026-04-12 19:27:44.345 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:28:09.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:32:49.299 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:33:33.495 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:35:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 19:43:54.509 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:44:20.653 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:44:50.468 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:45:21.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:45:22.499 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:47:23.415 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 19:50:06.490 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:09.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:50:34.528 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:35.452 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:47.998 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:50:48.935 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:51:02.855 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:22.658 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:53:23.593 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:53:24.888 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:25.812 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:31.411 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:54:12.569 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:54:13.578 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:00:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 20:00:15.837 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:00:16.807 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:00:55.970 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:00:56.935 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:04:02.331 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 20:15:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 20:17:37.705 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 20:35:01.370 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:35:02.307 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:37:34.234 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:37:35.199 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:40:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 21:00:34.107 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:00:35.075 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:01:33.320 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:01:34.311 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:02:06.347 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:02:07.305 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:05:04.549 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 21:11:34.866 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:11:35.826 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:12:50.072 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:13:12.937 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:18:06.778 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:33:38.676 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:34:08.277 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:44:24.585 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:44:27.859 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:44:50.813 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:44:51.775 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:46:30.620 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 22:40:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 22:53:12.965 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 22:53:14.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 22:53:41.290 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 22:53:42.245 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:00:55.476 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:00:56.474 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:01:39.220 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:01:39.224 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:02:20.947 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:02:49.147 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:02:55.878 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:03:51.394 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:05:28.785 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 23:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:14:05.881 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:14:06.810 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:14:17.323 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:25:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:25:12.344 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:25:13.330 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:25:34.221 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:25:35.184 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:12.175 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:13.173 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:21.888 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:22.867 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:47.187 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:48.204 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:28:30.553 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:28:31.559 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:28:56.733 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:28:57.727 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:31:25.167 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:36:46.658 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:50:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:53:43.998 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:44.986 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:51.335 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:52.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:54:21.085 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:54:22.070 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:55:00.235 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:01.188 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:29.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:30.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:56:23.519 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:56:24.480 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:03:40.855 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:03:41.859 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:04:06.692 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:04:07.671 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:10:29.774 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:10:30.730 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:11:01.924 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:11:02.865 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:30:37.277 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:38.231 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:44.481 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:45.488 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:31:11.688 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:31:12.623 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:33:12.698 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:33:13.644 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:33:41.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:33:42.483 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:35:04.648 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 01:19:20.217 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 01:28:30.229 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 01:28:30.230 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 01:30:04.561 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 01:51:28.016 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 02:02:20.007 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:02:21.000 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:02:35.302 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:02:36.299 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:03:38.287 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:03:39.278 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:05:19.460 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:08:01.758 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:15:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 02:21:50.760 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 02:25:23.626 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:25:23.627 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:27:26.948 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:27:55.098 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:30:04.566 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 02:31:07.280 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:32:40.684 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:33:22.731 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:34:29.163 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:34:59.947 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:35:04.410 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:35:28.265 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:36:47.884 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:37:40.130 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:41:20.303 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:42:02.493 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:42:15.938 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:43:26.188 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:44:04.238 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:44:43.899 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:49:12.330 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:50:03.755 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:50:04.688 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:50:13.984 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:51:10.488 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:52:39.343 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:52:39.344 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:05:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 03:17:13.148 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:14.135 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:50.879 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:17:51.826 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:17:57.216 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:58.217 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:19.244 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:18:19.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:26.380 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:27.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:50.403 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:18:51.386 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:24:12.901 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:05:26.000 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:12:42.948 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:12:51.671 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:12:52.621 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:13:22.269 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:13:23.241 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:16:44.600 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:16:45.564 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:17:16.916 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:17:17.842 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:39:38.985 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:40:04.551 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 04:40:09.417 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:43:51.433 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:05.993 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:24.618 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:25.647 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:48.614 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:44:48.614 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 05:05:04.541 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 05:30:00.438 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-13 05:30:00.466 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-13 05:39:21.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-13 06:50:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 06:57:44.314 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.13/site-packages/turbojpeg.py:947: UserWarning: Corrupt JPEG data: 608 extraneous bytes before marker 0xfe\n warnings.warn(self.__get_error_string(handle))\n\n2026-04-13 08:05:05.661 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455378877664] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:05.728 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454991178912] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:07.419 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455122022496] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:07.473 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993089600] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.092 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901625728] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.150 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899902048] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.313 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899895648] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.447 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899907008] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.565 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900018976] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.618 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900014976] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.695 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900144448] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.795 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454991711744] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.896 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900140768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.964 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900144608] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.044 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900152128] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.166 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900147648] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.299 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900143008] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.383 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899829312] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.639 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455100599168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.693 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900139488] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.933 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454992494656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.997 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993092800] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.088 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993095680] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.142 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993093120] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.824 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904965824] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.111 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455083636064] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.177 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455083631104] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.247 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535808480] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.304 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535814880] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.371 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901624768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.434 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535814720] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.500 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901620768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.565 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901623488] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.627 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901626048] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.960 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901615168] An action which does not return responses can't be called with return_response=True\n2026-04-13 08:05:11.973 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901615168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.041 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901621408] An action which does not return responses can't be called with return_response=True\n2026-04-13 08:05:12.053 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901621408] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.235 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900394848] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.326 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.327 ERROR (MainThread) [aiohttp.server] Error handling request from 10.40.0.2\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_protocol.py\", line 510, in _handle_request\n resp = await request_handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_app.py\", line 569, in _handle\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_middlewares.py\", line 117, in impl\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/security_filter.py\", line 92, in security_filter_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/forwarded.py\", line 214, in forwarded_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/request_context.py\", line 26, in request_context_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/ban.py\", line 86, in ban_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/auth.py\", line 242, in auth_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/headers.py\", line 41, in headers_middleware\n response = await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/http.py\", line 73, in handle\n result = await handler(request, **request.match_info)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/api/__init__.py\", line 437, in post\n response = await shield(\n ^^^^^^^^^^^^^\n ...<8 lines>...\n )\n ^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2819, in async_call\n response_data = await coro\n ^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2862, in _execute_service\n return await target(service_call)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/service.py\", line 824, in entity_service_call\n raise HomeAssistantError(\n \"Service call requested response data but did not match any entities\"\n )\nhomeassistant.exceptions.HomeAssistantError: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.489 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.489 ERROR (MainThread) [aiohttp.server] Error handling request from 10.40.0.2\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_protocol.py\", line 510, in _handle_request\n resp = await request_handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_app.py\", line 569, in _handle\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_middlewares.py\", line 117, in impl\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/security_filter.py\", line 92, in security_filter_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/forwarded.py\", line 214, in forwarded_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/request_context.py\", line 26, in request_context_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/ban.py\", line 86, in ban_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/auth.py\", line 242, in auth_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/headers.py\", line 41, in headers_middleware\n response = await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/http.py\", line 73, in handle\n result = await handler(request, **request.match_info)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/api/__init__.py\", line 437, in post\n response = await shield(\n ^^^^^^^^^^^^^\n ...<8 lines>...\n )\n ^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2819, in async_call\n response_data = await coro\n ^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2862, in _execute_service\n return await target(service_call)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/service.py\", line 824, in entity_service_call\n raise HomeAssistantError(\n \"Service call requested response data but did not match any entities\"\n )\nhomeassistant.exceptions.HomeAssistantError: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.591 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.591 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] Error during service call to weather.get_forecasts: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.598 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] The action requires responses and must be called with return_response=True\n2026-04-13 08:05:12.641 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.715 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.715 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] Error during service call to weather.get_forecasts: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.722 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] The action requires responses and must be called with return_response=True\n2026-04-13 08:05:12.762 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:13.115 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900392928] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:13.198 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900399168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.338 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904955424] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.401 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901628448] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.479 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901614528] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.844 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900393888] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.008 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038481280] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.212 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038482080] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.277 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038480000] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.414 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038472000] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.476 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-13 08:05:15.523 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-13 08:05:15.566 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-13 08:05:15.630 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-13 08:05:16.552 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455084119904] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.611 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041390272] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.659 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041388192] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.708 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041391072] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.797 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455161674656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.898 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904968384] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:17.302 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455085128128] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:17.932 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900261056] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:18.239 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900261376] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:19.098 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900018656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:08:51.293 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900015616] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:08:51.362 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900009376] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/error_log" + }, + "recorded_at": "2026-04-13T08:08:51.558421+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_events.json b/cassettes/test_endpoints/test_async_get_events.json new file mode 100644 index 00000000..d3896dd5 --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_events.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "137" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc67bc1fef6f-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:58.874390+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:58.888687+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "248" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":4},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/events" + }, + "recorded_at": "2026-04-13T08:08:58.901183+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_logbook_entries.json b/cassettes/test_endpoints/test_async_get_logbook_entries.json new file mode 100644 index 00000000..d5dcc87e --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_logbook_entries.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "130" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc3d083dff12-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:52.026443+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:52.035877+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "173" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:19.396864+00:00\",\"context_user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:19.501928+00:00\",\"context_user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00" + }, + "recorded_at": "2026-04-13T08:08:52.228761+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json b/cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json new file mode 100644 index 00000000..102b5e15 --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:55.499995+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 9 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 9 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 14 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/flow/progress\"}", + "offset_ms": 15 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"flow_id\":\"01KNX20H106MWSVY485WG4GDJV\",\"handler\":\"matter\",\"context\":{\"source\":\"zeroconf\",\"discovery_key\":{\"domain\":\"zeroconf\",\"key\":[\"_matter._tcp.local.\",\"FCE73F24FC01F9E6-00000000533C2701._matter._tcp.local.\"],\"version\":1},\"unique_id\":\"default_discovery_unique_id\"},\"step_id\":\"manual\"},{\"flow_id\":\"01KP2RCRT7PWY3TA3P9BWJTVHV\",\"handler\":\"androidtv_remote\",\"context\":{\"source\":\"zeroconf\",\"discovery_key\":{\"domain\":\"zeroconf\",\"key\":[\"_androidtvremote2._tcp.local.\",\"Lex room TV._androidtvremote2._tcp.local.\"],\"version\":1},\"unique_id\":\"c0:e5:da:99:a2:fd\",\"title_placeholders\":{\"name\":\"Lex room TV\"}},\"step_id\":\"zeroconf_confirm\"}]}", + "offset_ms": 20 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_rendered_template.json b/cassettes/test_endpoints/test_async_get_rendered_template.json new file mode 100644 index 00000000..151f659e --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_rendered_template.json @@ -0,0 +1,169 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "131" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc41690a4b01-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:52.735154+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:52.745121+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/template", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "text/plain; charset=utf-8" + ], + "content-length": [ + "29" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "The sun is below the horizon." + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/template" + }, + "recorded_at": "2026-04-13T08:08:52.753926+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_state.json b/cassettes/test_endpoints/test_async_get_state.json new file mode 100644 index 00000000..a3cd7c09 --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_state.json @@ -0,0 +1,169 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "137" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc65aa7def67-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:58.531317+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:58.539684+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "641" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.sun" + }, + "recorded_at": "2026-04-13T08:08:58.546756+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_states.json b/cassettes/test_endpoints/test_async_get_states.json new file mode 100644 index 00000000..aa29013a --- /dev/null +++ b/cassettes/test_endpoints/test_async_get_states.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "137" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc631aa85edd-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:58.124208+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:58.134998+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "90989" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states" + }, + "recorded_at": "2026-04-13T08:08:58.162370+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_ignore_config_flow.json b/cassettes/test_endpoints/test_async_ignore_config_flow.json new file mode 100644 index 00000000..d9cd77ad --- /dev/null +++ b/cassettes/test_endpoints/test_async_ignore_config_flow.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:56.573980+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"flow_id\": \"\", \"title\": \"\", \"id\": 2, \"type\": \"config_entries/ignore_flow\"}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"not_found\",\"message\":\"Config entry not found\"}}", + "offset_ms": 15 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_set_state.json b/cassettes/test_endpoints/test_async_set_state.json new file mode 100644 index 00000000..030c028e --- /dev/null +++ b/cassettes/test_endpoints/test_async_set_state.json @@ -0,0 +1,175 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "137" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc66b80112b1-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:58.699796+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:58.711349+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "216" + ], + "location": [ + "/api/states/sun.red_sun" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"beyond_our_solar_system\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:08:58.618002+00:00\",\"last_reported\":\"2026-04-13T08:08:58.618002+00:00\",\"last_updated\":\"2026-04-13T08:08:58.618002+00:00\",\"context\":{\"id\":\"01KP2Y5YZS5M77V83CMRSFA6BM\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-13T08:08:58.721547+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_trigger_service.json b/cassettes/test_endpoints/test_async_trigger_service.json new file mode 100644 index 00000000..160a42c2 --- /dev/null +++ b/cassettes/test_endpoints/test_async_trigger_service.json @@ -0,0 +1,218 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "136" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc5cdbea5d68-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:57.123200+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:57.132727+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:08:57.147145+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/services/notify/persistent_notification?return_response", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 400, + "message": "Bad Request" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "82" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"Service does not support responses. Remove return_response from request.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services/notify/persistent_notification?return_response" + }, + "recorded_at": "2026-04-13T08:08:57.175877+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_trigger_service_with_response.json b/cassettes/test_endpoints/test_async_trigger_service_with_response.json new file mode 100644 index 00000000..27a02b64 --- /dev/null +++ b/cassettes/test_endpoints/test_async_trigger_service_with_response.json @@ -0,0 +1,206 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "136" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc60ac77c146-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:57.739399+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:57.751477+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:08:57.767589+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/services/weather/get_forecasts?return_response", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 500, + "message": "Internal Server Error" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "text/plain; charset=utf-8" + ], + "content-length": [ + "55" + ] + }, + "body": { + "string": "500 Internal Server Error\n\nServer got itself in trouble" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services/weather/get_forecasts?return_response" + }, + "recorded_at": "2026-04-13T08:08:57.798923+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_config.json b/cassettes/test_endpoints/test_async_websocket_get_config.json new file mode 100644 index 00000000..5905796d --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_config.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:53.564809+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_config\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"allowlist_external_dirs\":[\"/config/www\",\"/media\"],\"allowlist_external_urls\":[],\"components\":[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":0,\"external_url\":null,\"internal_url\":\"https://ha.krkn.cc\",\"language\":\"en\",\"latitude\":45.2486428320808,\"location_name\":\"Logan's Landing\",\"longitude\":-123.11064967054175,\"radius\":129,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Los_Angeles\",\"unit_system\":{\"length\":\"mi\",\"accumulated_precipitation\":\"in\",\"area\":\"ft²\",\"mass\":\"lb\",\"pressure\":\"psi\",\"temperature\":\"°F\",\"volume\":\"gal\",\"wind_speed\":\"mph\"},\"version\":\"2026.1.2\",\"whitelist_external_dirs\":[\"/config/www\",\"/media\"]}}", + "offset_ms": 16 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_domain.json b/cassettes/test_endpoints/test_async_websocket_get_domain.json new file mode 100644 index 00000000..51c34bdd --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_domain.json @@ -0,0 +1,61 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:55.354201+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", + "offset_ms": 25 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_domains.json b/cassettes/test_endpoints/test_async_websocket_get_domains.json new file mode 100644 index 00000000..56e18646 --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_domains.json @@ -0,0 +1,67 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:55.028274+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"", + "offset_ms": 21 + }, + { + "direction": "recv", + "type": "text", + "payload": "required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":", + "offset_ms": 21 + }, + { + "direction": "recv", + "type": "text", + "payload": "1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", + "offset_ms": 22 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_entities.json b/cassettes/test_endpoints/test_async_websocket_get_entities.json new file mode 100644 index 00000000..27b6652a --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_entities.json @@ -0,0 +1,85 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:54.685934+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 12 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"d", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "ock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4J", + "offset_ms": 35 + }, + { + "direction": "recv", + "type": "text", + "payload": "M6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 38 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json b/cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json new file mode 100644 index 00000000..2e2f748c --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json @@ -0,0 +1,91 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:54.217880+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"d", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "ock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr C", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "losed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BM", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "Y15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0R", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "NPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 35 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json b/cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json new file mode 100644 index 00000000..3f8acfce --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json @@ -0,0 +1,91 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:54.137036+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", + "offset_ms": 21 + }, + { + "direction": "recv", + "type": "text", + "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-chec", + "offset_ms": 32 + }, + { + "direction": "recv", + "type": "text", + "payload": "k\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 36 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_entity_no_args.json b/cassettes/test_endpoints/test_async_websocket_get_entity_no_args.json new file mode 100644 index 00000000..655d4009 --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_entity_no_args.json @@ -0,0 +1,43 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:54.311002+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_rendered_template.json b/cassettes/test_endpoints/test_async_websocket_get_rendered_template.json new file mode 100644 index 00000000..0cdd30cc --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_rendered_template.json @@ -0,0 +1,73 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:52.858214+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"template\": \"The sun is {{ states(\\\"sun.sun\\\").replace(\\\"_\\\", \\\" the \\\") }}.\", \"report_errors\": true, \"id\": 2, \"type\": \"render_template\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 21 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":{\"result\":\"The sun is below the horizon.\",\"listeners\":{\"all\":false,\"entities\":[\"sun.sun\"],\"domains\":[],\"time\":false}}}", + "offset_ms": 21 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 2, \"id\": 3, \"type\": \"unsubscribe_events\"}", + "offset_ms": 21 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 27 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_state.json b/cassettes/test_endpoints/test_async_websocket_get_state.json new file mode 100644 index 00000000..cea7285a --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_state.json @@ -0,0 +1,109 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:54.056157+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", + "offset_ms": 29 + }, + { + "direction": "recv", + "type": "text", + "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current M", + "offset_ms": 34 + }, + { + "direction": "recv", + "type": "text", + "payload": "ode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 38 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_state_not_found.json b/cassettes/test_endpoints/test_async_websocket_get_state_not_found.json new file mode 100644 index 00000000..221fd821 --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_state_not_found.json @@ -0,0 +1,79 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:54.360020+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 34 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_states.json b/cassettes/test_endpoints/test_async_websocket_get_states.json new file mode 100644 index 00000000..f06f7c95 --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_get_states.json @@ -0,0 +1,79 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:58.339109+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 7 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 7 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 13 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 14 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40", + "offset_ms": 35 + }, + { + "direction": "recv", + "type": "text", + "payload": "KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 46 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_trigger_service.json b/cassettes/test_endpoints/test_async_websocket_trigger_service.json new file mode 100644 index 00000000..0afe3a3e --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_trigger_service.json @@ -0,0 +1,85 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:57.288382+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 12 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pul", + "offset_ms": 20 + }, + { + "direction": "recv", + "type": "text", + "payload": "se\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", + "offset_ms": 22 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"service_validation_error\",\"message\":\"Validation error: An action which does not return responses can't be called with return_response=True\",\"translation_key\":\"service_does_not_support_response\",\"translation_placeholders\":{\"return_response\":\"return_response=True\"},\"translation_domain\":\"homeassistant\"}}", + "offset_ms": 38 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": false, \"id\": 4, \"type\": \"call_service\"}", + "offset_ms": 38 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KP2Y5XQ43364GY8JC2C97AW4\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}}", + "offset_ms": 45 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json b/cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json new file mode 100644 index 00000000..417c3ab1 --- /dev/null +++ b/cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json @@ -0,0 +1,85 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:57.913959+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recordi", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "ng. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", + "offset_ms": 21 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"weather\", \"service\": \"get_forecasts\", \"service_data\": {\"entity_id\": \"weather.forecast_home\", \"type\": \"hourly\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"home_assistant_error\",\"message\":\"Service call requested response data but did not match any entities\"}}", + "offset_ms": 33 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"weather\", \"service\": \"get_forecasts\", \"service_data\": {\"entity_id\": \"weather.forecast_home\", \"type\": \"hourly\"}, \"return_response\": false, \"id\": 4, \"type\": \"call_service\"}", + "offset_ms": 33 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"service_validation_error\",\"message\":\"Validation error: The action requires responses and must be called with return_response=True\",\"translation_key\":\"service_lacks_response_request\",\"translation_placeholders\":{\"return_response\":\"return_response=True\"},\"translation_domain\":\"homeassistant\"}}", + "offset_ms": 40 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_check_api_config.json b/cassettes/test_endpoints/test_check_api_config.json new file mode 100644 index 00000000..708b680b --- /dev/null +++ b/cassettes/test_endpoints/test_check_api_config.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "131" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc42b8f3b395-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:52.941250+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:52.956246+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/config/core/check_config", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:53 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "56" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"result\":\"valid\",\"errors\":null,\"warnings\":null}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/config/core/check_config" + }, + "recorded_at": "2026-04-13T08:08:53.081326+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_delete_entry_subentry.json b/cassettes/test_endpoints/test_delete_entry_subentry.json new file mode 100644 index 00000000..36171813 --- /dev/null +++ b/cassettes/test_endpoints/test_delete_entry_subentry.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:56.884063+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"\", \"subentry_id\": \"\", \"id\": 2, \"type\": \"config_entries/subentries/delete\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"not_found\",\"message\":\"Config entry not found\"}}", + "offset_ms": 16 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_disable_enable_config_entry.json b/cassettes/test_endpoints/test_disable_enable_config_entry.json new file mode 100644 index 00000000..a0b858d6 --- /dev/null +++ b/cassettes/test_endpoints/test_disable_enable_config_entry.json @@ -0,0 +1,121 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:55.559725+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.3", + "offset_ms": 17 + }, + { + "direction": "recv", + "type": "text", + "payload": "56199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 18 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 27 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 4, \"type\": \"config_entries/get\"}", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb", + "offset_ms": 35 + }, + { + "direction": "recv", + "type": "text", + "payload": "1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 36 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": null, \"id\": 5, \"type\": \"config_entries/disable\"}", + "offset_ms": 38 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 611 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 6, \"type\": \"config_entries/get\"}", + "offset_ms": 611 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":6,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a486", + "offset_ms": 616 + }, + { + "direction": "recv", + "type": "text", + "payload": "6f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 617 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_fire_event.json b/cassettes/test_endpoints/test_fire_event.json new file mode 100644 index 00000000..a058e1df --- /dev/null +++ b/cassettes/test_endpoints/test_fire_event.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "137" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc685bd8d82e-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:58.961153+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:58.970980+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/events/my_new_event", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "47" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"Event my_new_event fired.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/events/my_new_event" + }, + "recorded_at": "2026-04-13T08:08:58.979553+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_components.json b/cassettes/test_endpoints/test_get_components.json new file mode 100644 index 00000000..ad0768e9 --- /dev/null +++ b/cassettes/test_endpoints/test_get_components.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:59 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "138" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc697f0c11c8-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:59.152846+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:59 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:59.166771+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/components", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:59 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "1125" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/components" + }, + "recorded_at": "2026-04-13T08:08:59.177114+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_config.json b/cassettes/test_endpoints/test_get_config.json new file mode 100644 index 00000000..415d2ac5 --- /dev/null +++ b/cassettes/test_endpoints/test_get_config.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "130" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc3a6adbc12a-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:51.613104+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:51.622633+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/config", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "1542" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"allowlist_external_dirs\":[\"/config/www\",\"/media\"],\"allowlist_external_urls\":[],\"components\":[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":0,\"external_url\":null,\"internal_url\":\"https://ha.krkn.cc\",\"language\":\"en\",\"latitude\":45.2486428320808,\"location_name\":\"Logan's Landing\",\"longitude\":-123.11064967054175,\"radius\":129,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Los_Angeles\",\"unit_system\":{\"length\":\"mi\",\"accumulated_precipitation\":\"in\",\"area\":\"ft²\",\"mass\":\"lb\",\"pressure\":\"psi\",\"temperature\":\"°F\",\"volume\":\"gal\",\"wind_speed\":\"mph\"},\"version\":\"2026.1.2\",\"whitelist_external_dirs\":[\"/config/www\",\"/media\"]}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/config" + }, + "recorded_at": "2026-04-13T08:08:51.631866+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_config_entries.json b/cassettes/test_endpoints/test_get_config_entries.json new file mode 100644 index 00000000..8f720bfb --- /dev/null +++ b/cassettes/test_endpoints/test_get_config_entries.json @@ -0,0 +1,61 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:56.623341+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 12 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.3", + "offset_ms": 18 + }, + { + "direction": "recv", + "type": "text", + "payload": "56199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 18 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_domain.json b/cassettes/test_endpoints/test_get_domain.json new file mode 100644 index 00000000..a9a38a75 --- /dev/null +++ b/cassettes/test_endpoints/test_get_domain.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:55 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "134" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc505847a32d-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:55.123195+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:55 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:55.132986+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:55 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:08:55.146145+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_domains.json b/cassettes/test_endpoints/test_get_domains.json new file mode 100644 index 00000000..1d9d47ff --- /dev/null +++ b/cassettes/test_endpoints/test_get_domains.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:54 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "133" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc4e5b126c24-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:54.797858+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:54 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:54.808900+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:54 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:08:54.824084+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_entities.json b/cassettes/test_endpoints/test_get_entities.json new file mode 100644 index 00000000..58f77136 --- /dev/null +++ b/cassettes/test_endpoints/test_get_entities.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:53 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "132" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc44fff51c37-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:53.298109+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:53 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:53.309034+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:53 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "90985" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states" + }, + "recorded_at": "2026-04-13T08:08:53.336788+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_entity.json b/cassettes/test_endpoints/test_get_entity.json new file mode 100644 index 00000000..376b95cd --- /dev/null +++ b/cassettes/test_endpoints/test_get_entity.json @@ -0,0 +1,169 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "131" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc3eab46ac0d-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:52.285552+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:52.294569+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "641" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.sun" + }, + "recorded_at": "2026-04-13T08:08:52.302724+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_entity_histories.json b/cassettes/test_endpoints/test_get_entity_histories.json new file mode 100644 index 00000000..0312b30c --- /dev/null +++ b/cassettes/test_endpoints/test_get_entity_histories.json @@ -0,0 +1,215 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "131" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc3f9c2fafe8-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:52.444904+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:52.456079+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "641" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.sun" + }, + "recorded_at": "2026-04-13T08:08:52.464203+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/history/period/2020-01-01T00:00:00+00:00?filter_entity_id=sun.sun&end_time=2030-01-01T00%3A00%3A01%2B00%3A00&significant_changes_only", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "1001" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-02T13:50:53.248484+00:00\",\"last_updated\":\"2026-04-02T13:50:53.248484+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-03T02:43:42.151184+00:00\",\"last_updated\":\"2026-04-03T02:43:42.151184+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-03T05:02:42.697017+00:00\",\"last_updated\":\"2026-04-03T05:02:42.697017+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-03T05:02:42.715181+00:00\",\"last_updated\":\"2026-04-03T05:02:42.715181+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-03T05:02:42.782964+00:00\",\"last_updated\":\"2026-04-03T05:02:42.782964+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-03T05:02:42.800750+00:00\",\"last_updated\":\"2026-04-03T05:02:42.800750+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-03T13:49:01.517414+00:00\",\"last_updated\":\"2026-04-03T13:49:01.517414+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-04T02:44:59.006693+00:00\",\"last_updated\":\"2026-04-04T02:44:59.006693+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-04T13:46:38.144446+00:00\",\"last_updated\":\"2026-04-04T13:46:38.144446+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:56:37.391853+00:00\",\"last_updated\":\"2026-04-05T00:56:37.391853+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:56:37.410901+00:00\",\"last_updated\":\"2026-04-05T00:56:37.410901+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:07:48.293046+00:00\",\"last_updated\":\"2026-04-05T02:07:48.293046+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:07:48.311199+00:00\",\"last_updated\":\"2026-04-05T02:07:48.311199+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:07:48.392962+00:00\",\"last_updated\":\"2026-04-05T02:07:48.392962+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:07:48.413356+00:00\",\"last_updated\":\"2026-04-05T02:07:48.413356+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:32:14.152311+00:00\",\"last_updated\":\"2026-04-05T02:32:14.152311+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:32:14.172520+00:00\",\"last_updated\":\"2026-04-05T02:32:14.172520+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:33:00.586302+00:00\",\"last_updated\":\"2026-04-05T02:33:00.586302+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:33:00.606680+00:00\",\"last_updated\":\"2026-04-05T02:33:00.606680+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:33:00.678222+00:00\",\"last_updated\":\"2026-04-05T02:33:00.678222+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:33:00.699535+00:00\",\"last_updated\":\"2026-04-05T02:33:00.699535+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:46:15.834501+00:00\",\"last_updated\":\"2026-04-05T02:46:15.834501+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:58:45.524662+00:00\",\"last_updated\":\"2026-04-05T02:58:45.524662+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:58:45.545294+00:00\",\"last_updated\":\"2026-04-05T02:58:45.545294+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:58:45.607351+00:00\",\"last_updated\":\"2026-04-05T02:58:45.607351+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:58:45.625669+00:00\",\"last_updated\":\"2026-04-05T02:58:45.625669+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:38:17.263057+00:00\",\"last_updated\":\"2026-04-05T03:38:17.263057+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:38:17.281631+00:00\",\"last_updated\":\"2026-04-05T03:38:17.281631+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:38:17.347851+00:00\",\"last_updated\":\"2026-04-05T03:38:17.347851+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:38:17.365443+00:00\",\"last_updated\":\"2026-04-05T03:38:17.365443+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:49:42.181466+00:00\",\"last_updated\":\"2026-04-05T03:49:42.181466+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:49:42.198928+00:00\",\"last_updated\":\"2026-04-05T03:49:42.198928+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:49:42.264320+00:00\",\"last_updated\":\"2026-04-05T03:49:42.264320+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:49:42.281930+00:00\",\"last_updated\":\"2026-04-05T03:49:42.281930+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T13:44:43.330728+00:00\",\"last_updated\":\"2026-04-05T13:44:43.330728+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-06T02:47:32.643629+00:00\",\"last_updated\":\"2026-04-06T02:47:32.643629+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-06T13:42:48.751932+00:00\",\"last_updated\":\"2026-04-06T13:42:48.751932+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-06T15:27:04.254166+00:00\",\"last_updated\":\"2026-04-06T15:27:04.254166+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-06T18:42:42.285617+00:00\",\"last_updated\":\"2026-04-06T18:42:42.285617+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T02:48:49.434774+00:00\",\"last_updated\":\"2026-04-07T02:48:49.434774+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T13:40:54.426345+00:00\",\"last_updated\":\"2026-04-07T13:40:54.426345+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-08T02:50:06.212170+00:00\",\"last_updated\":\"2026-04-08T02:50:06.212170+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-08T13:39:00.404114+00:00\",\"last_updated\":\"2026-04-08T13:39:00.404114+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T02:51:22.981267+00:00\",\"last_updated\":\"2026-04-09T02:51:22.981267+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T13:37:06.704515+00:00\",\"last_updated\":\"2026-04-09T13:37:06.704515+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-10T02:52:39.740285+00:00\",\"last_updated\":\"2026-04-10T02:52:39.740285+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-10T13:35:13.356028+00:00\",\"last_updated\":\"2026-04-10T13:35:13.356028+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-11T00:54:43.409671+00:00\",\"last_updated\":\"2026-04-11T00:54:43.409671+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-11T01:20:03.295381+00:00\",\"last_updated\":\"2026-04-11T01:20:03.295381+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-11T02:53:56.493129+00:00\",\"last_updated\":\"2026-04-11T02:53:56.493129+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-11T13:33:20.406436+00:00\",\"last_updated\":\"2026-04-11T13:33:20.406436+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T02:55:13.242159+00:00\",\"last_updated\":\"2026-04-12T02:55:13.242159+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T13:31:27.886086+00:00\",\"last_updated\":\"2026-04-12T13:31:27.886086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_updated\":\"2026-04-13T02:58:29.987568+00:00\"}]]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/history/period/2020-01-01T00:00:00+00:00?filter_entity_id=sun.sun&end_time=2030-01-01T00%3A00%3A01%2B00%3A00&significant_changes_only" + }, + "recorded_at": "2026-04-13T08:08:52.505092+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_entry_subentries.json b/cassettes/test_endpoints/test_get_entry_subentries.json new file mode 100644 index 00000000..7f91e2f2 --- /dev/null +++ b/cassettes/test_endpoints/test_get_entry_subentries.json @@ -0,0 +1,73 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:56.737845+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.3", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "56199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 21 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"id\": 3, \"type\": \"config_entries/subentries/list\"}", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":[]}", + "offset_ms": 28 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_error_log.json b/cassettes/test_endpoints/test_get_error_log.json new file mode 100644 index 00000000..be5ba573 --- /dev/null +++ b/cassettes/test_endpoints/test_get_error_log.json @@ -0,0 +1,178 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "130" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc395b5c1d89-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:51.451045+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:51.462696+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/error_log", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "content-type": [ + "application/octet-stream" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "etag": [ + "\"18a5dc3110c7d305-1f862\"" + ], + "last-modified": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "accept-ranges": [ + "bytes" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "2026-04-11 01:19:59.797 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration anomaly which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.798 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration average which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.799 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.799 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration apsystems_ecur which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.800 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration emporia_vue which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.800 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration opensprinkler which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration dahua which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smartthinq_sensors which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration anomaly which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.802 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration average which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.802 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration apsystems_ecur which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration emporia_vue which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration opensprinkler which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.804 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration dahua which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.804 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smartthinq_sensors which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:20:08.151 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for freezer_sensor @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-11 01:20:08.152 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for mariah_light_1 @ 10.0.0.236: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.236', port=6053))]: [Errno 113] Connect call failed ('10.0.0.236', 6053) (SocketAPIError)\n2026-04-11 01:20:08.153 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for mariah_light_2 @ 10.0.0.199: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.199', port=6053))]: [Errno 113] Connect call failed ('10.0.0.199', 6053) (SocketAPIError)\n2026-04-11 01:20:15.271 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_4 @ 10.0.0.186: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.186', port=6053))]: [Errno 113] Connect call failed ('10.0.0.186', 6053) (SocketAPIError)\n2026-04-11 01:40:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 02:40:30.108 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 02:43:36.782 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 02:54:41.494 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 03:20:04.571 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 03:35:04.543 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 03:50:42.249 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 03:55:45.919 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 04:02:12.600 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 04:10:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 04:30:04.570 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 04:47:28.788 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 04:55:04.579 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 05:30:00.435 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-11 05:30:00.487 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-11 05:50:04.546 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:05:04.541 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:42:45.759 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 06:45:04.549 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:51:36.935 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:51:43.899 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 06:55:12.312 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:57:19.452 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:57:33.875 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:00:14.241 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:03:40.790 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 07:03:53.650 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-11 07:04:12.347 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:19:03.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 07:30:04.540 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 07:45:04.570 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:05:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:20:04.560 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:20:05.539 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:05.541 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:06.659 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:06.660 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.312 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.313 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.574 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:22:05.394 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:23:05.430 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:24:05.399 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:25:05.378 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:55:04.566 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 09:33:15.066 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 09:36:09.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 09:40:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:10:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:35:04.578 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:50:04.568 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 11:11:57.239 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 12:05:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 12:30:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 13:05:04.557 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 13:10:50.728 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 14:00:00.204 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-11 14:00:00.409 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 14:10:04.544 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 14:55:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 15:10:04.555 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:15:04.551 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:16:17.888 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:40:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:49:48.102 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:52:05.205 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:59:55.350 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 17:01:19.647 ERROR (MainThread) [homeassistant] Error doing job: Task exception was never retrieved (task: None)\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/_websocket/writer.py\", line 240, in _send_compressed_frame_async_locked\n self._write_websocket_frame(\n ~~~~~~~~~~~~~~~~~~~~~~~~~~~^\n (\n ^\n ...<8 lines>...\n 0x40,\n ^^^^^\n )\n ^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/_websocket/writer.py\", line 151, in _write_websocket_frame\n raise ClientConnectionResetError(\"Cannot write to closing transport\")\naiohttp.client_exceptions.ClientConnectionResetError: Cannot write to closing transport\n2026-04-11 17:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 17:24:26.562 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 17:30:04.574 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 17:38:09.456 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 17:46:52.016 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 17:48:39.466 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:25:04.536 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 18:32:20.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 18:43:58.735 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:46:58.026 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 18:47:17.168 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:59:33.868 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:01:14.708 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:09:25.459 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:16:54.600 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:21:32.275 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:29:18.916 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:37:53.860 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:40:16.378 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 20:10:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 20:35:04.594 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 20:48:55.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 21:30:04.547 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:00:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:25:04.545 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:40:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:48:08.946 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 22:48:31.970 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-11 23:10:54.388 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for freezer_sensor @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-11 23:10:56.464 WARNING (MainThread) [aioesphomeapi.connection] 10.0.0.210: Connection error occurred: 10.0.0.210: Connection requires encryption\n2026-04-11 23:33:33.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 23:40:04.565 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:05:04.593 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:28:55.491 ERROR (MainThread) [homeassistant.components.script.kitchen_lights_off] Kitchen Lights Off: Error executing script. Error for call_service at pos 1: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:28:55.492 ERROR (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Error executing script. Error for call_service at pos 1: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:28:55.493 ERROR (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] Error while executing automation automation.motion_kitchen_lights_off: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:30:04.572 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:31:37.583 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 00:58:50.816 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 01:00:42.766 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 01:15:06.135 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 01:26:54.287 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 01:29:28.512 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:33:58.759 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 01:46:32.286 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.160: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 01:46:42.287 ERROR (MainThread) [aioesphomeapi.connection] office_light_2 @ 10.0.0.160: disconnect request failed\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\nTimeoutError\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 890, in send_messages_await_response_complex\naioesphomeapi.core.TimeoutAPIError: Timeout waiting for DisconnectResponse after 10.0s\n2026-04-12 01:46:50.386 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 01:49:55.510 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:56:25.049 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:58:20.381 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 02:01:22.067 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 02:02:02.419 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:03:27.620 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:05:15.378 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:14:17.225 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 02:15:49.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:16:51.475 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:21:01.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:23:21.961 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 02:30:20.709 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 02:33:12.004 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:35:04.544 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 02:38:54.035 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:39:27.942 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for garage-parking @ 10.0.0.210: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))] (TimeoutAPIError)\n2026-04-12 02:43:43.676 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:46:25.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:51:52.320 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 02:52:56.540 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.2s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:54:58.536 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 02:59:33.887 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 03:11:17.708 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:11:20.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 03:12:08.766 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 03:13:20.248 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:20:50.624 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:23:09.898 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 03:24:40.686 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 03:36:06.787 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 03:37:27.816 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:40:17.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 03:45:04.555 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 03:48:58.546 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:51:48.500 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 04:01:17.510 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 04:02:03.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 04:05:40.470 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 04:09:59.830 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 04:15:00.962 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.185: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 04:15:10.963 ERROR (MainThread) [aioesphomeapi.connection] front_porch_3 @ 10.0.0.185: disconnect request failed\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\nTimeoutError\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 890, in send_messages_await_response_complex\naioesphomeapi.core.TimeoutAPIError: Timeout waiting for DisconnectResponse after 10.0s\n2026-04-12 04:15:55.452 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Timeout waiting for HelloResponse after 30.0s (TimeoutAPIError)\n2026-04-12 04:28:36.466 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:30:04.591 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 04:31:40.208 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 04:41:05.548 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 04:45:54.593 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:46:47.195 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:50:15.480 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:50:18.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 04:52:34.012 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 04:55:04.539 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 04:56:36.677 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.160: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 04:56:39.705 ERROR (MainThread) [aioesphomeapi.connection] office_light_2 @ 10.0.0.160: disconnect request failed\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/asyncio/selector_events.py\", line 1005, in _read_ready__data_received\n data = self._sock.recv(self.max_size)\nConnectionResetError: [Errno 104] Connection reset by peer\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\naioesphomeapi.core.ReadFailedAPIError: [Errno 104] Connection reset by peer\n2026-04-12 05:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 05:30:00.435 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-12 05:30:00.485 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-12 06:15:04.540 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 06:16:37.279 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-12 06:17:08.627 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 06:40:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 07:10:04.547 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 08:32:03.113 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 08:48:19.617 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 08:55:04.567 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 09:21:47.304 WARNING (SyncWorker_7) [custom_components.apsystems_ecur] Using cached data from last successful communication from ECU. Exception error: 'NoneType' object does not support item assignment\n2026-04-12 09:26:52.302 WARNING (SyncWorker_0) [custom_components.apsystems_ecur] Using cached data from last successful communication from ECU. Invalid data error: [Errno 111] Connection refused\n2026-04-12 09:40:04.560 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:09:02.498 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-12 10:09:31.130 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 10:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:30:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:55:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 11:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 11:50:18.052 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 12:20:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 12:33:09.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 12:36:37.398 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: HTTPSConnectionPool(host='api.emporiaenergy.com', port=443): Read timed out. (read timeout=10.03)\n2026-04-12 12:36:37.399 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: HTTPSConnectionPool(host='api.emporiaenergy.com', port=443): Read timed out. (read timeout=10.03)\n2026-04-12 13:03:49.371 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:14:38.271 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:21:57.324 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:30:51.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 14:00:00.203 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-12 14:00:04.543 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 14:20:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 14:40:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 15:11:01.011 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:14:29.549 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 15:14:50.963 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 1: Call cancelled\n2026-04-12 15:15:04.578 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 15:37:07.990 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:48:27.189 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:50:04.572 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 16:15:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 16:21:30.964 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 16:50:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 17:06:11.516 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 17:12:18.296 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error demuxing stream (Operation timed out, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:20.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 17:12:20.264 ERROR (MainThread) [homeassistant.components.roku.coordinator] Error fetching roku data: Invalid response from API: Timeout occurred while connecting to device\n2026-04-12 17:12:26.948 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Error occurred while communicating with WLED device at 10.0.0.187\n2026-04-12 17:12:29.355 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:31.429 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:32.871 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:36.229 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:12:36.229 ERROR (MainThread) [custom_components.dahua] Error fetching dahua data: \n2026-04-12 17:12:40.059 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 17:12:43.040 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Timeout occurred while connecting to WLED device at 10.0.0.176\n2026-04-12 17:12:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:45.058 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 17:12:47.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:52.548 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:02.072 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:08.149 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:13:13.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:17.111 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:23.748 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:13:28.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:31.831 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:38.153 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 1 (10.0.0.190) data\n2026-04-12 17:13:38.252 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bedroom 1 (10.0.0.177) data\n2026-04-12 17:13:38.285 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 6 (10.0.0.195) data\n2026-04-12 17:13:38.288 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Shower (10.0.0.197) data\n2026-04-12 17:13:38.337 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 2 (10.0.0.191) data\n2026-04-12 17:13:38.420 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 4 (10.0.0.193) data\n2026-04-12 17:13:38.451 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Entry Light (10.0.0.196) data\n2026-04-12 17:13:38.452 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 5 (10.0.0.194) data\n2026-04-12 17:13:38.507 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bedroom 2 (10.0.0.178) data\n2026-04-12 17:13:38.532 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 3 (10.0.0.192) data\n2026-04-12 17:13:38.535 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Matter Bath Toilet (10.0.0.198) data\n2026-04-12 17:13:39.349 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:13:41.557 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Mariah Light (10.0.0.110) data\n2026-04-12 17:13:42.180 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 1 (10.0.0.150) data\n2026-04-12 17:13:42.320 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 3 (10.0.0.152) data\n2026-04-12 17:13:42.375 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 2 (10.0.0.151) data\n2026-04-12 17:13:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:44.224 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 3 (10.0.0.182) data\n2026-04-12 17:13:44.244 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 2 (10.0.0.181) data\n2026-04-12 17:13:45.194 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Living Room 1 (10.0.0.170) data\n2026-04-12 17:13:45.460 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 1 (10.0.0.180) data\n2026-04-12 17:13:46.872 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:47.271 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Living Room 2 (10.0.0.171) data\n2026-04-12 17:13:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:58.948 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 17:14:01.591 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:04.068 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for leks_lamp @ 10.0.0.49: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.49', port=6053))]: [Errno 113] Connect call failed ('10.0.0.49', 6053) (SocketAPIError)\n2026-04-12 17:14:05.348 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:14:06.149 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_4 @ 10.0.0.162: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.162', port=6053))]: [Errno 113] Connect call failed ('10.0.0.162', 6053) (SocketAPIError)\n2026-04-12 17:14:06.318 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.185', port=6053))]: [Errno 113] Connect call failed ('10.0.0.185', 6053) (SocketAPIError)\n2026-04-12 17:14:07.188 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_3 @ 10.0.0.161: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.161', port=6053))]: [Errno 113] Connect call failed ('10.0.0.161', 6053) (SocketAPIError)\n2026-04-12 17:14:09.828 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_lamp_1 @ 10.0.0.163: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.163', port=6053))]: [Errno 113] Connect call failed ('10.0.0.163', 6053) (SocketAPIError)\n2026-04-12 17:14:11.989 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:14:12.558 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_2 @ 10.0.0.184: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.184', port=6053))]: [Errno 113] Connect call failed ('10.0.0.184', 6053) (SocketAPIError)\n2026-04-12 17:14:13.361 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:14.788 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_1 @ 10.0.0.183: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.183', port=6053))]: [Errno 113] Connect call failed ('10.0.0.183', 6053) (SocketAPIError)\n2026-04-12 17:14:17.111 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.2s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:17.268 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_1 @ 10.0.0.159: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.159', port=6053))]: [Errno 113] Connect call failed ('10.0.0.159', 6053) (SocketAPIError)\n2026-04-12 17:14:28.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:32.311 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:43.439 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:14:46.951 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:58.308 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:14:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:02.241 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 17:15:13.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:14.239 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:15:16.871 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:28.401 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:31.911 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:46.229 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:15:47.041 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:58.628 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:16:16.376 ERROR (MainThread) [custom_components.dahua] server closed the connection\n2026-04-12 17:16:16.377 WARNING (MainThread) [custom_components.dahua] Disconnected from VTO at 10.0.0.107, reconnecting in 5s\n2026-04-12 17:20:00.850 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 17:22:42.937 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 17:36:58.262 ERROR (MainThread) [homeassistant.components.roku.coordinator] Error fetching roku data: Invalid response from API: Timeout occurred while connecting to device\n2026-04-12 17:41:28.993 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error demuxing stream (Operation timed out, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:41:29.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 17:41:32.148 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:41:32.148 ERROR (MainThread) [custom_components.dahua] Error fetching dahua data: \n2026-04-12 17:41:52.632 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Timeout occurred while connecting to WLED device at 10.0.0.187\n2026-04-12 17:41:54.059 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 18:08:22.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 18:15:57.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 18:30:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 18:33:30.868 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for garage-parking @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-12 18:34:56.001 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:35:20.098 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:37:00.945 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:37:01.877 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:37:37.665 ERROR (MainThread) [snitun.multiplexer.core] Timeout error while pinging peer\n2026-04-12 18:37:53.449 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:37:54.500 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:38:12.624 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:38:13.568 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:38:43.881 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:38:44.821 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:41:28.326 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 18:47:50.237 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:47:51.234 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:11.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:11.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:21.244 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:36.683 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:49:01.774 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:49:04.943 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:49:14.523 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.13/site-packages/turbojpeg.py:947: UserWarning: Corrupt JPEG data: 608 extraneous bytes before marker 0xfe\n warnings.warn(self.__get_error_string(handle))\n\n2026-04-12 18:50:19.341 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 18:50:37.444 ERROR (MainThread) [homeassistant.components.automation.notify_garage_lights_left_on] NOTIFY - Garage Lights Left On: Error executing script. Service not found for call_service at pos 1: Action notify.mobile_app_adam_s_pixel_7 not found\n2026-04-12 19:27:44.345 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:28:09.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:32:49.299 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:33:33.495 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:35:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 19:43:54.509 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:44:20.653 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:44:50.468 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:45:21.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:45:22.499 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:47:23.415 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 19:50:06.490 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:09.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:50:34.528 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:35.452 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:47.998 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:50:48.935 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:51:02.855 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:22.658 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:53:23.593 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:53:24.888 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:25.812 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:31.411 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:54:12.569 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:54:13.578 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:00:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 20:00:15.837 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:00:16.807 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:00:55.970 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:00:56.935 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:04:02.331 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 20:15:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 20:17:37.705 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 20:35:01.370 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:35:02.307 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:37:34.234 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:37:35.199 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:40:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 21:00:34.107 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:00:35.075 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:01:33.320 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:01:34.311 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:02:06.347 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:02:07.305 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:05:04.549 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 21:11:34.866 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:11:35.826 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:12:50.072 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:13:12.937 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:18:06.778 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:33:38.676 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:34:08.277 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:44:24.585 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:44:27.859 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:44:50.813 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:44:51.775 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:46:30.620 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 22:40:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 22:53:12.965 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 22:53:14.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 22:53:41.290 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 22:53:42.245 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:00:55.476 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:00:56.474 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:01:39.220 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:01:39.224 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:02:20.947 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:02:49.147 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:02:55.878 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:03:51.394 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:05:28.785 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 23:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:14:05.881 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:14:06.810 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:14:17.323 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:25:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:25:12.344 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:25:13.330 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:25:34.221 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:25:35.184 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:12.175 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:13.173 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:21.888 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:22.867 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:47.187 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:48.204 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:28:30.553 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:28:31.559 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:28:56.733 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:28:57.727 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:31:25.167 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:36:46.658 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:50:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:53:43.998 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:44.986 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:51.335 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:52.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:54:21.085 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:54:22.070 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:55:00.235 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:01.188 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:29.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:30.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:56:23.519 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:56:24.480 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:03:40.855 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:03:41.859 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:04:06.692 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:04:07.671 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:10:29.774 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:10:30.730 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:11:01.924 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:11:02.865 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:30:37.277 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:38.231 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:44.481 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:45.488 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:31:11.688 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:31:12.623 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:33:12.698 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:33:13.644 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:33:41.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:33:42.483 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:35:04.648 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 01:19:20.217 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 01:28:30.229 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 01:28:30.230 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 01:30:04.561 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 01:51:28.016 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 02:02:20.007 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:02:21.000 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:02:35.302 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:02:36.299 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:03:38.287 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:03:39.278 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:05:19.460 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:08:01.758 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:15:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 02:21:50.760 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 02:25:23.626 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:25:23.627 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:27:26.948 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:27:55.098 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:30:04.566 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 02:31:07.280 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:32:40.684 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:33:22.731 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:34:29.163 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:34:59.947 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:35:04.410 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:35:28.265 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:36:47.884 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:37:40.130 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:41:20.303 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:42:02.493 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:42:15.938 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:43:26.188 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:44:04.238 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:44:43.899 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:49:12.330 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:50:03.755 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:50:04.688 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:50:13.984 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:51:10.488 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:52:39.343 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:52:39.344 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:05:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 03:17:13.148 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:14.135 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:50.879 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:17:51.826 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:17:57.216 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:58.217 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:19.244 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:18:19.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:26.380 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:27.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:50.403 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:18:51.386 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:24:12.901 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:05:26.000 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:12:42.948 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:12:51.671 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:12:52.621 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:13:22.269 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:13:23.241 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:16:44.600 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:16:45.564 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:17:16.916 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:17:17.842 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:39:38.985 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:40:04.551 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 04:40:09.417 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:43:51.433 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:05.993 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:24.618 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:25.647 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:48.614 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:44:48.614 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 05:05:04.541 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 05:30:00.438 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-13 05:30:00.466 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-13 05:39:21.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-13 06:50:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 06:57:44.314 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.13/site-packages/turbojpeg.py:947: UserWarning: Corrupt JPEG data: 608 extraneous bytes before marker 0xfe\n warnings.warn(self.__get_error_string(handle))\n\n2026-04-13 08:05:05.661 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455378877664] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:05.728 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454991178912] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:07.419 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455122022496] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:07.473 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993089600] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.092 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901625728] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.150 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899902048] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.313 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899895648] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.447 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899907008] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.565 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900018976] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.618 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900014976] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.695 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900144448] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.795 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454991711744] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.896 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900140768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.964 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900144608] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.044 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900152128] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.166 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900147648] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.299 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900143008] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.383 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899829312] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.639 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455100599168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.693 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900139488] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.933 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454992494656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.997 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993092800] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.088 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993095680] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.142 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993093120] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.824 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904965824] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.111 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455083636064] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.177 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455083631104] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.247 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535808480] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.304 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535814880] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.371 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901624768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.434 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535814720] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.500 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901620768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.565 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901623488] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.627 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901626048] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.960 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901615168] An action which does not return responses can't be called with return_response=True\n2026-04-13 08:05:11.973 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901615168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.041 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901621408] An action which does not return responses can't be called with return_response=True\n2026-04-13 08:05:12.053 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901621408] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.235 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900394848] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.326 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.327 ERROR (MainThread) [aiohttp.server] Error handling request from 10.40.0.2\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_protocol.py\", line 510, in _handle_request\n resp = await request_handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_app.py\", line 569, in _handle\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_middlewares.py\", line 117, in impl\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/security_filter.py\", line 92, in security_filter_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/forwarded.py\", line 214, in forwarded_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/request_context.py\", line 26, in request_context_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/ban.py\", line 86, in ban_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/auth.py\", line 242, in auth_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/headers.py\", line 41, in headers_middleware\n response = await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/http.py\", line 73, in handle\n result = await handler(request, **request.match_info)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/api/__init__.py\", line 437, in post\n response = await shield(\n ^^^^^^^^^^^^^\n ...<8 lines>...\n )\n ^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2819, in async_call\n response_data = await coro\n ^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2862, in _execute_service\n return await target(service_call)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/service.py\", line 824, in entity_service_call\n raise HomeAssistantError(\n \"Service call requested response data but did not match any entities\"\n )\nhomeassistant.exceptions.HomeAssistantError: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.489 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.489 ERROR (MainThread) [aiohttp.server] Error handling request from 10.40.0.2\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_protocol.py\", line 510, in _handle_request\n resp = await request_handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_app.py\", line 569, in _handle\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_middlewares.py\", line 117, in impl\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/security_filter.py\", line 92, in security_filter_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/forwarded.py\", line 214, in forwarded_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/request_context.py\", line 26, in request_context_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/ban.py\", line 86, in ban_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/auth.py\", line 242, in auth_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/headers.py\", line 41, in headers_middleware\n response = await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/http.py\", line 73, in handle\n result = await handler(request, **request.match_info)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/api/__init__.py\", line 437, in post\n response = await shield(\n ^^^^^^^^^^^^^\n ...<8 lines>...\n )\n ^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2819, in async_call\n response_data = await coro\n ^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2862, in _execute_service\n return await target(service_call)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/service.py\", line 824, in entity_service_call\n raise HomeAssistantError(\n \"Service call requested response data but did not match any entities\"\n )\nhomeassistant.exceptions.HomeAssistantError: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.591 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.591 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] Error during service call to weather.get_forecasts: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.598 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] The action requires responses and must be called with return_response=True\n2026-04-13 08:05:12.641 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.715 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.715 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] Error during service call to weather.get_forecasts: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.722 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] The action requires responses and must be called with return_response=True\n2026-04-13 08:05:12.762 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:13.115 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900392928] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:13.198 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900399168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.338 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904955424] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.401 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901628448] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.479 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901614528] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.844 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900393888] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.008 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038481280] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.212 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038482080] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.277 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038480000] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.414 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038472000] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.476 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-13 08:05:15.523 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-13 08:05:15.566 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-13 08:05:15.630 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-13 08:05:16.552 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455084119904] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.611 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041390272] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.659 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041388192] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.708 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041391072] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.797 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455161674656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.898 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904968384] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:17.302 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455085128128] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:17.932 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900261056] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:18.239 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900261376] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:19.098 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900018656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:08:51.293 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900015616] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:08:51.362 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900009376] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/error_log" + }, + "recorded_at": "2026-04-13T08:08:51.478881+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_events.json b/cassettes/test_endpoints/test_get_events.json new file mode 100644 index 00000000..dba25179 --- /dev/null +++ b/cassettes/test_endpoints/test_get_events.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "137" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc673937fef4-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:58.783424+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:58.793739+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "248" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":4},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/events" + }, + "recorded_at": "2026-04-13T08:08:58.801923+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_logbook_entries.json b/cassettes/test_endpoints/test_get_logbook_entries.json new file mode 100644 index 00000000..a4c17292 --- /dev/null +++ b/cassettes/test_endpoints/test_get_logbook_entries.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "130" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc3b7a2e3d1b-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:51.785072+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:51.796219+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:51 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "173" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:19.396864+00:00\",\"context_user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:19.501928+00:00\",\"context_user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00" + }, + "recorded_at": "2026-04-13T08:08:51.968668+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json b/cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json new file mode 100644 index 00000000..ab29561b --- /dev/null +++ b/cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:55.430404+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 7 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 7 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 13 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/flow/progress\"}", + "offset_ms": 14 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"flow_id\":\"01KNX20H106MWSVY485WG4GDJV\",\"handler\":\"matter\",\"context\":{\"source\":\"zeroconf\",\"discovery_key\":{\"domain\":\"zeroconf\",\"key\":[\"_matter._tcp.local.\",\"FCE73F24FC01F9E6-00000000533C2701._matter._tcp.local.\"],\"version\":1},\"unique_id\":\"default_discovery_unique_id\"},\"step_id\":\"manual\"},{\"flow_id\":\"01KP2RCRT7PWY3TA3P9BWJTVHV\",\"handler\":\"androidtv_remote\",\"context\":{\"source\":\"zeroconf\",\"discovery_key\":{\"domain\":\"zeroconf\",\"key\":[\"_androidtvremote2._tcp.local.\",\"Lex room TV._androidtvremote2._tcp.local.\"],\"version\":1},\"unique_id\":\"c0:e5:da:99:a2:fd\",\"title_placeholders\":{\"name\":\"Lex room TV\"}},\"step_id\":\"zeroconf_confirm\"}]}", + "offset_ms": 19 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_rendered_template.json b/cassettes/test_endpoints/test_get_rendered_template.json new file mode 100644 index 00000000..6bc2e447 --- /dev/null +++ b/cassettes/test_endpoints/test_get_rendered_template.json @@ -0,0 +1,169 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "131" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc40ffaa2d7c-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:52.657449+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:52.668673+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/template", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:52 GMT" + ], + "content-type": [ + "text/plain; charset=utf-8" + ], + "content-length": [ + "29" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "The sun is below the horizon." + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/template" + }, + "recorded_at": "2026-04-13T08:08:52.677549+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_state.json b/cassettes/test_endpoints/test_get_state.json new file mode 100644 index 00000000..0fe48081 --- /dev/null +++ b/cassettes/test_endpoints/test_get_state.json @@ -0,0 +1,169 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "137" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc652808c4ac-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:58.455549+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:58.466202+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "641" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.sun" + }, + "recorded_at": "2026-04-13T08:08:58.475327+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_states.json b/cassettes/test_endpoints/test_get_states.json new file mode 100644 index 00000000..e180ad85 --- /dev/null +++ b/cassettes/test_endpoints/test_get_states.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "136" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc6268dee6e0-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:58.014989+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:58.027882+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "90989" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states" + }, + "recorded_at": "2026-04-13T08:08:58.053511+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_ignore_config_flow.json b/cassettes/test_endpoints/test_ignore_config_flow.json new file mode 100644 index 00000000..30c934e4 --- /dev/null +++ b/cassettes/test_endpoints/test_ignore_config_flow.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:56.525571+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 4 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 4 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 9 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"flow_id\": \"\", \"title\": \"\", \"id\": 2, \"type\": \"config_entries/ignore_flow\"}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"not_found\",\"message\":\"Config entry not found\"}}", + "offset_ms": 14 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_set_state.json b/cassettes/test_endpoints/test_set_state.json new file mode 100644 index 00000000..133b4ef7 --- /dev/null +++ b/cassettes/test_endpoints/test_set_state.json @@ -0,0 +1,175 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "137" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc662e0a1bed-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:58.614085+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:58.626207+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:58 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "216" + ], + "location": [ + "/api/states/sun.red_sun" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"beyond_our_solar_system\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:08:58.618002+00:00\",\"last_reported\":\"2026-04-13T08:08:58.618002+00:00\",\"last_updated\":\"2026-04-13T08:08:58.618002+00:00\",\"context\":{\"id\":\"01KP2Y5YZS5M77V83CMRSFA6BM\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-13T08:08:58.635673+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_trigger_service.json b/cassettes/test_endpoints/test_trigger_service.json new file mode 100644 index 00000000..d0430dcd --- /dev/null +++ b/cassettes/test_endpoints/test_trigger_service.json @@ -0,0 +1,218 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:56 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "135" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc5c2dbfdebd-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:57.015900+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:57.027118+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:08:57.042838+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/services/notify/persistent_notification?return_response", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 400, + "message": "Bad Request" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "82" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"Service does not support responses. Remove return_response from request.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services/notify/persistent_notification?return_response" + }, + "recorded_at": "2026-04-13T08:08:57.064034+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_trigger_service_with_response.json b/cassettes/test_endpoints/test_trigger_service_with_response.json new file mode 100644 index 00000000..c62c415c --- /dev/null +++ b/cassettes/test_endpoints/test_trigger_service_with_response.json @@ -0,0 +1,206 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "136" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc5fffcb97a5-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:08:57.621673+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:08:57.630843+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:08:57.645427+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/services/weather/get_forecasts?return_response", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 500, + "message": "Internal Server Error" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:08:57 GMT" + ], + "content-type": [ + "text/plain; charset=utf-8" + ], + "content-length": [ + "55" + ] + }, + "body": { + "string": "500 Internal Server Error\n\nServer got itself in trouble" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services/weather/get_forecasts?return_response" + }, + "recorded_at": "2026-04-13T08:08:57.672733+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_config.json b/cassettes/test_endpoints/test_websocket_get_config.json new file mode 100644 index 00000000..d4359f5a --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_config.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:53.512641+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_config\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"allowlist_external_dirs\":[\"/config/www\",\"/media\"],\"allowlist_external_urls\":[],\"components\":[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":0,\"external_url\":null,\"internal_url\":\"https://ha.krkn.cc\",\"language\":\"en\",\"latitude\":45.2486428320808,\"location_name\":\"Logan's Landing\",\"longitude\":-123.11064967054175,\"radius\":129,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Los_Angeles\",\"unit_system\":{\"length\":\"mi\",\"accumulated_precipitation\":\"in\",\"area\":\"ft²\",\"mass\":\"lb\",\"pressure\":\"psi\",\"temperature\":\"°F\",\"volume\":\"gal\",\"wind_speed\":\"mph\"},\"version\":\"2026.1.2\",\"whitelist_external_dirs\":[\"/config/www\",\"/media\"]}}", + "offset_ms": 16 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_domain.json b/cassettes/test_endpoints/test_websocket_get_domain.json new file mode 100644 index 00000000..c0a6cc91 --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_domain.json @@ -0,0 +1,85 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:55.279817+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"", + "offset_ms": 20 + }, + { + "direction": "recv", + "type": "text", + "payload": "timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizo", + "offset_ms": 21 + }, + { + "direction": "recv", + "type": "text", + "payload": "ntal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recordi", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "ng. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", + "offset_ms": 27 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_domains.json b/cassettes/test_endpoints/test_websocket_get_domains.json new file mode 100644 index 00000000..a558a860 --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_domains.json @@ -0,0 +1,79 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:54.958138+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 20 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 20 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recordi", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "ng. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", + "offset_ms": 29 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_entities.json b/cassettes/test_endpoints/test_websocket_get_entities.json new file mode 100644 index 00000000..65dc821e --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_entities.json @@ -0,0 +1,253 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:54.570840+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems E", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "CU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_", + "offset_ms": 29 + }, + { + "direction": "recv", + "type": "text", + "payload": "ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light ", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", + "offset_ms": 33 + }, + { + "direction": "recv", + "type": "text", + "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.4083", + "offset_ms": 34 + }, + { + "direction": "recv", + "type": "text", + "payload": "85+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75A", + "offset_ms": 35 + }, + { + "direction": "recv", + "type": "text", + "payload": "M8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-1", + "offset_ms": 36 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", + "offset_ms": 37 + }, + { + "direction": "recv", + "type": "text", + "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_", + "offset_ms": 39 + }, + { + "direction": "recv", + "type": "text", + "payload": "updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow", + "offset_ms": 40 + }, + { + "direction": "recv", + "type": "text", + "payload": " Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC7", + "offset_ms": 41 + }, + { + "direction": "recv", + "type": "text", + "payload": "07RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5", + "offset_ms": 43 + }, + { + "direction": "recv", + "type": "text", + "payload": "E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZV", + "offset_ms": 45 + }, + { + "direction": "recv", + "type": "text", + "payload": "KEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off ", + "offset_ms": 46 + }, + { + "direction": "recv", + "type": "text", + "payload": "At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"", + "offset_ms": 48 + }, + { + "direction": "recv", + "type": "text", + "payload": "Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX", + "offset_ms": 50 + }, + { + "direction": "recv", + "type": "text", + "payload": "4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.", + "offset_ms": 51 + }, + { + "direction": "recv", + "type": "text", + "payload": "solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current M", + "offset_ms": 53 + }, + { + "direction": "recv", + "type": "text", + "payload": "ode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4J", + "offset_ms": 55 + }, + { + "direction": "recv", + "type": "text", + "payload": "M6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZK", + "offset_ms": 58 + }, + { + "direction": "recv", + "type": "text", + "payload": "KGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310", + "offset_ms": 60 + }, + { + "direction": "recv", + "type": "text", + "payload": "325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731K", + "offset_ms": 62 + }, + { + "direction": "recv", + "type": "text", + "payload": "PNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":n", + "offset_ms": 65 + }, + { + "direction": "recv", + "type": "text", + "payload": "ull}}]}", + "offset_ms": 68 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json b/cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json new file mode 100644 index 00000000..335e0b7a --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json @@ -0,0 +1,283 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:53.881610+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 12 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YX", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "VNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr C", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "losed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon", + "offset_ms": 29 + }, + { + "direction": "recv", + "type": "text", + "payload": " Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_", + "offset_ms": 29 + }, + { + "direction": "recv", + "type": "text", + "payload": "ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light ", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", + "offset_ms": 32 + }, + { + "direction": "recv", + "type": "text", + "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", + "offset_ms": 33 + }, + { + "direction": "recv", + "type": "text", + "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.4083", + "offset_ms": 34 + }, + { + "direction": "recv", + "type": "text", + "payload": "85+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"", + "offset_ms": 35 + }, + { + "direction": "recv", + "type": "text", + "payload": "32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", + "offset_ms": 37 + }, + { + "direction": "recv", + "type": "text", + "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_", + "offset_ms": 38 + }, + { + "direction": "recv", + "type": "text", + "payload": "updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT", + "offset_ms": 39 + }, + { + "direction": "recv", + "type": "text", + "payload": "5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G7", + "offset_ms": 41 + }, + { + "direction": "recv", + "type": "text", + "payload": "1KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P", + "offset_ms": 42 + }, + { + "direction": "recv", + "type": "text", + "payload": "450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_", + "offset_ms": 44 + }, + { + "direction": "recv", + "type": "text", + "payload": "dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZ", + "offset_ms": 45 + }, + { + "direction": "recv", + "type": "text", + "payload": "H3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZV", + "offset_ms": 48 + }, + { + "direction": "recv", + "type": "text", + "payload": "KEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off ", + "offset_ms": 50 + }, + { + "direction": "recv", + "type": "text", + "payload": "At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"", + "offset_ms": 53 + }, + { + "direction": "recv", + "type": "text", + "payload": "Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX", + "offset_ms": 56 + }, + { + "direction": "recv", + "type": "text", + "payload": "4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1m", + "offset_ms": 59 + }, + { + "direction": "recv", + "type": "text", + "payload": "on\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_", + "offset_ms": 61 + }, + { + "direction": "recv", + "type": "text", + "payload": "updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe", + "offset_ms": 63 + }, + { + "direction": "recv", + "type": "text", + "payload": "\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.3070", + "offset_ms": 66 + }, + { + "direction": "recv", + "type": "text", + "payload": "53+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H", + "offset_ms": 69 + }, + { + "direction": "recv", + "type": "text", + "payload": "3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310", + "offset_ms": 71 + }, + { + "direction": "recv", + "type": "text", + "payload": "325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731K", + "offset_ms": 74 + }, + { + "direction": "recv", + "type": "text", + "payload": "PNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv", + "offset_ms": 76 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 78 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json b/cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json new file mode 100644 index 00000000..6da6fe4f --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json @@ -0,0 +1,247 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:53.753713+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YX", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "VNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light ", + "offset_ms": 33 + }, + { + "direction": "recv", + "type": "text", + "payload": "Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7", + "offset_ms": 34 + }, + { + "direction": "recv", + "type": "text", + "payload": "ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", + "offset_ms": 35 + }, + { + "direction": "recv", + "type": "text", + "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", + "offset_ms": 37 + }, + { + "direction": "recv", + "type": "text", + "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.4083", + "offset_ms": 38 + }, + { + "direction": "recv", + "type": "text", + "payload": "85+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"", + "offset_ms": 39 + }, + { + "direction": "recv", + "type": "text", + "payload": "32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Hom", + "offset_ms": 40 + }, + { + "direction": "recv", + "type": "text", + "payload": "e Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", + "offset_ms": 41 + }, + { + "direction": "recv", + "type": "text", + "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_", + "offset_ms": 42 + }, + { + "direction": "recv", + "type": "text", + "payload": "updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow", + "offset_ms": 44 + }, + { + "direction": "recv", + "type": "text", + "payload": " Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC7", + "offset_ms": 46 + }, + { + "direction": "recv", + "type": "text", + "payload": "07RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5", + "offset_ms": 48 + }, + { + "direction": "recv", + "type": "text", + "payload": "E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off ", + "offset_ms": 50 + }, + { + "direction": "recv", + "type": "text", + "payload": "At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"", + "offset_ms": 53 + }, + { + "direction": "recv", + "type": "text", + "payload": "Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX", + "offset_ms": 65 + }, + { + "direction": "recv", + "type": "text", + "payload": "4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.", + "offset_ms": 67 + }, + { + "direction": "recv", + "type": "text", + "payload": "solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current M", + "offset_ms": 69 + }, + { + "direction": "recv", + "type": "text", + "payload": "ode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4J", + "offset_ms": 71 + }, + { + "direction": "recv", + "type": "text", + "payload": "M6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZK", + "offset_ms": 73 + }, + { + "direction": "recv", + "type": "text", + "payload": "KGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310", + "offset_ms": 75 + }, + { + "direction": "recv", + "type": "text", + "payload": "325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731K", + "offset_ms": 78 + }, + { + "direction": "recv", + "type": "text", + "payload": "PNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":n", + "offset_ms": 80 + }, + { + "direction": "recv", + "type": "text", + "payload": "ull}}]}", + "offset_ms": 83 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_entity_no_args.json b/cassettes/test_endpoints/test_websocket_get_entity_no_args.json new file mode 100644 index 00000000..04cb9181 --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_entity_no_args.json @@ -0,0 +1,43 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:54.005752+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_rendered_template.json b/cassettes/test_endpoints/test_websocket_get_rendered_template.json new file mode 100644 index 00000000..0e70cd0a --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_rendered_template.json @@ -0,0 +1,73 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:52.788745+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"template\": \"The sun is {{ states(\\\"sun.sun\\\").replace(\\\"_\\\", \\\" the \\\") }}.\", \"report_errors\": true, \"id\": 2, \"type\": \"render_template\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":{\"result\":\"The sun is below the horizon.\",\"listeners\":{\"all\":false,\"entities\":[\"sun.sun\"],\"domains\":[],\"time\":false}}}", + "offset_ms": 20 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 2, \"id\": 3, \"type\": \"unsubscribe_events\"}", + "offset_ms": 20 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 25 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_state.json b/cassettes/test_endpoints/test_websocket_get_state.json new file mode 100644 index 00000000..53d14098 --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_state.json @@ -0,0 +1,247 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:53.624404+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 13 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 14 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YX", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "VNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", + "offset_ms": 29 + }, + { + "direction": "recv", + "type": "text", + "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH", + "offset_ms": 32 + }, + { + "direction": "recv", + "type": "text", + "payload": "5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H69", + "offset_ms": 33 + }, + { + "direction": "recv", + "type": "text", + "payload": "9BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light ", + "offset_ms": 34 + }, + { + "direction": "recv", + "type": "text", + "payload": "Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7", + "offset_ms": 35 + }, + { + "direction": "recv", + "type": "text", + "payload": "ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", + "offset_ms": 36 + }, + { + "direction": "recv", + "type": "text", + "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", + "offset_ms": 37 + }, + { + "direction": "recv", + "type": "text", + "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.4083", + "offset_ms": 39 + }, + { + "direction": "recv", + "type": "text", + "payload": "85+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"", + "offset_ms": 41 + }, + { + "direction": "recv", + "type": "text", + "payload": "32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", + "offset_ms": 42 + }, + { + "direction": "recv", + "type": "text", + "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_", + "offset_ms": 58 + }, + { + "direction": "recv", + "type": "text", + "payload": "updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow", + "offset_ms": 59 + }, + { + "direction": "recv", + "type": "text", + "payload": " Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC7", + "offset_ms": 61 + }, + { + "direction": "recv", + "type": "text", + "payload": "07RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5", + "offset_ms": 63 + }, + { + "direction": "recv", + "type": "text", + "payload": "E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"177", + "offset_ms": 64 + }, + { + "direction": "recv", + "type": "text", + "payload": "5869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\"", + "offset_ms": 66 + }, + { + "direction": "recv", + "type": "text", + "payload": ",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29", + "offset_ms": 68 + }, + { + "direction": "recv", + "type": "text", + "payload": ".7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs", + "offset_ms": 70 + }, + { + "direction": "recv", + "type": "text", + "payload": "_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0", + "offset_ms": 71 + }, + { + "direction": "recv", + "type": "text", + "payload": "434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-1", + "offset_ms": 73 + }, + { + "direction": "recv", + "type": "text", + "payload": "3T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQ", + "offset_ms": 75 + }, + { + "direction": "recv", + "type": "text", + "payload": "T9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83P", + "offset_ms": 77 + }, + { + "direction": "recv", + "type": "text", + "payload": "BV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310", + "offset_ms": 80 + }, + { + "direction": "recv", + "type": "text", + "payload": "325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731K", + "offset_ms": 82 + }, + { + "direction": "recv", + "type": "text", + "payload": "PNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":n", + "offset_ms": 85 + }, + { + "direction": "recv", + "type": "text", + "payload": "ull}}]}", + "offset_ms": 88 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_state_not_found.json b/cassettes/test_endpoints/test_websocket_get_state_not_found.json new file mode 100644 index 00000000..7845d99b --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_state_not_found.json @@ -0,0 +1,259 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:54.448063+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YX", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "VNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"d", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "ock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr C", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "losed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": " Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_", + "offset_ms": 29 + }, + { + "direction": "recv", + "type": "text", + "payload": "ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light ", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", + "offset_ms": 32 + }, + { + "direction": "recv", + "type": "text", + "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", + "offset_ms": 33 + }, + { + "direction": "recv", + "type": "text", + "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.4083", + "offset_ms": 34 + }, + { + "direction": "recv", + "type": "text", + "payload": "85+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"", + "offset_ms": 35 + }, + { + "direction": "recv", + "type": "text", + "payload": "32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", + "offset_ms": 36 + }, + { + "direction": "recv", + "type": "text", + "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_", + "offset_ms": 38 + }, + { + "direction": "recv", + "type": "text", + "payload": "updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow", + "offset_ms": 39 + }, + { + "direction": "recv", + "type": "text", + "payload": " Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC7", + "offset_ms": 41 + }, + { + "direction": "recv", + "type": "text", + "payload": "07RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5", + "offset_ms": 43 + }, + { + "direction": "recv", + "type": "text", + "payload": "E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZV", + "offset_ms": 44 + }, + { + "direction": "recv", + "type": "text", + "payload": "KEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off ", + "offset_ms": 47 + }, + { + "direction": "recv", + "type": "text", + "payload": "At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"", + "offset_ms": 48 + }, + { + "direction": "recv", + "type": "text", + "payload": "Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX", + "offset_ms": 50 + }, + { + "direction": "recv", + "type": "text", + "payload": "4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA3", + "offset_ms": 52 + }, + { + "direction": "recv", + "type": "text", + "payload": "0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779", + "offset_ms": 54 + }, + { + "direction": "recv", + "type": "text", + "payload": "740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.57", + "offset_ms": 56 + }, + { + "direction": "recv", + "type": "text", + "payload": "8911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.3070", + "offset_ms": 58 + }, + { + "direction": "recv", + "type": "text", + "payload": "53+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.3129", + "offset_ms": 61 + }, + { + "direction": "recv", + "type": "text", + "payload": "79+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"s", + "offset_ms": 63 + }, + { + "direction": "recv", + "type": "text", + "payload": "upported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"", + "offset_ms": 66 + }, + { + "direction": "recv", + "type": "text", + "payload": "binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card", + "offset_ms": 68 + }, + { + "direction": "recv", + "type": "text", + "payload": " update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 72 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_states.json b/cassettes/test_endpoints/test_websocket_get_states.json new file mode 100644 index 00000000..e2e52ed7 --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_get_states.json @@ -0,0 +1,265 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:58.206898+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", + "offset_ms": 20 + }, + { + "direction": "recv", + "type": "text", + "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", + "offset_ms": 20 + }, + { + "direction": "recv", + "type": "text", + "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", + "offset_ms": 21 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YX", + "offset_ms": 21 + }, + { + "direction": "recv", + "type": "text", + "payload": "VNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.1104", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "9],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door ", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4W", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "J7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.8367", + "offset_ms": 28 + }, + { + "direction": "recv", + "type": "text", + "payload": "63+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG", + "offset_ms": 29 + }, + { + "direction": "recv", + "type": "text", + "payload": "1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"e", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "ffect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:5", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "0.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom", + "offset_ms": 32 + }, + { + "direction": "recv", + "type": "text", + "payload": "_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40", + "offset_ms": 34 + }, + { + "direction": "recv", + "type": "text", + "payload": "KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 35 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball", + "offset_ms": 36 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_pr", + "offset_ms": 38 + }, + { + "direction": "recv", + "type": "text", + "payload": "eset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"", + "offset_ms": 39 + }, + { + "direction": "recv", + "type": "text", + "payload": "context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ", + "offset_ms": 48 + }, + { + "direction": "recv", + "type": "text", + "payload": "270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"", + "offset_ms": 50 + }, + { + "direction": "recv", + "type": "text", + "payload": "mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"", + "offset_ms": 52 + }, + { + "direction": "recv", + "type": "text", + "payload": "friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF", + "offset_ms": 53 + }, + { + "direction": "recv", + "type": "text", + "payload": "72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1m", + "offset_ms": 55 + }, + { + "direction": "recv", + "type": "text", + "payload": "on\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164", + "offset_ms": 57 + }, + { + "direction": "recv", + "type": "text", + "payload": "692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.", + "offset_ms": 59 + }, + { + "direction": "recv", + "type": "text", + "payload": "thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_", + "offset_ms": 61 + }, + { + "direction": "recv", + "type": "text", + "payload": "reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNH", + "offset_ms": 64 + }, + { + "direction": "recv", + "type": "text", + "payload": "CW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_", + "offset_ms": 67 + }, + { + "direction": "recv", + "type": "text", + "payload": "reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H77", + "offset_ms": 69 + }, + { + "direction": "recv", + "type": "text", + "payload": "31KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYT", + "offset_ms": 73 + }, + { + "direction": "recv", + "type": "text", + "payload": "F\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 76 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_trigger_service.json b/cassettes/test_endpoints/test_websocket_trigger_service.json new file mode 100644 index 00000000..ef591f8e --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_trigger_service.json @@ -0,0 +1,103 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:57.212769+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"", + "offset_ms": 18 + }, + { + "direction": "recv", + "type": "text", + "payload": "required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recordi", + "offset_ms": 20 + }, + { + "direction": "recv", + "type": "text", + "payload": "ng. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", + "offset_ms": 20 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"service_validation_error\",\"message\":\"Validation error: An action which does not return responses can't be called with return_response=True\",\"translation_key\":\"service_does_not_support_response\",\"translation_placeholders\":{\"return_response\":\"return_response=True\"},\"translation_domain\":\"homeassistant\"}}", + "offset_ms": 29 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": false, \"id\": 4, \"type\": \"call_service\"}", + "offset_ms": 29 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KP2Y5XMFB49WEF8HQQTABM55\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}}", + "offset_ms": 35 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json b/cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json new file mode 100644 index 00000000..352ae741 --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json @@ -0,0 +1,451 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:57.368005+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 12 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.29507", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "5+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:4", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "3:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_", + "offset_ms": 27 + }, + { + "direction": "recv", + "type": "text", + "payload": "8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 29 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"d", + "offset_ms": 33 + }, + { + "direction": "recv", + "type": "text", + "payload": "ock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_", + "offset_ms": 36 + }, + { + "direction": "recv", + "type": "text", + "payload": "battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr C", + "offset_ms": 38 + }, + { + "direction": "recv", + "type": "text", + "payload": "losed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"", + "offset_ms": 40 + }, + { + "direction": "recv", + "type": "text", + "payload": "Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"", + "offset_ms": 44 + }, + { + "direction": "recv", + "type": "text", + "payload": "button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"", + "offset_ms": 47 + }, + { + "direction": "recv", + "type": "text", + "payload": "friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4W", + "offset_ms": 49 + }, + { + "direction": "recv", + "type": "text", + "payload": "J7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 53 + }, + { + "direction": "recv", + "type": "text", + "payload": "2T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"e", + "offset_ms": 58 + }, + { + "direction": "recv", + "type": "text", + "payload": "ffect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:5", + "offset_ms": 63 + }, + { + "direction": "recv", + "type": "text", + "payload": "0.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom", + "offset_ms": 66 + }, + { + "direction": "recv", + "type": "text", + "payload": "_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_", + "offset_ms": 68 + }, + { + "direction": "recv", + "type": "text", + "payload": "updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40", + "offset_ms": 70 + }, + { + "direction": "recv", + "type": "text", + "payload": "KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-1", + "offset_ms": 71 + }, + { + "direction": "recv", + "type": "text", + "payload": "1T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball", + "offset_ms": 73 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0", + "offset_ms": 74 + }, + { + "direction": "recv", + "type": "text", + "payload": "KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTE", + "offset_ms": 76 + }, + { + "direction": "recv", + "type": "text", + "payload": "QC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"", + "offset_ms": 78 + }, + { + "direction": "recv", + "type": "text", + "payload": "mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"", + "offset_ms": 80 + }, + { + "direction": "recv", + "type": "text", + "payload": "state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC", + "offset_ms": 81 + }, + { + "direction": "recv", + "type": "text", + "payload": "9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_", + "offset_ms": 83 + }, + { + "direction": "recv", + "type": "text", + "payload": "updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D", + "offset_ms": 85 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"", + "offset_ms": 87 + }, + { + "direction": "recv", + "type": "text", + "payload": "context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789", + "offset_ms": 93 + }, + { + "direction": "recv", + "type": "text", + "payload": "H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath", + "offset_ms": 95 + }, + { + "direction": "recv", + "type": "text", + "payload": "_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-c", + "offset_ms": 98 + }, + { + "direction": "recv", + "type": "text", + "payload": "heck\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"Out", + "offset_ms": 100 + }, + { + "direction": "recv", + "type": "text", + "payload": "sideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 103 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"homeassistant\", \"service\": \"update_entity\", \"service_data\": {\"entity_id\": \"sun.sun\"}, \"return_response\": false, \"id\": 3, \"type\": \"call_service\"}", + "offset_ms": 111 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KP2Y5XVWSEAFX5ENJJ67ZQ4V\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}}", + "offset_ms": 117 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 4, \"type\": \"get_states\"}", + "offset_ms": 117 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"", + "offset_ms": 129 + }, + { + "direction": "recv", + "type": "text", + "payload": "last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01", + "offset_ms": 129 + }, + { + "direction": "recv", + "type": "text", + "payload": "DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"", + "offset_ms": 130 + }, + { + "direction": "recv", + "type": "text", + "payload": "Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f", + "offset_ms": 130 + }, + { + "direction": "recv", + "type": "text", + "payload": "3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time ", + "offset_ms": 131 + }, + { + "direction": "recv", + "type": "text", + "payload": "Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"", + "offset_ms": 132 + }, + { + "direction": "recv", + "type": "text", + "payload": "},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX", + "offset_ms": 133 + }, + { + "direction": "recv", + "type": "text", + "payload": "6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1", + "offset_ms": 134 + }, + { + "direction": "recv", + "type": "text", + "payload": "Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.75", + "offset_ms": 136 + }, + { + "direction": "recv", + "type": "text", + "payload": "4524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822", + "offset_ms": 137 + }, + { + "direction": "recv", + "type": "text", + "payload": "892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_", + "offset_ms": 138 + }, + { + "direction": "recv", + "type": "text", + "payload": "updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor ", + "offset_ms": 139 + }, + { + "direction": "recv", + "type": "text", + "payload": "Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:", + "offset_ms": 140 + }, + { + "direction": "recv", + "type": "text", + "payload": "50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_", + "offset_ms": 142 + }, + { + "direction": "recv", + "type": "text", + "payload": "reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007", + "offset_ms": 144 + }, + { + "direction": "recv", + "type": "text", + "payload": "871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH5", + "offset_ms": 146 + }, + { + "direction": "recv", + "type": "text", + "payload": "75MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FE", + "offset_ms": 148 + }, + { + "direction": "recv", + "type": "text", + "payload": "AD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T0", + "offset_ms": 151 + }, + { + "direction": "recv", + "type": "text", + "payload": "7:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.6258", + "offset_ms": 153 + }, + { + "direction": "recv", + "type": "text", + "payload": "89+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigb", + "offset_ms": 155 + }, + { + "direction": "recv", + "type": "text", + "payload": "ee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percen", + "offset_ms": 157 + }, + { + "direction": "recv", + "type": "text", + "payload": "tage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751", + "offset_ms": 160 + }, + { + "direction": "recv", + "type": "text", + "payload": "849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.1651", + "offset_ms": 162 + }, + { + "direction": "recv", + "type": "text", + "payload": "65+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"", + "offset_ms": 165 + }, + { + "direction": "recv", + "type": "text", + "payload": "binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T", + "offset_ms": 169 + }, + { + "direction": "recv", + "type": "text", + "payload": "02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"l", + "offset_ms": 183 + }, + { + "direction": "recv", + "type": "text", + "payload": "ast_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7N", + "offset_ms": 185 + }, + { + "direction": "recv", + "type": "text", + "payload": "Q4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-", + "offset_ms": 187 + }, + { + "direction": "recv", + "type": "text", + "payload": "04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_", + "offset_ms": 189 + }, + { + "direction": "recv", + "type": "text", + "payload": "updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wa", + "offset_ms": 192 + }, + { + "direction": "recv", + "type": "text", + "payload": "ke_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 195 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_trigger_service_with_response.json b/cassettes/test_endpoints/test_websocket_trigger_service_with_response.json new file mode 100644 index 00000000..6f922206 --- /dev/null +++ b/cassettes/test_endpoints/test_websocket_trigger_service_with_response.json @@ -0,0 +1,103 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:57.839612+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"", + "offset_ms": 18 + }, + { + "direction": "recv", + "type": "text", + "payload": "required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recordi", + "offset_ms": 20 + }, + { + "direction": "recv", + "type": "text", + "payload": "ng. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", + "offset_ms": 21 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"weather\", \"service\": \"get_forecasts\", \"service_data\": {\"entity_id\": \"weather.forecast_home\", \"type\": \"hourly\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"home_assistant_error\",\"message\":\"Service call requested response data but did not match any entities\"}}", + "offset_ms": 30 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"weather\", \"service\": \"get_forecasts\", \"service_data\": {\"entity_id\": \"weather.forecast_home\", \"type\": \"hourly\"}, \"return_response\": false, \"id\": 4, \"type\": \"call_service\"}", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"service_validation_error\",\"message\":\"Validation error: The action requires responses and must be called with return_response=True\",\"translation_key\":\"service_lacks_response_request\",\"translation_placeholders\":{\"return_response\":\"return_response=True\"},\"translation_domain\":\"homeassistant\"}}", + "offset_ms": 36 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_async_get_entity_registry_entry.json b/cassettes/test_entity_registry/test_async_get_entity_registry_entry.json new file mode 100644 index 00000000..c18e2213 --- /dev/null +++ b/cassettes/test_entity_registry/test_async_get_entity_registry_entry.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:00.304933+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"id\": 2, \"type\": \"config/entity_registry/get\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067739.720447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}", + "offset_ms": 16 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_async_list_entity_registry.json b/cassettes/test_entity_registry/test_async_list_entity_registry.json new file mode 100644 index 00000000..d9e8de4a --- /dev/null +++ b/cassettes/test_entity_registry/test_async_list_entity_registry.json @@ -0,0 +1,97 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:00.176893+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config/entity_registry/list\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.updater\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48544df94cdd8858d51e4825d887b87f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Updater\",\"platform\":\"updater\",\"translation_key\":null,\"unique_id\":\"updater\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.adam\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af3cc6ab1d311d80445a2911bab8a736\",\"labels\":[],\"modified_at\":1774112250.228571,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"collection\":{\"hash\":\"8ea23eafe65450db9d5d7917f1e1808a\"}},\"original_name\":\"Adam\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"adam\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"52fc2b39306eecd553aa2d1275b23f13\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.logan_s_landing\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc17bdf0b19aac327302b5ed8e37842\",\"labels\":[],\"modified_at\":1776067736.245874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Logan's Landing\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"home\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.remote_ui\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"662f53bf96ef56470f84c30f01b8db1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Remote UI\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-remote-ui-connectivity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.jenni\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"867ce61cfc7ab736b355b85c14411b09\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"jenni\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1566df05da78124d095f06fd3478d69d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Front Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015141627\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ff73de8af671e02bdb687bc221a551\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Back Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015238936\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stair_chandelier\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73856bdb53725526e8e63e078c9ebebe\",\"labels\":[],\"modified_at\":1775870416.949593,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.stair_chandelier\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a4c91300d5c0eebf9260967a60a018\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_routine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70c959e47b0e9e5e4b826c5900cad954\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Routine\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629617283234\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9bd88b769429a941a9478debe90a70a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785091384\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.wake_up_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f995f568522466041f6955cdbcc536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Wake Up Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"wake_up_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c348fbb7c91293d0d89150a1e883d05c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785279492\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f204a6e1edd3b3c13d9dc6e48613dd20\",\"labels\":[],\"modified_at\":1741730439.823744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Cat Bathroom Door Closed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950849970\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b4711ee4a97eb0c7c20e508d9b5c2afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950974058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2cc79375b1f971d1a5e8e393733e821\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631951014424\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8e2a310dc06849858f204cad33666aa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952292117\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37007cf65958ceae04ddd495d3be6771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952347170\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6221addad0ec6c1d678b405921c56c42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952450891\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_lamps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ead5a9e4369bbe20f36cdc5cdbb169bf\",\"labels\":[],\"modified_at\":1775870416.945327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.living_room_lamps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05c094b96331a2e72fa623591306c435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb5b70bdb5e625b89f9c05075b86919\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Occupancy\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-occupancy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d2c826662df9e49d3b4c59696b2198d\",\"labels\":[],\"modified_at\":1728721845.856414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":\"ecobee\",\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3bc3484981e75dcef88140475f41ad\",\"labels\":[],\"modified_at\":1768937324.405202,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"289469882a9d4c390942a2c28d21e837\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73aca607e21724f9c52d8d593ec4d76a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7ebb8f03146939f38815de610add87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895391373\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3381c206b02ec2b698ffba1019a5e8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Kids Room Motion White\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895431041\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_off_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54fa204f71e05ab0e55d9f4409aa6ac2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off Motion\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895565944\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":\"user\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_motion_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b122a6403b1e6102b774c5f91d37a109\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Door Motion Alarm\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b041853caeba17cf928939638155c248\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Human\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_human\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0247c03858e81ac316c24dbea6f0bd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Button Pressed\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_button_pressed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_invite\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b490d78c9b4cbaafadf0c893b801a05c\",\"labels\":[],\"modified_at\":1730406829.425846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Invite\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_invite\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_door_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bcca1ae5fefcacfd0ef6dcb4d8b7b11d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Door Status\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_door_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0f14d3b72d1f98e8ed47fbecd5b419\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Call No Answered\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_call_no_answered\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_infrared\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e21d212136e8f6167e23615634933ebf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Infrared\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_infrared\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_main\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dc52219ced77a446fe360690a4cc784a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Main\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Main\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28587a1f49ec36f599f8f42020999c28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d86893f808d91f26b6859f432eac7d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Red Alert\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"red_alert\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0c880ea25f8f95f5f4149b3b3dbde52a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Illuminate\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c375ec26f63adaba2a3600d0884e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Show Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"show_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212fbb3cd5dfca24ca5dfee46fa297da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Kids Room\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_kids_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"abf611beb1cf6771f05cea144108c5a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.kid_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0296bfaeadf38a3c2c643aa0fa317ffc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kid Dance Party\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"kid_dance_party\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ad4a44c058301709a2c85029eb3a928\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633315499530\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72c0da4ff910be4448a82584819265d5\",\"labels\":[],\"modified_at\":1758172744.684397,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633316964978\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33ec4ea4e5c89927fda1517f3c16fbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317039614\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30cd2b7857a2400001b3c24d6828ffcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317101093\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_kids_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ac91a924370b63b79e242b921321b50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Kids Dance Party\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317161375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb22ada93ef655ba18e9b9e9168627e4\",\"labels\":[],\"modified_at\":1758172743.683117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317518311\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf072fca0aaa7e3cb0d7edf9000ec1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633318458266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39ea7e6d5efb9cb8e90240ca9498b48d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633321371244\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_living_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a338e143092fc0aac6088733d8f992\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Living Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633323598789\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64928aa007ddb8ca5083b35e7f8ccd60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Red Alert\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633329926454\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1412ca1484c26fc0f1b15b903c39c979\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b549da1714cb046914a04ae5f9df208\",\"labels\":[],\"modified_at\":1768937324.521669,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:0F:FC-light-front_porch_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f1a54ce97cc4d298e3ebede755c053\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f32cf07f4683f55bcab89798695a46\",\"labels\":[],\"modified_at\":1768937324.493498,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:23:60-light-front_porch_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4473c2dbc00d6320702cda169c7a91c8\",\"labels\":[],\"modified_at\":1775870416.945947,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Porch Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.front_porch_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c474f9af1ecc77455a800c66b4682d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cf5e19c579425ff2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb03e342c2822bb15c887a38425c17d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1637480683670\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea302a8d7dd8f0aad892f4ab3a0129ed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - On - Dusk\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606004641\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b408a1694e51a832ebd0110266ae9b95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606124541\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_restore\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67d608cf2a32ab837f3f638603121f6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Restore\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606172266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c47fb544830a808c164453e004ccaa80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Off - After Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606436231\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2911270340373d6692ced07821d91a\",\"labels\":[],\"modified_at\":1775870416.946362,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.master_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_ceiling_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1a9fe62dd87298be3e20bf76dc5ede2\",\"labels\":[],\"modified_at\":1775870416.947281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_ceiling_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f184a5dcee5c41d074c34bcf6f0788a\",\"labels\":[],\"modified_at\":1775870416.947891,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Office Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_master\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23f3071c3353df3f910d738281ccebf0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Master\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_master\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec4945d179a66d50aeda49d07fd8d1d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights Off\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edc8c107b4d7bdde4ea4ea619fbb029a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639120832058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"712ed0c3c619a6f18ead981897ff48cf\",\"labels\":[],\"modified_at\":1745898587.722042,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639715090770\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d82e452611e452407b78b0ef3b5ca41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.jenni_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a3c8889231a5bf5d75dea1ab9619b42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"jenni_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_close_garage_door_leave\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22831cf5534857f869f81216a62334ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Close Garage Door - Leave\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639718580516\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"524e32ae2138f47b68e69030d244bbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Open Garage Door - Arrive\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639724678294\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_security_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"066e17ebc66789db48cf2e304ed5379d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Security Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_security_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3002756754c22bdc89b0046fb4d2cbb8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85dcc97f2bb788c39ebc5175f6c653dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub_2\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.nap_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"944bf3860f83ebc3f9fab66742d581b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Nap Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"nap_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae5f17c250b517908480297107e4f3", + "offset_ms": 29 + }, + { + "direction": "recv", + "type": "text", + "payload": "7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641177479575\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb7ed0ee5f58ab9e7d2801bfdfee8fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188755198\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a1917bd219066d9a31dddd40526ac3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188941984\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.adult_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1fbc8990624c59d6baebd252a9927d20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Adult Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"adult_bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7dda3951af520ed7aa14de0528021459\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641190435073\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"143a15957bf22bdb04ac5c7772a2ce51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Door Open 10 Min\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641191518035\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time_persistent\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ebdc4128b00a85d18f09c1a3f4df0da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time Persistent\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time_persistent\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7e1d8b9bd1cf3e328c05b5577a8cd13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641192891526\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2af5d760ba8ab63f823839e9455f953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b578d45bd122395c5de1934f8f46e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Away\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225378269\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_home\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a8af2ebb3869fa92d132d3d3d00ac804\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Home\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225411475\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51ccecfcf007db71262f1935420252e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Large Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d1ebd3722f10011fa664fec57ed37472\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Small Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"471dfdb1b7068471e0e1fcfea1e471ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225671056\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e582eb57efe5d94969905cf1bff8f81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225729228\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"651aa5c71d4b4b596f4a13407ce60767\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226072324\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cdb6f8074feda911c7b4db1a1e0478e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226100136\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b91da8b1552452b28294bcc304b4f8bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pause Master Bedroom Lights\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"pause_master_bedroom_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"timer.garage_door_closed_recently\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"90320387b4e4ec3a3c7cbd84dbc5ad90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Garage Door Closed Recently\",\"platform\":\"timer\",\"translation_key\":null,\"unique_id\":\"garage_door_closed_recently\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_nap_time_over\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f25dc80c5eb3444609b559695bcff2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Nap Time Over\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1643176701270\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_disarming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"889c9705fedda7305ea5fc7107f5a56e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Disarming\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_disarming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_ring_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01c245ad5b42f3410ceadf17493c617d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Ring Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_ring_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_smart_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d98b2a6e9c31c4c5aebe6deef37adab3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2e11abfde42f19a5057b1b585c72c3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1652512982739\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e04623ca1cdd79fb8087c8cadfc8a27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"468809c6fd06ce648ffd4890de5cc742\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4f4ac0f275a156c8d2384faebbeb939\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandalier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6571da15bd6e6aaf28760a38252de8f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stairs_chandalier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b323727cf823f62522377f2dd6b67c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1124603e90858bd2a7c8eeaa4ef0c908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91edb81063054b8b29e5bc0aee5ca722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a55fd0624053c3fc70a102047121f57f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68111fcc2532b27a80ba3cc01980d288\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0fe65477af3a205470a1ccced0b63d2a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42f50125299f3927c531c18b669aaa60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"261cda58fa35c9826e2e8a9e46548ff6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4bbd43bfe7fd1687e3f9474bf5306d86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48c6d2458f235bc19dff653c6f3bfbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"134f2a9c097befabd5c7d358e36a7a6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3dfacb9c1a377c0cc5390b71bd2955e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16ffd02c1f172e132bc50ed2bf793eaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8487a8d303943a19ac5668fa6c21f68b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73d67204eb476a06333ef8f4adfe5ef7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24288404b3c7dd6c44ff56181d1124e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"864b5cd1631ecb4437a6a0a50c7257e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"722bcebdf2dd4b683a717d50365989dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2caeff606e9499afc9924c3338e29c0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Large Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_christmas\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e869294cbe465647705bafc2c47d8477\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Christmas\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_christmas\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85e9eb0070a496e7fa87eba9e56abbd3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0989c392a71f038b4ce8fe25569ac13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37cbb875f4dfc9ba34dd3b3e17930562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a1e6bfae1dfa193385ec058c31f2fb9d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Small Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e487877af8428842b8d8007616674a62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aa3800e7a126f118ae9b7666deaa2314\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56cd7bf3d052edfdad8981918cd6267\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fddd2acbdfde2f3570dba13d43190b0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6a231953d122e3658bdd77cdcd797f16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24022be80cfdf60a4115c7bad5b035ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec52255713718153f0196eae444e4fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89ea19ac476812b23f5fa073e720b4a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eef0de05d0aa24da9c82355406167041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7940e0e30fc1e1fcc4c9b7a48565002\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_fade_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663c860aed914fba5858948be314cbe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White Fade On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_fade_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6be2f831d75032a3ad7b684508d65e16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.notify_phones_about_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ece1f2275efa510e2dd20151a04ed9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Notify Phones About Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"notify_phones_about_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_meeting\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"372e3957cccc5cb8619ea55b6ad0795b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Meeting\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_meeting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"754734721fc9477df34eeb036bb991bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f7c8ae1fc9b54bf0123181ee762641\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dead_zwave_devices\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ca6ff31d8ab85a686150917f46387b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Dead ZWave Devices\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"dead_zwave_devices\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f63024643aed08b3bfac6124ecf6ad55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Detected Activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59f0788b350cff3ed3e4c80681032694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11670cf20ba415249941c61df360a87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6349ef75a1840deb307830662b0981ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4516a2d3d10614f0276006803376821c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9a1de4c001b65b023873dc67b2e1aeb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e26c607d067a78c441b7f9cc75dba4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f9b0a9b9747f274c8ec2c4049f13188\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2591a8696175650360ecb04c34ebde3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Standby Bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c29b2793fa42375476a4961a9cb9f3c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4c4aa34addf089c6e0d44c3dbb69fd8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Ringer Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b402edad0d1f3609fe2ea219651b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Audio Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabac057a1daed31e37304dddb21888c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_mic_muted\",\"", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d03380fb776af8c689f558f3d81ec56c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mic Muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c849b40230913371f3ae86450152296\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb4b92f25deb1c26c4d3a75796804cd6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Music Active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63c6ddd0e2c380c423406f865ab4466b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aece69b417cbd569b31f9e3f03cbaa5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"08d4816026b16e5765055bcb256faaaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"167a38f51480e27d6f32ea9bd21cffe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b36dc595459a5eb7754d1bd53f679d9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fa664a57085896e92fe622bcfad9ffd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level System\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4947061539f7e448c220cbbe3d9791ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79866ed9f3d374f668978f602c522936\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"754c6b6be3ff40167959413eee71a769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bf324078f46e09e10914ddd9ad39ea18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f2ae98f237b3a3c18efcfb76a44309\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Is Charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d588b0f08c94af014bcad08dfd9c82bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Charger Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af35ad533bc818679f6142f0fba98ae9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4eeb5c4fc5a9c4740e441917048cb56c\",\"labels\":[],\"modified_at\":1768937323.674991,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 6 Battery Temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e620a9902d2503fadcb5049f62bd3a\",\"labels\":[],\"modified_at\":1768937323.675654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 6 Battery Power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0bea36868dc2852f26e606cb5585978b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7c392d0e5b5805c04c01a8de1d19c6a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f5694e88652fbe7b4aea3571cd3ad68e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 BLE Transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0c86f94983c08b0aee46a117de5db3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Do Not Disturb Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4925d0a68fae8a6820872b19a33e5e86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Work Profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6e361c77027c92ca103f02ee555a17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Geocoded Location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"61959a38850d543f21bb0e1569e0ede8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e12b5bf1dc6312d8adfe9566a8cddbc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4213bef8495768305cd59cdf35ca4b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e97bb579088e5ea424b616dd154aa791\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f66c0118c076670fb52aaffa7ba1997\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Used App\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2f9ae155ba2acb94d2e58ff2481cd0dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4984eeb61df82c1962b1568de93ae1e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Update Trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c379a58d167afdca3215f4bdad404860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Light Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed4aca22759c17dad01d4267be06c9c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093eab6b381d30ac54b915f31a1ffe6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Update Interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5b1fcf09cfe62058415e538ad489578\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e7c731edc371565fad28bffa63f26fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data Roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3345b994bae95f98a977b05251d2c18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"36a81e770148fbf8c3501c4034d8b519\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"393daf81b19a2e000076de43a50e0d5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a86d523635b1107073a00863ea200833\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Link Speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf293b8e7370ea8c4cede0e10f834424\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5dcf1e1bbef07ef59ddfe608cbc0132d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aea0472231ddd7b05ac99a683af7c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Signal Strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"660adb553e2a9af427c52f135747f7f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Public IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"176bca32b338d93754f9c7be44fa07f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Network Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0285447de022be2a252f35fa4ad7fd5d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Next Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586470a0e2dff113e76d335d791c7cd8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4359e632b04270993df87c3fe628cf32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Removed Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c9addd802bcc76b59bad7b47f376a6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Active Notification Count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"422e2b7d93661fb5bf555757d9aff815\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Media Session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4816202ee229e1793e3f4118768d562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Phone State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6c47cf4f550f86dd82efbe37e4d94c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"978bf765161185ef6cfd1d543281d100\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3da6d97d96132bbaf358275ffac29b85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c969863cd8081060eb057eea1b261e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Doze Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"859d0df2447518ce6d43471eeb66ff04\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Power Save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ada0b3b5277c155272a320fdb3d308e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Pressure Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbfa1364f9833d410ae76130415c30f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Proximity Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a8b1e9e42181e7f2598315ecbfcd15c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Steps Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2dfe5cda59186cdf2870eb4805567d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Internal Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ed6c593bbd2acc4ff1fff9f30bd8655f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 External Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"60436b2e4c4506cbf65bbe328d971eb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Time Zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a2fadec84d4c8c45bb51cb557092dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c088aa9a3a0892284a692665a13625e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4a8a05e4ae43df88bc2ba18d31bc976\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db3a97e3ec912bb7ef3afb01868c097b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5a96bfeab8ef33995d19d1c286975ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f0f857a8968c9cf06c05d1eb7ed8e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"599fa49165ca52cdaa308a9291244c32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69bbcb02486b22633b2e78f73ed39657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"zone.school\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df94776e25d1b4c511664437c6d8cd8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"School\",\"platform\":\"zone\",\"translation_key\":null,\"unique_id\":\"school\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec6368556983ccd7323a40edadf2e38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Beacon Monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2160869c0d0023d5de9f7280cff177e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Accent Color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9f2220a04f3d0be4796b6fee9d9b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Screen Brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98521848d3efe121dc305c63a3ae9482\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_hallloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd0dc4211c81c4003e1b7c52010f64b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea4b856a58974c9350f0dc8531733eb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e7b49dcd25a0e17a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"752981de05fcf25b9881f49201d2d259\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e583b4572c572a970b8e4f79740d1d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84d1e072ec6a946787dd954f39def970\",\"labels\":[],\"modified_at\":1733904291.14561,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f441123d912ddae3e6d32aa9719fa8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd925eb2c0373b46333f9982693cc539\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8add6e050c44b030b775c0900d7d955b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca4da0e5938f0ad9b79786aebfc94261\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6da88d50b1815e413cb3c18effddca46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b9ee129cb84e064e54f6b6f2a68bfd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b56def15f41aad4941106a5a95a55bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7427f7c8df98d3cbaba16fb1cbf5f27e\",\"labels\":[],\"modified_at\":1769764244.706022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d92a1c422ab0a536d81c42d8ae646da5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ca15e3b72854b67b5f6bd20861d12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6c4b3a155edb068cee9c57e4b9114bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2600df00617c34fd4a6f7085fa9ad2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9d033d4f9202f91a6b56293e16399cc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d704b74e9a8a5a2a3bbabbc7aceac39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fba7cd65763c03f75099ea4f8f2df62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4048c62fc405ce5317c7353ddecc8db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44607a13e9e0906a7b252b2367029b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ffff734debf22a5da1f04227ed7ce61\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7851ce9b8b45d02c259b100099695bcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e75244fd4d702e9e24eed421f19f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80553ce4ab17b8e3a3c8a0e9f2333369\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df84eb0485292a8dd0738dd75af58ea6\",\"labels\":[],\"modified_at\":1772660779.072245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"962b89bb2e91c9e72416f05984d53a0e\",\"labels\":[],\"modified_at\":1751875652.892459,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a32c673dec6f143954907e9d833d05c1\",\"labels\":[],\"modified_at\":1751875652.921495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d73b8b9674d497ee18d5fc04803bfaae\",\"labels\":[],\"modified_at\":1769764245.433226,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc442861fb551a6a06c1f1789d3a8d47\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8176790314abc637bb78fce1af28dd95\",\"labels\":[],\"modified_at\":1768937323.679914,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"°C\"},\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 7 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5b470b4aa7c1d7e469ff00bf06256925\",\"labels\":[],\"modified_at\":1769764245.566513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 7 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cfe1476f76e9b5e40c2665623a580dcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c501a24867cf1e75b62a7d084fe6153b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"241a1502ecaf8436b468ad0986728e9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"976abf783a6596bb6e4ad93e5eef6ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aafd4d0f25e0058e7691e4b900fd888d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9432ea9dde7dafb7f04fa0fb66caf0d4\",\"labels\":[],\"modified_at\":1733904292.9764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9742771b1ceab90f1b14f82fe2f991\",\"labels\":[],\"modified_at\":1769764246.412117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9140026578f8696f95b3a23e7b4b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2eb9199ce7a259686aa22ed1201bcd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aefcada6f1ae5cd573ecafaed1f82cc9\",\"labels\":[],\"modified_at\":1726775504.304137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"327a9df8b4a560f9869c8a795aa427d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b8aa5d978c603d98ee826e002c5a51f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1935dba47b0942142c6137d75189c165\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b24892dd730b588b3ef58a9c5f6433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"683870d1b12dbfbe9958d3bbbd483be2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05628de07b292547de3074d0fecb63c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b52583e588d331b5489ad61d42d1b894\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea6754e922d43ed5faefd1c37aff673\",\"labels\":[],\"modified_at\":1726996801.234221,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67a5374ec1ce04d4b1fc7f504a5f5ceb\",\"labels\":[],\"modified_at\":1726775486.464706,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9989c20892e290c5f68ba8011da7480\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ac9c525c7baa10637bfa0bfcf5221a8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d33788e0c059d59c257f087a1473354\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6858fb1bfe673ad16c733d32e0e2eea5\",\"labels\":[],\"modified_at\":1736454087.142562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f8ecd430a0259a766ff87dd14850905\",\"labels\":[],\"modified_at\":1736454087.172581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ede90797f1d7ac76694a6f43d9bc8c45\",\"labels\":[],\"modified_at\":1736454087.212097,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"baa0e4cb851227a8feaf9d6df17e9fe3\",\"labels\":[],\"modified_at\":1736454087.244039,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212276650f0469c6b78f1aa1555eb08e\",\"labels\":[],\"modified_at\":1736454087.284983,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2c26aa9370eb6b26b415452c8a", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "a37fa6\",\"labels\":[],\"modified_at\":1736454087.322599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5559192d4b1724258755211fd6c0eb2d\",\"labels\":[],\"modified_at\":1736454087.355909,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f2f1af76340c415aee598869f15f6b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ba5e415bd21554388b021818724eebb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49817327a16217538f7b5d10768914e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f382990d6af13a6f0f40861b861e446a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"acbdc6c80e798bd40e688481d54f3dfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b15ae82de7ad1a7193e870c8a928e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c39f19cdbc833df680ac7b7aeae2a1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"343e97cbda69dad188ebbf6b8c98cbbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95999d30a8740282d4530ca4dcc83763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8dc6554bf62986c588c250443bbd9a30\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501fe56c13dba2403f8e9f6305853d85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45103882a134b44b710984e492b782d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89602f6616e58d5fe6968e27e9de7f75\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f509ed5dc970c87935cd8abb4447cbdf\",\"labels\":[],\"modified_at\":1768937323.68247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Pixel 7 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce994d74c8d3dacc5f2b3f3ad1c4c862\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b81c76adf96efe95f486bca48df59198\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea6b5d6c0a7555063714d5e8fb0966b9\",\"labels\":[],\"modified_at\":1726996802.141611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e86041c03757821fbe478098482d762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f7c6db6916cfc8884490f24662d6d6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"179461930c9335bff09691616b8a316c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d7bf3b13d2aa43a53bff5d32eb3b6a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b76e1c633c646f74498a1b4022d4aabd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ccd80680e8a746bace2ed530127ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"51f7f20cb4853fc0b780e3f12cf45927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:c4:36_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f0afd1ec6dd2925c7d3aa877f10716\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:a3:c8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab1ff41ba82a1e9a081c62b4a4e05baa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lamp_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc50d543f3d0de8dce6f30e83abaa051\",\"labels\":[],\"modified_at\":1768937324.522894,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_lamp_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:33:BF-light-office_lamp_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74f90347b451e99fe4564a5f9034b2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04350d1332ac239890df047ed24bd6ec\",\"labels\":[],\"modified_at\":1775870416.948326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Dining Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.dining_room_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_base_station_power_switch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd59869adefb3c2668706287d79ad134\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"VR Base Station Power Switch\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"switch.vr_base_stations\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"554456bc549d0c50d8ad023679b633b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn Off VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"974317cf2fdad27a6ff88ffdfe415537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn On VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067739.720447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94b349a8c075517a154253fb630c014c\",\"labels\":[],\"modified_at\":1775360982.274551,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f55335bb75f173f6fd401e50a1e6ebb\",\"labels\":[],\"modified_at\":1775360982.275026,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8424b92182bb8b52c940680327e1b956\",\"labels\":[],\"modified_at\":1775360982.275471,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86c88fab85fb335a99f5bbc40d5f6157\",\"labels\":[],\"modified_at\":1775360982.275902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00578db2e0fd380276579a29772a6ad2\",\"labels\":[],\"modified_at\":1775360982.276323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"091e225f048950d7bc9b58b427089acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d4ccd77c43917949c6f8998592f6d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72f6d099f1b60f2bef38928d26cd8c1b\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Lights Motion Off\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1681343760386\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.scaredy_cat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"875026434592cfe2277e6b60284b69ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Scaredy Cat\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"scaredy_cat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d709cb65d0bf72bdd756ad8e1f4ed26e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1c060ca1926ddc648dccc6a4ed79a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Scaredy Cat Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1685999337743\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0468ec0ea3a7c492de483fe1e2a6f3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bc61ccd7457d16d4521b75efa4de5263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"090f0966fdfe9202896f95e917094db9\",\"labels\":[],\"modified_at\":", + "offset_ms": 33 + }, + { + "direction": "recv", + "type": "text", + "payload": "0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33efabd658a938a3c84616668b943ad1\",\"labels\":[],\"modified_at\":1728721845.865992,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b46c1986a992590e543ab83dcc22be\",\"labels\":[],\"modified_at\":1728721845.86621,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47716215f6c1e4e0c958a2bd847d04b7\",\"labels\":[],\"modified_at\":1728721845.866372,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c0f16bdb9a7af253322e7f2c68037a1\",\"labels\":[],\"modified_at\":1728721845.866525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_not_accepted\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32047f8c6fedd304c0195365947e01c5\",\"labels\":[],\"modified_at\":1728721845.866674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages not accepted\",\"platform\":\"zwave_js\",\"translation_key\":\"nak\",\"unique_id\":\"4182894947.1.statistics_nak\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_collisions\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8508325f21df882e069374d85c2412c\",\"labels\":[],\"modified_at\":1728721845.866818,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Collisions\",\"platform\":\"zwave_js\",\"translation_key\":\"can\",\"unique_id\":\"4182894947.1.statistics_can\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5d1890f3771adcfbc650417995884fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeoutACK\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67397fab6dfc1efeb76db69e09cd2518\",\"labels\":[],\"modified_at\":1728721845.866966,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.1.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_callbacks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cb0ec827d35594d68324c943295da67\",\"labels\":[],\"modified_at\":1728721845.867108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out callbacks\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_callback\",\"unique_id\":\"4182894947.1.statistics_timeout_callback\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"682c4418ccc9d59ab4766feb2876d337\",\"labels\":[],\"modified_at\":1768937324.461784,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79be22754c52e9d3ba249c79d09b8c3d\",\"labels\":[],\"modified_at\":1768937324.462018,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b9e078797343e12caf9f44a0b0f5b23\",\"labels\":[],\"modified_at\":1768937324.462198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96bd4450ea3aa2dc0fefa5cdcca29ec6\",\"labels\":[],\"modified_at\":1768937324.462371,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d30b0a3a5acb331ecf9bd7faecf3c553\",\"labels\":[],\"modified_at\":1768937324.462545,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67ff38d870a2330331c2b8ce6d626c9d\",\"labels\":[],\"modified_at\":1768937324.462722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f177b710b34d34badf49d64727b08927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.4.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a73d8ed5443f8307691ac47b75cb6513\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.5.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad589416f84ee0a4bae7247f7101e698\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.6.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08fbadd4e068fb26c4d98b53f492e322\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.13.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb6e3d9400e10748fbb5b95f4d2c14df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.14.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9657d799395ad95f249170d72f4515ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.16.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be10ca3bcb5bc1051a357c059873eeb5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.17.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e9cf7a82a0f823c8cd07af1e9828c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.18.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a463e1a6b3777f832e1c78e3c725c8a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.20.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d13a24ca75cc9b0a0413f9f7c0f7c5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.24.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48d8ac6919beb5fd1f7b6715fbe12b43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.25.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f233496fe9a9cdb2df78bff33a2b836f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.26.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d6f8217dc1118036bf98bcd10f4133\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.28.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80029cb154657f9d9c91b39ba1e31549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.29.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46570cdf00c69acca5931fa450785a9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.30.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35b093dc4c64641b23021740e8cd27a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.36.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a65fc8863f070a02d939d1b8306a2d8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.37.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53ee574e53ebda2b8e3f989a3ba13fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.38.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30654040cc3e65801967d3b7cb69b1df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.39.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"544683dd8a7cc50d1bd208a73f4e3307\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.40.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ebe35465fe37aac78f69ed1222d264c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.66.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab0c922ac84db0b313a9c93dc22c6ee1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.4.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8385c6cfa7f0c4997be41b6a49a4b8de\",\"labels\":[],\"modified_at\":1728721845.982674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e386cb6e210fc89df0fab411faf5afd4\",\"labels\":[],\"modified_at\":1728721845.982907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9c808db283e54ab2446bab6fb1cc994\",\"labels\":[],\"modified_at\":1728721845.983117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba1e80a8483cdfc2899d23b81aed739c\",\"labels\":[],\"modified_at\":1728721845.983281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f42d47a34b6f9e3f87ae053978ee85\",\"labels\":[],\"modified_at\":1728721845.983435,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.4.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9be484fd8a2b1135e0eb46e741acd273\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.4.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"693765a84e9f3e3dcad716f4eeec22eb\",\"labels\":[],\"modified_at\":1768937324.528833,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.4.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"012352a68babdcf20b6cf95f876e926f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.5.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f672471b5c978420e5f1dba57dc4733\",\"labels\":[],\"modified_at\":1728721846.000478,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c4b943d6fb6f596b29d6d977e0e46f3\",\"labels\":[],\"modified_at\":1728721846.000702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9873f4f992eed491065ac7a2f339a7bc\",\"labels\":[],\"modified_at\":1728721846.000876,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69032bd476a7b17eade17059e08180a4\",\"labels\":[],\"modified_at\":1728721846.001035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb63ebe968c8197ed6fd472701949976\",\"labels\":[],\"modified_at\":1728721846.001179,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.5.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69dbe60b2c6ede995a5e608d08544cf1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.5.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46b8ead388ec6b9bbd189354e8d592ac\",\"labels\":[],\"modified_at\":1768937324.530131,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.5.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4cda4cccf1bf41fafadcd00681b40751\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.6.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3da25ea5b1606150ef66a9080137bdcf\",\"labels\":[],\"modified_at\":1728721846.008122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69e11426422fa9379fb37cc8b90b0100\",\"labels\":[],\"modified_at\":1728721846.008333,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6068bcf6b64da799f454a39f75d219d\",\"labels\":[],\"modified_at\":1728721846.008489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e19fe563fa9afb307a1d1ec0af6a47\",\"labels\":[],\"modified_at\":1728721846.008639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7c137d08211c63fc135d56ad8079b20\",\"labels\":[],\"modified_at\":1728721846.008782,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.6.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632b4444df9edd83dc36ddefc3105924\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.6.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b89faa5aa8c37389c327d33c0bed5f5e\",\"labels\":[],\"modified_at\":1768937324.535509,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.6.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c48a9484b52fe684114f779a2fb5404\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.13.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4c6df2834c4defdd486be1e9a612c07\",\"labels\":[],\"modified_at\":1728721846.026245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"511e3b988f5150cf206ecff8b0a48afe\",\"labels\":[],\"modified_at\":1728721846.026539,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e77fec708cbd9dafd349afe5a826a6f\",\"labels\":[],\"modified_at\":1728721846.026691,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d788a6b3695255083009f04d3dbf84a0\",\"labels\":[],\"modified_at\":1728721846.026831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bf7f721885b7646b04081641fc9b9d8\",\"labels\":[],\"modified_at\":1728721846.02697,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.13.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4461e4c669a848b9ef3223240813573e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.13.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"308b0682ae88de559074a6de7c53834e\",\"labels\":[],\"modified_at\":1768937324.541059,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.13.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_room_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"705c92b125e5de1380f3c18794369bf2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.14.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6521456f61c04ec8fe7b1e5b097d37\",\"labels\":[],\"modified_at\":1728721846.034872,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00c3b60e2e3cec4899e63d54e900e047\",\"labels\":[],\"modified_at\":1728721846.035075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec9cb65a35afed1951ae88b782595f5\",\"labels\":[],\"modified_at\":1728721846.035255,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"231a387ade3bdaa4a66853272db8b0ea\",\"labels\":[],\"modified_at\":1728721846.035404,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb1ecee5163bce8480c0fd35a09c6769\",\"labels\":[],\"modified_at\":1728721846.035575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.14.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"85069e58b15d22ef66a4bd97c6129f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.14.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c8fb660cd92b5d242ab5d679ccd7b33\",\"labels\":[],\"modified_at\":1768937324.546124,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.14.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c336a49feefaaa0e9faa1a38535c422\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.16.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d93c331bf5198470ef4ce4f524c52272\",\"labels\":[],\"modified_at\":1728721846.042608,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e863df09902ad83c56a2841cb51f576\",\"labels\":[],\"modified_at\":1728721846.042868,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"798ee7f183a63fe89f1e942c636b3bf9\",\"labels\":[],\"modified_at\":1728721846.043022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42ae2ffc8bde328a61b8ae4373aa5eb9\",\"labels\":[],\"modified_at\":1728721846.043158,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ea12c6f7d52404e2147b808e1242b41\",\"labels\":[],\"modified_at\":1728721846.043281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.16.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7ce0933d67d34e56e76dd1709593328b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.16.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dca82438215fb7fafede9cce49acda\",\"labels\":[],\"modified_at\":1768937324.551074,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.16.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"304e4ebde63c0b6724afd5e92cd59f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.17.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cdf393e8f27ba0fa618069c16022a026\",\"labels\":[],\"modified_at\":1728721846.051416,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40c570bea89d10e15145cb64ee1f7ab9\",\"labels\":[],\"modified_at\":1728721846.051615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b2edd3fbab7394bab0c14cbe7637c5\",\"labels\":[],\"modified_at\":1728721846.051761,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4353c6bd553ecb2277ca7b997c50c85f\",\"labels\":[],\"modified_at\":1728721846.051897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83be3dae9ec35473d348b3c5133411d5\",\"labels\":[],\"modified_at\":1728721846.052036,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.17.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3adf44d744835c998ccc919bce886ec9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.17.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7e70ca5aba67a4a230b2722299052e\",\"labels\":[],\"modified_at\":1768937324.557331,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.17.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a07cf5d4224ba6239a13744c18dd235\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.18.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7caa0248d8ee1076f41ddb3cc2c89f8e\",\"labels\":[],\"modified_at\":1728721846.057035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001bf6da6163b4586b7f7d920b182c3\",\"labels\":[],\"modified_at\":1728721846.057227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"407a6b9aee48fb0bb041de319bdc8731\",\"labels\":[],\"modified_at\":1728721846.057394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"474a984405d6ad3fa524af6f21852079\",\"labels\":[],\"modified_at\":1728721846.057527,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc3da0f80245bad1dd0b080c05f60ce\",\"labels\":[],\"modified_at\":1728721846.057654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.18.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"338d555606471bf4656042ddeac2dd42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.18.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"debf128d126cc42f9d9678a177a3d7ce\",\"labels\":[],\"modified_at\":1768937324.561345,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.18.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da1541fbce94275ba5cbca676f2702f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.20.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e4917ca0de8cb75740c3cf980a2b1f\",\"labels\":[],\"modified_at\":1728721846.06327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bac1b4c13d182d12c16822efc7415f3c\",\"labels\":[],\"modified_at\":1728721846.063447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04070ea7d7a035faa87209770e527115\",\"labels\":[],\"modified_at\":1728721846.063587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e29111b9581f147ea8a636aa9ca50c\",\"labels\":[],\"modified_at\":1728721846.063714,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77c23d9ce3ce745eab3994897b4c2d7b\",\"labels\":[],\"modified_at\":1728721846.063839,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.20.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9831210a5f148ffec0c960a3cef41eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.20.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ad24989273058ab1e0afede3384b0f9\",\"labels\":[],\"modified_at\":1768937324.565645,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.20.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52d9aa715f3b1cefbfb68ebd33ff9b74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.24.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05d8bcc97db99a59b495eb3c76a683c2\",\"labels\":[],\"modified_at\":1728721846.070907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe6722a9cc2ab68e12b30784f31b1428\",\"labels\":[],\"modified_at\":1728721846.071086,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2bb1f0bb2a2687cc1a615a13447f6c3\",\"labels\":[],\"modified_at\":1728721846.071316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c2e48f0bdf3f152646733a2065a7869\",\"labels\":[],\"modified_at\":1728721846.071476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8793d6ce94921703ff9d4ef6d283102\",\"labels\":[],\"modified_at\":1728721846.071605,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.24.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b971039f576f806395a3bfe630bed910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.24.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3ba969b6fccae3a10caf0bd81dacb57\",\"labels\":[],\"modified_at\":1768937324.570316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.24.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e199fcdf8a82e3cd5b2aaee7e98b3ed3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.25.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d118bd28fcac0c0e418c5fa26c908ae\",\"labels\":[],\"modified_at\":1728721846.079745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d036715c2c04cea631fb5ef537052fe8\",\"labels\":[],\"modified_at\":1728721846.079932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57325db8a7fb10afd15751aa94309c1c\",\"labels\":[],\"modified_at\":1728721846.080103,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0b56df69f1ed80a097a437a7234a8e9\",\"labels\":[],\"modified_at\":1728721846.080229,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887eef5e7ba55d9e0936e56bc66c567e\",\"labels\":[],\"modified_at\":1728721846.080355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.25.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afc9d72e408779d20b34dc1f01ad3536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.25.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcda026ec929142ce3cbfa14747dfaf4\",\"labels\":[],\"modified_at\":1768937324.576948,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.25.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1583858de49ba4c0a4b4ff2ee0c29d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.26.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f5033b58cce7dc54c076c8d180392f0\",\"labels\":[],\"modified_at\":1728721846.088895,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43147453f1b24bccb5c5f5e5e62f7068\",\"labels\":[],\"modified_at\":1728721846.089144,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4387dbeacfa284722783b317dacae2b\",\"labels\":[],\"modified_at\":1728721846.089304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d1c22a4b346df44287e85024006f90\",\"labels\":[],\"modified_at\":1728721846.08945,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"535c8d77519ba41280c4a64ec64bcb51\",\"labels\":[],\"modified_at\":1728721846.089582,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.26.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b08f4bb01195276c704b25cdd96196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.26.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b0af79a6c4a5379175d0900063ac555\",\"labels\":[],\"modified_at\":1768937324.583385,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.26.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abc77ab50d0d3573e9e10357e6b4092b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.28.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8cd26d45d0e80aab853b7d479f30848\",\"labels\":[],\"modified_at\":1728721846.098327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f324aa672663f6a659ee494545522e\",\"labels\":[],\"modified_at\":1728721846.098537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37fb21bcbda4df8298f567ba2d598434\",\"labels\":[],\"modified_at\":1728721846.098676,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c00a5c5168ae3d928deb75654328af4\",\"labels\":[],\"modified_at\":1728721846.098803,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8c544aed3196548a02205a35243f93\",\"labels\":[],\"modified_at\":1728721846.098936,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.28.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab6a89acdc4cc754d27d035797994522\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.28.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf69f70d06538e49a0517a65e09e86d0\",\"labels\":[],\"modified_at\":1768937324.589758,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.28.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a77e2f997e7096c9b763729289da0222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.29.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"570afd43cc017753eead4837bedc9bc8\",\"labels\":[],\"modified_at\":1728721846.105962,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa61e5c4f5406900003bcd53d7ea9d8d\",\"labels\":[],\"modified_at\":1728721846.106143,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1d9e9b71984b9ff29afff4c6bdc040d\",\"labels\":[],\"modified_at\":1728721846.106288,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a19383165b4ccf9d801c9c7f26f50ff1\",\"labels\":[],\"modified_at\":1728721846.106452,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3becb6b0af1994c2005db257d3c08b6c\",\"labels\":[],\"modified_at\":1728721846.106636,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.29.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19e1560eba677195d70fe919a6144950\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.29.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef43746b3d59b9ebed78786a6a0dfe9f\",\"labels\":[],\"modified_at\":1768937324.595077,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.29.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfb0c54c7cf85ab1e4adc409f895e19b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.30.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1fdfa3a2d14760b9475ad822051c5428\",\"labels\":[],\"modified_at\":1728721846.113654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e4b1a6e975cf9b1d9994e5c0fc96fe8\",\"labels\":[],\"modified_at\":1728721846.113904,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2940e9491fc8082f8a7566fd97155363\",\"labels\":[],\"modified_at\":1728721846.11411,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912541a2fa4cda4138a5d43e32b01c9b\",\"labels\":[],\"modified_at\":1728721846.114314,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09a2c2e79f06f78cac686eb78b5a0983\",\"labels\":[],\"modified_at\":1728721846.114484,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.30.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8184bb20bb3ac0aad8c150c92d9b60ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.30.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"595b480ffb15cb31f87e003a704469b6\",\"labels\":[],\"modified_at\":1768937324.600438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.30.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02636c3d8887bce10db55744cf1fb300\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.36.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3659d233ee1194e78d575c8259c79d75\",\"labels\":[],\"modified_at\":1728721846.119874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ab37c037a538751cc745fc318c53375\",\"labels\":[],\"modified_at\":1728721846.120105,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ebf0493baaeefaaf3727add303ef097\",\"labels\":[],\"modified_at\":1728721846.120293,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7aa05f5e8e60454c434e760f09ba7d0\",\"labels\":[],\"modified_at\":1728721846.120469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad7f8e9a7534ce6f62dea3787f34512\",\"labels\":[],\"modified_at\":1728721846.120604,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.36.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817b83fa9b3b611ef9148d3a1c7b9458\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.36.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"207b9f016771de3f0791a50db497c513\",\"labels\":[],\"modified_at\":1768937324.604321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.36.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32ed05ddcea53a4e1ab8ffe90200bb11\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.37.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fe4ae53649255d1e27d0064fd803ab9\",\"labels\":[],\"modified_at\":1728721846.126048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08e5d0574d23b7feab02b70f64bcaf5\",\"labels\":[],\"modified_at\":1728721846.126233,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e3ac4ad5973a9fc59e74f034b3f8a9d\",\"labels\":[],\"modified_at\":1728721846.126379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f451b1f3ff73499f3efa7843ba1fda53\",\"labels\":[],\"modified_at\":1728721846.126518,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a513a0bfadb8e062eb3d5ca06378ee1\",\"labels\":[],\"modified_at\":1728721846.126652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.37.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb48677e23288d884f9c18b559952cff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.37.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d2e87e3ea7659f4c1ec2f9581b248ab\",\"labels\":[],\"modified_at\":1768937324.608389,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.37.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5565c442b090e06c8f7eb6342f92e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.38.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6184498ceaf1572ecb710a88977504a\",\"labels\":[],\"modified_at\":1728721846.135332,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f8631a758d2f4b056f007426987b5d3\",\"labels\":[],\"modified_at\":1728721846.135525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8186ffa61a7c07f827a82f6ed999ef4b\",\"labels\":[],\"modified_at\":1728721846.135673,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4e9a80844eb2d564dc68cf1827019af\",\"labels\":[],\"modified_at\":1728721846.135808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0205fe39e1a0a4578c09918f54f68fb7\",\"labels\":[],\"modified_at\":1728721846.135937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.38.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a43cd34777a3876325239f0c80882549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.38.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cddfcbe8d05af4ead30b2c9a732e8d97\",\"labels\":[],\"modified_at\":1768937324.614863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.38.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa7663cdf3be9fb9aa633722f02fe95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.39.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"185eb8e01e811aa96f1055db2eba082f\",\"labels\":[],\"modified_at\":1728721846.146856,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7507b2bae3374108dd49ab35772c96e8\",\"labels\":[],\"modified_at\":1728721846.147069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11720db84f8dac252640168c91fae5b5\",\"labels\":[],\"modified_at\":1728721846.147219,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2415ed4c820427b452628be0746dcb0\",\"labels\":[],\"modified_at\":1728721846.147361,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"605baca0427b42514da2eaf78807a67f\",\"labels\":[],\"modified_at\":1728721846.1475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.39.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d2b90ddc8284b68e378215f59d0f6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.39.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f93c038fdf85ec4247f1559f1b415\",\"labels\":[],\"modified_at\":1768937324.622387,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.39.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5999ecfd025c3cc7800a4a89aa08edfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.40.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"917be806129eacb471d1ee0d0509698a\",\"labels\":[],\"modified_at\":1728721846.155502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94e074b915ef0ae11677a926f8f4e3d1\",\"labels\":[],\"modified_at\":1728721846.155744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84a23599661784c7f5dd79065fe6bc72\",\"labels\":[],\"modified_at\":1728721846.155897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e6d217bcbe4d21e0ac74a35882afd3d\",\"labels\":[],\"modified_at\":1728721846.156027,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d101cc55ce6cddcf624e76cbd806cc2\",\"labels\":[],\"modified_at\":1728721846.156151,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.40.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e96d40f2a5ff985cc298963049a9848c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.40.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a4374928a53f5685eb1db6dd22fa3d\",\"labels\":[],\"modified_at\":1768937324.628793,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.40.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db458cfaf86d76636a7d2bf0895309de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.66.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5270f9954244bb65705d47f9136e1aa2\",\"labels\":[],\"modified_at\":1728721846.230051,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82399c66db015194b4f3e070808696a1\",\"labels\":[],\"modified_at\":1728721846.230244,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471598b270ecac776090a8d2c01bda06\",\"labels\":[],\"modified_at\":1728721846.230396,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae71812be09a23822eafc01198f60890\",\"labels\":[],\"modified_at\":1728721846.230531,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e76593d32bda68336de64e105ec8f0cb\",\"labels\":[],\"modified_at\":1728721846.230667,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.66.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98d943f3a15d678a077164e12b0b6f8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.66.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"162a16ffb4efe6d9bec61e35df2cef00\",\"labels\":[],\"modified_at\":1768937324.632659,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.66.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db32b0a9239e3164b238a78d332fcc09\",\"labels\":[],\"modified_at\":1728721846.270694,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c11d0e40cda08b41a09ae52d89dd462\",\"labels\":[],\"modified_at\":1728721846.271147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20a58486d4ac94d1c4627100475635e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a37d873a73a470f8610b1d170620e9c8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c53aead1aed9f2d07387815e701ea7cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd37a59131eebc3d3efb87e3b9a180fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb13b83675e38a3d6fea9f88a7fd514c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d95d516b1ca9219bf2fca27f7f2908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b844ef9e2e6426121768a751759fe087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd47e78959ada5340c2f57306fa58db0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c37787e174ef03e1765d9bef617982bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60ead9b3b7d23ce46d5d7e26d8940d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d51696e440645ca3f4b8529e028f971d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"237fa206e122aa41369fa1c33d8d0a8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77483a0a861c0237c93f510811bd0c72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22e6ae4f8004df116af0e2b635af2c29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2648ad9b3ede6e6a150d9efb636b049c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2d88cfc6df1889a40731747606245be\",\"labels\":[],\"modified_at\":1728721846.274493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdea929adacbc2d74c59d113df4e814e\",\"labels\":[],\"modified_at\":1728721846.274952,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcabb74ebe7fa1ef4dfc174b377e74be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"139db407d0314d892e9399e794a94160\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9717997085ccceefc242700248840be7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e249ef83acfce3deefa5a3a95e68bbd\",\"labels\":[],\"modified_at\":1768937324.702562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f52e426d962ba92d279ea46fb81cfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a516cccd0dfde572f7ffe400ccc573ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69cc3fc9e5decb87fd544bd9c59b2d6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28b1032c218c390994d8cf969ce895d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02d8d11b76cfc3587daeee2a51de2670\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2abee3d97931b898d557d8b57204b5b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de10b3dccbd140d07b82ee3cbe00869a\",\"labels\":[],\"modified_at\":1728721846.285949,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"285d1906223aa890187af6f521ac5aa6\",\"labels\":[],\"modified_at\":1728721846.286414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9768e0fe86fe22a99d2bd1e6fa4a50a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad5520faefe19b4022eb20391dffd559\",\"labels\":[],\"modified_at\":1768937324.709538,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5816a5b2d76cec6a8f87bce0e5613c69\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66c6daf5be1551275842e31ca471799e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b103e540c009d00db923ae148d2ad3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3070f845f294440ea467f871f4e9758d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffe6be3b9f35cddc7519f62786d0eb4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b43884450e42b01a842b6373fab6954c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ff72dd6844c777f6523a15e4e86c4938\",\"labels\":[],\"modified_at\":1728721846.290665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a530ee6f5837210fe17a7eb90140108\",\"labels\":[],\"modified_at\":1728721846.291104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fbc10825a215ccf77771ac04d53a720\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0af0ae3d27d1b34515317f6f40dee262\",\"labels\":[],\"modified_at\":1728721846.294166,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74bdfa251036d94a97f241789a25b689\",\"labels\":[],\"modified_at\":1728721846.2946,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e698758cc618d42a7e6118d812ecf07d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2216fe6d827ae6564c3f5b55619314e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93cbf85dbce888c01dcd21f2d1c99370\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"183772562af3d9507f5f27c5b0ba0f38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c6433560756c9431e1df77c42b6d28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f6a57de7a98d6ac7b2e945d771fddb1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78debeb2eab74d07e95f30c8b4852e4a\",\"labels\":[],\"modified_at\":1768937324.729745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e70bb4917587f9b8a1d3bd96cadd5cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817943eab67fd9798445262f476064a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ca751c70c4d7fedf4bf8070434d7e6d\",\"labels\":[],\"modified_at\":1728721846.301652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44d8898092357555eefe4ecad44dee1f\",\"labels\":[],\"modified_at\":1728721846.302076,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf7330eb6dadaa91ec87c23ee00ae26a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c56e9d8fcf2d8ec59e77e00072f24838\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4446cf0c58d47c700287c9c21432bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffd7dbad382df41d7195eccfe18810d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e0906e8e3e7e8461a822528b1cc2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43b135c801d45745f3cf05c1bf20284d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a58405b84ac4e8dcaf4e760967791caf\",\"labels\":[],\"modified_at\":1768937324.733974,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f994629b2715d3c8dcf982027a8a780d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"762c0ea162380dc2056fd5704a2719ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7eaab4a2744c4902a408c6debc79cf37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d848e0323383acb9c5ddc423cbfd950a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"908ab6e73ada2695a0b1c8d01e975190\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d2852c957d65076fae9aa19748c9d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aeb0433e0d87026a6fbd8afc78aae33f\",\"labels\":[],\"modified_at\":1728721846.306497,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f989704f396de0f609d4b0351f2c0f9\",\"labels\":[],\"modified_at\":1728721846.306925,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a737baa4dc868142fb3dadc46322ab27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e14f8fb1c155d58e6f6f00768c1fbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"defadd1bbcba92ba76af88f17a4b6948\",\"labels\":[],\"modified_at\":1728721846.310189,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0014deb8f599a19a01599b67b85ba0cd\",\"labels\":[],\"modified_at\":1728721846.310607,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"904cf14860d4bd4c39b88c6ffc505eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2a2c87ca142a9691153c08e98c9484\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb608eabbcb86e1939bbfd47af08077\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1cc16282de895c102c625666255dd1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9654b1744b3eff83e9fe67c5f490209\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e48cf8e1095ef4f80ad4c5a40bfeedaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b5e2609b44518d7b650ed31366f9844\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"846632f2affb52790f552049838b285e\",\"labels\":[],\"modified_at\":1728721846.313113,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc5b74a375f77f6146ac469f4317556c\",\"labels\":[],\"modified_at\":1728721846.313655,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e31ea48aa516d44a0e74bd58e0bce5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2657140005056de27f2fd24f0f8c406e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f53dddb446efd5b75c2c104009de5a9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56a286889a09b67cb4f3da4901dcbaa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c06542330d8cd6459f5a6d000a45daad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17949bbabe2791d81f4839fe3e9110fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"523a483aa227e0b389baa33d916a600b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99761b8c80b75889a0e4d4e1e8d894ca\",\"labels\":[],\"modified_at\":1728721846.318031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d64a13fcd28fd09e1e1e8eb2cd8fa56\",\"labels\":[],\"modified_at\":1728721846.318493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70a2a1679ee20d747ff2a3a413f1e105\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f235f0b2abe04b471ec5b5e5dee4a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bc89c05c4c94a30db7238452914e215\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98571f78a667d1495fe0cf9836c9472c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e1e09dde3dbf7a35f9cd2d43962adf7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52c7ca7b64871829a52196f9006ab15f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8203802817bf1ad148be4fa89c851d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2584fd64a2409ee7a09a132954035e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98b7c7cf21f957af7621433d77abcb1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"beed0d43ff1aeede01dfb858e8c5970b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"921320ca502d44f294ef98cf28935e13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f3f60bb56320ae0aafa2079eb81f15e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d821dccb30962b1463ccc94505f53052\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e964cccf2a7ab8f0eb0eb913f676f05f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c84d95a9ef4cc438fc83d1cdbebba33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12ae7f7b84f0b2f02972e196ce9a93f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e42e6ff5ff57f588c006928612396ab9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d486aec5330d75337491301294bb4435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"346c374272b05752ac5fc931704ab571\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e36b9133e1d28872231dea0fb93528d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37d17dc9e2421530e61ab1fa54776f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9496b4f3a9d78224c587705a5efdbff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc277f4c90c74fb8271cce66304ddca1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b666349984f09005c3ea218b605990dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf1377a4d496a97ca0468993f9d02d34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b237c13f8ff2d948207447d610bf79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7e258cdb97757b5d1dcb2cfcb1ca601\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd811627fcc5a2efe088ba85498824a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a034873b733f7302c12f77357cb7d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a06a139b75a0038df888efc160b6d718\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f342fffebdbb3961b6c7cb1483bdea7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fbd66619e5a006f253944775dbbe19e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe112a32c778fc5e1a85b57ddc7caee2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"269d59ba2afbf01a89976e87a7aa1210\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fdd6e83c70df50995811a7b4e2a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"461339479072e6cfa6a97b02f9607e66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4359424baa64e986b59fa41d415ab1a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc8aa0c17996ff85c861eaf8d5b0cf84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21eabeec28b1aaccd01363d19dfa11ba\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb5accdf9f56c10d895bd732f109ea3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d7d60da7940314cd626bd834af5e727\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"388577ab65bace3f26ee0ac8154104c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b33e66f09619f185899bf4fd71502c5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"531f0295e3afb7186a34bc84e036e106\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb697eb52f8e49d6847614e6c87ec81f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6c5c1713703f37c2d0c9dc58ab71d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa66284a36aad4743c9457b43009c3d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2dbebd1dffc9b31aa00702afca47fa85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"742d317e9b1b93196a64e738fe81c3e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_tamper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5694abb63a3d7d0f1fef64ca7ced652\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Tamper)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Tamper\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11e92860f380e2aed665f5bfbbcc4c5e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Motion)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7db329966d8fcaf7bf8f2a1a041f7972\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b27167efcf1befafb40ba35f59517cd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48fa14c557be3aac0f57468322f7eb26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb55ba8a855d25dd7428036e0cd0558e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ade08beb8063bcea7d4994e3339ae993\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b9cdda5ff0c3b9cc4a989febec670ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8a2920baf84268bd89b048d09e651e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d8ce0431cacc919f6654e0d26866a2ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05eff5902e0611fb8f7bebfb06af26cc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"576780787e0d9a68a0bf4ca262fd2e15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c83da5113e06a426ab49e391daa6f61b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2219269962fa6d6e19aeb17527475e5a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5588863a4b18d8b348a74149bba2221\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec633310e97c80c59c6315eddbaffb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"95ba1e0f0980a5e81a9ef637b5ba7137\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e1a41099b9e58ae2ac48892f7d7a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_sensor_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a191ceeb0e05a37927f92d920b7e346\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e06c6e040bcfbfa49d9e4e0f15ae549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fa47306024f7160e82fb2166d71503a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44754edc6ab7eab6babc1a133ecdb743\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68a3fe093a4715fbb03c1f6ddbfd4315\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e025e5d17b85cc5f449e4d48ae663657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"130711c5025aa11d4938873aa2b2ef5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a640b780d8eed0ce27f6b553fb0cabe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f692df4d0a05b8ad1192c699fed5eda5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6353d49e24aa16d649ccc114e", + "offset_ms": 36 + }, + { + "direction": "recv", + "type": "text", + "payload": "07684\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc6a70fe7c7b6f1cbf485e3b2b3e6be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a088a5d0f5d09b2c15852d0c0e787b7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"964462020e6e73b0b0169f5a61eeb044\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22fb495535a4ebd7554ace311e87e8ab\",\"labels\":[],\"modified_at\":1768937324.754808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f062bd2af5cfe5046c59f564790afee9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47e5be29e488997e90937e83b9da396f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b7c79a5c504e2f3eef63f7237af33d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1562e743cda38cd488936d23e22b58f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99afb89d564e6c8b5f415c28ce8491b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4292496fbf98923806f65951145caf42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62c38c853703ab58d017fdffcfa06a03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35ac42b0024d325caa77eefbb92fd9b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5127f16f1631b5877cf467e2d58c1c7c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"55c1d4c91d596bd4191f48a726f50433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7407cd1518c4dcebc6ef6c5d8e7da423\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6415881cf9e2c0b61be6abfa112e5cf4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2725a94f79899b5a4970b5c4d3b9e418\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4704baadf1151fcb1af4eb70c654e09e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30ee61c6ac77872bef422f8ab9ac933a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0732e5ee938297a9f5b973ed48b06d3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24e11985867ee122b198a79d40d53bed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e0ad69f430a72ac40230febd6dcff06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73efe848e7f6628deb3e86f815638a6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e11e57268a63a858310fd24ac8994a26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3929bbaa3f8cd13a3aeef2e57952959\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42e94a93f2db059304acaaf69c17af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d643c40ce27169788c2810ecad316e60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_on_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"90198efa0dea712c09f423bc7fab9741\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: On Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_off_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21c9e490e8efe764f099f91b18f22c7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: Off Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_battery_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf3a65f5e9b1fbef950e3e779e92faab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bd57910353ffae53801fd8a4f1b5f0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"454f88037ba03f08b83dccfd939ddb4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b426c8fffa9d853c719d4ff70196f3e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6824baa7a41d44d33603b4c760879101\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f0b56e360639ff5daf69a28f3036e79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.office_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eafd82385841281bfe024783dda13491\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ce75698c6edf211b8ff2e161520b411\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b98a93997b7667b4711d2831983de8a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5734672a2c09d8f0f6f0e233752b945\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99e3d86cf2c0a6fc7015cbfe7d79a060\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc9e480f72433ef3b4ddfe4a5d6dfa3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bba437e48b66a4689e26bf8b75377b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5bd8a6289b290db5a819a7507404574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c540b165eb0ed98e6dcef5b988de2c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f131df2fc89b340d5ea5d8f7553075a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0b6740cab7d3dc04b516dde24dc616\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b37302459fe4a8e950d1cebd8a395e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e103d6684aeb59d2b23569b207ba4b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1360a0cf141f9ddedb50eac50ed00ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ac8de408549fc851b81f2ffacfb1b1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bathroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db63a6e036511328bd6ece0876ee562a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2b981534f8171df4c6da3f420af24f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.cat_bathroom_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"583b41419d24459b2457700e28653e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912457da9847cd4c455444e5e3f4b02b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d9f921b3ad910d1de65af1ca97cf54e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.large_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe738ced38fd9513231370dfbd42e0b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.small_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e39d012d9fc6092736ecec03677116f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_motion_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6db261bcc15334e1bd64fd2fa62f1cf8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f46c5e88175f5336c08f0ab4b7580be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5544ef469f053ffa8759c7294efa6ea2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4a34eaf48d2c692542296f0e8a7e5d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3c7cf072f2a8ee7bd8b5d3a2cd179fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46ea4278b577244adfc842379d0aef1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b396ff111d07c8a2336ffb8b9f73e25\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6128229fb9f940def07e9c96cf14fc6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1274c94252cb99885059e3bc453f9d55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bc4bd805d7619c9a1b04076c931616c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2984b5f884cac4f2c289443dc2062126\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff64a4970c47dd1e208dc6113f29e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2e22fcbf052b73b858a5895ddce0eac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2e19645094c9d18821b943096dbfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e205c1906cbc3351074944002bdd1128\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b64991bc065b8ccdcbbc057f446b1995\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c14062b8523902321eadf7b3b974257\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dbdb7cecb5c85ea349569e68c3b5db5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fb06bb52f2e78831d67c9bf81a0d07b\",\"labels\":[],\"modified_at\":1728721846.268738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7a0060798e93dae0faef390c32c1c1f\",\"labels\":[],\"modified_at\":1728721846.269198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bda4ab6b68f9cf6d154e58d087f0dfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"876da9cde9c3be1845863f537752d364\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c034573ffd52e5a3d3bda9ba303df881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04c854aaf4c81f1a2d429a4a710b960a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c51654eb9bcb7b8bde5f10aa2a6ac2b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37b229da70e600b50c4da7fdd12d386e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.back_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad8b88418744a70fe17230e705c04e4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2d44675bc66f37477a1df4661470f7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e093e8f61c9dde686aec60b62b160f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d1ca4fe6518f80345d12cdb048bca05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f5e73212ea9ec168cfe8f89cc5ecc5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"619631e25ad31c44d797b3373abc0121\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"41c5da359bd07253c5906ea3d1d5c9bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69ab1adac8e2d678e29ca7cfc3663b5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d18f196a4578f9f03c18c42a349f4942\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"828bed1781d3ed491bb52194aa5f52c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb03e8f944a74a8d6f22cacb69a179e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ceea1e88fa6359162498d39710e76608\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32c94f61cfaa021fec2a7c42c0187dcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f35b908065d262cbc20ce40e77913ec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6e4fba44f0f1074fdb8f59a099f984\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"698ef67888799c78702f6e5993f9b043\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0141219b641271db80532f3e4c208a8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6945bdd9b5c1286839ec2feda660167\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13524b9ae17c60833721f597a438923b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bff288f871c8d3234915db1df3aecac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_room_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0120415d97c3741ccebf80955941d0f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b225c98bbae007535c42703d08744762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c4ddfb2b2ea1632b65135e6b4696b1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"400140978e8261edd5986a6631c65408\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef58559c864967045bec692f21ffc889\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93b1acb4134dc4868cc73ba3a2b2719d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee02aeef4ca9d0bfbaa379d5510c5af2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08b5fb9ce8c93a2fdba273d6e9e2bc1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b3e485ee289f8b2389d5d8586ac10af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"295c55ea37ede32f5d0542f2084a8fdf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"af540de79c1a76846557cb5422a2440e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80c1b96899d7ba609ce43f5d3808e905\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e9642d047ce619369c413e6338734b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee3f22dd95d9b04f3bec4b329181605\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5263aec80e35c0827a946676a4aca38a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab751aacbd342317bd0a72094ab1e3d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"205523a60b2f2cb5043d22106d05b771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_room_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c71d1dd5aac2f57ef4e5d93a800dc49d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.back_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23eefb89f7598b1b12ddeb6aa9fa790b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54bb5483d9b560378be5ed481d8c6f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e010955d7518d31854c9e4aab3f27196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db9bfa3b546ed6770a643c10cd880ff1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7df987a19ef8c7183f8bc12db92dedf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9010dbccfdc1900b1f762399bfbfb817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3f2828ba1b43661dcea26810294801f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd7149d9366d9601a3da20992991bc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1033ca0a8c4bb87068b0b0ce5045202\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4b736f4e34f5b44cc71a6c173a28bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9d0afdbaee1c21cb97bf8ead789fd05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b7501814ada140ebbc75cba95bd508c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c14c404b2807aad042575bd543388bdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e509fce7fd82a687c5380cabdb85304\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f77247ea5f57e1024e9a33057575058\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e8e9d058603365d951ca1000c07f04f9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3b1909b7eb73dc73e68f2db669bacd1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc97dc24ca8dbf5b4cd695ec9f18062\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e458d225d20e0d47500ef79aacc1fe7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d1eff5533638de7fbabbea2304821f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dd61553487e0f10f1c0046b93c7421c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44fa78eab4837b85fd7e18b97b690646\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7fb980b446c6bba6e7fca57e53537b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"834c2fb0c37edbf7b9b7cf32759d7793\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17cf457e684ec08236fb7454df043269\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7cae94a92bf02857f8185574b9b2275\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dee0b93328e4119a8c1edde7101029e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbb5600871de8d1cf42b880a544aab10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce87e6ae3b11ea4e45fed434c0633010\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc5b08b6a1940f42619bd2cbaf4a6cac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7612f009094e943b1e129312251b6db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c69bb67dd0462ed5dd00def8ad53220e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1655d96ffffc5c9f04e400af601b4047\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2c82f032d22bc8734679d92ea0de83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12b3ea55e15328ea4d540058ed33d507\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74ce228c87059e06b84516671ac20763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a341d131322622995e0a4dcc4c2fb896\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6e47f1cc69120985b15d8613036a9bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b496ac89474549c88080fae26ab63448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d02dae110c56c726715e529953d922be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8220ab6bb0cc1fc23c6858361deeb46c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9c73a2a70d12be24ecb2bcaf74c1eb9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26e03526e28cfbb18f893ebcc3dfc0c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98a1532b78d15322829fff6448682702\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee8d5a14a38130a77623414ce6ee4fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bee0b4d100f784a89f713cf59ae7eda8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fceb8d7e9aae08b848cb5dc97b345c3d\",\"labels\":[],\"modified_at\":1768937324.720737,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6e6ad930ee7d37c2aeec57f725e8dbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77913513918309cf18ebe9a75f1af7bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9925ebcc60e4395ed603afbf5a139a72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.stairs_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"64ef85094caeca25ae98fa076d8c6ab2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.right_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63eb7490ebbdb77e4e07c750649c0110\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa8df4191c90e2069a0650185f007b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe3864550a3efb648fe327037ea10625\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8522f9d656d4ee8d60c972ef318b12e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"381daefc1183f93859612b03573ac4e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6dad265890c82659855a7c138b8ff20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2143f3dff81f749104e0882d5274088b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ba145ce3192c0052224a1909e8bfed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5cad207f07383af83050f38c418d4f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10ece451d2f337805ce9472f298d5025\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f40809067c9ee7888788e40620862448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b230d1dbc4c26ac2bd56e50bef6b57e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bceed13702f89123dd582c5438326a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba603234d4704fa0d097770442b26637\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9b570d6459263411f32ba20823378e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"540f56f2db42ef17ea074b6d12c6a8d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b882b539f37696ac5b0d72346094808\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e335a2340c99f5c831c30988019f4291\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1496ff3411098998299e6b70a8a6ac8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3e68f4e23f1a8c2db67c33fb020b7ad\",\"labels\":[],\"modified_at\":1768937324.724768,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57ec7dd098b7d22f35ef2adb35070c44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"580b0c98b0af40ef97ebe8526b5dd762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc7acfeb1f1383b3f1193746d7effa9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ffd52e582ef700cc04806eef2286427\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f104dff69eb4b8929dca5770b0071c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca88deb31ee64fe9db769663ff3ca08\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28846a193465e0feaf80158a9d92cd87\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df83d525d06cd5c6cb8935d53899ecb6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8aa35ed55a01305e566d54d73c674a13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4efd6b7a05ab072f70351db23b242817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96372675cb474b8a3a33403573ccd041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19d3b1945550830c400d18eec7936d10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"768825fc5893ae8c1a68cee71f34d430\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f0f3f4d2f6f41f46a7fc5883c19f7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f779f56acb8df9a45c5e26e1d34aaf94\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e88349529a6577002d4572cdcfa7ad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4113ed3a769b963fd4a00ddd0932f173\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc9935b81c48df8d37aee1e17845afbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05286428dda0b418578fa164c2ec2f41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7993ea69eaa97bcabc92f958925362ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9bb313fae31e282e00d2a262c1be84e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a33f6dc15ebeb5c65a8da89a90da3c76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eacc493fd250cbccb936a793286c7939\",\"labels\":[],\"modified_at\":1768937324.728547,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eddfdec1717ef07c1a822b3f1c6d417c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bbc32f88ebae70bf8372daf6ea6f84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"824e2082cd5cfa0b434b927daf025f91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f0851ad45568021e7ae5eab17e2673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"797330642b50fd7cc717526490b5cd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81aa7a7763b626a16c33da9baf51a380\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08710d667a90994008b9c2e51f4bbf49\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c7586cb4377fac8037833b67b9b555e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bff0a946287e8e81b4791204fb0c4b6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c91612079311a00400f01a0e5906a212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ba6d0c2e53883635ee9ac22d8e850f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede8b905bcee1104ef3416e5edadc25a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1ec16e8db40ca002ed689cad642b9f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05f81c05fdfc78fd9a4f8f4a1c8b8640\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53e8b9304e649c2f34dd0959606500ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b036c6bc350aaed23e9f86bc06cbd2c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a3739602f92462bbeac62fddc838fbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471c0a1606542b0d7f960c1d2922d7bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce49f041cf870cffd3f0df35ebb0b76c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048378228b0fc98e250dd66ec6ac6ad9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5e40022e450e73c4b5ab1198e302462\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d78bb4acc54d779836cde9c8c6a2f8f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79490028fdf09eeafcc7a7e0ad2d160f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f1ed32bba3d33dd34695c661fa72adc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51e3619b9800abefc65f0b522124c7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a1866797815d855c958561d455ffd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f0626cca53d88f5dcf005b18180e9305\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea487f330dfbaf833ebf624ed9896db3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.kitchen_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a635928a8b31bab1a27474ac2f6a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56e02b860edbebacfde760983dc798f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e605e68d92150816bc124ec684b725f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ff656e62d6fe3600aa3adbc8fb526a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec53255b3eaeab829b0d155c429e1d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a08806049e02892d2f6a3d53113f1db8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f3c6699a41458e7aec2b1989f540a80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0933863db47ac364ff1d232f8b46e9f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63481afc3a760089087eca73a0f651d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8957d79e5cb80b0c1a20820dc97b0a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a60f74fb0f1301397480c82b1d54ed5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b504e536735dfabc28835d2876bbb23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fbeb6d2c5a857c79c70e7bb0561fad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fc4e4d47d9a676285c15a975e1d3c36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97f291f24fbe5a30e18bb12dce1a6676\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d21bfd9435eda404f287c3abbad94d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0444d51382f134ceeb06a73d4f3a1cce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c05a4adf47ff0104122a9e4dbf7fadd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4aeaa7e71c122a5d88a3b1882ad8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b17374a4c0dcb067542fc6a74220221\",\"labels\":[],\"modified_at\":1768937324.749696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15c2353076b1bc70f96467ea60e93883\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_local_programming\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b8266fddd3dd1a3fc9c9044bd7f7d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Programming\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18011a3dcbe5a7f5c93c03f151658078\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2e6dbe9ad453568e0826d771078d367\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b381daedd22399332d0c23beca269986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.jenni_office_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1db1d985f5d174ebf175d27b918704de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e96da560109bfc549eb175d77df5239\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b773d9a25d7bd00ebb8c9b90fcfbd8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5deaf7bef811b681c4e8b76c77d2db39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a8dfa6c8c5decf4c4be882afc702163\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef6eb92baab404af7fd61ba41069d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e5b7d53a4b2adf058011f65f0e4ac19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c184dbdd6ad17f8784d17e874aa0d0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"967915145f0ef87b05cf3ec61ff92c4d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e7d97417712b18fdd39510f53345f54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9e05ed0d78214c146c191a7915fc2af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5524e4843b13f72a0b8d3c36529cecbd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"462517ea07b522dda3d29a5d77358b07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97bfc53818e1e5d2b0c76cd8c7ca68f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad2f5c181c586e3bc45dbfd170cc8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a205de2be1537a999eb4d266b7086c40\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da5602526297ba1f96d40f0e7ecc0f5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e10162dc3c84afe280c5a18dd51e9b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc24c82d16bd17b6b68e0b2f6f3f4ea6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001f6b44d64baa1ab159b150b478007\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e80550caccd4b20ad35acf4ca40d92e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6b3bb5ca29c4ba1a5f51a07c342319\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d442915fe41090821ed760f0fccea89e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae41e29abd52b9682303ac5e2c41635\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7de9997e9e1a3ef46e7bef4deb0a659\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0f95b7e389e44036f819bfaa12835a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9b9926bc3aead0f4952441c76387ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.front_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e18e30d8c73b2b7d8f56d6d8a72444c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5da04a067a75da78e01daf28eba1cebc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef81d350ae0a3120308f207a382754b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c93b8d9c39bfb59bb63bc28a67369b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c4bd8ae88880be45a949ba732dc061b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50561c8d822c3b26d448cccf525cd1b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b49703ed535bcef72a83f0289633087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bdd2faee34bb34a5f744a8881cbcc68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e5c2c80d8e6863d72a81c9dfe05218\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93d5ca265b8193cdc3e97680c6db647f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d95b3c17713874a2a9d757e5515f9a0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eff4988dfe92e73c693e77473291a68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aac4d6311ff78700b94194d61356c75c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4448f7a424cac4aa39698e8890b4d84c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adeeb59701ce2173bd76622bf5fc040a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8102a65d592a4a456c8cda46f495d8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ff20be2fc93225ec08b44330ce05f90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e23cb4f3bd96aff481106795ea4ac53c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c38948afd63807d9bea536058af2f4\",\"labels\":[],\"modified_at\":1728721846.364993,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dd9482ca71561ce5ec70dbb6aea6b3\",\"labels\":[],\"modified_at\":1728721846.365587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d299d44ce26d096fc59656441c155e91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ccf12162192b1db183d5e658ca8d5ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048c4c8a57e47dc7142d8ea6fa196a6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7984cbb544e0ef6af868a938894a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e58a5f4844984223a08cc57a1e2b5f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1eee0f58b4efc0fafbd2a40a8e11ed43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcd7f656cc785bc98cbe8849648c0967\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0bed885a5d924aba589b2583d05fd15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb6de87313ec6de004fa95b00aa6f927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d361feb6237b762704e0461d6fa7d83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b012aac779c2d71e28c4010032f7bcb0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8381ddf293ea7f56e0b6dc25d7a2f0de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ee4d83b710c21b6d1294eba54624b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eedec08306572ee3292cda66ec9bad50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ad3a714fdec28accbdd4c4e7de89a29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4db29e68a9831d8b83fbc34af4098986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b6a0c3b3f6f37b85e7d467dfca44c1ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea03c7aa1a8f7ee7ccad99b3c9ff4d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d565a0520b9f6299ef5cdcbeabfcda4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15cb859569c08f27db39dd118e8e87dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8507c90d370cbd16116be434d5246222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6474656dc92c4ffc2d68061062d4bd44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2ffa582700b450ce0892f6635734eef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dbad0e6f48a425781d17739f8795734\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6871d61691047f5f5f8a2003ab06bc35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2bf28252f61cd3cae9f59c22db2e929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status\",\"platform\":\"zwave_js\",\"translation_key\":\"controller_status\",\"unique_id\":\"4182894947.1.controller_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b6f1921f63105e65d33f275bbb06769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e2878_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.adam_desk_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7b32509cfd8e8b57f2135f982e8d34d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.adam_desk_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"744a5b039fbf04b72c13f42cb57c30a2\",\"labels\":[],\"modified_at\":1736355683.891054,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e2878_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4409a3f2be06b369227045d72f072caa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e2878_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b40a7ba376de7ec1f911de7228cc76f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e2878_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a23c6bc5a4861c4f54a86066cf26e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e2878_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e29a3d1eab9e6e7b39d4981814c1c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e2878_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9743c6abc46883a073a15fe1d32450b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e2878_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e52b7a6ef89176f6d30ae8b3bd7604\",\"labels\":[],\"modified_at\":1768937324.880394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e2878_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08d27aac87ed1eef797f4f56dbf0e5ef\",\"labels\":[],\"modified_at\":1768937324.881003,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e2878_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d396a6bef670fc54d085c5d175f16a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e2878_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e1f6a989fe00bcf10daa6fbdffd74c8\",\"labels\":[],\"modified_at\":1768937324.881525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e2878_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6852f43897d8fc7e5b971354177bc7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e2878_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2dd7622b83b59be4b859d62aae5fcfa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e2878_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"246aa304d51aacbe8c81d224279f1b60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e2878_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e787a2f31cb2b020e5a02ccecdb5194e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e2878_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c038f834fbc5de4047db5d693de5520f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e2878_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e318495a5de2c0ad46f0d9fcc212a1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e2878_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61cefcdb814557288d2f15616147ffe2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e2878_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a25d33a371e9d37b9e359fb3ab60102\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e2878_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"985029c1c4a205b9050eb47bfcb58278\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e2878_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88d63901ab44f88f1b109674d78fbe6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e2878_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da4ffaa9bcb00cf00f6048f46031c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e2878_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"596f907cc32b91ddcfc55730d567ad23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a1dc1ed378fd6ca5ea8531b3a2b0290\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"463d4f8bcc15b05ea1ac493576708a05\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48456beebaa2358ea71c3fdc9cf7ea53\",\"labels\":[],\"modified_at\":1768937324.522171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:08:8B-light-office_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"93c6c6544539cf899bad569ce9440560\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"260f603c708075690f0a0dc262c440cc\",\"labels\":[],\"modified_at\":1768937324.521066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:1A:86-light-office_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d4f33c22b2f134128499d170a9f81a2e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4316012718b14810c7ed8651d3e040ad\",\"labels\":[],\"modified_at\":1768937324.523393,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:05:0C-light-office_light_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c2328f12915a88e139203759aa099d80\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c58a3dcff1651522f7a004fa77854cf\",\"labels\":[],\"modified_at\":1768937324.525846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:07:3D-light-office_light_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fd4b4a826ba1ce85b11c2a14483964f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b81fb595012241623d52d08e29f7834\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c3957d10bb011bb12b3e6c41b598191\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd09a74fbce16b1ab27aa2b8ce22df44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26ef71b3733fe8af29953704041e8b92\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8f82b3e8f2771f0ab24c9839a858b0d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc545b29708c4c982c585913d9fa6f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e20e8_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bed_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63092158204e47a86900ac1d94b85d76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bed_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"765ce6a13ad4d227fd7d1df51c057076\",\"labels\":[],\"modified_at\":1736357560.669652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e20e8_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae1c3396e8bd72eb45ffd91d3d440d7e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e20e8_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887f889588a56f03619560b36016847b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e20e8_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd63c27148c664154b448d68dab14850\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e20e8_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c120e6c6942aca4361e8d3482d529b13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e20e8_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80be9a2f4eb93931f72869f82ee1a25d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e20e8_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b348375076eb71644edfa2d3a1a3fe5\",\"labels\":[],\"modified_at\":1768937324.888442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e20e8_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"14e92db25cdfa8cefc51b2e1ccc83517\",\"labels\":[],\"modified_at\":1775500964.404141,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e20e8_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f90598e2bc0b94fba4961f07483be83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e20e8_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2dc11642030b46b55567615c6b50cb5\",\"labels\":[],\"modified_at\":1775500964.40468,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e20e8_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a5a22be58f4439bfb5957f1b1ccdd5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e20e8_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab698dbf37373681bc08bbff54a7537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e20e8_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c22ea2a613d675a1479eb45f1993f33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e20e8_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b80991556b6a76854ca712e3dfc7496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e20e8_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed1e6c2b75bdc80fbfffad3c6cdb0aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e20e8_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99a6c55ed1a3ec824f83cd8b9306930c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e20e8_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66a0bbe3b51a4c4457e91b25d434b43f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e20e8_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a74556a0d4547c7c831b8f1e4753759\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e20e8_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7820433bb9beed63af31d3821944f306\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e20e8_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd7061bcac8bbe254b1298b5e4a41c1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e20e8_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1040da8c80ca7bbdcbed89aafe909b35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e20e8_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f6ee68ac821fe83edcd517dd51b7fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bed_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b80f0761cf4c725fabc1df8de30f0f4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bed Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bed_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d1ff20197a688334ed61ae0ef24610b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698022261893\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"375e166e0cda4a49184ddc7a3baaa4fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698131438659\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1516392955dea9d5c3987f65e1a21ae5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f262f6cf884c0de68c44d465232ef2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b77573023fd0e45cbd803efb780ad2c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3302b58f4523b9775deccc77aa05bf99\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a5224c58b24307c45e10299f3348cee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aacbb82d04534e5b5b389236a4c0f63b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0bd108d5e399f94d25c38981e1fa74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"717eec56b8ef81c8619737a303b154b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ced631fd54d05c61c0e74631e41c81e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7494f61b328a3fda8a55ab7a5fdf222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2e84cbdbcc51e4f48baf7214e76d722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71648192af447198dd4f8300ccc532e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ea641a89e1d849c3373b2c337c3a66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc0ff81ebe53c633db166a1af91cfaf5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e763fb2e22c28f390add28e636c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30be942857ce762791d50422aa7504d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"65a42c0fb4d243662d5cac0c4dd55944\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2abe6c30c0dfc40abca673632cc24f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b4dc28ae7f2524ca27c1706b5f16c88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f7707b0eabb9773200603b8bb1b32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20890daf170f69687407391661d973ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e0f4e90a3faba0db0361d78e006929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a82370728b30adefa3817e4cd46987b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79efb54b9582819a0637c7c994db3c02\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d5643409303cb984fe3b1510f5253f2\",\"labels\":[],\"modified_at\":1758660536.913726,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2c1ffa1fefe471a1db8c7975915cab\",\"labels\":[],\"modified_at\":1758660536.914575,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7f93fb1fc2ce5a89138f056d261f6c\",\"labels\":[],\"modified_at\":1758660536.915203,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ffc5c7999492de07a6ac08ddfbd6cd7\",\"labels\":[],\"modified_at\":1758660536.915773,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94f4819071ac098d75745bf9217ebafe\",\"labels\":[],\"modified_at\":1758660536.916339,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"762e6d3ba10d31145566124175888acb\",\"labels\":[],\"modified_at\":1758660536.916906,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b99d149c424b019412d5967bf59e2b03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8664760514c651576ea096f12a1f392\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1eff1ca3d5d08ce4e23061d9208cdf6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cf765d081c1063cc980327cd4b896b2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a7:98_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"250a48d09c2d5e25299e39b9a7a31a0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3f5c4f6251c9e5d461d24460a10568f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"810731b1b401be39f6e86bf0db1694e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aaabb95ae0d93dc3cb445aa90193ade\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:6d:d8:6c_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500bedb57e5c713e97640f8346c53669\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30a484b77d3b1466b9fbd3f5347769e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede974f57b59c7ba6453e2b9713b1b63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"408ef0bacefad7f762354332eb3df58d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:40:f0_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58e0d06d601277431a4397c287295dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b90fcb72d686e7f16f444e550870f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"562d26b904b539814c5ad4460facd881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82cfe763a98e9bf75c35410890e39def\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:e4:6e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"affe0aa48114f479c924abd9c9d5ae4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad9ecd3f5664ecafb765d2a1b1c52651\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16d12c6b79c955c505c8ecd86eaa19be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_4_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"298bf015afa9856b33dc43e85563138f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:ca:59_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5387707cbd7934a7f17ad2bfc2edaac6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd375e9778adf92ad651ebdbc6a2a4b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ccd49fabdd295c62319e1e568a8bb00\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_5_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4097f2af48e3dd76fdb6f8d500af3e93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:fc:44_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26b67877c9a2b2cb3a8215b88a6bf42d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d92c178e01c229bef991c42a015295c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"947a6a6c9d9b978f8a32ba22a2b3852a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_6_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1453d3b4b1b9be768f4db7b8b7ba4f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:56:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4db62557803ea897de2e45c2dbdcbb3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c25ec789c92b4385836706e4644e878\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"168cb748cc49f12a335dd8dfe3dcdc07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca28d3e1aaa9e4f900aa7ca1ca3f9aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:b5:89_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d255bd26c49c0b8316f7e69de655ab0f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"stt.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b596632825fe1076787e2e00a1d029d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-speech-to-text\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"tts.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2927fa130f0baaf124411cfe176ebead\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-text-to-speech\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e19a53d8400b62c1b8986a02b5b5b0a\",\"labels\":[],\"modified_at\":1728721845.983581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.4.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2df5dbf8c580bcacc36d1c0bda2dce\",\"labels\":[],\"modified_at\":1728721846.001319,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.5.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2992a8bf82bdea8f5b4f3edf59345\",\"labels\":[],\"modified_at\":1728721846.008929,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.6.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d534d2f4ef518b830eb886757e17e71\",\"labels\":[],\"modified_at\":1728721846.027127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.13.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"701f561124e85d69fe250c6f5ccddbc1\",\"labels\":[],\"modified_at\":1728721846.035759,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.14.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b8ba7d5ac2d0d7b15ded3b394797bb\",\"labels\":[],\"modified_at\":1728721846.043408,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.16.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"703ae656d9dc0a91ed9349e574913af1\",\"labels\":[],\"modified_at\":1728721846.052172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.17.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f933c2cb7825c0c98616a1cd0baf665\",\"labels\":[],\"modified_at\":1728721846.057779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.18.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b467e6ece5165bf28ef33e1806d567c\",\"labels\":[],\"modified_at\":1728721846.063963,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.20.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4deacb3773ea5ede7d53b9b0c4cc1b98\",\"labels\":[],\"modified_at\":1728721846.071734,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.24.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"907ff6d2edd7e5fe5373d1f1409792f2\",\"labels\":[],\"modified_at\":1728721846.080476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.25.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"862115a3de075173eb494c7860ed31df\",\"labels\":[],\"modified_at\":1728721846.089722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.26.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b423d803ad851f36a74255a889186bb\",\"labels\":[],\"modified_at\":1728721846.099062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.28.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47516de4224b0eef5c0d003c0513060d\",\"labels\":[],\"modified_at\":1728721846.1068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.29.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6f7dbe7caae310dd09d478d46a3028\",\"labels\":[],\"modified_at\":1728721846.114612,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.30.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6278dc427336c377caa1e58c30ff092\",\"labels\":[],\"modified_at\":1728721846.120738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.36.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f72a7429de924578f7b9c3fb6d781a7\",\"labels\":[],\"modified_at\":1728721846.126794,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.37.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4411a0bf4d7bb1ed0f6f11343dfcd199\",\"labels\":[],\"modified_at\":1728721846.136087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.38.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b6bd22bb44d0c9f184f996e2ae77d69\",\"labels\":[],\"modified_at\":1728721846.14763,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.39.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a26fddcd069cceb68a34e3461a6e0a03\",\"labels\":[],\"modified_at\":1728721846.156271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.40.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe7380af04fc4c2d01ce456a97f9ef8\",\"labels\":[],\"modified_at\":1728721846.230796,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.66.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e62d502703a6419c34e8edd95c486814\",\"labels\":[],\"modified_at\":1725239521.486838,\"name\":\"Dining Room FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7bb8fbf51788176cdb83547a004935fd\",\"labels\":[],\"modified_at\":1725239521.488668,\"name\":\"Dining Room FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"643d73eb1fbe0ddfcaa75370f3c8389e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a43b45ea88de4d9219e8d2841b42ea4e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3298e1c38a53b3c870fed75d6968c07\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f041b32270f9966ec39f26bc7e960f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46581f02785bb70fdee35529c92d263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6bffd588d27f8aad7cc650604b61c2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c74bfa7715f144957d804f646c4799bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights On White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25c3d5677fdc630832ee84427cd99536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902139116\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cbcd941a74a5a7396aad84ed9fc7dabf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902226266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3f98937a77978b4644ecd2e3b22e8c7d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.leks_lamp\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7fc3837a77f3b273d02c5bb1bf0170f\",\"labels\":[],\"modified_at\":1768937324.523879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"leks_lamp\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:E8-light-leks_lamp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c89435003eea4c6873d070c3c97fe473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3d27d28caa96a13c6ea25d0171638780\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1da40bd512b39f99dd627edb13c06403\",\"labels\":[],\"modified_at\":1768937324.524838,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:68-light-front_porch_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d054016a6b2f868c331522d5f2a024c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a43e095361249391c95d346bead29de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d6e9bd72ac413f4c9765807a7a8829e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d43bf2ed96db238ff6d5a3d55b74102c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5cfc016d624d22f58b972535e2c588e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:4c:4e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab8095363203057cbe0b359e78a434fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08f36a4038ba7e9ed484f4e40550a93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e32158757eb5aba850a4d85abb2be672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43eb4d024a7ef32436fc15eda451e656\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:92:15_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ddded55b837de9c9ba5d6b539445a14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4dc39ab3f597be7b5698f6d43b17afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4a3dfc05ea5897c3f4ca6d122a9e755\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d66b459d9b3468bce28a13faf238f788\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a1:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66bd7310f75118cb61fe4439c1b2dbaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e4f14bcbc3db07c23bde15014153663\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08167d99b04cd3119c18bc3a2a03dc54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78908f51b09bf8868105eeca61df8b51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:50:fc_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c312f3943f53f013a1698197beec7d9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be1582024ad1873d0529a0f5b617a21e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce297c2ac2bc5a14ebb49b8600041d2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0f550f0c1c6f6cdd1f2308b2e154000\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:d4:63_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de8b6bdb93fd71244574b16898e15903\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0197af3b4e34cdf7ec9a96ce8415728f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bd54501fcc95714cad1dcc1cd31f4a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"148c8043f4ec331449594ce281de74dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:9b:c1_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40777cf802aff4a5b6ed5e3d5c0883f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c03f2a67067cb61528fa31b6ad9b94dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33c056e4fecb95c459544ce4bd40bc90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8810cf2748e6123026bb56d1577b6b14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ba7328fddb154e27b647e31c8da72fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05c1a4ad242b4000e29be97d7bd1c3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"27cf5f296894b7daac381bf03d05ed66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"469441c2849c8da30a2a3175c2bd6d6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5a2de0bde5a2e1cfb2116303d6f5be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13c83850a4f8bfbe494ca9f383a652d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e979bf5003d332a9115b787a3d2dd2b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe12fde8dd7a18b5da9350bfc48afae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53fccaec9ce8f17e7d03d9dc4c33cc19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e27853184c40850e3134ef8116e8673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb7eeef067360dbb615665e6de5054b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0a5aed8a599743541e88238fe0839cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e632ddf5ed06b6df996980dcd58537b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.68.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2be995612da3708ee3aeabf4ad49d8da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.68.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47608e4f8a0b2cedbf2cfff1d12cb4d6\",\"labels\":[],\"modified_at\":1728721846.246357,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"538ed7a8af31562cd0d7c19f8a64c8e0\",\"labels\":[],\"modified_at\":1728721846.246572,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5fe7e5df6a5ce5a5694b4ef947580b6d\",\"labels\":[],\"modified_at\":1728721846.246723,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bbab6b72b677a179c8bc1228ec0fa29\",\"labels\":[],\"modified_at\":1728721846.246866,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f6ab96f4e24907de75d4f673141590\",\"labels\":[],\"modified_at\":1728721846.247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.68.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"830fd955b0b9dd786b18a7cee2c59bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.68.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee2102e9596641854623dacdf86a7c10\",\"labels\":[],\"modified_at\":1768937324.645237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.68.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab9f2342cbb08659c90acff506df3b8\",\"labels\":[],\"modified_at\":1728721846.247129,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.68.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b57a46d4c309703d4a6c50351952ca1f\",\"labels\":[],\"modified_at\":1768937324.765615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c4d6945336b15e0bba9b9345eea008b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"430cb36836ea27ca6cc4cce37605dad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519b5afe350cad9e05b31596d69a6e8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d050ee7382f25f72284e5cbadeff8d0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f44484b3ec3f6e65dc64ca21de50c405\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86bdfd735092c7fc659929e894fbc672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fdf886269a2fde49bd57cc2cbbd7fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"587df372365d29ba4d904980f49162ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c7888f5a2bca7dba8bd7f8db8e02292\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b273f3e4da902102c22068005d31362\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4923aba2eedfab503063be97268d349\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83882c656fefd0303211e999c22a2765\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17b020ebb60e265e372186ff5dec78fa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a821ce10588a5f5c21dca0d5a1caf1ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c2caa9b84384312cc3ee01843fcba18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df2245766365111ead8a1797d4aa1628\",\"labels\":[],\"modified_at\":1728721846.369908,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b21dcb9411ff471644d3bf7cc1f88d5\",\"labels\":[],\"modified_at\":1728721846.370379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b2a820515542e566358f93aea435a81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1598869d84f6256ea9af4669c9f1b726\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.upstairs_hallway_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2672687dfc897fee1ea56b169bb7c5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2119dc1ccc97edeb6e783ce5f0f7ad88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f562bfb09408687492fae4843c9aa192\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad9ecfe03131cd3738d0a0ce1ffc37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aab59415957dbb20b62b5aedb141e753\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e50482b2832b1c9478fd4d009eb8216e\",\"labels\":[],\"modified_at\":1737489134.76617,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966121423\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.night_tv_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2320f4922c41ae3049550a876bddadb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night TV Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"night_tv_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ae4f862e8267f53ba0ec595a391bd85\",\"labels\":[],\"modified_at\":1737489109.545107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966772353\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ce35a8be192434170cdc92d71e7ef8\",\"labels\":[],\"modified_at\":1737489123.678107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966888905\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a445cca6a8488132b472a230b330f318\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d07c497e4fb52fab5ac3b5d5dd718797\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41418b9d9c10e3c186e587bc21a21d95\",\"labels\":[],\"modified_at\":1725239498.826997,\"name\":\"Master Bedroom FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2995f0a20e4c3a95dc980037bc879f\",\"labels\":[],\"modified_at\":1725239498.828766,\"name\":\"Master Bedroom FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:bed\",\"id\":\"95df3f7dcf7e25696d4211430a78abd8\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"03dc995e582e7761e1a9f056d9a752d2\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"45e20dec6491a8436efbbf62938683e1\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom Not Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87bee964e12f4f43e8a77ca865687cf5\",\"labels\":[],\"modified_at\":1725149744.14575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709059722839\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b94ad5130258af70f3e44df53f10b5a\",\"labels\":[],\"modified_at\":1725239534.482943,\"name\":\"Master Bath FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69e5ff06047fee172494a676c9595b1b\",\"labels\":[],\"modified_at\":1725239534.484731,\"name\":\"Master Bath FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5bccd1e7de01b713e1b365a5823ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2080a737e85dba8c1c13d14ca844aa8f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49f9688732c5429b62c5cf2c39f5ebdd\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Presence\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"435b08e125fd43d1e5d67ed0d123fb6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709189535560\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_play_area_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"face7a647c70a0aef8bcc7901e21d7e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Play Area Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1710749651371\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_area_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09ad60b2d7e23af2bc93b52cb0ab7e50\",\"labels\":[],\"modified_at\":1775870416.948704,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Area Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_area_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.left_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1c843ff67b3c61ea82140a73d5ad090\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Left Upstairs Hallway Lights\",\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3cfa9649d5b814c5dff763cd6b76d9f\",\"labels\":[],\"modified_at\":1726995223.727702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b1734fd1032a711e2680a994926fa7d\",\"labels\":[],\"modified_at\":1726995223.730126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fea3aafb794c254c9981d05e2e69067\",\"labels\":[],\"modified_at\":1726995223.732286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f336d4a0a9c91ae0de81eb73b5e182\",\"labels\":[],\"modified_at\":1726995223.734449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f526bff502fe80b455c4e763a3a3db97\",\"labels\":[],\"modified_at\":1726995223.737066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43050533225ce62a16ed7cd33bd9e2d7\",\"labels\":[],\"modified_at\":1726995223.739279,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39cbc62a9910f6be46f1f17a716b402a\",\"labels\":[],\"modified_at\":1726995223.741579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913acb2bc62696d8db53f8508f1e1270\",\"labels\":[],\"modified_at\":1726995223.743703,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdb198312585d22902b2185c35214cfb\",\"labels\":[],\"modified_at\":1726995223.746068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a70affbb4ed972f8daec3166aa396f50\",\"labels\":[],\"modified_at\":1726995223.748907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"254c8b3136732d3bc8a34d91b8673ef8\",\"labels\":[],\"modified_at\":1726995223.751225,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e8694cb975a4e0c029556b1ba338d81\",\"labels\":[],\"modified_at\":1726995223.753406,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e0f89e58dac6a89d1cf0c76e956fc2\",\"labels\":[],\"modified_at\":1726995223.755504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"051e2e640e4c3291b09d55d3687c1471\",\"labels\":[],\"modified_at\":1726995223.757082,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f517ec7ef72b04193123c414c8c3f735\",\"labels\":[],\"modified_at\":1726995223.758519,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c26cf28b3b3dc9a6bf25c27fa43aae86\",\"labels\":[],\"modified_at\":1726995223.759977,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"971283eea4ef6a48d36d89350283bcec\",\"labels\":[],\"modified_at\":1726995223.761297,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9c3ea47b54daf6eb45abb3b17ad3724\",\"labels\":[],\"modified_at\":1726995223.780765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c44b3196aad16deed838f7a23fdb4098\",\"labels\":[],\"modified_at\":1726995223.783536,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5133e25e8f01dddbb6746b990b08f5ab\",\"labels\":[],\"modified_at\":1726995223.784321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9909d6d28676cc7831e49bde2470a7c8\",\"labels\":[],\"modified_at\":1726995223.785069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8482199ceba01d96d231e5f3a9dd368c\",\"labels\":[],\"modified_at\":1726995223.785825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23ee7b10cef9e4662e75be22310cefc2\",\"labels\":[],\"modified_at\":1726995223.78661,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd7c6e19c030f7196a8c11ba4b23fc41\",\"labels\":[],\"modified_at\":1726995223.787367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51d01dd8e96eb9b04bf64f2a2decc90\",\"labels\":[],\"modified_at\":1726995223.788115,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd490e9ecc4785dca9e2c059f36deffc\",\"labels\":[],\"modified_at\":1726995223.788879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7a4924a9ed506f1a7eb6ee0c5cbd0b8\",\"labels\":[],\"modified_at\":1726995223.789713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1a65aba3769dcf7d73471f08ee7487e\",\"labels\":[],\"modified_at\":1726995223.79048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9c01253348f061043bbdb1f1507a49c\",\"labels\":[],\"modified_at\":1726995223.791252,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d489d218083ad29b42fc36fef922cc13\",\"labels\":[],\"modified_at\":1726995223.792031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67713a70d56c5297ff28330a8713287b\",\"labels\":[],\"modified_at\":1726995223.79278,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9b7724b86925b6394800d7c6891b28f\",\"labels\":[],\"modified_at\":1726995223.793535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49962449d9f171c587ef0081e1cc465e\",\"labels\":[],\"modified_at\":1726995223.794287,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f4a5682eb43905036502e20f0d7cdf2\",\"labels\":[],\"modified_at\":1726995223.79504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4df9269002f04292ea5a51edd4f8c6\",\"labels\":[],\"modified_at\":1726995223.79579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dd1fa6fe3de99351f0c2e5b83f26c15\",\"labels\":[],\"modified_at\":1726995223.796556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69b62987fd5a78948f6cfdc65527fe6\",\"labels\":[],\"modified_at\":1726995223.811631,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"178c13bf6bbbb8549bf450a4b37821e5\",\"labels\":[],\"modified_at\":1726995223.81238,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60db789ceb739a57754a71f6a6341c62\",\"labels\":[],\"modified_at\":1726995223.815043,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaac7be99d399d761408d7db5905d168\",\"labels\":[],\"modified_at\":1726995223.815764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15733449911ed88087bdb00ce20a0bdf\",\"labels\":[],\"modified_at\":1726995223.816558,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"429e1e416e644ac2e44b56eef5823108\",\"labels\":[],\"modified_at\":1726995223.817315,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08656fa710c862cb6e1223682c8c5dc3\",\"labels\":[],\"modified_at\":1726995223.818008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1df54d5c58a731bbfab080b1a87906b6\",\"labels\":[],\"modified_at\":1726995223.818713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc787e9c0359d3254b83bd29ba368af\",\"labels\":[],\"modified_at\":1726995223.819405,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7d473447060f92cff978b9a385e9e68\",\"labels\":[],\"modified_at\":1726995223.820087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"055386324f02620a24c7ac18946b8bf3\",\"labels\":[],\"modified_at\":1726995223.820745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"76b3a961774fe3c039a138cfd39bb5b4\",\"labels\":[],\"modified_at\":1726995223.821464,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1d47fcf2e0a7f8584fd0e2f3c7df26\",\"labels\":[],\"modified_at\":1726995223.822171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6664341496258104260c74c65e71e362\",\"labels\":[],\"modified_at\":1726995223.822825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb8d289562757807719ada54917fd1b\",\"labels\":[],\"modified_at\":1726995223.823475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f21ff74ba7e2a3ef0d9c35584ff6eff1\",\"labels\":[],\"modified_at\":1726995223.824163,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5d811edc4036d76580e45069c0c9d4a\",\"labels\":[],\"modified_at\":1726995223.824852,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1dabea2c9416bad06dd40deacf241ca\",\"labels\":[],\"modified_at\":1726995223.825603,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49200ecce06beddd4ae77d277f4e14ff\",\"labels\":[],\"modified_at\":1726995223.82625,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd926acee83d1a62199e77a8dfb0aa05\",\"labels\":[],\"modified_at\":1726995223.826914,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5fd1ebd4c46c2508f368824f8e8152\",\"labels\":[],\"modified_at\":1726995223.828388,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2f8d02c9a7424a0357cba3b49eaebb\",\"labels\":[],\"modified_at\":1726995223.829147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_current_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2393f3fae020b53ab99954ca957c3a89\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Current Power\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_current_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_today_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d7106ff82fcb4a141f250d27a389e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Today Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_today_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_lifetime_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"96d9d3cb20150a5d688099ee3d59ebcd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Lifetime Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_lifetime_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1f5897cc45878de2eb2c5a5f1dff53bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad685a605a9e3440bda5246f75285600\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_online_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a1ff8defd768f741f55d65e9a7f1d5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"687378e33ac65e5d1c22ce92420ebe2f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a7c5493056d56a29653e33999a7ea9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d95ca2a85ce23754796fb7dfc047a34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18bc901d7dfcde1fde8bd62fae8a5113\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca63b9ad9d43371a52ac3613c109af07\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e07bc3bcceaeb880e71ed355f609b238\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd7571675990539e04f4f8a77406c490\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"211dbb3a7c69779aecea73e41f9c6473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"498fc8386aa58186c1fe7da679696211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e1ed71597a80a21a1881c86b442e6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3babf3437ebf12fd772a1aa54f4ab6f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e09f448a85712812e396a7f9cc1d393\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f9e1810e5a0c6896a04a053cc67f82a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f93e1a44de3fc2012749ef93295ddd9f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c20dea6e1ee110ac5ced5123e4947d32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"026a47e3e1d3993dc0ba1ad3c7446bf2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63dc709ee9f548ea607f688f93cf3234\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a06c4b37c7f1e33fe923bbd3149d2211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52154fde2fa3736366353ce80d9143fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5655856d7f5e8bd562dd95b8b8552212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7839750c868429f82ea60be31065090b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"345ca71bd27275be777e84858b01aeca\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f2714bb3fe47257fb7d75ed619377c4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca87da2f07b93a7514c465435b42fc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11ff9bdd285d12419a16b1c4046b164d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501f530e38c0a5ffb668116d0338b7e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79635f34cc537787519a607cef9c2b54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04f5ba7c71b00f927719dd6d1f76a24e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22a79eb3bd15b816fbd2353b874fb8c2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4e289027532937da275a2afe8a1e54b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c889610feda4c5d2919574a4a4b2e9fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6767893333bd2dd2faae401b17f6287\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9719fafdbf800c3e41c1247e9ddec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"709f79ac43c1de05cd9b92356daa783f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bbde1b266563b56db9b76c48b5e4c802\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cea749b7d0157bda9c8b3b8da7d0c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ddd7cef675562790ac794cf05db84eb7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3c559183ae7d9c9e8da0b9e9b52d2c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"361a1fc2a89ff20381d82750957d8e6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"99764c4bfbb97e8902e9a2ffbd269940\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6dd91fa0dddc72d17c5e9bc5febcb1bc\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d0458b6571acce21bda18fa4ed91f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"967c6fffba2e2da7a3df57bd136547a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"089c111078e7402a6d5d28aa89648473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d4c2fa1d9b5d9f01caeaceef8fa3b38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"456f0dd0f5c3770d056cc3764dc13d64\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77885fc4334d3e5779eaa71dac27688f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d0917ede83bd0ea1b545fb27ae2a4ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a36bcb574711bfe4e239bc12d85c031d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ccaf61f0c36aa89e2cc6b95d91fb0471\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05811a50db6dd93844c0b196d39d2acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"383a71bc0095d7e93746e6ea4f917198\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62cebac91c63149058b957314fb161b4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f283b802affc5a6ca5f1c7fc5de091\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee406fe27a3eec7c0c329ac2825c475a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"168791062da8f11816f49242dac4076e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"31ea3d07718bab198b5b9fc6af1dad97\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"305d5bd7a5ce07000c053958fcd55f12\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8835ef4f2b23d870d8155e9d6d5601\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fdd8ffe94c60d06b945af26a4352cb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"140d724fb5d154e0c3e6baab9f1b2c8a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"45d3fcce547a5c666959dfc27b70823c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"869b21114a648290559184a15408ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e821ed6d71bb8f39e7b129afe3af4d9d\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00d279b67b2610254703b2f54f7c19fb\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70fd486013d17ba726e8011eb3a73a3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d40dc815657ac375ec8fc97364d0587d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42be692b3321a3c3b636ca3c45f84b83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e32b957382e291736c3509dfdfd9aa4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"03f49ee636edc9301e014dade638cb4e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3846da42a87cde40ac6aea0bfc100b05\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"223c68438e658441b8a74c18d7440baf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c161128d74cde1b9df0ac526abe9a06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7b1a0a10460e1b2b3ede2e562a703f5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adc4e9307e5f4586c50c9b3d85f66b27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33f66484a0035b233ab171ed3b696fa6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"592ca6e323759a3be3e15662afff9297\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"893b80ec5dd05fb72fd00141fb518e32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d688d2d1bf1a31622070b2fb094c4cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4e72cd5d23acb39a4f9bc63cd0a21b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"da85884355ff3f4994596e259973be64\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2f84c45e7569a132689cdd9ed95b065\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a1f3186ff560113bb369dd97d7817da\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3db09b81e63e277131f85a8131a8025d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0b16c038d6c97b603911b86046cd25af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4eff38935461680017f59921787a34f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d18af827376be02cc0d3a1b6f9e01ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98977f8e3432f6e1ff5ebc307b85bf5c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4561d19a5716fbe7e1234f629b30767a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e9a028e3c404f0497df004b9975faad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f02043ae6d3212ba58eff7b1f7747496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1712170208fdab217e72e9ccd1bfd12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22e1a76aaf68da0ffb5403b0d2e2e274\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70909c374becd6dd73c82b4ff632b3c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0eae697b783ebba9efdb307f5ac8880a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c413014864a571a604089ceeb62ed55a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39450e87b48a58faf8da5a7a85133642\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5b1e2afd4751933180abf85fc4807f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a967fc1ae03d7238ecea72c0a0ee0d6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbe669bd0773be004f53e90bcb0df11a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56cddc0e777db2dbcc227171ce9f8054\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79b07b22b2ee648f66881c503ff3745d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d58f33bac449e9831ab4e1e98bc8409\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3859824896da3b25243af7a06a9ac8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39adcc1e155986621cc39a150c750070\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56317bf1aeaba04d33f714030392e692\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25113df24a5179f21d9e43126c27f58c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"466f741572070700ef6306949735069e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b12a0cd54325f7f91fee567870e913f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74e4b4ca3efba5d75a1727aa21c083fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"569cc4587b3157e2f58acd98ad72443d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74526ec1a4f846d0ddfaef484bc13493\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4203eae9736a10d438a8ee366d836774\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f8eb498aa41b793797942795f06c310e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Using Cached Data\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_data_from_cache\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_restart\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2bd4ab12752eaaa02b11c84a1e3290b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Restart\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_restart_ecu\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_query_device\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0ca0562ffcb02644dafae6227b475d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Query Device\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_query_device\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0a21329364115517cea604476281c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_inverters_online\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"cre", + "offset_ms": 40 + }, + { + "direction": "recv", + "type": "text", + "payload": "ated_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_003\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c5d8e19b2f7ef7dad358b83e242a65d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 003\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_confirm_configuration_change\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d25ae85a81c5a18a3965894f77da168e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator: Confirm Configuration Change\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e465c51bf88dbc32a6785a7b6dad1f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71fd02485d1c3201235dfebb5dcfe3b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e703e04564a595e11b85dc51d5afdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc9b9913efd0c2f8819a21443737e28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449a3a66c448b698823d287dee56c864\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_on_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"553ae2641fa529953c7c9c90ea018e2c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09447a340f5a951b315041b5dc38910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_scene_control_remote_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4108e95bdb9ab52a683d50b3c1eeb35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control: Remote 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed_dimmer_and_group_3_and_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96fb107556a5754998e6d4d86ade7860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed (Dimmer and Group 3 and 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24813797e3fe66e246880f75f276e964\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea0442a91f3c09d591f5ddfd39b6057b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0152622d192ee621b119886a52d711d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7d94a13fb61185a29df32572fff71f7\",\"labels\":[],\"modified_at\":1758660536.917488,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80eeb792b9601da317217fe3bdc1d46c\",\"labels\":[],\"modified_at\":1758660536.917716,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2068d0dc53aa2c783a1b70575e6d7755\",\"labels\":[],\"modified_at\":1758660536.917878,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d71e0683e8fa779d02db54bf283e7f92\",\"labels\":[],\"modified_at\":1758660536.91804,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1b34b38e43714428e109ed8d1c945\",\"labels\":[],\"modified_at\":1758660536.918202,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f895402c9d8d3bbe9eacb657e5a92be\",\"labels\":[],\"modified_at\":1758660536.918462,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.total_inverter_watts\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb73b03eeb9a43d362378e6ef0a89fb7\",\"labels\":[],\"modified_at\":1768937322.85093,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Total_Inverter_Watts\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"43febd2c80fd35383b1796826e76aad9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"notify.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de018507a30e449b6455fef4fe0fedc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980_notify_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ffbd90ab3bdee9a04e0e066a46c2d94\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eebcb05ee23fa77b122afde9ce221d20\",\"labels\":[],\"modified_at\":1768937324.525363,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:6F-light-mariah_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1dd305fbfb47d33a89aa39aa5305aa6c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bec4f47de87f948d86a066bb2ab2c70\",\"labels\":[],\"modified_at\":1768937324.526369,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:32:24-light-mariah_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a815fe83e1ed7dc52f51fbdcc13b71\",\"labels\":[],\"modified_at\":1726995223.830482,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e558dddb1abc1eeeaedc81b16c01f9e9\",\"labels\":[],\"modified_at\":1726995223.838912,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56d69a23bcd42abf56831b1b71694eb0\",\"labels\":[],\"modified_at\":1726995223.777968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"581ec35adc2c957a76a2c7fd60ef8633\",\"labels\":[],\"modified_at\":1726995223.807272,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e52835bcd7056629b1f1a99e20075585\",\"labels\":[],\"modified_at\":1726995223.837479,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47538b6ae63e2feeba44c44fae84ffa1\",\"labels\":[],\"modified_at\":1726995223.776542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2833708ebf6506c52dd79313ad59d26d\",\"labels\":[],\"modified_at\":1726995223.805802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1602432411104b1ff4945fed97b8e1a\",\"labels\":[],\"modified_at\":1726995223.763548,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c02d2d704d9242c0fbbed6a12f6213d\",\"labels\":[],\"modified_at\":1726995223.798062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d105430a04958aac57cef96114b7c07\",\"labels\":[],\"modified_at\":1726995223.831134,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9eae8ff171be93ebed91308be8af407\",\"labels\":[],\"modified_at\":1726995223.838195,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d811fdd8bfa49dab565b28ada1eac2ba\",\"labels\":[],\"modified_at\":1726995223.829815,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a920c156a1c4ac8ed2c8c7e1167e51\",\"labels\":[],\"modified_at\":1726995223.762419,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b11670409d6bdf9aacdf2aa240b77fda\",\"labels\":[],\"modified_at\":1726995223.797323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4aba70109c330d3dbe361ef2f93ae3b\",\"labels\":[],\"modified_at\":1726995223.765802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a56194f193842b6926637417fbce5d3\",\"labels\":[],\"modified_at\":1726995223.831809,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3566ef3b27ff4ad879bf2679940865a\",\"labels\":[],\"modified_at\":1726995223.7996,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9344a735c3f7b30f4f067902c5e8699e\",\"labels\":[],\"modified_at\":1726995223.842465,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d473f6cd0d1bd253b226a132ea261d92\",\"labels\":[],\"modified_at\":1726995223.810927,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa0f97c72bd513df9f4ae63f90bcde63\",\"labels\":[],\"modified_at\":1726995223.843171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555d62f0d7d846827fea1966f7a795f\",\"labels\":[],\"modified_at\":1726995223.782285,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b738544dccea104b025e9d0e05eb0a0\",\"labels\":[],\"modified_at\":1726995223.843932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3279a9c16bede20195a82db3a2d5ac6\",\"labels\":[],\"modified_at\":1726995223.813127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"edf1ee16bcab171c1c577c63ab97f10c\",\"labels\":[],\"modified_at\":1726995223.813846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d546166876e4b211dd195567284dc59\",\"labels\":[],\"modified_at\":1726995223.781575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"083bdec6d96d2f404c70507685f3dd3e\",\"labels\":[],\"modified_at\":1726995223.84177,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dca79ad23d502629a88f7013fa68932\",\"labels\":[],\"modified_at\":1726995223.810227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16aa1de89eab7ad3ed129eb4cc0ac3c6\",\"labels\":[],\"modified_at\":1726995223.771136,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e4964ba1e71db161a6472592eb9e740\",\"labels\":[],\"modified_at\":1726995223.80033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8570560d08e0567d3efebba878cdb6ab\",\"labels\":[],\"modified_at\":1726995223.832485,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4aebf740e9f7b9bd6c98c37d306197a6\",\"labels\":[],\"modified_at\":1726995223.778671,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fe20c2ae51615b00769343092fafd6a\",\"labels\":[],\"modified_at\":1726995223.807968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"068e413358fd64469c9a6e6f35b42a3d\",\"labels\":[],\"modified_at\":1726995223.839642,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aed56680f8f167daeb016cde5c2ba644\",\"labels\":[],\"modified_at\":1726995223.84033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fc85df1d90cebda5ab8b19c32436ae0\",\"labels\":[],\"modified_at\":1726995223.779376,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"021a49ce92e7476a582236b73b6e3535\",\"labels\":[],\"modified_at\":1726995223.802855,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6a40eac34dc70bf8dc5def5b0073fa\",\"labels\":[],\"modified_at\":1726995223.772679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c553fc274e111c629dd000aeec4c2b7\",\"labels\":[],\"modified_at\":1726995223.802104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df570e55b17fd5b868f21fdaaa452f90\",\"labels\":[],\"modified_at\":1726995223.83469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8e13752690827fa5e282140c5762e8\",\"labels\":[],\"modified_at\":1726995223.773442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b20b811f7244af9d9b23c2761c84b693\",\"labels\":[],\"modified_at\":1726995223.833935,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a5afa9a0787a0de471b3ee2c02657c1\",\"labels\":[],\"modified_at\":1726995223.808684,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8732cb4c313abb97189c10f0054108\",\"labels\":[],\"modified_at\":1726995223.775718,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed76a423a40fae6a4f24c824afc7805\",\"labels\":[],\"modified_at\":1726995223.833237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60203a103ce1b8ad003b1909fb4295b3\",\"labels\":[],\"modified_at\":1726995223.841088,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75a7375b9fceab8ece8c8d79beec2075\",\"labels\":[],\"modified_at\":1726995223.78008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d4429655a28d7c4d11c8ac748d6ec40\",\"labels\":[],\"modified_at\":1726995223.836044,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09fe4444cdc9cd9c1cb1d6365af990f\",\"labels\":[],\"modified_at\":1726995223.774958,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd10e1850ddc2620520d0c61a8bd97c6\",\"labels\":[],\"modified_at\":1726995223.804328,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4251e01f23bc9625e8a30bf7203a470a\",\"labels\":[],\"modified_at\":1726995223.835367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743fe98bbc2fed1b1af8b35cf2fb0ec9\",\"labels\":[],\"modified_at\":1726995223.774193,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6269259dcc0345571feab5284d7d09b9\",\"labels\":[],\"modified_at\":1726995223.803587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"524dd66763944a8be56ef44aa306ce9c\",\"labels\":[],\"modified_at\":1726995223.809514,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81b1a35be54fea6be3a192e4c82541f8\",\"labels\":[],\"modified_at\":1726995223.801083,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63bbd707bde7aeba07b3b5ecf5b7fa17\",\"labels\":[],\"modified_at\":1726995223.77192,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45170e964613947df7b4c57ebc0acd48\",\"labels\":[],\"modified_at\":1726995223.805066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8207f151f883386419a3a7979d3e5a37\",\"labels\":[],\"modified_at\":1726995223.83675,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e1e9be0c3cae58fefc0f6b8691e7327\",\"labels\":[],\"modified_at\":1726995223.764679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a81c4266cbdb0d23e04e4ae57619dceb\",\"labels\":[],\"modified_at\":1726995223.777271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6adb060e525a0b02802e9e8b6afa176\",\"labels\":[],\"modified_at\":1726995223.798783,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e88cf00ff5ffb15ab94f37a9aba66c0\",\"labels\":[],\"modified_at\":1726995223.806537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ede71d69993e45389dde366b477559a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.zwave_controller_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ada086edb92a8f505bced7c2559caac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8115e52cb16c7a28f096995d2b3b67e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f44e4ed83c8b09e72ec4ffd1df79953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f359fcdc3ab75ebc7bfb58acf0fe25e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46e839f2f5b0c124ad2a0b5c355967fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7b78974ef1f75948f492f64fd4859ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f780def514df1d90ed58dc922b80c574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.69.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_controller_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96d8fc5c5e35a76c655c9b71b67ef899\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.69.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a133bfa2a01f055c0c8d1bd38418a9\",\"labels\":[],\"modified_at\":1728721846.252105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e3e85a4be70951809ca9f5dfe3e4f27\",\"labels\":[],\"modified_at\":1728721846.252322,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6422ed2bc95eec7c77e8299c3132dd3b\",\"labels\":[],\"modified_at\":1728721846.252479,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e3039be25344df3c303f10d2af506\",\"labels\":[],\"modified_at\":1728721846.252618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"493c98ca3f5d28add9b1e76d9ea0fd2a\",\"labels\":[],\"modified_at\":1728721846.252884,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.69.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e9c3189a4b2c3bc9beaba32e4f6d17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.69.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba107fafd299fefa29cb886864a6b6ff\",\"labels\":[],\"modified_at\":1768937324.649113,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.69.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e97d839fc36f285ba34c95e0aedfb525\",\"labels\":[],\"modified_at\":1728721846.253026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.69.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_controller\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a09ee2d6dae31c200ed543531a11a022\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_status_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1aa247cfe4361de79507e8ccf24a9abd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf005657afa97b1d708b15d9ce67af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c16c9234ee62e39da6d416bd74c4bf36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9964c19a9f2c7334e16ed21f53a3b47f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89981bfb5fb0a71346ba5c4a7fd7f436\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4bee7cdfbbbb6c2df376f6acbc9f8e0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a4d1c9f055f635a8a634822ce0443b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6dc9f7340d74772ba42c3d47103bc06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57972bc34dc5d7e963a491a8f73724f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a2e8fc6466088be70d409688c666748\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f693ad03c26b3259e108bc893124dc78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf35e53c8dc9a7f47de20aa646f2a06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a5ec9e8137600e298bee781d72b83af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"284a0c5a0e4fbb0bcfedfc117d6d0cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae04ca93744aa073da36ab542919ff8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"049d7e26a1fd2ebae088bd47e33c28c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f3c6220aeebafd0398bd96fade2132\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be4b4db30be6b69c892b44b359c6b20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80d8ed745bc23622d5388e9075693bb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"306db4629c8a60e5464dd368235e8317\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c04dfad2dc4762af4bb76906a45d36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b439907fac4276ebd5799a625ec1ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb5b5d71754b964eebf3dabae76e6cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_dc_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b6fdcf38fa8ab2b6dee499c7d18e08f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.garage_controller_basic_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f54c77989f4d5e8568905b09f0c46f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"949433e099fb4164e0fafef364d9d3be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.large_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage-variant\",\"id\":\"7103f21d0a7b132c69440a9d6979648a\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Large Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.small_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage\",\"id\":\"efa8ffc287061c04b28a05e2d6789429\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Small Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_back_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"200b3bc82d4792b83862ab4c8cbb5d60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Back Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836786749\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_front_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25b6b2f05b818b741e6862688a763aff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Front Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836943690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x17\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c29cfef30f97af820f587cd0d380f6d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x17\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x87\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4dc3db0b7fb0e8835ad90f9649d49ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x87\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x87\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_water_valve_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b60d57c74b8a0fc026da3c5efe1ca529\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Water Valve unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Water Valve-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.neck_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b16d267f43e86640e991f613d652ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Neck Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"neck_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.migraine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e0cd7c0a5bad5564b84ba8e22f577d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Migraine\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"migraine\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.back\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a96f0af191e7ef39888e595237fc79d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Back\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"back\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.water_intake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81a9b155d2aa5e2ce0c7cb5dca44c82c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Water Intake\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"water_intake\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b24234ca56ac77e9c79f6e353a9de91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"648e83e3c8bf58cd2e4eff867c7f26fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc3f2404fff79b6deefc2d10c7d221fa\",\"labels\":[],\"modified_at\":1724358474.764135,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.mariah_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45abb940e65545be9eba91e9c7c27266\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:14:0f_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.joint_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78f692acbb46a9d5516120af473ee045\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Joint Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"joint_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de63e43f6a93586a800fa07684f40d6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724140995216\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b26a6c2d503838f2bd69b2b4425daae8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141048676\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68e5beb6d9c92149ac9c90cd78e98694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141102872\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.thermostat_aux_heat_only\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10172ebe8ddeadf985bb596b028dcae9\",\"labels\":[],\"modified_at\":1732123640.2771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Auxiliary heat only\",\"platform\":\"ecobee\",\"translation_key\":\"aux_heat_only\",\"unique_id\":\"511883021980_aux_heat_only\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":1724358474.76478,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.mariah_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4fed1642c4e2312aef35b63ec334976a\",\"labels\":[],\"modified_at\":1724358481.090975,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:14:0f_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543171,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_start_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20a9befee49729b0b2137b2abfa3f2da\",\"labels\":[],\"modified_at\":1724358911.543261,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric start date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_start_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543599,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_end_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65d71d7e1d0a884417f030f39de51b62\",\"labels\":[],\"modified_at\":1724358911.543669,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric end date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_end_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.98836,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.ha_floorplan_your_imagination_just_became_the_new_limit_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3784e07efac13a5e30236d87aea4fec0\",\"labels\":[],\"modified_at\":1724359451.989217,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.989902,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.dahua_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e20245435d618d476b342520dc05bde5\",\"labels\":[],\"modified_at\":1724359451.989949,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990389,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.emporia_vue_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33d53b6ba7f741c6d34066bffe189297\",\"labels\":[],\"modified_at\":1724359451.990431,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990856,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.average_sensor_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83923fd4d6f02182318adda6b96afc53\",\"labels\":[],\"modified_at\":1724359451.990901,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991326,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.lovelace_home_feed_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30d80177caf3df3331d797d783c5539a\",\"labels\":[],\"modified_at\":1724359451.991374,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991795,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.smartthinq_lge_sensors_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cd6da87bfe167df17bccc9b0bc3f160\",\"labels\":[],\"modified_at\":1724359451.991841,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.99502,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.fold_entity_row_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d2c850e540e1848f6d18f94e1d33df8\",\"labels\":[],\"modified_at\":1724359451.995069,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995516,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.card_tools_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa13dab5ed75447d38ec11bb05b39148\",\"labels\":[],\"modified_at\":1724359451.995558,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995977,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apsystems_ecu_r_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6355ba3eab69573857aa3095dfe8bb29\",\"labels\":[],\"modified_at\":1724359451.996022,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996442,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.hacs_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee6b6e287f399d2a0f069f2f3630f9de\",\"labels\":[],\"modified_at\":1724359451.996483,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996903,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.number_box_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4973abd138f62d11c94d23869d4332c6\",\"labels\":[],\"modified_at\":1724359451.996945,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997365,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.layout_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f6016a8e966604387a938ca589078bb\",\"labels\":[],\"modified_at\":1724359451.997407,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997831,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.opensprinkler_integration_for_home_assistant_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b81d07934da5c7e0354b8fcffd03768d\",\"labels\":[],\"modified_at\":1724359451.997883,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.998293,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.auto_entities_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7eaa56b622d4a80a22c66036a4e7bff\",\"labels\":[],\"modified_at\":1724359451.998341,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.000211,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"057af5b48646a036f034fd05c24730ac\",\"labels\":[],\"modified_at\":1728248033.394848,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00067,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.dahua_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39b3a5e25ed21ff451dd821e74135856\",\"labels\":[],\"modified_at\":1728765061.996176,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dahua update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00105,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.emporia_vue_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e29e7a00297a5a491404aa12c42c1323\",\"labels\":[],\"modified_at\":1726802997.261126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Emporia Vue update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001406,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.average_sensor_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"10b897f9ab5ff47d44ed99b8cad96a01\",\"labels\":[],\"modified_at\":1728269633.52911,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Average Sensor update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001753,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.lovelace_home_feed_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"692a965a89752f7152ac33da536bbed1\",\"labels\":[],\"modified_at\":1774138612.944037,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lovelace Home Feed Card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.0021,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3cb7c37711861e8a4f3c5450350f13c1\",\"labels\":[],\"modified_at\":1728226433.446449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SmartThinQ LGE Sensors update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.002442,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fold_entity_row_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f07711c04f71f779880758ee4fd3ca0\",\"labels\":[],\"modified_at\":1750126348.796186,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"fold-entity-row update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003037,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.card_tools_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8857ce93625614d4a532e41e988a77ca\",\"labels\":[],\"modified_at\":1774138612.945999,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"card-tools update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003384,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apsystems_ecu_r_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eb5eead0182826b4bd85b3cbbc8b855d\",\"labels\":[],\"modified_at\":1741914692.185678,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"APSystems ECU-R update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003737,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.hacs_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b4d63ea37ba5c94123db67da9a7b4a\",\"labels\":[],\"modified_at\":1725474380.986863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"HACS update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004085,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.number_box_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf9428ea6400cb62210ef5a817aa3f4\",\"labels\":[],\"modified_at\":1774138612.947972,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Number Box update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004425,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.layout_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9814393596a8063e564904eea508d5\",\"labels\":[],\"modified_at\":1724359470.337507,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"layout-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004773,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64aa16e9bfa85282bdb6b21e1f285a0c\",\"labels\":[],\"modified_at\":1728377633.939246,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler integration for Home Assistant update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.005134,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.auto_entities_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c1b0f1673df40ae25aff2e19e9bdb999\",\"labels\":[],\"modified_at\":1746450676.644499,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"auto-entities update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.878711,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d782eae7ac9b06c199b0499afff0d330\",\"labels\":[],\"modified_at\":1725237298.640764,\"name\":\"Living Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.880189,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a40c8c00fa4561861b93cac2ae12162\",\"labels\":[],\"modified_at\":1725237298.642678,\"name\":\"Living Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.620171,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95350dcc7aab2e2b8ad42eff96a3bbe9\",\"labels\":[],\"modified_at\":1725239509.709835,\"name\":\"Office FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.621822,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"457ea4d9622eaa89f01768b2d3cb13b7\",\"labels\":[],\"modified_at\":1725239509.711619,\"name\":\"Office FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9119d30965efa939f043665b8f522c7\",\"labels\":[],\"modified_at\":1725122973.950769,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d74e8506dabac922300249b97a64fd92\",\"labels\":[],\"modified_at\":1725122989.160884,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f75ee8a8e6a0e889e600b497c966f4be\",\"labels\":[],\"modified_at\":1725123000.642922,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.881487,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a80cd1fd55b60d92e924c5d0a86b57bf\",\"labels\":[],\"modified_at\":1725123140.792999,\"name\":\"Living Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.62291,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65796cc5504c6f97911d5984b7697240\",\"labels\":[],\"modified_at\":1725123172.764679,\"name\":\"Office Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.623792,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4870514fbeca2b830d674880c226e4b1\",\"labels\":[],\"modified_at\":1725123300.434383,\"name\":\"Adam Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.625331,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ae3bf2a8005788c86e4ed1db0e26deba\",\"labels\":[],\"modified_at\":1725123348.631538,\"name\":\"Leksi Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.626608,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"92cd99596879bed65510157a3e4440b8\",\"labels\":[],\"modified_at\":1725123370.960249,\"name\":\"Mariah Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.882516,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_couch_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df55257bb93d1c4d83ab27bb28cc7088\",\"labels\":[],\"modified_at\":1725128801.063257,\"name\":\"Small Couch Occupied\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.884521,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.main_couch_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d5054b087303392f4b4c1afa3087c65f\",\"labels\":[],\"modified_at\":1725211786.993681,\"name\":\"Main Couch Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.885552,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.massage_chair_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6166b7fcdd2cb9ddf567fd2ef3444519\",\"labels\":[],\"modified_at\":1725216435.355422,\"name\":\"Massage Chair Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.041669,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.mariah_room_fp2_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05362f331bbb95c88b007da2281c2835\",\"labels\":[],\"modified_at\":1725237352.484952,\"name\":\"Mariah Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.047465,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"572e2d9b32244570b0d0b314a4c0b609\",\"labels\":[],\"modified_at\":1725237352.487786,\"name\":\"Mariah Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.051823,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5970db3a2e7b0259e89db44e4cfa579\",\"labels\":[],\"modified_at\":1725237416.812842,\"name\":\"Mariah Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.055599,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff08f0de11c1b85bc8cd0d449bc0c733\",\"labels\":[],\"modified_at\":1725237437.467906,\"name\":\"Mariah Room Bean Bag\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.059074,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6bfab91f865d492c15136b5c01e3ea3\",\"labels\":[],\"modified_at\":1725237447.998816,\"name\":\"Mariah Room Bed\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2696\"},{\"area_id\":\"mariah_bedroom\",\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237505.317515,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"scene.mariah_in_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fb3c6924d403f71d58b0bb0dabf3c01\",\"labels\":[],\"modified_at\":1725237505.338758,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Mariah In Bed\",\"platform\":\"homeassistant\",\"translation_key\":null,\"unique_id\":\"1725237502868\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237787.837052,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_purple\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"624dd2844883b69d29ed148095cfedd4\",\"labels\":[],\"modified_at\":1725237787.837879,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Purple\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_purple\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237915.884351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d456942a6323ea80effd232373cc5b99\",\"labels\":[],\"modified_at\":1725237915.885773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238041.890769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"75cf52bb1c878e6bff34b625af14e080\",\"labels\":[],\"modified_at\":1725238103.797624,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up_initial\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238636.640793,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3b6a0b1778090f2e8c408dda4f83c35\",\"labels\":[],\"modified_at\":1725238636.641973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238624495\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238701.670496,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9999f46a955a0e9f9084655c2278aae\",\"labels\":[],\"modified_at\":1725238701.671689,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238682447\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239006.346545,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4ce3b7950ba257b7202c193ad300ec6\",\"labels\":[],\"modified_at\":1725239006.347468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Beanbag\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238993576\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239193.188985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f01bb92164b255a0efc6d56ad8e2d267\",\"labels\":[],\"modified_at\":1725239193.189985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off_motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239220.921769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7ab674921f77ca79b116b8ad3510f592\",\"labels\":[],\"modified_at\":1725239220.923107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725239208837\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725240282.042413,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7ca8c0f7712e5307b5d9763e9de9b94\",\"labels\":[],\"modified_at\":1725240282.04309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.352226,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45c2f5c4dc505611cb256120f1f2830\",\"labels\":[],\"modified_at\":1727942594.370094,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.395121,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"642124e3cca72e7af2215ef9a52ec5b8\",\"labels\":[],\"modified_at\":1727942594.403475,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.425326,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"784abe3673b46c36d82dd6392e364987\",\"labels\":[],\"modified_at\":1727942594.425962,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.45199,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"150bd1465c22a43804cecfd9a73b625d\",\"labels\":[],\"modified_at\":1727942594.452773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1728721845.869036,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b63b865295f97c1a420158b97b7759ea\",\"labels\":[],\"modified_at\":1728721845.869115,\"name\":null,\"options\":{},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeout_ack\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.793984,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385bc6fdb93d7ac940f95ec7929b93a2\",\"labels\":[],\"modified_at\":1729542987.794601,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.818634,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd8c93ee004038b3809d9bf5e9651e47\",\"labels\":[],\"modified_at\":1729542987.819224,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927412.116135,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"955ffcb77910a5ce5c785cbb4567a5f4\",\"labels\":[],\"modified_at\":1730927412.117253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927396308\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.917166,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"987472eb0c0a9d61f145fe1ffa7ec389\",\"labels\":[],\"modified_at\":1730927493.919085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.920247,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"252a7a535fed97b7201a3d818cbf6b41\",\"labels\":[],\"modified_at\":1730927493.923132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.925051,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.entry_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97c48c7149d9b2887c6c759a19330130\",\"labels\":[],\"modified_at\":1730927493.927034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.928963,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.entry_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500c84effc8332e2f1c41a3075838240\",\"labels\":[],\"modified_at\":1730927493.932234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:cb:b8_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.935595,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.entry_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743ad90a794f64c648bd1898865e94f4\",\"labels\":[],\"modified_at\":1730927493.936077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:cb:b8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927707.36645,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1265c862bfdaa5054cae39b5f86e369c\",\"labels\":[],\"modified_at\":1730927707.367325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927687152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927799.13572,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d209c365471b448fef5272375db2ff0\",\"labels\":[],\"modified_at\":1730927799.137491,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927783620\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.182084,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf28a6cb7c5941b7f5f4a22f00a9f0e\",\"labels\":[],\"modified_at\":1731010174.182936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.185823,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff2608f2319d6a14116e79184fb9de\",\"labels\":[],\"modified_at\":1731010174.186057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.188286,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02c6d610044ed99bb98012037e946b99\",\"labels\":[],\"modified_at\":1731010174.188925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Water Alarm Water temperature alarm status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.189509,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c63c08e0a24247681b3d434ba4fb34cb\",\"labels\":[],\"modified_at\":1731010174.19004,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"No data\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.190342,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abb7f974abebcb04c1b547a6286cded4\",\"labels\":[],\"modified_at\":1731010174.190851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Below low threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.191145,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f614798b9e419b24613abcca2ed35048\",\"labels\":[],\"modified_at\":1731010174.19163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Above high threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.764381,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac6c25ec61299c2cb06e3968752d2b33\",\"labels\":[],\"modified_at\":1732137151.765016,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.71.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.765454,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"470d94d96fdc410faa1a1d853ce54872\",\"labels\":[],\"modified_at\":1732137151.765996,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.71.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.766523,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bdd8a3d8d5649e3c59bcd0afe21a3233\",\"labels\":[],\"modified_at\":1732137151.766708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767048,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e664059fc7a8cd2a4c332b3dd7c088\",\"labels\":[],\"modified_at\":1732137151.767202,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767524,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167a34dc614f039f41fc040f39e15d2c\",\"labels\":[],\"modified_at\":1732137151.767682,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.76799,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b457d5cbaa8a6d30f5db0cfa9205e7c\",\"labels\":[],\"modified_at\":1732137151.768142,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768433,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"efb4c2b5944fd9687778e2300f221aba\",\"labels\":[],\"modified_at\":1732137151.76858,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.71.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768882,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e0206961390409df0866659ba3bde3c\",\"labels\":[],\"modified_at\":1732137151.769029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.71.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.769331,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45bfe6ad87c79146ddc2780321ecc45c\",\"labels\":[],\"modified_at\":1768937324.655714,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.71.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.770858,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7befa0f701f255251d4f0713e34362f\",\"labels\":[],\"modified_at\":1732137151.771513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.71.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.588866,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2668e06370022ffa63e0af58450c4deb\",\"labels\":[],\"modified_at\":1768937324.772972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.590101,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e406cccffc6c5b1a623fd47a73eba1f\",\"labels\":[],\"modified_at\":1732137162.590693,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.591473,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02301ae4db885a81128ada934ab4a086\",\"labels\":[],\"modified_at\":1732137162.592025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.592528,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6fee332c76665dc7ef1990beab6911\",\"labels\":[],\"modified_at\":1732137162.592694,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593141,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb96048cc18af78626c04d902a8e7007\",\"labels\":[],\"modified_at\":1732137162.593303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593752,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bded064f1e92e2734f097e5c6fc559b\",\"labels\":[],\"modified_at\":1732137162.593913,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.594349,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7628d05dcf62a79ba33c64966408e4a7\",\"labels\":[],\"modified_at\":1732137162.594936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.595438,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5f170a01f0cacbeb2fd47e3cedac5f\",\"labels\":[],\"modified_at\":1732137162.595608,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596071,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d11c36c8b1ae89a2329b8466196adb6\",\"labels\":[],\"modified_at\":1732137162.596235,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596681,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"322ec7947d8e42919a0133cd17e116f7\",\"labels\":[],\"modified_at\":1732137162.59686,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597312,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_minimum_reporting_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adf1bb1bfe2a4f11cadf90f298ff2d35\",\"labels\":[],\"modified_at\":1732137162.597473,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Minimum Reporting Frequency\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-172\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_battery_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0afe97af7c4e124df81a1ac9cc483560\",\"labels\":[],\"modified_at\":1732137162.598073,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-182\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.598509,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10efd918aa86083fadb425ff9a4a4a34\",\"labels\":[],\"modified_at\":1732137162.598687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-183\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.59912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3c5669678178150a506c354e6f1be9\",\"labels\":[],\"modified_at\":1732137162.599283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-184\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.599718,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_brightness_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913286fe33112a9c3d531a34472f5945\",\"labels\":[],\"modified_at\":1732137162.599878,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-185\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601005,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_multi_sensor_vibration_sensor_enable_or_disable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3db884502b02d5d6a290bdf2d41907c\",\"labels\":[],\"modified_at\":1732137162.601212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration sensor enable or disable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601721,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4f6c95db11d3ac17bca07d2264430a4\",\"labels\":[],\"modified_at\":1732137162.601885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602321,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e453c0781a8c76f1e73aefc41ad58342\",\"labels\":[],\"modified_at\":1732137162.602485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602937,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5581de38027d90f3ef0cb1cd2c41d2a0\",\"labels\":[],\"modified_at\":1732137162.603098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.60353,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_temperature_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2fedd7c6df14c4b5c04f34a712b7e8\",\"labels\":[],\"modified_at\":1732137162.603692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for temperature sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-173\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604137,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_humidity_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e70223c7a145435b2ed9e879cd97c40\",\"labels\":[],\"modified_at\":1732137162.604311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for humidity sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-174\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604784,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_light_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"126c174154d818c34882bf702cd2ecb1\",\"labels\":[],\"modified_at\":1732137162.604956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for light sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-175\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.605428,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f8387b33452ea29b9bf9b484030fe46\",\"labels\":[],\"modified_at\":1732137162.605656,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-201\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.606111,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e4b96482125c77b71a934b2d26f18e\",\"labels\":[],\"modified_at\":1732137162.607041,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-202\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.6076,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e78741347ca06e5ec1b6e8c3ba8b559\",\"labels\":[],\"modified_at\":1732137162.607783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-203\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.608276,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46015d5ffd1da337365d54035bbbec1f\",\"labels\":[],\"modified_at\":1732137162.608489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609037,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5515fb214b05e9d99121d850fdc2cc3e\",\"labels\":[],\"modified_at\":1732137162.609207,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609708,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36b46883ad9a46c08d9ace6a631f3ab0\",\"labels\":[],\"modified_at\":1732137162.609873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.610376,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e5ec6faa8b7d0368a1aaef25db69cfae\",\"labels\":[],\"modified_at\":1732137162.610934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.611673,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7eadc541b21bdc09a3ede440e16e781\",\"labels\":[],\"modified_at\":1732137162.612885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.61343,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2ee927581c1eeef7e93ff0d97ddee896\",\"labels\":[],\"modified_at\":1732137162.613993,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.614532,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dcdb2a7c64feec4cb475111ab74f4d8f\",\"labels\":[],\"modified_at\":1732137162.6151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.615626,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88ae53a601694ce99968bd1f2e333c08\",\"labels\":[],\"modified_at\":1732137162.61618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.616467,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0edb4b570f956fbd585e38c96895ee89\",\"labels\":[],\"modified_at\":1732137162.616941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.617512,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"813c7f2ffa0892c3422fa632fefc12fd\",\"labels\":[],\"modified_at\":1732137162.618824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.619386,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93dc4ae4941e37f57821eab3fd04fdcb\",\"labels\":[],\"modified_at\":1732137162.619911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.620392,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6557f3d6a9a2cf2d58f3637dab11b0fc\",\"labels\":[],\"modified_at\":1732137162.621174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.621782,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7728624fe2d08c453eb1f5570b13110\",\"labels\":[],\"modified_at\":1732137162.622362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.62405,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_multi_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e01d9271034ccc4742137810a44c7296\",\"labels\":[],\"modified_at\":1732137162.624683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.633871,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28458c3031c3f4c248b9a590649b56b8\",\"labels\":[],\"modified_at\":1752106041.646984,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 1 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_1_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.634984,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8233a76f8e5b57101fa68fa5d761e95d\",\"labels\":[],\"modified_at\":1752106041.647528,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 2 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_2_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.635932,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4306e274bbda0cdb3c63207a6f31f939\",\"labels\":[],\"modified_at\":1752106041.647924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_rain_delay_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.636864,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8cfc6b3d9aa316b1a16b51c6c90236c4\",\"labels\":[],\"modified_at\":1752106041.648321,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Paused\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_paused\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.637837,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_program_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d677537788a5eafcb8532c16cf717224\",\"labels\":[],\"modified_at\":1752106041.648738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_program_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.638843,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s01_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78da84e6aefcc386e0046bf1b665406b\",\"labels\":[],\"modified_at\":1752106041.649173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.640317,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef03c61878db30aef1069ae462af17\",\"labels\":[],\"modified_at\":1752106041.649602,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.641282,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s03_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e7f2050e9cf5b99317afc5bc8437b60b\",\"labels\":[],\"modified_at\":1752106041.649991,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.642249,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd1dcda93262483eb387ef6990169370\",\"labels\":[],\"modified_at\":1752106041.650391,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.643239,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s05_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabc42d8716a5866c0d562652bb54f56\",\"labels\":[],\"modified_at\":1752106041.650775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.644241,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s06_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4f5a122107cab3853f733992b28f8c9\",\"labels\":[],\"modified_at\":1752106041.651155,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.646097,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s07_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3293c0b56291ae6e9a7bd65e0abd60ab\",\"labels\":[],\"modified_at\":1752106041.65154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.647084,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s08_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44907512c87223c107c95f467afd32ac\",\"labels\":[],\"modified_at\":1752106041.651931,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.64834,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s01_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a38e3beb90e104dd21a41eb83801ef5\",\"labels\":[],\"modified_at\":1752106041.652574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S01 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.649353,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_lawn_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68796744a1de3fd9f2849c34c91293d8\",\"labels\":[],\"modified_at\":1752106041.653615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Lawn Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.650323,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s03_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7192a3ad6d844197c490a376e3f70b1\",\"labels\":[],\"modified_at\":1752106041.65404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S03 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.651977,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9199ba6acba78346f517315046715e7b\",\"labels\":[],\"modified_at\":1752106041.654442,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Flower Bed Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.652985,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s05_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ac557888704caa59ca96935fd70b6d\",\"labels\":[],\"modified_at\":1752106041.654835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S05 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.653945,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s06_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6edb59dd3e64c4913f7de4e938acd59\",\"labels\":[],\"modified_at\":1752106041.655236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S06 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.654928,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s07_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"43667b7d50dd98b035e656e0bab89356\",\"labels\":[],\"modified_at\":1752106041.655641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S07 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.656158,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s08_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf30ad107bbd19dba22c07d3614de624\",\"labels\":[],\"modified_at\":1752106041.656036,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S08 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.657793,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_interval_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab30ba1fa24ea82ab2abbc82c046d16f\",\"labels\":[],\"modified_at\":1752106041.656454,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Interval Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_interval_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.658844,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_starting_in_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70fc9278f25b33ebbc97bee258bc426\",\"labels\":[],\"modified_at\":1768937328.473047,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Starting In Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_starting_in_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.659895,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"532c0ab02f8bacd4922c9e8fb929b233\",\"labels\":[],\"modified_at\":1752106041.657319,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Count\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_count_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.660553,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82c9f077606745c02474ab5be55a620f\",\"labels\":[],\"modified_at\":1752106041.65765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Interval\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_interval_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.661207,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ff12afe9d9a6186ccedc30b97f98c5b\",\"labels\":[],\"modified_at\":1752106041.657982,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.662274,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start1_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5eaab58a3eaa4725ee1acc2c7d0af43\",\"labels\":[],\"modified_at\":1752106041.65843,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start1_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.663542,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start2_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"900d108248145e047c6222d5dab38a6d\",\"labels\":[],\"modified_at\":1752106041.658749,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start2_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.664261,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start3_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53547b2a17ba809162f4c80e4c95c494\",\"labels\":[],\"modified_at\":1752106041.659059,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start3_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.66517,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_restrictions\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98120ea7a8c6aec01a0b4c930f4d271a\",\"labels\":[],\"modified_at\":1752106041.659582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Restrictions\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_restrictions_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.666191,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86585bafecd310548350429db5de5ac4\",\"labels\":[],\"modified_at\":1752106041.659999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.667173,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_additional_start_time_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ecea61af97b2c0c60f95fe1aea7a1c\",\"labels\":[],\"modified_at\":1752106041.660415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Additional Start Time Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.668408,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_start_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c19fa2860614bd4a8f05e40abc011676\",\"labels\":[],\"modified_at\":1752106041.660824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670177,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start1_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41990b44f367572d2e3191a12b36cdcc\",\"labels\":[],\"modified_at\":1752106041.661229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start1_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670831,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start2_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd85f5a98d6ad86127c3b5823860fec6\",\"labels\":[],\"modified_at\":1752106041.661525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start2_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.671452,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start3_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a20cd58ad5a61fee98b1af89696b25\",\"labels\":[],\"modified_at\":1752106041.661818,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start3_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.672332,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_last_run\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dcb6bda0ee19761e85c6fade1412faef\",\"labels\":[],\"modified_at\":1752106041.662311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Last Run\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_last_run\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.673368,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5559a9931dd1e25341ea309e5a82f85\",\"labels\":[],\"modified_at\":1752106041.662722,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Stop Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_rdst\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.674302,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_water_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c8cf60018b734e890992bd9eed2ec34\",\"labels\":[],\"modified_at\":1752106041.663111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Water Level\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_water_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676033,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55cbcd1e26e5440341dfb0355bd8bcc7\",\"labels\":[],\"modified_at\":1752106041.663513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Flow Rate\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_flow_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676994,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_draw\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2fdebd9b4d3a941ed6738378fd82c4\",\"labels\":[],\"modified_at\":1752106041.663901,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Draw\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_current_draw\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.677946,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"004c2dddd6a671840404bde623b57bec\",\"labels\":[],\"modified_at\":1752106041.664278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_devt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.678559,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"928cbf681537aefdcec79f502a31c202\",\"labels\":[],\"modified_at\":1752106041.664568,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Pause End Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_pt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.679532,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s01_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7c0622cc402dd16d31691f5bbd346a0\",\"labels\":[],\"modified_at\":1752106041.664954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.680486,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_lawn_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec3d3107b963ae9e98697b474d274f97\",\"labels\":[],\"modified_at\":1752106041.665365,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.682227,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s03_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee3da72518ce48c980b2b30be13c8807\",\"labels\":[],\"modified_at\":1752106041.665741,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.683445,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_flower_bed_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e68cff1ef73136d91264bef3338e6b8e\",\"labels\":[],\"modified_at\":1752106041.66612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.684415,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s05_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3fa7d6a18fd72776a962c38ebab8505f\",\"labels\":[],\"modified_at\":1752106041.666497,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.685369,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s06_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0400d09413e1943988a75450678b1ebb\",\"labels\":[],\"modified_at\":1752106041.66687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.686365,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s07_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8eeb163f3069a24eb8b02be77dabfe38\",\"labels\":[],\"modified_at\":1752106041.667242,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.687354,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s08_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a67713de10858c8f5573df5bf7deff48\",\"labels\":[],\"modified_at\":1752106041.667621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.688636,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.opensprinkler_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a0dc8f5e507c1f6fde72f904788cdbb6\",\"labels\":[],\"modified_at\":1732137663.689179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"OpenSprinkler Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_controller_enabled\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.689659,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_program_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5814850390edeb9e2eeda752197bc5c\",\"labels\":[],\"modified_at\":1750061531.449132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.690656,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_monday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a2e95f50238ccb6e70e50e56b98b27\",\"labels\":[],\"modified_at\":1752106041.668769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Monday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_monday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691244,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_tuesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5359ae42aaef47628647352704d15ec6\",\"labels\":[],\"modified_at\":1752106041.669071,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Tuesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_tuesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691842,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_wednesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edd1e6010cbe67594ea1ee82924f6f8c\",\"labels\":[],\"modified_at\":1752106041.669369,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Wednesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_wednesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.692443,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_thursday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4472ffa505c8f15ca6ab865630355d4\",\"labels\":[],\"modified_at\":1752106041.669655,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Thursday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_thursday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693014,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_friday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1be9033a6ff2cb2f995d8ef74c0afa5b\",\"labels\":[],\"modified_at\":1752106041.669939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Friday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_friday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693609,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_saturday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4abfd9b07e0f49d65f187324b9feddd\",\"labels\":[],\"modified_at\":1752106041.670226,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Saturday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_saturday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.694193,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_sunday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4357c7a7797385e7b9355358ded32f94\",\"labels\":[],\"modified_at\":1752106041.670505,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Sunday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_sunday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.69484,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.front_program_use_weather\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5914f46ad2cfb68aad3c6706cb684a8\",\"labels\":[],\"modified_at\":1752106041.670809,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Use Weather\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_use_weather_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.696024,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s01_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee933341e59eab4e1de01dfb380d57d4\",\"labels\":[],\"modified_at\":1732137663.696604,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S01 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.697116,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_lawn_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27734f41473d59fab6ac03f37eb7bfb8\",\"labels\":[],\"modified_at\":1732137663.697653,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Lawn Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.698106,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s03_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cddda4b9abd4a2112b5d386fb355d349\",\"labels\":[],\"modified_at\":1732137663.698787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S03 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.699266,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aebefeb6ed4d1b726994cfd307f4cd2a\",\"labels\":[],\"modified_at\":1732137663.699922,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Flower Bed Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.700567,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s05_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1b9b1f74a2038ccf2d6ada0f37c6fa\",\"labels\":[],\"modified_at\":1732137663.701324,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S05 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.702531,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s06_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2dd24c218d32a94dd0335de195f7f2d2\",\"labels\":[],\"modified_at\":1732137663.70317,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S06 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.703647,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s07_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d911d53c2592a07306a7b6b3b3fa66\",\"labels\":[],\"modified_at\":1732137663.704181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S07 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.704672,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s08_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"35c35dbbf2e3f45e3f06fa1dbae6b749\",\"labels\":[],\"modified_at\":1732137663.705194,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S08 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.706649,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"text.front_program_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37e6efeffb3cda3c638bab8e88d2538f\",\"labels\":[],\"modified_at\":1752106041.673929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Name\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_text_program_name_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.709345,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"time.front_start_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3218db77bd10bc723c7584475171ab4f\",\"labels\":[],\"modified_at\":1752106041.675042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.71041,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start1_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd2cee6ac188f1157bc1dabe9135722f\",\"labels\":[],\"modified_at\":1752106041.67576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start1_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711008,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start2_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8099b78938edadefa49d3f10af5d3a33\",\"labels\":[],\"modified_at\":1752106041.67606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start2_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711572,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start3_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"960046c7225148a4e2e04959c16b02f6\",\"labels\":[],\"modified_at\":1752106041.676347,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start3_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.982321,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"176bdb7963a4d2e8e0993dd991c2d61a\",\"labels\":[],\"modified_at\":1732138416.983212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.73.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.983825,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3830b7b3aafeadc0f0a4a4cafdbba3c7\",\"labels\":[],\"modified_at\":1732138416.984423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.73.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.984956,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a40c07eeee574d0a58ea7e537b5dddb\",\"labels\":[],\"modified_at\":1732138416.985133,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.985534,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2445fa8e4bd61ebde86370bc8523e1\",\"labels\":[],\"modified_at\":1732138416.985692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986061,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f41c04d85d79bf9677d75b8c16c04b\",\"labels\":[],\"modified_at\":1732138416.986233,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986748,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"194631aec7814b1c0eeba1cf4e786d0a\",\"labels\":[],\"modified_at\":1732138416.986932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.98735,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae9b1ef37b45bab86290b6d49def769b\",\"labels\":[],\"modified_at\":1732138416.988081,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.73.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.988538,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98007b9b486441a51a5279bb7fed6b8a\",\"labels\":[],\"modified_at\":1732138416.988715,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.73.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.989091,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49dc7f599fdd1f2027fe2bcf95006dff\",\"labels\":[],\"modified_at\":1768937324.663851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.73.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.990462,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33557f07cdf75bc2412ad0a885c0bc44\",\"labels\":[],\"modified_at\":1732138416.991131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.73.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.790002,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72e8b62740080ea3f946f208f1fb7bc7\",\"labels\":[],\"modified_at\":1768937324.779845,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.791422,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d04acf192d2fd0fc6179ab20b4104f4\",\"labels\":[],\"modified_at\":1732138423.792057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.792664,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f328919b5fbd52d7e3554c431eaecda5\",\"labels\":[],\"modified_at\":1732138423.793293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.793874,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57f5ea17ee03c8aef502d38ef8bd6b1b\",\"labels\":[],\"modified_at\":1732138423.794042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.79457,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd876b6092259cb5ead6b986d88ee635\",\"labels\":[],\"modified_at\":1732138423.794748,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.795911,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555c9ad71f1f7fdd6ee1463b6969d21\",\"labels\":[],\"modified_at\":1732138423.796098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.796629,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec00430092b4eeab0664d84f21df0171\",\"labels\":[],\"modified_at\":1732138423.796797,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797307,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88dc5c6dce5ae4332a1d45a4f0cc4c99\",\"labels\":[],\"modified_at\":1732138423.797468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797983,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ac88bfe9cceaa214b06d93c173a4837\",\"labels\":[],\"modified_at\":1732138423.798146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.798681,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc6960dcb05013fd42b9c69458102c16\",\"labels\":[],\"modified_at\":1732138423.798846,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.799334,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07a1c78242bf060670017b91e7d94d35\",\"labels\":[],\"modified_at\":1732138423.799489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.800068,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"043056745e8987e49706de0b21d04793\",\"labels\":[],\"modified_at\":1732138423.800234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.804869,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"daf1f79fbd90cabfc5a34ad780956cdb\",\"labels\":[],\"modified_at\":1732138423.805095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.806501,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbb8694e79a2ad14cb64c8f8e5d47a2f\",\"labels\":[],\"modified_at\":1732138423.80718,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.807718,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7424d3a9e7da60ac2ba9d4adfd79a18\",\"labels\":[],\"modified_at\":1732138423.808298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.808844,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24c0c8ec26f7f4075cd8e45ffcde07a1\",\"labels\":[],\"modified_at\":1732138423.809401,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.809877,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22bf5cdc43c8ee4de64819afa890cc68\",\"labels\":[],\"modified_at\":1732138423.811783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.812418,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8312156799f26c4fd9c0c0e868d613df\",\"labels\":[],\"modified_at\":1732138423.81303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.81356,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cde146585342c60fa01d113994424977\",\"labels\":[],\"modified_at\":1732138423.814241,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.816756,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a15df092ba0c6a7154348a4898157ad4\",\"labels\":[],\"modified_at\":1732138423.817406,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.618014,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416b91acfddf3047384e7ee2ae08296c\",\"labels\":[],\"modified_at\":1732138684.618664,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.75.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.619114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22ca26c888e4f320444bfe76a2069291\",\"labels\":[],\"modified_at\":1732138684.619621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.75.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620099,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3617768155b9135fc6e5f44b7e21189c\",\"labels\":[],\"modified_at\":1732138684.620274,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620594,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"118bc1f4edbe3b8896b0d0a6751133e3\",\"labels\":[],\"modified_at\":1732138684.620752,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.621063,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c365245a707d6329e913801bd91ca5d1\",\"labels\":[],\"modified_at\":1732138684.621225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.62154,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75eb84dd5f8d9bc95ca286dc1eeca79d\",\"labels\":[],\"modified_at\":1732138684.621706,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622015,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2777138368a9abe7f9f042f0023f48b\",\"labels\":[],\"modified_at\":1732138684.622179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.75.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622502,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c57670c418667c196d39dca2483a5d14\",\"labels\":[],\"modified_at\":1732138684.622961,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.75.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.623544,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15d78da0a4398cd66194710995979ef2\",\"labels\":[],\"modified_at\":1768937324.668105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.75.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.624153,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b3ad094b6fb47d54160dc27a2402c7a\",\"labels\":[],\"modified_at\":1732138684.624744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.75.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.636665,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fa00abf3918f8fac60b707bed85cdd7\",\"labels\":[],\"modified_at\":1732138695.636933,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.637438,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa0f8a73745bfcdc301019929f9f395\",\"labels\":[],\"modified_at\":1732138695.637612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.63806,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4687608966a4d41618657f50e8d41a50\",\"labels\":[],\"modified_at\":1732138695.638228,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.638762,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfafac5c6126794a57742fe36400fea6\",\"labels\":[],\"modified_at\":1732138695.638934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.639408,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03f80773d857d3dacb7fd5e038bb1f31\",\"labels\":[],\"modified_at\":1732138695.639583,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640039,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a365309305395eecd9b2293a9b2ed220\",\"labels\":[],\"modified_at\":1732138695.640208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640663,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e34194de8abc885606521034b1889ed\",\"labels\":[],\"modified_at\":1732138695.640834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.641306,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_motion_untrigger_send_basic_cmd\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99cf610a23717a99dbfe052a0bb6ea34\",\"labels\":[],\"modified_at\":1775549231.59514,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ared\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.64198,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_configuration_param_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b0ce3efe64c82a980bac45f2c10a14\",\"labels\":[],\"modified_at\":1775549231.595476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Settings Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-254\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.642575,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df497c8d1113a36c54c4db878e0fca8b\",\"labels\":[],\"modified_at\":1732138695.642925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.643371,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbfd1827b608ec30e50a2c8d9ac1738a\",\"labels\":[],\"modified_at\":1732138695.6439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.644367,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"067ff38baebfeba542fc2d93fd6d846b\",\"labels\":[],\"modified_at\":1732138695.64489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.645399,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d4d2fb65ea95c82c89912955ce2d74f\",\"labels\":[],\"modified_at\":1732138695.645909,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.646344,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a746d156e0579cb6a0c282ec8423459d\",\"labels\":[],\"modified_at\":1732138695.646873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.647407,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afe52a71944a7bce54e82309066779eb\",\"labels\":[],\"modified_at\":1732138695.648124,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.648719,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ccfe4098bf64d024b3a4280d44249f06\",\"labels\":[],\"modified_at\":1732138695.648905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.649411,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e4dca10b749b4af9b227c82fb79d73f\",\"labels\":[],\"modified_at\":1732138695.649587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.650062,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ea778c5ee2223334224e979796972\",\"labels\":[],\"modified_at\":1732138695.650629,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.65114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e84349c9c3f7be88ffdb3b431a0ba7\",\"labels\":[],\"modified_at\":1732138695.652399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.653016,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"714c36211355e8c6eed8b0f405f1af18\",\"labels\":[],\"modified_at\":1732138695.653613,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.654109,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7baadd3ceacdd507c216212cb3b87068\",\"labels\":[],\"modified_at\":1732138695.654668,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.655381,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4c051cf51f0348ae219dc014e260222e\",\"labels\":[],\"modified_at\":1732138695.655966,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732139452.718891,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed7dbfad7f175f21a652c7d0d3330d8b\",\"labels\":[],\"modified_at\":1732139538.777695,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1732174703.971423,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_lights_left_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"924db9892cc5519731a5c110545b3061\",\"labels\":[],\"modified_at\":1732174703.972284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Lights Left On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1732174695099\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.375013,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b816b35414f8bc2d381fc987e434b35f\",\"labels\":[],\"modified_at\":1733163448.545247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Connection state\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_connection_state_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.41395,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_restart_required\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61f46e69a48027efacc7d58134f627a3\",\"labels\":[],\"modified_at\":1733163448.547781,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart required\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_required_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.45896,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bfd3f57c36e237bbb9ad6afb80870b6\",\"labels\":[],\"modified_at\":1733163448.551286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.504733,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba7340b4cbd21643896dea7f309921f9\",\"labels\":[],\"modified_at\":1733163448.643092,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Log level\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_log_level_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.548301,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25f4a31cb1ccecc4e9469f5ea9cc3e0e\",\"labels\":[],\"modified_at\":1733163448.646729,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.593799,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_coordinator_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b842f63a9b81e3a2af0ef251ecf7ab4\",\"labels\":[],\"modified_at\":1733163448.649525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Coordinator version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_coordinator_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.644285,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_network_map\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12df011646a6b17600d15ab9fa6fe99c\",\"labels\":[],\"modified_at\":1733163448.653364,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Network map\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_network_map_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.690207,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aca42208b299223d614f58e3feb2c840\",\"labels\":[],\"modified_at\":1733163448.656796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Permit join timeout\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_timeout_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.783081,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b33f74080c92f71e53d49d2fc60e406\",\"labels\":[],\"modified_at\":1733163448.659761,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.829562,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e381ec7dcd1341f5776bd0a2886f9209\",\"labels\":[],\"modified_at\":1733163448.662249,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.873645,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a31d7d3cbcf76b4365c2756f2418ca31\",\"labels\":[],\"modified_at\":1733163448.665131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action angle\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_angle_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.917858,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_device_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a754f3acf910cd43563ed2676eedb040\",\"labels\":[],\"modified_at\":1768937325.657919,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_device_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.961537,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_power_outage_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb5cc9dfece2a14128321a8c8ba0044c\",\"labels\":[],\"modified_at\":1733163448.672203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power outage count\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_power_outage_count_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.00603,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_from_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9624c92d6b8366ef9cd1804493185dab\",\"labels\":[],\"modified_at\":1733163448.674787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action from side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_from_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.049561,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac02738c9db3275fac7690e531555c11\",\"labels\":[],\"modified_at\":1733163448.67793,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.093516,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_to_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c008909747cd28dd536a03d115d711a\",\"labels\":[],\"modified_at\":1733163448.680929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action to side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_to_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.137499,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0e64fef54c101ab96c4081bad5a2ad8\",\"labels\":[],\"modified_at\":1733163448.683803,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.225948,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a932bc8c951ba62827fe0f990e2702db\",\"labels\":[],\"modified_at\":1733163448.686366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.313491,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_desk_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a28d2af38fd6ac7279788810b8f4d7\",\"labels\":[],\"modified_at\":1733163448.688208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.405348,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_cabinet_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f0bb80add1fa704cc495207b3f5d194\",\"labels\":[],\"modified_at\":1733163448.691535,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.740788,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df49492914ec67f302e0b6a69c122293\",\"labels\":[],\"modified_at\":1733163448.695336,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Permit join\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.27003,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_desk_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e62b257bc1586c7d6f6c0d9757293a\",\"labels\":[],\"modified_at\":1733163448.698409,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.357407,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_cabinet_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81a443a3981f42bf8049cb72eb3726f2\",\"labels\":[],\"modified_at\":1733163448.70122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1733166139.84886,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_z2mqtt\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad1ef16f58ed42f31138cf882cbd1923\",\"labels\":[],\"modified_at\":1733166139.849744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Z2MQTT\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1733166130068\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733166143.681489,\"device_id\":\"c4e6de4e26e939f7d433bf6d0a56df00\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.desk_cube_last_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42f966c6395b8ea360e7aa399ca72b13\",\"labels\":[],\"modified_at\":1733166143.682204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"last side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"desk_cube-e600b772e2d38b5b159093786d5bf1b2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.273786,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.thermostat_temperature_display_units\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3f00ecf5048b3f9e64a704e2ca9d92e0\",\"labels\":[],\"modified_at\":1733470323.274554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Temperature Display Units\",\"platform\":\"homekit_controller\",\"translation_key\":\"temperature_display_units\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.275631,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.thermostat_current_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6a708b72d19d3425a4bffde4773acf9\",\"labels\":[],\"modified_at\":1733470323.276196,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Current Mode\",\"platform\":\"homekit_controller\",\"translation_key\":\"ecobee_mode\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.276884,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"02eb281ddab89f579541da3c48364480\",\"labels\":[],\"modified_at\":1768937330.226836,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Thermostat Current Temperature\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.277912,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_humidity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aada76d6b800aa198307edc8f2f94b49\",\"labels\":[],\"modified_at\":1733470323.278441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Current Humidity\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.279066,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a34e9a572df91bb7a2bea56b6c7befc\",\"labels\":[],\"modified_at\":1733470323.279596,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Motion\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_56\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.280059,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a53e234c9a95713683719a42f1f7d16\",\"labels\":[],\"modified_at\":1733470323.280586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Occupancy\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_57\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.281426,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1dc2c5f590596a957c5d442d276f9551\",\"labels\":[],\"modified_at\":1775463025.83871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.282857,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.thermostat_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea789899d09226775d0daa530027b9d\",\"labels\":[],\"modified_at\":1733470323.283385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_1_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.28388,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.thermostat_clear_hold\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f25cd194cab996c6b0d11611f99101c\",\"labels\":[],\"modified_at\":1733470323.28457,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Clear Hold\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_48\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.854459,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0990beda4adbced67f9da8fbf14a5734\",\"labels\":[],\"modified_at\":1733904292.858855,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.892119,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e84579ecf7f13526a23c78731d3755\",\"labels\":[],\"modified_at\":1733904292.895779,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":1736319447.525713,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b9ac173954a17489fd6438677e48e78\",\"labels\":[],\"modified_at\":1741148806.093313,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Compressor minimum temperature\",\"platform\":\"ecobee\",\"translation_key\":\"compressor_protection_min_temp\",\"unique_id\":\"511883021980_compressor_protection_min_temp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.905972,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f04cd994bf4a7ca806e873689f0a05\",\"labels\":[],\"modified_at\":1736320519.906751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.79.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.907344,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e78e8aa7ecee5b3adb88cf6760e660\",\"labels\":[],\"modified_at\":1736320519.907957,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.79.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.908601,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aed21f201e4e9e49dc6e2fbfa6b269f\",\"labels\":[],\"modified_at\":1736320519.908898,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909112,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11d59ab7cf13cb711f9f6aa4d904b40f\",\"labels\":[],\"modified_at\":1736320519.909248,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909421,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea3a75a361da66c42a17ab240ac6619\",\"labels\":[],\"modified_at\":1736320519.909546,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909714,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9098616b205b24cbad4a88c83997e963\",\"labels\":[],\"modified_at\":1736320519.909949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.910119,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519aa11c201477c7828a3bc98fd1133d\",\"labels\":[],\"modified_at\":1736320519.910246,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.79.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911034,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bec59707ccd7dc529a90b1f098e5463\",\"labels\":[],\"modified_at\":1736320519.911218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.79.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911435,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef05212c0e42c4bfe401b3c4a440be4b\",\"labels\":[],\"modified_at\":1768937324.673569,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.79.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911768,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e515cf0760d43f4a81b2b3979145422\",\"labels\":[],\"modified_at\":1736320519.912168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.79.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.889798,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03c6b2e96c8518f922c1f7976a43224f\",\"labels\":[],\"modified_at\":1736320523.890247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.890604,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cfadce8334aa142551bb0271cb3a332f\",\"labels\":[],\"modified_at\":1736320523.890983,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891298,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e97ff3d04362f3398435b9c09280c19\",\"labels\":[],\"modified_at\":1736320523.891644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891976,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1be6ea19b6705198c44062cd8c886913\",\"labels\":[],\"modified_at\":1736320523.892111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892381,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1163e30b6367ba70cdb0bbe818bd86a\",\"labels\":[],\"modified_at\":1736320523.89251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892784,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003c87cfb9a0c7a08e1e6a9413bb72be\",\"labels\":[],\"modified_at\":1736320523.892915,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893181,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a74f8edd31d0d23fcb5d7911f5de558e\",\"labels\":[],\"modified_at\":1736320523.893314,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893609,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd4b36349b64e4afb0efbd8cae27ceb1\",\"labels\":[],\"modified_at\":1736320523.893743,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894017,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dce04321343b8f8650a1638e540c066\",\"labels\":[],\"modified_at\":1736320523.894147,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894415,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a26041ffe1d767c1eb6d43d5eaa1062\",\"labels\":[],\"modified_at\":1736320523.894549,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895246,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"335173b1290e32b28674d76b3139a7e3\",\"labels\":[],\"modified_at\":1736320523.895405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895685,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b023c61c1897b503e351ab61f1397b60\",\"labels\":[],\"modified_at\":1736320523.895824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896095,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18346fff64001fa0e036649a9ce026a3\",\"labels\":[],\"modified_at\":1736320523.896229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896493,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c84119a15d609af8e002b03a3113d945\",\"labels\":[],\"modified_at\":1736320523.896637,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896904,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be85935d305056837922385a2d2166d\",\"labels\":[],\"modified_at\":1736320523.897033,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897297,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba44272b6f19db495f0bad8e04150bdf\",\"labels\":[],\"modified_at\":1736320523.897427,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897689,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60c44e307fd48158ef5a870f6e1ea15f\",\"labels\":[],\"modified_at\":1736320523.897823,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898087,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"779e519eb982bf17eafbb4185d8a5538\",\"labels\":[],\"modified_at\":1736320523.898218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898501,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param017\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13eb4a7de3ff753f4f4551bb6b34c3fc\",\"labels\":[],\"modified_at\":1736320523.898633,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param017\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898906,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param018\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2aade9b24c3cf098837c05f198a84196\",\"labels\":[],\"modified_at\":1736320523.899034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param018\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.899325,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a75845967c301f447fdadd705ccd7bb\",\"labels\":[],\"modified_at\":1736320523.899681,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.900013,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cce3b69f3c06d161dec626b5790ce5b3\",\"labels\":[],\"modified_at\":1736320523.900352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.901702,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e73cbc35e18958125287a74471c3a7\",\"labels\":[],\"modified_at\":1736320523.902118,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c40ab8344787dc7d21e29d547af9168\",\"labels\":[],\"modified_at\":1736353596.37888,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"config_subentry_id\":null,\"created_at\":1736353647.022559,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9b5fcaa227f65f8d411267b0c87e17c\",\"labels\":[],\"modified_at\":1736353647.026856,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Garage Motion\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354201.335657,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9b4fba2f11f641562e2a0cf02f5193a8\",\"labels\":[],\"modified_at\":1736354201.33641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354191063\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354274.958347,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"830666f260932ede8c27eb30fa0f2acd\",\"labels\":[],\"modified_at\":1736354274.959061,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354261558\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356766.764731,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f39e4da6bae1a1fb17133e0994052d7\",\"labels\":[],\"modified_at\":1736356766.76768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"1e0e99c393cebaf6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.582007,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a426428dce7d3a5ad82a464d6c13626\",\"labels\":[],\"modified_at\":1736356803.582649,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.882889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"109baa4874d527c5dce0fa51e7ec766e\",\"labels\":[],\"modified_at\":1736356803.883446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.157783,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18486e2eea948c77d599307cb1afac40\",\"labels\":[],\"modified_at\":1736356804.158354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.504037,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8b32e5fb84db954de2baea306396bcdf\",\"labels\":[],\"modified_at\":1736356804.504525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.770611,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7076de51a9429320f8f79a3b02daee09\",\"labels\":[],\"modified_at\":1736356804.771166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.094326,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0957b1480c95f751131df14c11de93e7\",\"labels\":[],\"modified_at\":1736356805.094874,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.332161,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b9d7f3508915fa3d10cc3763c4c732b\",\"labels\":[],\"modified_at\":1736356805.332734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.632478,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"654a35e29ec254b14f7342b941c57ebc\",\"labels\":[],\"modified_at\":1736356805.905853,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.134424,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ab3ad53acb2fb31265c2beaf81a787\",\"labels\":[],\"modified_at\":1736356806.223628,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.408371,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4a6ac60b8a79e875715714e9d98b53\",\"labels\":[],\"modified_at\":1736356806.65203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.77282,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9a1414d4439efae40503ca6f2d0de1c1\",\"labels\":[],\"modified_at\":1736356806.918576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.0732,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad998071e0851fcdac692503e773cad\",\"labels\":[],\"modified_at\":1736356807.073755,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.47584,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d14678412ea3738987ba070e0d1dc47\",\"labels\":[],\"modified_at\":1736356807.476394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.789064,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b94f06998a4a37f7fa272ebb5d4a82\",\"labels\":[],\"modified_at\":1736356807.792482,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.131893,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3de7df881a6322e0971ccea176dddd43\",\"labels\":[],\"modified_at\":1736356808.132439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.44137,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0585654f850aa6c80809d8159b522c\",\"labels\":[],\"modified_at\":1736356808.441885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.789329,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"14f7490f06cca0ba2fd96f2482289589\",\"labels\":[],\"modified_at\":1736356808.789536,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.075127,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"157241e5f848a341290b22d44b2c6cc3\",\"labels\":[],\"modified_at\":1736356809.075701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.53918,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e11a13791aa5e28f584841a514467af6\",\"labels\":[],\"modified_at\":1736356809.539734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.885361,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b318f00270d6a9b45165c6e5a44f637\",\"labels\":[],\"modified_at\":1736356809.885939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.259692,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52087a4595d9da9fbde6eea04ad63196\",\"labels\":[],\"modified_at\":1736356810.260095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.533183,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fee843fda76fc8d65a653091ced38e8\",\"labels\":[],\"modified_at\":1736356810.533737,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.955986,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11f9a4558ce5421169edbeb2e555d5cd\",\"labels\":[],\"modified_at\":1736356810.956558,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.034081,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be48034f51cdaff9ee7e90fe0fef9d98\",\"labels\":[],\"modified_at\":1772683905.232172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.297521,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0819605111bcbcd4f7e39d21c88a07\",\"labels\":[],\"modified_at\":1772683905.835153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.540434,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e47ff59093cdd8c4b107074e038dcb3c\",\"labels\":[],\"modified_at\":1736399063.500589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.909769,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46db01c2adedfbe43630a5f6dccc6a99\",\"labels\":[],\"modified_at\":1745524780.005163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359657.453126,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3c001f67d93fb5258ae48c47210beb2\",\"labels\":[],\"modified_at\":1736399064.263031,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.581695,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ead35b09a45c83eee2915b09e240cf5\",\"labels\":[],\"modified_at\":1736399064.531165,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.882863,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"297937f666f3e5a757b1165cbc567ea3\",\"labels\":[],\"modified_at\":1736399064.803276,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.137825,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6389ef9fa7957cc4e8fd6626ea88768\",\"labels\":[],\"modified_at\":1736399065.081707,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.363443,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bedtime_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7af1d7a08626154d89c6fe3bcff2049a\",\"labels\":[],\"modified_at\":1736359659.36398,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bedtime mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bedtime_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.625494,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4b1ce8d630d3c1139af9939d53abb39\",\"labels\":[],\"modified_at\":1736359659.626054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.876657,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2de0b22a75bc9020376fa995d4f55f\",\"labels\":[],\"modified_at\":1736359659.877219,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.132724,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27be5d92b8d529284e3b279099754ea2\",\"labels\":[],\"modified_at\":1736399067.294751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.376811,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0d40b3310f8c0e746ca68a5444b0d1b\",\"labels\":[],\"modified_at\":1736399068.107397,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.60476,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d8083b32c92d976e8df45388ba480189\",\"labels\":[],\"modified_at\":1736359660.605316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359661.793629,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adaa4c83bc9bca3d19a9af0ec81a8eea\",\"labels\":[],\"modified_at\":1736399795.169023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.177957,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53eb4bdb941f55dbbd581722fbf5fcfa\",\"labels\":[],\"modified_at\":1736359662.178469,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.645451,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01129317545bbe3d974404fc7b754d4f\",\"labels\":[],\"modified_at\":1736359662.64603,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359663.612969,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41d3cf71221566d53676a59927079525\",\"labels\":[],\"modified_at\":1736399795.946725,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.24639,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9dc6b7eb95805f4edcd634365fed345\",\"labels\":[],\"modified_at\":1736359664.246953,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.510519,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7cb0a33d907765f791a568845f3ca99\",\"labels\":[],\"modified_at\":1736359664.51107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359665.204889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23e948de201d1840aef0bcac3f026dcc\",\"labels\":[],\"modified_at\":1736359665.205434,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359666.440523,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5707e58d3dc6e2aac0394c2fcb3b7819\",\"labels\":[],\"modified_at\":1736359666.441115,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359667.195641,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"814ba5368dd8ce19d270c59f3aa70d95\",\"labels\":[],\"modified_at\":1736359667.196212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359668.184418,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d79100a0ce88a95bb3508f92917c50e\",\"labels\":[],\"modified_at\":1736399797.665211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359669.14242,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09a91b37c035dc8468fb33c46d22b688\",\"labels\":[],\"modified_at\":1736399798.122323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.04832,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d6892d2d211d5450673f97825289382\",\"labels\":[],\"modified_at\":1736399798.705635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.992047,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"013180467fa74f25bf8aeac4685c0bb6\",\"labels\":[],\"modified_at\":1736399799.392385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359671.938631,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"beb1135710edcf430ee9c09b403bb4f5\",\"labels\":[],\"modified_at\":1736399799.790352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359672.866807,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6230302d762bf3ab79d12409c1231bbf\",\"labels\":[],\"modified_at\":1736399800.787298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359673.78006,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8be95f5af00e6d22af4f2e5ac47c6fdf\",\"labels\":[],\"modified_at\":1736399801.429003,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359674.698165,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72b59c954d688b0c5d56dc7515ecb8fe\",\"labels\":[],\"modified_at\":1736399802.363037,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359675.62217,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42c8a56ab854162a1745cb4a09dbdb4f\",\"labels\":[],\"modified_at\":1736399803.362446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359676.543017,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e317baaf0f76275291f5c2d076ee5e5\",\"labels\":[],\"modified_at\":1736359676.543581,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359677.44848,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"273ecd3a847f25375673692d0e17e105\",\"labels\":[],\"modified_at\":1736399805.439232,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359678.422497,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40b84792dccc1ab0c45ddb0dd47ace3f\",\"labels\":[],\"modified_at\":1736359678.423076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359679.312512,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7048d27edebd7601ca231221f6b27f69\",\"labels\":[],\"modified_at\":1736399807.564816,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359680.283382,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1743057c6757d698d0d65799731be65b\",\"labels\":[],\"modified_at\":1736359680.283927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359681.140505,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_on_body_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b75d2c31d19e391f5d178240a6c0209e\",\"labels\":[],\"modified_at\":1736359681.141105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 On body sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_on_body\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.090116,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2dead3b819e75b6b5211443a5ac78f4\",\"labels\":[],\"modified_at\":1736359682.090675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.9708,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34c63b944355c9e51b84ba3f6b774b6e\",\"labels\":[],\"modified_at\":1736359682.971298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359683.958379,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a7bf80c63ca3bee1b4879fb6b1ba99d\",\"labels\":[],\"modified_at\":1736359683.958927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359684.857759,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47ce2137b53c5b8f6d94331b3e025002\",\"labels\":[],\"modified_at\":1763328460.580366,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359685.654766,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ef2b4cd3a27c1b0051ac47549a23b72\",\"labels\":[],\"modified_at\":1736359685.655329,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359686.705391,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0a92448dcdd542b9e3e8a75fe04559a9\",\"labels\":[],\"modified_at\":1736359686.705956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359687.625097,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ab731ae8b74fd38f20f4fb6c43506c5\",\"labels\":[],\"modified_at\":1736359687.625639,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359688.516154,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_theater_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"703096c37b80a7d5fa418e41d4f81c31\",\"labels\":[],\"modified_at\":1736359688.516736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Theater mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_theater_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359689.529591,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b843d7d77fd0e55c1b9dbc9bcbc183f\",\"labels\":[],\"modified_at\":1736359689.530093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.333626,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab5205e7d9e3858de62ea0bb4794194c\",\"labels\":[],\"modified_at\":1736359690.334183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.652265,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fad870f9abcfa3727367793912e2f758\",\"labels\":[],\"modified_at\":1736359690.652862,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359691.299905,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wet_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6912d4a233b925946eb92a607354856e\",\"labels\":[],\"modified_at\":1736359691.300455,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wet mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wet_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359692.209767,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_activity_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6c82536cb995ebbba982c2ab021ced8\",\"labels\":[],\"modified_at\":1736399825.35309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Activity state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_activity_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359693.154691,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39a8afb6f701ab75cfc7fdb255e13a6f\",\"labels\":[],\"modified_at\":1736359693.155251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_floors\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359694.058948,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ff694331b621b1f0fda4e48e8bbcc53\",\"labels\":[],\"modified_at\":1736399827.024194,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.003274,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_calories\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d9e973ac42cfc50c48e30ad90288748\",\"labels\":[],\"modified_at\":1736399827.952805,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily calories\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_calories\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.81776,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2e45bb02534ec3078c8e0eea4344ca\",\"labels\":[],\"modified_at\":1736359695.818316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.856213,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e71d567db688d94b4e0e0f224fb9ce28\",\"labels\":[],\"modified_at\":1736803158.868554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.887145,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20c1bb2e7c3adbd94bfdfbdf8b652b8d\",\"labels\":[],\"modified_at\":1736803158.895143,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.925194,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"139f6cd0dd468aa9019150651d43f434\",\"labels\":[],\"modified_at\":1736803158.934833,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.958586,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d27e6bddb02baaf8770ba59450229223\",\"labels\":[],\"modified_at\":1736803158.959123,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.000035,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adad2dae764b1b4c5e4f1b8615f7c6ec\",\"labels\":[],\"modified_at\":1736803159.000571,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.020193,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"130892cbc52a3a5d41acf63fc52264a7\",\"labels\":[],\"modified_at\":1736803159.045045,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.05282,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4df84fa332afe1a1ba6e2afbe3e0c538\",\"labels\":[],\"modified_at\":1736803159.053349,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1737067561.611876,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_sensor_2_sensor_state_co2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bddd6f808427ba2a97adca93c8768213\",\"labels\":[],\"modified_at\":1737067561.612126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sensor state (CO2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-CO2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1740257490.056992,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de2bdae5c394ce75a2e72d945fd67d78\",\"labels\":[],\"modified_at\":1740257490.057769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Solar ECU Unavailable\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1740257477923\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.753328,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.under_cabinet_lighting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47a17625819d6de9a9a5a9fcb068dfd3\",\"labels\":[],\"modified_at\":1742764374.448547,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_light_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.742879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.under_cabinet_lighting_effect\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f83446880146584e49ffe7ca9d992136\",\"labels\":[],\"modified_at\":1742764374.450385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Effect\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_effect_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.780879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbc2aaaed253d3bbe2c0ea5e8596772d\",\"labels\":[],\"modified_at\":1742764374.496804,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Do not disturb\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_switch_do_not_disturb_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.829072,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.under_cabinet_lighting_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb2a38c1e988902be72a7518cea08f79\",\"labels\":[],\"modified_at\":1742764374.541366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467771.203002,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ef0cd9a1858bc9149e47113717459b5\",\"labels\":[],\"modified_at\":1745467771.203562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.019608,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_blood_glu", + "offset_ms": 45 + }, + { + "direction": "recv", + "type": "text", + "payload": "cose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9411a9c653ef38ea742ed08dc2a31067\",\"labels\":[],\"modified_at\":1745467772.03278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.047222,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37f7acf271e127f4e49d357bb0c5bb68\",\"labels\":[],\"modified_at\":1745467772.060087,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.227616,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc0faadddf515e78993cb2525101a9e9\",\"labels\":[],\"modified_at\":1745467772.228166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.295831,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2710c8eb328c4a060bfab6e1a34674fb\",\"labels\":[],\"modified_at\":1745467772.313176,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.391191,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7cc10320bf0eac221b1bbe0e37984f\",\"labels\":[],\"modified_at\":1745467772.408751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1745524781.207297,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"545c407bdcb5d35ec63d78f7a8878b00\",\"labels\":[],\"modified_at\":1745524781.207876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1745542172.503223,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18e492ba2733085e4e9f4ff0a5428df0\",\"labels\":[],\"modified_at\":1745542172.50526,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CO2 Alarm unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-CO2 Alarm-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.46243,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"747f703192d22d8ec8759bc94a1fce76\",\"labels\":[],\"modified_at\":1748219109.463014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.640996,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5198dc56db91ba7df5b10c7a015e581\",\"labels\":[],\"modified_at\":1748219109.655051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.685402,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb41fd2f446a5f8881e816b46c3f8feb\",\"labels\":[],\"modified_at\":1748219109.685973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.721723,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3d0012049fbeda8166b02790dc37b92\",\"labels\":[],\"modified_at\":1748219109.722298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.757491,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eba82b80d5619332290deb4a3efb5c84\",\"labels\":[],\"modified_at\":1748219109.758093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.785413,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5e763389817f6ec085e23be56ee54f5\",\"labels\":[],\"modified_at\":1748219109.792204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.110811,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee83713b4ec50e5a22b0f247fa5bc1c5\",\"labels\":[],\"modified_at\":1749590887.112776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.113208,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa86888ae5a955cc2ca0fb3ce1559700\",\"labels\":[],\"modified_at\":1749590887.11367,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.114151,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_shower\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"244d25b21371ef06dfbe70c38a8e3a27\",\"labels\":[],\"modified_at\":1749590887.11467,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.11557,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_shower_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"197264aec52c5bb54e81ebf28f841d6d\",\"labels\":[],\"modified_at\":1749590887.115711,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:82:fb:6a_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.694619,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"217b95c6b680c1836cdf60eb9da2f503\",\"labels\":[],\"modified_at\":1749590895.696348,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.697451,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003565fb8b8be878769578dc74c69752\",\"labels\":[],\"modified_at\":1749590895.699001,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.701685,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.matter_bath_toilet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a965f5cf56792192cef7e0ab7b9a31a7\",\"labels\":[],\"modified_at\":1749590895.703552,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.708213,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.matter_bath_toilet_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84160aed320a4e66dd6c9ad44039bd9b\",\"labels\":[],\"modified_at\":1749590895.708736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:83:1f:53_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"config_subentry_id\":null,\"created_at\":1750061075.141771,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49204eb2a92de917a9e42ff6f8f588f5\",\"labels\":[],\"modified_at\":1775870416.949195,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Master Bath Lights \",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180319,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_param027\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ea8e9374eae954b3bbd8d18020ca120\",\"labels\":[],\"modified_at\":1752102847.180555,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param027\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180971,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_separate_inputs_from_outputs\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca290e9cdd8d4d5d6b3073329b06547b\",\"labels\":[],\"modified_at\":1775490675.663286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Input Trigger\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.1822,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fb5086cf8fcc21f5e28d90e0db54c78\",\"labels\":[],\"modified_at\":1775490675.663838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"config_subentry_id\":null,\"created_at\":1759378690.394779,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"calendar.maya_school\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cca23ca8717983fe71c89426ca56c7b5\",\"labels\":[],\"modified_at\":1759378690.395441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maya school\",\"platform\":\"local_calendar\",\"translation_key\":null,\"unique_id\":\"01K6HJ8M54G71Y4477XK05AGBG\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386477.277947,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4097cd598a3a06c6f0daff8cad6ca79\",\"labels\":[],\"modified_at\":1759386477.279521,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1759386477130\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386507.028808,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be669aa5658d128e8ffcd6168710677f\",\"labels\":[],\"modified_at\":1759386579.806063,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387437.349538,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4820d645ddc7e05d31da79d542bdfe\",\"labels\":[],\"modified_at\":1759387437.351339,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"band day 2\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387072.988787,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_button.band_day_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3dc6766f5367c3f345af29958d10bc\",\"labels\":[],\"modified_at\":1768937321.234765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"collection\":{\"hash\":\"1b24d0ddf479ed85340a79f72c595317\"},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day 3\",\"platform\":\"input_button\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498155.515729,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_phone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c3949e0a3c86ebd635f939b4da67b68\",\"labels\":[],\"modified_at\":1760976737.49654,\"name\":\"Adam Phone\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"51e12b25d85b4b1e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.63507,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b25ffeb9832412e4729bc9a3554e791\",\"labels\":[],\"modified_at\":1774279284.833829,\"name\":\"Adam Phone Battery level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.848698,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bceafcf813f3d0c7f5875af49aa7014c\",\"labels\":[],\"modified_at\":1772691190.431663,\"name\":\"Adam Phone Battery state\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.380282,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52a1a4199f6226c81e7a9e280bf8a5c2\",\"labels\":[],\"modified_at\":1772691194.336662,\"name\":\"Adam Phone Charger type\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.561785,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f78b5a31c1f1797cecc8021a4bc283c\",\"labels\":[],\"modified_at\":1763016724.667262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.150666,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"753010fef896a676a949100adf1a5df3\",\"labels\":[],\"modified_at\":1760976737.499635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.996611,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093bf4d5f49f15e5238231d70b093df3\",\"labels\":[],\"modified_at\":1760976737.502342,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.632604,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b21e81370aec744ff4cef9a8bf0ef00\",\"labels\":[],\"modified_at\":1760976737.502738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.837407,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7107aad5e9b8e1943301af2a059e93ea\",\"labels\":[],\"modified_at\":1760976737.503069,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.908791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47c1557ded81eebf8aa0a96ac63d2841\",\"labels\":[],\"modified_at\":1760976737.503394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.362775,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29de90a8bd56b781a47d398184b68cb6\",\"labels\":[],\"modified_at\":1760976737.503709,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.387797,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b09b3df0b3a9f47a8e6eb4bb0725a8d\",\"labels\":[],\"modified_at\":1761859609.313035,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.086212,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"06c5550926c6fdd6b5ff1b6d10511768\",\"labels\":[],\"modified_at\":1760976737.504334,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.677976,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e02d2deb740d7a31ec1ac86e66289584\",\"labels\":[],\"modified_at\":1760976737.504647,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.113948,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e6cfd871a0249cfa6fcfa5cb067c22a\",\"labels\":[],\"modified_at\":1760976737.504954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.052956,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23b032cf9074ee4d0ccd20a2c7b170a8\",\"labels\":[],\"modified_at\":1760976737.505278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.298484,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"511534407bbe94e987b4e6b18616dbd7\",\"labels\":[],\"modified_at\":1760976737.505582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.564591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"630126c44d79334d10daaac76b3e6da6\",\"labels\":[],\"modified_at\":1760976737.505883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.859128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54186ed87499f0363a7a795031ac8091\",\"labels\":[],\"modified_at\":1760976737.506183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.072203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c107fd5dd3a23152c737aeacfb93f12e\",\"labels\":[],\"modified_at\":1760976737.506487,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.114625,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fc30dd8af197aa5604097778df128b90\",\"labels\":[],\"modified_at\":1760976737.506796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.74326,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a99fecae7b35c0c91c2d87db9221d854\",\"labels\":[],\"modified_at\":1760976737.507099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.11767,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa5f2c7ce053d4544cf8d6062e90490e\",\"labels\":[],\"modified_at\":1760976737.508044,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.804439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6473733425a0a0786d883979d5b4aa81\",\"labels\":[],\"modified_at\":1760976737.508353,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.173261,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_wi_fi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1794c62e4b88cb613114ae22f6763cc6\",\"labels\":[],\"modified_at\":1760976737.508622,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.044578,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42417c7948736cba9d2a5224ad710014\",\"labels\":[],\"modified_at\":1760976737.508885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.833075,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b941b110fe0ebe77e2578dbf0457db9a\",\"labels\":[],\"modified_at\":1760976737.509153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.523966,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"120365806cf1ad9034b62efe0f58c093\",\"labels\":[],\"modified_at\":1760976737.50941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.731496,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad43a289a78ae9decb7a8bb8636ec15b\",\"labels\":[],\"modified_at\":1760976737.509663,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.578065,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82b4fccab26e5f8d9dc5b863a430eabb\",\"labels\":[],\"modified_at\":1763016726.90644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.923363,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681210dd7cb2b664dfc7160e4b59f9e8\",\"labels\":[],\"modified_at\":1760976737.510166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.508973,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"76b86a4aaafcf69e892ab189d3a5a37d\",\"labels\":[],\"modified_at\":1760976737.51042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.354383,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1337823dd9fe63383689acfe28169998\",\"labels\":[],\"modified_at\":1763016726.688987,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.723152,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e043cb0b1e1d248cb65f41b026f07c34\",\"labels\":[],\"modified_at\":1760976737.510914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.143052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2be1edbc1804fca84d30e0ff2af37d3\",\"labels\":[],\"modified_at\":1763016727.38029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.53214,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f72f7f7a26dd97cc36f76faefadc3116\",\"labels\":[],\"modified_at\":1760976737.511404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.594056,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff782efae98210cfe14a22d3d01023bd\",\"labels\":[],\"modified_at\":1760976737.511651,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.047203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f003eadb014be21895e4c4dc182b09c1\",\"labels\":[],\"modified_at\":1760976737.511895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.846127,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9688273e8fc0f9d29c7fae09c089596d\",\"labels\":[],\"modified_at\":1760976737.512138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.422557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85a174f235fbda9b9cdd6ef97bdb64eb\",\"labels\":[],\"modified_at\":1760976737.512378,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.203052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8a9981a0cce9ee63b08edc8b74a776ca\",\"labels\":[],\"modified_at\":1760976737.512621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.726411,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ded137b29a2ac9791fc1f1d244796b0a\",\"labels\":[],\"modified_at\":1760976737.51286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.751762,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"750907f9a2ecaf511d6767527d52e002\",\"labels\":[],\"modified_at\":1760976737.513111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.94591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cd9c953d266dd30bc5eb3151a5f2f66\",\"labels\":[],\"modified_at\":1760976737.513705,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.654737,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ac1339b135ff5cb6054610e09599cd4b\",\"labels\":[],\"modified_at\":1760976737.513999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.100199,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6559562de9368b5176d4c2bab69341be\",\"labels\":[],\"modified_at\":1760976737.51426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.317375,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e5aa6887ffe1c9ba20be2f9dad865c9\",\"labels\":[],\"modified_at\":1760976737.514516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.522632,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2d58c1b05145799f6a0e942e418637b\",\"labels\":[],\"modified_at\":1760976737.514765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.816273,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff01611593ce914c8e55b99746ade7bb\",\"labels\":[],\"modified_at\":1760976737.515013,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.856176,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1df9caee459458f4261ba3769b30a2fd\",\"labels\":[],\"modified_at\":1760976737.515262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.027941,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84ef8a67d8861618e18ec8e2201925f9\",\"labels\":[],\"modified_at\":1760976737.515509,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.497115,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ef002fc4b535738730128cd41020e5dc\",\"labels\":[],\"modified_at\":1760976737.515764,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.248154,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b7742f63b3eca975967469453a345b\",\"labels\":[],\"modified_at\":1760976737.516015,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.542876,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d10a7204fe5e2ea0fa40d8ae5a3144b\",\"labels\":[],\"modified_at\":1760976737.516268,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.257567,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"685e196a4c4f6c3101615348fb51dd51\",\"labels\":[],\"modified_at\":1760976737.516516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.499288,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586179dae81f48674014b0857ed88ee4\",\"labels\":[],\"modified_at\":1760976737.516767,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.717817,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6034cd7356664dc063906e2f52a0a3\",\"labels\":[],\"modified_at\":1760976737.517018,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.94185,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"66165e96b66d1a023f8e8737fbe9e2d0\",\"labels\":[],\"modified_at\":1760976737.51728,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.528186,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ea8b6d6b10896ddbdf5ae9fafbbecc6\",\"labels\":[],\"modified_at\":1760976737.51753,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.252135,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385366fcc059b77a728168515f2586f2\",\"labels\":[],\"modified_at\":1760976737.517778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.461271,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f58c113ad08028f0af872124030c30f\",\"labels\":[],\"modified_at\":1760976737.518028,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498158.942049,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cba6a4bdd6a805551cc283b957b22e63\",\"labels\":[],\"modified_at\":1763016721.943079,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.192313,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2c38371850e50f3e5988540443f5c5d\",\"labels\":[],\"modified_at\":1760976737.51852,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.577028,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16f7fe2f79e1b1f0db02866ac85a4bc3\",\"labels\":[],\"modified_at\":1760976737.518771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.336206,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73631aa51e0e6a1d7794697379003876\",\"labels\":[],\"modified_at\":1760976737.519354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.260623,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"32245ba0b08e126f84726702cb6db8bc\",\"labels\":[],\"modified_at\":1761859609.314665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.171655,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0d32ff833fcd601cd32f482eb5f1c9a\",\"labels\":[],\"modified_at\":1760976737.519914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.382664,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7711c9412df10e8fe9452f68a7038e60\",\"labels\":[],\"modified_at\":1760976737.520171,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.610829,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a08d9ebbb81e0c3fc7a08d30d98e3b7e\",\"labels\":[],\"modified_at\":1760976737.520425,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.121172,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2cc61e1c263d63262ab756c2a5e9d31\",\"labels\":[],\"modified_at\":1760976737.520676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.498003,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81e3fb1a860e34c3494dbee1d95fe70f\",\"labels\":[],\"modified_at\":1760976737.520924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.21988,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3af3544de87e7dbab445e7a8029afa34\",\"labels\":[],\"modified_at\":1760976737.52119,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.731054,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db1336da12c043c7c61d784c7a622187\",\"labels\":[],\"modified_at\":1760976737.521439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.428907,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"553383b37e8d644518a821ebf99f99b3\",\"labels\":[],\"modified_at\":1760976737.521685,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.943883,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23a5abddd967354312c03855e037976f\",\"labels\":[],\"modified_at\":1760976737.521932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.518682,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0be097c7eb3dbe6aef6a25e3a6cd8ef\",\"labels\":[],\"modified_at\":1760976737.522174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.180681,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e09414a784c4b8a03feca8292b47fc\",\"labels\":[],\"modified_at\":1760976737.522426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.937301,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bfcdb749179ca990270164a9c1aace4c\",\"labels\":[],\"modified_at\":1760976737.52267,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.759405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f329d40f3cb4c98261ecbcca9d730f7\",\"labels\":[],\"modified_at\":1760976737.522917,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.012128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f894e57866a8b946f69234a7c97291\",\"labels\":[],\"modified_at\":1760976737.523164,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.284899,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"148c211961e1b76470e79174b4283b73\",\"labels\":[],\"modified_at\":1760976737.52341,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.985246,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f71e7d4f62b65e5450706d56114cc93f\",\"labels\":[],\"modified_at\":1760976737.523665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.763524,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d835075c5dbbd4973e040149a3f7514\",\"labels\":[],\"modified_at\":1760976737.523911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.601118,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d62adbd002ce98615faf711cc7a26d5f\",\"labels\":[],\"modified_at\":1760976737.524157,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.141649,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663371403a63a19124a1b4abc6b27be8\",\"labels\":[],\"modified_at\":1760976737.524405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.336255,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"112988ca48584654f5650f5359c7e4bc\",\"labels\":[],\"modified_at\":1763017007.83862,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.582052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a877e0462d77e8dd3e37703c0c12842c\",\"labels\":[],\"modified_at\":1760976737.525423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.843111,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e19e322d38c79279c958e4aa96c1dddd\",\"labels\":[],\"modified_at\":1760976737.525683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.275509,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00aca62e34295f7facd401ad154fe8e6\",\"labels\":[],\"modified_at\":1760976737.525937,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.858586,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33498cbeacef2dcdc4f033a0b26838cd\",\"labels\":[],\"modified_at\":1760976737.526188,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.07771,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e6c658d666885b7bcae24ba94db552e\",\"labels\":[],\"modified_at\":1760976737.526437,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.856422,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"607fc15e13eb6e05972e82df9e2b66c3\",\"labels\":[],\"modified_at\":1763016727.1138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.70849,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73bb92c35f39f034be36798feb770698\",\"labels\":[],\"modified_at\":1760976737.526939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.916128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28017fee78f1ddd7f4142211e16c0d30\",\"labels\":[],\"modified_at\":1760976737.528024,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.157067,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff11b226bb853a90c464d79f8178ce33\",\"labels\":[],\"modified_at\":1760976737.528323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.366557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40dd3bb633abe1862d801f81b3ce8980\",\"labels\":[],\"modified_at\":1760976737.528584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.978133,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9fce7d56272a707de807cc72548ee17a\",\"labels\":[],\"modified_at\":1760976737.530283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.801608,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"401a043f2c726c93b7b23b4564a1f94a\",\"labels\":[],\"modified_at\":1760976737.53057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.02263,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28e13521bf85269ec4c9f0a082f0c6b7\",\"labels\":[],\"modified_at\":1760976737.530838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.345391,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b190136a43f7bcf64e68901f7d275935\",\"labels\":[],\"modified_at\":1760976737.531099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.594556,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"951499259e3906795a24cd53fc3d1249\",\"labels\":[],\"modified_at\":1760976737.531357,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.156068,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f6bc7f4a033172190b30075550a37521\",\"labels\":[],\"modified_at\":1760976737.531615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.285791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"404a79d1477c10408dde8e055ae80b2e\",\"labels\":[],\"modified_at\":1760976737.531871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.353564,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b1f9968e09762e9bda52a6df2fbd23c7\",\"labels\":[],\"modified_at\":1763016724.247126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.78676,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e40f6aa713fca29f4bd8a635509859c\",\"labels\":[],\"modified_at\":1760976737.532386,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.7486,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df9290d342500fe2636c79ddbc9952bd\",\"labels\":[],\"modified_at\":1760976737.53264,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.96248,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d61cf3fe32f5fe3b39fa7ec9dae68b7\",\"labels\":[],\"modified_at\":1760976737.532893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.23677,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9aa7c0a93561eb0c9c492db8575a1989\",\"labels\":[],\"modified_at\":1760976737.53315,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.443444,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e929af2da1a8fd0c0c9e2eb613c88c3f\",\"labels\":[],\"modified_at\":1760976737.533399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.176575,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b2353cba1cfc2ba0270b144f2043de0\",\"labels\":[],\"modified_at\":1760976737.533645,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.397439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1af3533513a0c5338f0e1f7900eaf9e5\",\"labels\":[],\"modified_at\":1760976737.533893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.507945,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18af8f2d02f6418723e32a510e19391c\",\"labels\":[],\"modified_at\":1760976737.534144,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.906106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"144ae42445c05a952df5ef29aa014a17\",\"labels\":[],\"modified_at\":1760976737.534396,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.18106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62bfd57e3cb228991c9b903d59e6587f\",\"labels\":[],\"modified_at\":1760976737.534646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.176689,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c294c624ab78af85b8acb03e41009e22\",\"labels\":[],\"modified_at\":1760976737.534894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.73368,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b20652958edaaf0ef0042d2a97318da\",\"labels\":[],\"modified_at\":1760976737.535255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.515405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f69443e387af0b10bf4cffad511cab3e\",\"labels\":[],\"modified_at\":1760976737.535554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.963861,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"57e733b28e1a7f745cd42b1588ea7b92\",\"labels\":[],\"modified_at\":1760976737.535819,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.383975,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3757ce7c4b5a7037d34b233e1626b5bb\",\"labels\":[],\"modified_at\":1760976737.536076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.520076,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d093158049a91d9ec6342c460f7697d\",\"labels\":[],\"modified_at\":1760976737.536331,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.290619,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b54445aea1c6b5a23c7a7f8756d331f\",\"labels\":[],\"modified_at\":1760976737.536584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.432903,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41dc6b0212fa61d780912d275265cd1a\",\"labels\":[],\"modified_at\":1760976737.536834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.76291,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49e886aeaca51ef663020c9d6adedd4d\",\"labels\":[],\"modified_at\":1760976737.537084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.966045,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"97423ae7ee25d6b9c6138c20f803937d\",\"labels\":[],\"modified_at\":1760976737.537345,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.640943,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"641af75b3fbe0762c553b05543247e0a\",\"labels\":[],\"modified_at\":1760976737.537592,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.578752,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f98be744eca04298b701b1d066cf33f2\",\"labels\":[],\"modified_at\":1761584275.553227,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.584734,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"38be44c9b9441e8136de779aff02c4d4\",\"labels\":[],\"modified_at\":1761584275.555476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.625112,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eaaa8aa99a75156fd029e017b2345aa3\",\"labels\":[],\"modified_at\":1761584275.60354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.675625,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70710798be185d2ee29eb867eb9f8222\",\"labels\":[],\"modified_at\":1761584275.644775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.796301,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param019\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5c6e0fb47a0136310e04a22d88fc83\",\"labels\":[],\"modified_at\":1761667162.796517,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param019\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.797016,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_param020\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e23bda23aa0ac99b0116586ea0a1b92\",\"labels\":[],\"modified_at\":1761667162.797168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param020\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1761667201.291363,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87fb7ada2339f2039551943482ae1358\",\"labels\":[],\"modified_at\":1761667201.292122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1761667192807\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c2862a4df8f6bd691cf5d04a6dfd54c\",\"labels\":[],\"modified_at\":1761690295.874343,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Headphones connected\",\"platform\":\"roku\",\"translation_key\":\"headphones_connected\",\"unique_id\":\"YJ002K604601_headphones_connected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7cd833409d36d7f019fd3e2c56a3099f\",\"labels\":[],\"modified_at\":1761690295.875222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports AirPlay\",\"platform\":\"roku\",\"translation_key\":\"supports_airplay\",\"unique_id\":\"YJ002K604601_supports_airplay\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a220cc398a638aa2eab462c5dc09595\",\"labels\":[],\"modified_at\":1768937324.483172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports Ethernet\",\"platform\":\"roku\",\"translation_key\":\"supports_ethernet\",\"unique_id\":\"YJ002K604601_supports_ethernet\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6165850622ccf0780a12cb93f99fbe6b\",\"labels\":[],\"modified_at\":1761690295.876894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports find remote\",\"platform\":\"roku\",\"translation_key\":\"supports_find_remote\",\"unique_id\":\"YJ002K604601_supports_find_remote\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d7e470b926897e7baf7da15c69c1a5f\",\"labels\":[],\"modified_at\":1772591841.640657,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3921d505142fc5a908c983dbda85e39\",\"labels\":[],\"modified_at\":1761690295.882215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.living_room_tv_application\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be671b5fc39f53da44534bf656ccfcbc\",\"labels\":[],\"modified_at\":1774121824.587607,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Application\",\"platform\":\"roku\",\"translation_key\":\"application\",\"unique_id\":\"YJ002K604601_application\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b34030d711baecbca2bd7babbb9523f4\",\"labels\":[],\"modified_at\":1761690295.884134,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app\",\"platform\":\"roku\",\"translation_key\":\"active_app\",\"unique_id\":\"YJ002K604601_active_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6a7cd59919db06d42748a1849f35440\",\"labels\":[],\"modified_at\":1761690295.885026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app ID\",\"platform\":\"roku\",\"translation_key\":\"active_app_id\",\"unique_id\":\"YJ002K604601_active_app_id\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1762452953.450373,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"353b8458de409f30f3da7f59dd2279ae\",\"labels\":[],\"modified_at\":1762452953.451146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room TV - Off - Idle\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1762452936157\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.79738,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4bc33ac1bdf05a5a4ad0efe2cf243cd\",\"labels\":[],\"modified_at\":1766477279.797958,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.80.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.798349,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a14d2d0b96e1d99308488b35cfe32d6b\",\"labels\":[],\"modified_at\":1766477279.798784,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.80.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799203,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"acd5e1535a0b58f433b138c0b6faf421\",\"labels\":[],\"modified_at\":1766477279.799355,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799642,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"378e7086f5619183bd617e93465aa802\",\"labels\":[],\"modified_at\":1766477279.799778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800052,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d59fdf37e7ce07ae033e5e4a7871a74\",\"labels\":[],\"modified_at\":1766477279.80019,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800465,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"042c7a9cd428a17c8fedf3be0152a3be\",\"labels\":[],\"modified_at\":1766477279.800606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800883,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f68eb2507739535d9913773ab943d15f\",\"labels\":[],\"modified_at\":1766477279.801023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.80.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.80138,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3369734c52812a3a3ee4bbe2560f1ad\",\"labels\":[],\"modified_at\":1766477279.801562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.80.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.801858,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd7ddf313a54743de6d1f72a3d7bd312\",\"labels\":[],\"modified_at\":1768937324.809754,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.80.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.802282,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62306b73556be6a658a2970154edf24b\",\"labels\":[],\"modified_at\":1766477279.803236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.80.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.228835,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce76270335388122109676234797a801\",\"labels\":[],\"modified_at\":1766477296.229428,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.229892,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21621c315a84182b4f410308413f7b21\",\"labels\":[],\"modified_at\":1768937324.853995,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.23085,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75446919eaeef4477c5765e479030bd7\",\"labels\":[],\"modified_at\":1768937324.85453,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.231761,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2adf7a33a0ac224ec14b279aa8347cdf\",\"labels\":[],\"modified_at\":1766477296.232285,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.232869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"352a62902d4625293870ccad5a0e8ce7\",\"labels\":[],\"modified_at\":1768937324.855306,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.233759,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"959edfed6f06b47aa8cfffad60cb3b27\",\"labels\":[],\"modified_at\":1768937324.855699,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.234957,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e94b9747cdafaf5de7e0065d9bea1787\",\"labels\":[],\"modified_at\":1766477296.235117,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.235534,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d032c73c25b557c150eb9a1554ab27a8\",\"labels\":[],\"modified_at\":1766477296.235674,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236042,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b282d98fd058c4a3fc14cd5cab2ed0d\",\"labels\":[],\"modified_at\":1769099101.051939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_energy_kwh_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03aba463e32ff9cd002a085bc096c2a7\",\"labels\":[],\"modified_at\":1766477296.236667,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy (kWh) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_current_a_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44ed91985e8e2345c6d85aa23ca1ebcc\",\"labels\":[],\"modified_at\":1769099101.052448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current (A) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-35\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237544,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_voltage_v_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8c9afc6dd91370538afa4d09be302d2\",\"labels\":[],\"modified_at\":1769099101.052763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage (V) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238041,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_overload_protection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24702ae99561a23fa90891c83b007f12\",\"labels\":[],\"modified_at\":1766477296.238175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Overload Protection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238538,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a643dcd0c18ea735dc117372cbd9c4\",\"labels\":[],\"modified_at\":1766477296.238676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9278543cbfa4150cf96b9825a399dce\",\"labels\":[],\"modified_at\":1766477296.239179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a20c9254c9e99e639df912c45870f78\",\"labels\":[],\"modified_at\":1766477296.239678,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24004,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9f5c165e12ba64506d0eaf24e58fd09\",\"labels\":[],\"modified_at\":1766477296.240905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241404,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a8223d52922cf9b4adff20414916eee\",\"labels\":[],\"modified_at\":1766477296.241556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241944,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39ecfec962692eccc82d3081e479f8b4\",\"labels\":[],\"modified_at\":1766477296.242085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242445,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"91b749f9293951042533d2401e898b94\",\"labels\":[],\"modified_at\":1766477296.24258,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242942,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e391e07c8a08dd2a25df2be663bcfbac\",\"labels\":[],\"modified_at\":1766477296.243077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243424,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3c85d30cdac3aafebede8607197ce65\",\"labels\":[],\"modified_at\":1766477296.243556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243913,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dacd0709ac8eb1359a94e7710f78784\",\"labels\":[],\"modified_at\":1766477296.244051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244403,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b054386465dab5e8e5b9b8d7c18d91df\",\"labels\":[],\"modified_at\":1766477296.244534,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244894,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f902120e1bceb78e61c17590fe38269\",\"labels\":[],\"modified_at\":1766477296.245029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245392,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fad06e4d9f3d509906b6338e4b79a65\",\"labels\":[],\"modified_at\":1766477296.245527,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245884,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68d921eab0fa608d5f6c2dadd993dccd\",\"labels\":[],\"modified_at\":1766477296.246023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.246994,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b090c9d937ff7066c525cc564347a594\",\"labels\":[],\"modified_at\":1766477296.247152,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24754,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2b9a5eb299f5a41546cecb74eb4db\",\"labels\":[],\"modified_at\":1766477296.24768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248038,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ead661391dda43c8a9cff95e08d325f9\",\"labels\":[],\"modified_at\":1766477296.248173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f79cf7061a486a5938ef84ca4f41ca3f\",\"labels\":[],\"modified_at\":1766477296.248675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da59ba2e721740da07c9e1fce8eeb446\",\"labels\":[],\"modified_at\":1766477296.249177,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b311235ba306b94712f179b47a13304\",\"labels\":[],\"modified_at\":1766477296.24968,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.250039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eed8930162c1f50fb3efa88ed014a90\",\"labels\":[],\"modified_at\":1766477296.250175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25053,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"943fe31b185242de7233f509c6714ad4\",\"labels\":[],\"modified_at\":1766477296.250661,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251018,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e41a3fe1c2e739c5c0b08c01ba04964\",\"labels\":[],\"modified_at\":1766477296.251151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.2515,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f339b2e6b6df648e6ca92d60bf56623\",\"labels\":[],\"modified_at\":1766477296.251636,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251984,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19bb03a5b1ae0e40e13d9da02ae88aa0\",\"labels\":[],\"modified_at\":1766477296.253395,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.253836,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97b7a04a80a5cdf61867e56d866b6dce\",\"labels\":[],\"modified_at\":1766477296.253989,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.254358,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f60a5f4e92244effdf0936a193c2e55\",\"labels\":[],\"modified_at\":1766477296.2545,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25486,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eb52f03fe8467f94f87c777a7a350c0\",\"labels\":[],\"modified_at\":1766477296.254997,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255351,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_usb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cc335594f81afccba401289b6b502d8\",\"labels\":[],\"modified_at\":1768937324.860358,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (USB)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-34\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255867,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cc3f8a76c39d2050f2ca01c684f502d\",\"labels\":[],\"modified_at\":1766477296.256325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Over-load status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.256729,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45740620b4805cce189bb1ae036fcd9b\",\"labels\":[],\"modified_at\":1766477296.257184,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Over-load detected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.257687,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04246652716b229857e01efec2e38e67\",\"labels\":[],\"modified_at\":1766477296.257835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25825,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63039bbbd456696f096140397e346135\",\"labels\":[],\"modified_at\":1766477296.258392,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.259279,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63ad70871975f5f5d34c36a3bc238c67\",\"labels\":[],\"modified_at\":1766477296.259764,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.260212,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c3075512fe6a8b1b0fcb12082a49d76\",\"labels\":[],\"modified_at\":1768937324.86197,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.261175,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"568c6e02c40f5c3a555cdd0db313a4de\",\"labels\":[],\"modified_at\":1768937324.862516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262093,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b395a875cae5455761476ff388705320\",\"labels\":[],\"modified_at\":1768937324.862985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262992,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f06ff5e731abcb200fdf4ce8c56d7a8b\",\"labels\":[],\"modified_at\":1768937324.863363,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.263832,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37ae354122a69445674d2c8a74c662e3\",\"labels\":[],\"modified_at\":1766477296.264255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.265295,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2531dc116e28190045ae5672d09ebe3\",\"labels\":[],\"modified_at\":1768937324.866356,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.266195,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6f6c69f0ddef207889934c80289ca86\",\"labels\":[],\"modified_at\":1766477296.26662,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267047,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc336050e207d78bd1ba0f3bba28051a\",\"labels\":[],\"modified_at\":1768937324.867025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267979,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe9d9f695586d322624d93d749bbcc61\",\"labels\":[],\"modified_at\":1768937324.867472,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.26889,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"01988ea7826bbd8f6ed128469da20098\",\"labels\":[],\"modified_at\":1766477296.269415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.270015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf8ef299aa298fd3248a48bac27ac029\",\"labels\":[],\"modified_at\":1768937324.868225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.271554,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c97f990f08dbf8bfb2e36f79dcf8ce3f\",\"labels\":[],\"modified_at\":1768937324.868598,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.272394,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a2d1328c988166cd19fcc662a187aa9\",\"labels\":[],\"modified_at\":1766477296.272806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-4-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.273243,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50a06ac0b5cc38dd737642d4c89a7b51\",\"labels\":[],\"modified_at\":1768937324.869253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.274164,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d375f897f48b0c3979382b79f793ce7c\",\"labels\":[],\"modified_at\":1768937324.869703,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.275064,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66472225aa97981e6655a6197be3821e\",\"labels\":[],\"modified_at\":1766477296.275574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.276183,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaaeda5a465e1272738851dfaca0bb89\",\"labels\":[],\"modified_at\":1768937324.870776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.278333,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0e4675689b5404d93f71ebfc1d7379f\",\"labels\":[],\"modified_at\":1768937324.871166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.279172,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7093c72b49a8f2d940f6b823759f028\",\"labels\":[],\"modified_at\":1766477296.279589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-5-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.280015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da6ce7565775e6386bc5449a208859de\",\"labels\":[],\"modified_at\":1768937324.871832,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.28095,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0ebf85251bc2805df5a1617f98725cf\",\"labels\":[],\"modified_at\":1768937324.872271,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.281873,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416e2d0423d1f41bd4b56b6bd81b964f\",\"labels\":[],\"modified_at\":1766477296.282883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.283571,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee94a4c4b5043f4b3107f935049eba10\",\"labels\":[],\"modified_at\":1768937324.873009,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.284479,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1f1ce22f894ebe0933234d04a843de8\",\"labels\":[],\"modified_at\":1768937324.873387,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.285287,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c0cacfb741929580682337f02a692ff3\",\"labels\":[],\"modified_at\":1766477296.285701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-6-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286074,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"537517b1a5530389a93a15939111bc6d\",\"labels\":[],\"modified_at\":1768937324.873956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-6-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2db9999532c1e7a9ed05488f029cf7f\",\"labels\":[],\"modified_at\":1766477296.287284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-7-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.287657,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e343a71bdbc71812276c9427c7be85b\",\"labels\":[],\"modified_at\":1768937324.874499,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-7-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.289939,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa5a18f80f779019ca3f23d010909f4d\",\"labels\":[],\"modified_at\":1766477296.290448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477441.695525,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd09b25c9105ef44432c19688ac32e1\",\"labels\":[],\"modified_at\":1768937324.865485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477542.697583,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"faa614fa04d30ee895cd1ff09546164d\",\"labels\":[],\"modified_at\":1768937324.865972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":1768937323.145127,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17e0ae17cdd955a63df94aadb4a81bca\",\"labels\":[],\"modified_at\":1768937323.145187,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46291,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_avg_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7600251cc55099e6789858d8dd0c6b54\",\"labels\":[],\"modified_at\":1768937324.462981,\"name\":null,\"options\":{},\"original_name\":\"Avg. signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.463148,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99723fdd7485a7d6bb927d5bc468a2a9\",\"labels\":[],\"modified_at\":1768937324.463195,\"name\":null,\"options\":{},\"original_name\":\"Signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46361,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.zwave_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b8620184feb8e076a3dcbc4862fa35d\",\"labels\":[],\"modified_at\":1768937352.32353,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.686858,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd5c271fa69e1cb2e08837126e390603\",\"labels\":[],\"modified_at\":1768957339.60269,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.690717,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"06894aa51ff0e9d62478d9bfb5d6b7d1\",\"labels\":[],\"modified_at\":1769108140.491853,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.691308,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632aed480ee30ce82ac8ba8afd55e91f\",\"labels\":[],\"modified_at\":1769108140.492738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.71521,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eab179038325dced95da0495d530c83\",\"labels\":[],\"modified_at\":1768937352.324438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.715894,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69ac603ee53e2fa3e583a9e7e61979e5\",\"labels\":[],\"modified_at\":1768937352.324557,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.776916,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"944905c91677260a69d3c4fb169af92f\",\"labels\":[],\"modified_at\":1768937352.324779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.785768,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"141eddff457c88321aa49743e5165cb7\",\"labels\":[],\"modified_at\":1775491285.628223,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1768937325.683515,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"803942d09c418a98aae2af768bde2657\",\"labels\":[],\"modified_at\":1768974704.217654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":1768937332.413279,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_preset_position\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79c985bf4b12ca603756fd8c2f4d00fe\",\"labels\":[],\"modified_at\":1768937357.407137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Preset Position\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_preset_position\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.683464,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18d7f0c9095f29d981bfa5129a5c8719\",\"labels\":[],\"modified_at\":1768937355.683876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684339,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23798e61c080b6b8bb9292d41b753ebd\",\"labels\":[],\"modified_at\":1768937355.684708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684947,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0506bfac83008cc2d1ce31972a6f2785\",\"labels\":[],\"modified_at\":1768937355.685312,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.685556,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4b56bbe1e3393cda2a02b5958aa3772\",\"labels\":[],\"modified_at\":1768937355.685892,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.68613,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f334207a3706ffc4bdea3fcc21b27f0\",\"labels\":[],\"modified_at\":1768937355.68646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f91be395aa637b853783d80af21df6ea\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88f797601578a44b7f18fe2d310f5c8f\",\"labels\":[],\"modified_at\":1768937820.170123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:26:9F-light-front_porch_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.729653,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_external_switch_multiple_click_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"911f689ea83e4f559f934622cbfaf55e\",\"labels\":[],\"modified_at\":1769099083.729723,\"name\":null,\"options\":{},\"original_name\":\"External Switch: Multiple Click Detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.743385,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34c37d47d0530bffe97567dab6f0a423\",\"labels\":[],\"modified_at\":1769099083.743449,\"name\":null,\"options\":{},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.058963,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c34673f93ef0696b560de0710c886316\",\"labels\":[],\"modified_at\":1769326461.249458,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061192,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34a76e058ab3f8062606e039bb6f7d75\",\"labels\":[],\"modified_at\":1769326461.349576,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061905,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"327d27c3b2d11d6b5ed0a7c67feae89c\",\"labels\":[],\"modified_at\":1769326461.949935,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [A] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.476924,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.overseerr_last_media_event\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1241c0fd94296f38dd4beef033a35d11\",\"labels\":[],\"modified_at\":1769188672.47763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last media event\",\"platform\":\"overseerr\",\"translation_key\":\"last_media_event\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-media\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.478287,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bbb89d6744aa52101d6b2d634dd3a3d2\",\"labels\":[],\"modified_at\":1769188672.478886,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total requests\",\"platform\":\"overseerr\",\"translation_key\":\"total_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.479308,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_movie_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25b77947e4e5901105419056fabf10a0\",\"labels\":[],\"modified_at\":1769188672.479959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Movie requests\",\"platform\":\"overseerr\",\"translation_key\":\"movie_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-movie_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.480365,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_tv_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d94898a7d080d06b0f08ca6451625f7\",\"labels\":[],\"modified_at\":1769188672.480955,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TV requests\",\"platform\":\"overseerr\",\"translation_key\":\"tv_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-tv_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.481447,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_pending_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e190d80632de506998d2cef0552efc3\",\"labels\":[],\"modified_at\":1769188672.482418,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pending requests\",\"platform\":\"overseerr\",\"translation_key\":\"pending_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-pending_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.482777,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_declined_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fc5b3ab324f29fd3454426a63274bc4\",\"labels\":[],\"modified_at\":1769188672.483266,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Declined requests\",\"platform\":\"overseerr\",\"translation_key\":\"declined_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-declined_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.483584,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_processing_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6304a3cd9a5400d32e011d1a277523a3\",\"labels\":[],\"modified_at\":1769188672.484082,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Processing requests\",\"platform\":\"overseerr\",\"translation_key\":\"processing_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-processing_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.484437,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_available_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f9e7f08d9c31ca040fa2066e660551\",\"labels\":[],\"modified_at\":1769188672.484959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Available requests\",\"platform\":\"overseerr\",\"translation_key\":\"available_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-available_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.485331,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00735f8a4a910a0d1254f132ba93de9a\",\"labels\":[],\"modified_at\":1769188672.485849,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total issues\",\"platform\":\"overseerr\",\"translation_key\":\"total_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.486201,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_open_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8ccc6de99805f93f168264e67c712ca\",\"labels\":[],\"modified_at\":1769188672.486713,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open issues\",\"platform\":\"overseerr\",\"translation_key\":\"open_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-open_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487069,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_closed_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc5f4929fb61b84f1593ac32c2e1396e\",\"labels\":[],\"modified_at\":1769188672.487587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed issues\",\"platform\":\"overseerr\",\"translation_key\":\"closed_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-closed_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487953,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_video_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c23a9db4525e8ccd6821507bbce056d\",\"labels\":[],\"modified_at\":1769188672.488474,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Video issues\",\"platform\":\"overseerr\",\"translation_key\":\"video_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-video_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.488825,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_audio_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1677624b1402c112c6e4345588afb313\",\"labels\":[],\"modified_at\":1769188672.489362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Audio issues\",\"platform\":\"overseerr\",\"translation_key\":\"audio_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-audio_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.489714,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c90b1860175195d2a23fccb791504ca0\",\"labels\":[],\"modified_at\":1769188672.490236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Subtitle issues\",\"platform\":\"overseerr\",\"translation_key\":\"subtitle_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-subtitle_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912183.185244,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34a32d14426d3e169ae057627439d98d\",\"labels\":[],\"modified_at\":1771912183.186014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - Off - Timeout\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912170361\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912395.891354,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"773273d151b8c8d49b92ee8627d586d2\",\"labels\":[],\"modified_at\":1771912395.892381,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - On - Door Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912391140\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.625986,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b07a6abab79d073c5be007066b3a3b6d\",\"labels\":[],\"modified_at\":1774116424.626947,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bed Occupied Stable\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bed_occupied_stable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.627238,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6fda5463b7f7691786174b39cbc043\",\"labels\":[],\"modified_at\":1774116424.627924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bedroom Motion Confirmed\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bedroom_motion_confirmed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.957554,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3e5033899feeede780f2808f7b73e24\",\"labels\":[],\"modified_at\":1774116432.958181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.958454,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_nap_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b706a2024115adbf2d36028c6713abcf\",\"labels\":[],\"modified_at\":1774116432.958992,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Nap Detection\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.14926,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4563dd8ceda742b1447360a08afd99e7\",\"labels\":[],\"modified_at\":1774138030.911495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149593,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2d62fcd0d6717798722ba043bce9d40\",\"labels\":[],\"modified_at\":1774138030.911857,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149824,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"806b34a0f2af42d04d3883b58f48a6ef\",\"labels\":[],\"modified_at\":1774138030.912047,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"58122b4c7d81745a9de83d7435a88559\",\"labels\":[],\"modified_at\":1774138030.912215,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150246,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46650fb68d9b63404a046c228467c62c\",\"labels\":[],\"modified_at\":1774138030.912379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150448,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8b8c08c11a816b5e91c5d45b883066e\",\"labels\":[],\"modified_at\":1774138030.912537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150653,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a94089b7222280376a7dad9ef1bf2a92\",\"labels\":[],\"modified_at\":1774138030.912696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152103,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa674acc6fb02b01c66b3433930e2d01\",\"labels\":[],\"modified_at\":1774138030.91286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152289,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5a7edad01fc39a518660614518bcdf2\",\"labels\":[],\"modified_at\":1774138030.913011,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.154985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d16f049693b501d63ea5473129d3198e\",\"labels\":[],\"modified_at\":1774138030.9132,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1pct\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.155394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bffe32a5b8efb97c7c5e604c2bc2abc4\",\"labels\":[],\"modified_at\":1774138030.913358,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_halloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.156076,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54146ec2dbaad8902fd311d6c18d996b\",\"labels\":[],\"modified_at\":1774138030.913521,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.15684,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d740742a1b722377a0897440fd402bbe\",\"labels\":[],\"modified_at\":1774138030.913681,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a62870971ca19efe980ffc144f1a1899\",\"labels\":[],\"modified_at\":1774138030.913831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157231,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"949278d55db1a4d8246fa35f91e617f2\",\"labels\":[],\"modified_at\":1774138030.913979,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Day\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157424,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"276ef5e2cd3663a6236c81c36f446fc6\",\"labels\":[],\"modified_at\":1774138030.914128,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Night\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_night\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157587,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a84f593ccf99ee4dedf54fd732754e2c\",\"labels\":[],\"modified_at\":1774138030.914274,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774138612.949732,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mushroom_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d59320285d90702b2c855475ee95639e\",\"labels\":[],\"modified_at\":1774138612.950796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mushroom update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774139555.128573,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mushroom_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c33c28bb04498effba938ec97b5b805\",\"labels\":[],\"modified_at\":1774139555.128638,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140343.854706,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mini_graph_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56350d9930148e8fd5d61e880540724\",\"labels\":[],\"modified_at\":1774140343.855222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"mini-graph-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140477.398217,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mini_graph_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d58d70df50c79d3213bbf8236a5fe6ce\",\"labels\":[],\"modified_at\":1774140477.398278,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.352598,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681707778436ce05e7199951846ef14d\",\"labels\":[],\"modified_at\":1775489223.761484,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.421699,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c98623c4f1d03a6794ba466def6392\",\"labels\":[],\"modified_at\":1775489223.761621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.690469,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30c8f6f016a9a07d3072df92bf9c837f\",\"labels\":[],\"modified_at\":1775489223.761751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.769537,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fec7537b3f51428841c6f12821476333\",\"labels\":[],\"modified_at\":1775489223.761895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.155983,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4f68f200753e31f0a21132e2ff02e3c\",\"labels\":[],\"modified_at\":1775489223.762023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.222085,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf10bec5854978fe997fc5eb6d1db426\",\"labels\":[],\"modified_at\":1775489223.76215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354869.951525,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dbb9d05d05fcd2ca67c6fd8472bab9eb\",\"labels\":[],\"modified_at\":1775489223.762284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354870.020436,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd61a8fe509fc46135e34167d34e5b3\",\"labels\":[],\"modified_at\":1775489223.762414,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355638.331143,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5144d05444588d3e7a500ac509fae21e\",\"labels\":[],\"modified_at\":1775489223.762539,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355657.972878,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a3162680c956e4ed166e74ca65dbf31\",\"labels\":[],\"modified_at\":1775489223.762673,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356334.664723,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73fe68c3f5230ab53809f13454c7f7ce\",\"labels\":[],\"modified_at\":1775489223.762806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.604859,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f0456298a746305de2207d41a214c7\",\"labels\":[],\"modified_at\":1775489223.76293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.686933,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9e93e6a89fec209b2154e4b4aa5c0\",\"labels\":[],\"modified_at\":1775489223.763054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.039186,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3725b439d15a4d1e0e0b8ef16c5bcec8\",\"labels\":[],\"modified_at\":1775489223.763189,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.114222,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09f3eb747f5823fe21b96763355a9fd3\",\"labels\":[],\"modified_at\":1775489223.763316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.671129,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4cb866d53da98bac0fdd3d9a50958c1\",\"labels\":[],\"modified_at\":1775489223.763449,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.73551,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bdb1093192bc6e83a24ef3ef98ef251a\",\"labels\":[],\"modified_at\":1775489223.763579,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.683881,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"17948118ea0453a21060b9ac3c3bd35f\",\"labels\":[],\"modified_at\":1775489223.763821,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.752892,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2bf26cdc24ddb324070b32bf95efb\",\"labels\":[],\"modified_at\":1775489223.763949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.611255,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2de2190bdb6019e1ebaf8f9f6db56d92\",\"labels\":[],\"modified_at\":1775489269.20277,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reset total energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_reset_total_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.720667,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2b188397cf5cf91ade7924d39597fc\",\"labels\":[],\"modified_at\":1775489254.288937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn off\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_off_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.725676,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ba3493529496e8be49faa472f4272\",\"labels\":[],\"modified_at\":1775489254.289157,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn on\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_on_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.730362,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817a29630544a8935b5b5208cfad3a6a\",\"labels\":[],\"modified_at\":1775491843.189477,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power rise threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_rise_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.735072,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb512790cefd801f44d3170bcbe18fb3\",\"labels\":[],\"modified_at\":1775491843.201122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power drop threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_drop_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.782524,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f1e618efc7019719ba1c008909ae61b\",\"labels\":[],\"modified_at\":1775489269.203071,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power-on behavior\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_on_behavior_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.808614,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a65df0e6618f2527a49b04cb44ddc8d\",\"labels\":[],\"modified_at\":1775586383.664326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.810039,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6da142d344b25e493d4e7150811898a9\",\"labels\":[],\"modified_at\":1775489269.20327,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":1},\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.81576,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6fd914af279d2e8f766c6a3ff2de023\",\"labels\":[],\"modified_at\":1775489269.203513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_humidity_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.817887,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_pressure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd3458814c78abb0afee054f005cdd78\",\"labels\":[],\"modified_at\":1775489308.697985,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Atmospheric pressure\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_pressure_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.819624,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b51cd3241371b7561f77450e43672efb\",\"labels\":[],\"modified_at\":1775492079.877324,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.821311,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89221a788e97735b88a9981fc28d3fbe\",\"labels\":[],\"modified_at\":1775489227.821354,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.822693,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_power\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0950382cdf5c1ae4e598bc5443a02839\",\"labels\":[],\"modified_at\":1775520590.696024,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.825626,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d9bb9d1c71c5dd2c20a45dc1b6dea2c\",\"labels\":[],\"modified_at\":1775491830.269932,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.828464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07990395421c102974cefa27b6a9b997\",\"labels\":[],\"modified_at\":1775489254.291151,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Frequency\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_ac_frequency_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.830508,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_power_factor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7fffd049106dfd91742c2374ec66011a\",\"labels\":[],\"modified_at\":1775489227.830555,\"name\":null,\"options\":{},\"original_name\":\"Power factor\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_factor_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.832056,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b1f2d89a6fa56eaa6ebd7a325233c5b\",\"labels\":[],\"modified_at\":1775520597.935816,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_current_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.833866,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1dec75cbe9a7ba93bf0f0846e5fe5fac\",\"labels\":[],\"modified_at\":1775525154.098723,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.836162,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbdff817ee00883d0aa353adead094b5\",\"labels\":[],\"modified_at\":1775489227.83621,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.84296,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1de84ba2dcb17a277ea97a987f467d07\",\"labels\":[],\"modified_at\":1775489269.203705,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.844464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3be8da09eeb8e0acc452fa4a9ba78a5\",\"labels\":[],\"modified_at\":1775489269.203885,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Metering only mode\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_metering_only_mode_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.850014,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcee0811885c8854563443ba4dced1ab\",\"labels\":[],\"modified_at\":1775489306.418611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1775549231.594472,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_vibration_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9db7f91c5b54278bf3f7a80f5df91bc\",\"labels\":[],\"modified_at\":1775549231.594723,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.825542,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5077add4bf45e912a2ef646bae511f14\",\"labels\":[],\"modified_at\":1775678362.82721,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.827502,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f3761580a85a1bd3953bddb2c989d35\",\"labels\":[],\"modified_at\":1775678362.828154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000004\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.828418,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be7a1d87aaf721c4188bf8bec50329f4\",\"labels\":[],\"modified_at\":1775678362.828943,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000005\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.37481,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167b598bb2635889c041d73857d27990\",\"labels\":[],\"modified_at\":1775868913.129506,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.376546,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa1b588575b52fe468f5b0b654084236\",\"labels\":[],\"modified_at\":1775868913.130469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.613679,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00cfdcc6fd718b086b498d183ec763fe\",\"labels\":[],\"modified_at\":1775868913.131303,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.615726,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb552019b26731f2c51b5b208e46821\",\"labels\":[],\"modified_at\":1775875660.872463,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.618016,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a715ee29ebb812ad53ff3962471973c\",\"labels\":[],\"modified_at\":1775868886.618058,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.61896,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fed74cd33f82ba6c78036a9cebbf06\",\"labels\":[],\"modified_at\":1775868913.133053,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62005,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6aa5184211eb3c2d8ccd38a3b494e66f\",\"labels\":[],\"modified_at\":1775872197.350263,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62157,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62526651242478435d1e767d473d0b01\",\"labels\":[],\"modified_at\":1775868886.621614,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.622608,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c40a87b4581f5eae3d7a6360360a4fc\",\"labels\":[],\"modified_at\":1775868913.13455,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.624775,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d40ea24dbd15c204e20d4041d24cd2d0\",\"labels\":[],\"modified_at\":1775868886.624821,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.640178,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_fed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"339abf0c4de7f4ba8ac9610f75299234\",\"labels\":[],\"modified_at\":1775868913.135283,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.641542,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.tracker_one\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4dde6447448035238f372ce06801427\",\"labels\":[],\"modified_at\":1775868913.136075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.643148,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_sink_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2195ff58fb96b2adfde3932a8dba49a5\",\"labels\":[],\"modified_at\":1775868913.136902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775869869.03551,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apexcharts_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59310574b32edd03da9449e2fc1b7504\",\"labels\":[],\"modified_at\":1775869869.036084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"apexcharts-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870068.253425,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.track_tracker_one_log_press\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"251e799623f0dc9e26c3a81c1bcc0e30\",\"labels\":[],\"modified_at\":1775870068.254211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TRACK - Tracker One - Log Press\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775869806572\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870401.81351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.fish_fed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86abac3ce035a999bd58f59520b2f4f0\",\"labels\":[],\"modified_at\":1775870444.348953,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Fish Fed\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"fish_fed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870404.195975,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.tracker_one_presses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"563381785d898580a4ec98b5d47f8241\",\"labels\":[],\"modified_at\":1775870428.194489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tracker One Presses\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"tracker_one_presses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775870404.57426,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apexcharts_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3c39d6ccf8398fd21217517712467e\",\"labels\":[],\"modified_at\":1775870404.574316,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485157,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15bd4e2db4610819856a0a96d8fb46ac\",\"labels\":[],\"modified_at\":1775870556.016822,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Fish Fed - Latch On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485897,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_fish_fed_reset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb491690a44f98c51901d58d37cdd2d8\",\"labels\":[],\"modified_at\":1775890800.094108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Fish Fed - Reset\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211862\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"config_subentry_id\":null,\"created_at\":1775959350.075729,\"device_id\":\"bd61b07f6c18d67ffd4150ebf11743fa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18f6e46b7275812f380f65c45ab68432\",\"labels\":[],\"modified_at\":1775959350.076865,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Car in Garage\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"44:17:93:1B:60:94-binary_sensor-car_in_garage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067514.535912,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52f365b0d3680334baa51a6a1268693d\",\"labels\":[],\"modified_at\":1776067514.537586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067515.336196,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ba17144d4b28c18b1610c9e6524f080\",\"labels\":[],\"modified_at\":1776067515.337787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"}]}", + "offset_ms": 54 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json b/cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json new file mode 100644 index 00000000..facafb8b --- /dev/null +++ b/cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json @@ -0,0 +1,133 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:00.431855+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"name\": \"smoke_registry_remove_test_async\", \"id\": 2, \"type\": \"input_boolean/create\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"id\":\"smoke_registry_remove_test_async_11\",\"name\":\"smoke_registry_remove_test_async\"}}", + "offset_ms": 23 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"input_boolean.smoke_registry_remove_test_async\", \"id\": 3, \"type\": \"config/entity_registry/remove\"}", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 30 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 4, \"type\": \"config/entity_registry/list\"}", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.updater\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48544df94cdd8858d51e4825d887b87f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Updater\",\"platform\":\"updater\",\"translation_key\":null,\"unique_id\":\"updater\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.adam\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af3cc6ab1d311d80445a2911bab8a736\",\"labels\":[],\"modified_at\":1774112250.228571,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"collection\":{\"hash\":\"8ea23eafe65450db9d5d7917f1e1808a\"}},\"original_name\":\"Adam\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"adam\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"52fc2b39306eecd553aa2d1275b23f13\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.logan_s_landing\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc17bdf0b19aac327302b5ed8e37842\",\"labels\":[],\"modified_at\":1776067736.245874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Logan's Landing\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"home\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.remote_ui\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"662f53bf96ef56470f84c30f01b8db1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Remote UI\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-remote-ui-connectivity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.jenni\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"867ce61cfc7ab736b355b85c14411b09\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"jenni\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1566df05da78124d095f06fd3478d69d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Front Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015141627\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ff73de8af671e02bdb687bc221a551\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Back Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015238936\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stair_chandelier\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73856bdb53725526e8e63e078c9ebebe\",\"labels\":[],\"modified_at\":1775870416.949593,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.stair_chandelier\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a4c91300d5c0eebf9260967a60a018\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_routine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70c959e47b0e9e5e4b826c5900cad954\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Routine\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629617283234\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9bd88b769429a941a9478debe90a70a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785091384\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.wake_up_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f995f568522466041f6955cdbcc536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Wake Up Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"wake_up_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c348fbb7c91293d0d89150a1e883d05c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785279492\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f204a6e1edd3b3c13d9dc6e48613dd20\",\"labels\":[],\"modified_at\":1741730439.823744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Cat Bathroom Door Closed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950849970\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b4711ee4a97eb0c7c20e508d9b5c2afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950974058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2cc79375b1f971d1a5e8e393733e821\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631951014424\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8e2a310dc06849858f204cad33666aa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952292117\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37007cf65958ceae04ddd495d3be6771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952347170\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6221addad0ec6c1d678b405921c56c42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952450891\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_lamps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ead5a9e4369bbe20f36cdc5cdbb169bf\",\"labels\":[],\"modified_at\":1775870416.945327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.living_room_lamps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05c094b96331a2e72fa623591306c435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb5b70bdb5e625b89f9c05075b86919\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Occupancy\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-occupancy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d2c826662df9e49d3b4c59696b2198d\",\"labels\":[],\"modified_at\":1728721845.856414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":\"ecobee\",\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3bc3484981e75dcef88140475f41ad\",\"labels\":[],\"modified_at\":1768937324.405202,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"289469882a9d4c390942a2c28d21e837\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73aca607e21724f9c52d8d593ec4d76a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7ebb8f03146939f38815de610add87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895391373\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3381c206b02ec2b698ffba1019a5e8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Kids Room Motion White\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895431041\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_off_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54fa204f71e05ab0e55d9f4409aa6ac2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off Motion\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895565944\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":\"user\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_motion_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b122a6403b1e6102b774c5f91d37a109\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Door Motion Alarm\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b041853caeba17cf928939638155c248\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Human\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_human\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0247c03858e81ac316c24dbea6f0bd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Button Pressed\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_button_pressed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_invite\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b490d78c9b4cbaafadf0c893b801a05c\",\"labels\":[],\"modified_at\":1730406829.425846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Invite\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_invite\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_door_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bcca1ae5fefcacfd0ef6dcb4d8b7b11d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Door Status\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_door_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0f14d3b72d1f98e8ed47fbecd5b419\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Call No Answered\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_call_no_answered\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_infrared\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e21d212136e8f6167e23615634933ebf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Infrared\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_infrared\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_main\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dc52219ced77a446fe360690a4cc784a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Main\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Main\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28587a1f49ec36f599f8f42020999c28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d86893f808d91f26b6859f432eac7d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Red Alert\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"red_alert\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0c880ea25f8f95f5f4149b3b3dbde52a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Illuminate\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c375ec26f63adaba2a3600d0884e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Show Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"show_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212fbb3cd5dfca24ca5dfee46fa297da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Kids Room\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_kids_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"abf611beb1cf6771f05cea144108c5a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.kid_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0296bfaeadf38a3c2c643aa0fa317ffc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kid Dance Party\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"kid_dance_party\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ad4a44c058301709a2c85029eb3a928\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633315499530\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72c0da4ff910be4448a82584819265d5\",\"labels\":[],\"modified_at\":1758172744.684397,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633316964978\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33ec4ea4e5c89927fda1517f3c16fbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317039614\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30cd2b7857a2400001b3c24d6828ffcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317101093\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_kids_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ac91a924370b63b79e242b921321b50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Kids Dance Party\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317161375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb22ada93ef655ba18e9b9e9168627e4\",\"labels\":[],\"modified_at\":1758172743.683117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317518311\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf072fca0aaa7e3cb0d7edf9000ec1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633318458266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39ea7e6d5efb9cb8e90240ca9498b48d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633321371244\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_living_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a338e143092fc0aac6088733d8f992\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Living Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633323598789\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64928aa007ddb8ca5083b35e7f8ccd60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Red Alert\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633329926454\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1412ca1484c26fc0f1b15b903c39c979\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b549da1714cb046914a04ae5f9df208\",\"labels\":[],\"modified_at\":1768937324.521669,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:0F:FC-light-front_porch_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f1a54ce97cc4d298e3ebede755c053\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f32cf07f4683f55bcab89798695a46\",\"labels\":[],\"modified_at\":1768937324.493498,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:23:60-light-front_porch_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4473c2dbc00d6320702cda169c7a91c8\",\"labels\":[],\"modified_at\":1775870416.945947,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Porch Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.front_porch_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c474f9af1ecc77455a800c66b4682d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cf5e19c579425ff2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb03e342c2822bb15c887a38425c17d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1637480683670\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea302a8d7dd8f0aad892f4ab3a0129ed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - On - Dusk\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606004641\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b408a1694e51a832ebd0110266ae9b95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606124541\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_restore\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67d608cf2a32ab837f3f638603121f6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Restore\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606172266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c47fb544830a808c164453e004ccaa80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Off - After Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606436231\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2911270340373d6692ced07821d91a\",\"labels\":[],\"modified_at\":1775870416.946362,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.master_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_ceiling_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1a9fe62dd87298be3e20bf76dc5ede2\",\"labels\":[],\"modified_at\":1775870416.947281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_ceiling_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f184a5dcee5c41d074c34bcf6f0788a\",\"labels\":[],\"modified_at\":1775870416.947891,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Office Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_master\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23f3071c3353df3f910d738281ccebf0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Master\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_master\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec4945d179a66d50aeda49d07fd8d1d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights Off\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edc8c107b4d7bdde4ea4ea619fbb029a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639120832058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"712ed0c3c619a6f18ead981897ff48cf\",\"labels\":[],\"modified_at\":1745898587.722042,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639715090770\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d82e452611e452407b78b0ef3b5ca41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.jenni_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a3c8889231a5bf5d75dea1ab9619b42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"jenni_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_close_garage_door_leave\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22831cf5534857f869f81216a62334ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Close Garage Door - Leave\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639718580516\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"524e32ae2138f47b68e69030d244bbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Open Garage Door - Arrive\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639724678294\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_security_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"066e17ebc66789db48cf2e304ed5379d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Security Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_security_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3002756754c22bdc89b0046fb4d2cbb8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85dcc97f2bb788c39ebc5175f6c653dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub_2\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.nap_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"944bf3860f83ebc3f9fab66742d581b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Nap Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"nap_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae5f17c250b517908480297107e4f37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false", + "offset_ms": 49 + }, + { + "direction": "recv", + "type": "text", + "payload": "},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641177479575\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb7ed0ee5f58ab9e7d2801bfdfee8fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188755198\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a1917bd219066d9a31dddd40526ac3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188941984\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.adult_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1fbc8990624c59d6baebd252a9927d20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Adult Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"adult_bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7dda3951af520ed7aa14de0528021459\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641190435073\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"143a15957bf22bdb04ac5c7772a2ce51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Door Open 10 Min\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641191518035\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time_persistent\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ebdc4128b00a85d18f09c1a3f4df0da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time Persistent\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time_persistent\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7e1d8b9bd1cf3e328c05b5577a8cd13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641192891526\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2af5d760ba8ab63f823839e9455f953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b578d45bd122395c5de1934f8f46e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Away\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225378269\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_home\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a8af2ebb3869fa92d132d3d3d00ac804\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Home\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225411475\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51ccecfcf007db71262f1935420252e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Large Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d1ebd3722f10011fa664fec57ed37472\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Small Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"471dfdb1b7068471e0e1fcfea1e471ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225671056\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e582eb57efe5d94969905cf1bff8f81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225729228\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"651aa5c71d4b4b596f4a13407ce60767\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226072324\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cdb6f8074feda911c7b4db1a1e0478e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226100136\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b91da8b1552452b28294bcc304b4f8bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pause Master Bedroom Lights\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"pause_master_bedroom_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"timer.garage_door_closed_recently\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"90320387b4e4ec3a3c7cbd84dbc5ad90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Garage Door Closed Recently\",\"platform\":\"timer\",\"translation_key\":null,\"unique_id\":\"garage_door_closed_recently\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_nap_time_over\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f25dc80c5eb3444609b559695bcff2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Nap Time Over\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1643176701270\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_disarming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"889c9705fedda7305ea5fc7107f5a56e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Disarming\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_disarming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_ring_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01c245ad5b42f3410ceadf17493c617d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Ring Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_ring_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_smart_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d98b2a6e9c31c4c5aebe6deef37adab3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2e11abfde42f19a5057b1b585c72c3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1652512982739\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e04623ca1cdd79fb8087c8cadfc8a27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"468809c6fd06ce648ffd4890de5cc742\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4f4ac0f275a156c8d2384faebbeb939\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandalier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6571da15bd6e6aaf28760a38252de8f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stairs_chandalier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b323727cf823f62522377f2dd6b67c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1124603e90858bd2a7c8eeaa4ef0c908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91edb81063054b8b29e5bc0aee5ca722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a55fd0624053c3fc70a102047121f57f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68111fcc2532b27a80ba3cc01980d288\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0fe65477af3a205470a1ccced0b63d2a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42f50125299f3927c531c18b669aaa60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"261cda58fa35c9826e2e8a9e46548ff6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4bbd43bfe7fd1687e3f9474bf5306d86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48c6d2458f235bc19dff653c6f3bfbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"134f2a9c097befabd5c7d358e36a7a6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3dfacb9c1a377c0cc5390b71bd2955e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16ffd02c1f172e132bc50ed2bf793eaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8487a8d303943a19ac5668fa6c21f68b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73d67204eb476a06333ef8f4adfe5ef7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24288404b3c7dd6c44ff56181d1124e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"864b5cd1631ecb4437a6a0a50c7257e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"722bcebdf2dd4b683a717d50365989dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2caeff606e9499afc9924c3338e29c0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Large Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_christmas\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e869294cbe465647705bafc2c47d8477\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Christmas\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_christmas\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85e9eb0070a496e7fa87eba9e56abbd3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0989c392a71f038b4ce8fe25569ac13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37cbb875f4dfc9ba34dd3b3e17930562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a1e6bfae1dfa193385ec058c31f2fb9d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Small Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e487877af8428842b8d8007616674a62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aa3800e7a126f118ae9b7666deaa2314\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56cd7bf3d052edfdad8981918cd6267\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fddd2acbdfde2f3570dba13d43190b0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6a231953d122e3658bdd77cdcd797f16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24022be80cfdf60a4115c7bad5b035ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec52255713718153f0196eae444e4fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89ea19ac476812b23f5fa073e720b4a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eef0de05d0aa24da9c82355406167041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7940e0e30fc1e1fcc4c9b7a48565002\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_fade_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663c860aed914fba5858948be314cbe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White Fade On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_fade_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6be2f831d75032a3ad7b684508d65e16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.notify_phones_about_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ece1f2275efa510e2dd20151a04ed9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Notify Phones About Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"notify_phones_about_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_meeting\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"372e3957cccc5cb8619ea55b6ad0795b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Meeting\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_meeting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"754734721fc9477df34eeb036bb991bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f7c8ae1fc9b54bf0123181ee762641\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dead_zwave_devices\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ca6ff31d8ab85a686150917f46387b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Dead ZWave Devices\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"dead_zwave_devices\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f63024643aed08b3bfac6124ecf6ad55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Detected Activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59f0788b350cff3ed3e4c80681032694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11670cf20ba415249941c61df360a87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6349ef75a1840deb307830662b0981ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4516a2d3d10614f0276006803376821c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9a1de4c001b65b023873dc67b2e1aeb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e26c607d067a78c441b7f9cc75dba4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f9b0a9b9747f274c8ec2c4049f13188\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2591a8696175650360ecb04c34ebde3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Standby Bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c29b2793fa42375476a4961a9cb9f3c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4c4aa34addf089c6e0d44c3dbb69fd8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Ringer Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b402edad0d1f3609fe2ea219651b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Audio Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabac057a1daed31e37304dddb21888c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d0338", + "offset_ms": 50 + }, + { + "direction": "recv", + "type": "text", + "payload": "0fb776af8c689f558f3d81ec56c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mic Muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c849b40230913371f3ae86450152296\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb4b92f25deb1c26c4d3a75796804cd6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Music Active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63c6ddd0e2c380c423406f865ab4466b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aece69b417cbd569b31f9e3f03cbaa5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"08d4816026b16e5765055bcb256faaaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"167a38f51480e27d6f32ea9bd21cffe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b36dc595459a5eb7754d1bd53f679d9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fa664a57085896e92fe622bcfad9ffd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level System\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4947061539f7e448c220cbbe3d9791ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79866ed9f3d374f668978f602c522936\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"754c6b6be3ff40167959413eee71a769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bf324078f46e09e10914ddd9ad39ea18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f2ae98f237b3a3c18efcfb76a44309\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Is Charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d588b0f08c94af014bcad08dfd9c82bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Charger Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af35ad533bc818679f6142f0fba98ae9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4eeb5c4fc5a9c4740e441917048cb56c\",\"labels\":[],\"modified_at\":1768937323.674991,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 6 Battery Temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e620a9902d2503fadcb5049f62bd3a\",\"labels\":[],\"modified_at\":1768937323.675654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 6 Battery Power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0bea36868dc2852f26e606cb5585978b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7c392d0e5b5805c04c01a8de1d19c6a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f5694e88652fbe7b4aea3571cd3ad68e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 BLE Transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0c86f94983c08b0aee46a117de5db3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Do Not Disturb Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4925d0a68fae8a6820872b19a33e5e86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Work Profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6e361c77027c92ca103f02ee555a17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Geocoded Location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"61959a38850d543f21bb0e1569e0ede8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e12b5bf1dc6312d8adfe9566a8cddbc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4213bef8495768305cd59cdf35ca4b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e97bb579088e5ea424b616dd154aa791\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f66c0118c076670fb52aaffa7ba1997\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Used App\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2f9ae155ba2acb94d2e58ff2481cd0dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4984eeb61df82c1962b1568de93ae1e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Update Trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c379a58d167afdca3215f4bdad404860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Light Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed4aca22759c17dad01d4267be06c9c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093eab6b381d30ac54b915f31a1ffe6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Update Interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5b1fcf09cfe62058415e538ad489578\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e7c731edc371565fad28bffa63f26fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data Roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3345b994bae95f98a977b05251d2c18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"36a81e770148fbf8c3501c4034d8b519\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"393daf81b19a2e000076de43a50e0d5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a86d523635b1107073a00863ea200833\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Link Speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf293b8e7370ea8c4cede0e10f834424\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5dcf1e1bbef07ef59ddfe608cbc0132d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aea0472231ddd7b05ac99a683af7c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Signal Strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"660adb553e2a9af427c52f135747f7f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Public IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"176bca32b338d93754f9c7be44fa07f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Network Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0285447de022be2a252f35fa4ad7fd5d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Next Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586470a0e2dff113e76d335d791c7cd8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4359e632b04270993df87c3fe628cf32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Removed Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c9addd802bcc76b59bad7b47f376a6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Active Notification Count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"422e2b7d93661fb5bf555757d9aff815\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Media Session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4816202ee229e1793e3f4118768d562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Phone State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6c47cf4f550f86dd82efbe37e4d94c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"978bf765161185ef6cfd1d543281d100\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3da6d97d96132bbaf358275ffac29b85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c969863cd8081060eb057eea1b261e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Doze Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"859d0df2447518ce6d43471eeb66ff04\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Power Save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ada0b3b5277c155272a320fdb3d308e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Pressure Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbfa1364f9833d410ae76130415c30f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Proximity Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a8b1e9e42181e7f2598315ecbfcd15c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Steps Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2dfe5cda59186cdf2870eb4805567d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Internal Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ed6c593bbd2acc4ff1fff9f30bd8655f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 External Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"60436b2e4c4506cbf65bbe328d971eb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Time Zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a2fadec84d4c8c45bb51cb557092dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c088aa9a3a0892284a692665a13625e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4a8a05e4ae43df88bc2ba18d31bc976\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db3a97e3ec912bb7ef3afb01868c097b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5a96bfeab8ef33995d19d1c286975ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f0f857a8968c9cf06c05d1eb7ed8e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"599fa49165ca52cdaa308a9291244c32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69bbcb02486b22633b2e78f73ed39657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"zone.school\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df94776e25d1b4c511664437c6d8cd8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"School\",\"platform\":\"zone\",\"translation_key\":null,\"unique_id\":\"school\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec6368556983ccd7323a40edadf2e38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Beacon Monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2160869c0d0023d5de9f7280cff177e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Accent Color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9f2220a04f3d0be4796b6fee9d9b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Screen Brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98521848d3efe121dc305c63a3ae9482\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_hallloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd0dc4211c81c4003e1b7c52010f64b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea4b856a58974c9350f0dc8531733eb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e7b49dcd25a0e17a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"752981de05fcf25b9881f49201d2d259\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e583b4572c572a970b8e4f79740d1d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84d1e072ec6a946787dd954f39def970\",\"labels\":[],\"modified_at\":1733904291.14561,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f441123d912ddae3e6d32aa9719fa8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd925eb2c0373b46333f9982693cc539\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8add6e050c44b030b775c0900d7d955b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca4da0e5938f0ad9b79786aebfc94261\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6da88d50b1815e413cb3c18effddca46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b9ee129cb84e064e54f6b6f2a68bfd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b56def15f41aad4941106a5a95a55bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7427f7c8df98d3cbaba16fb1cbf5f27e\",\"labels\":[],\"modified_at\":1769764244.706022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d92a1c422ab0a536d81c42d8ae646da5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ca15e3b72854b67b5f6bd20861d12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6c4b3a155edb068cee9c57e4b9114bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2600df00617c34fd4a6f7085fa9ad2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9d033d4f9202f91a6b56293e16399cc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d704b74e9a8a5a2a3bbabbc7aceac39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fba7cd65763c03f75099ea4f8f2df62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4048c62fc405ce5317c7353ddecc8db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44607a13e9e0906a7b252b2367029b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ffff734debf22a5da1f04227ed7ce61\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7851ce9b8b45d02c259b100099695bcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e75244fd4d702e9e24eed421f19f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80553ce4ab17b8e3a3c8a0e9f2333369\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df84eb0485292a8dd0738dd75af58ea6\",\"labels\":[],\"modified_at\":1772660779.072245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"962b89bb2e91c9e72416f05984d53a0e\",\"labels\":[],\"modified_at\":1751875652.892459,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a32c673dec6f143954907e9d833d05c1\",\"labels\":[],\"modified_at\":1751875652.921495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d73b8b9674d497ee18d5fc04803bfaae\",\"labels\":[],\"modified_at\":1769764245.433226,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc442861fb551a6a06c1f1789d3a8d47\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8176790314abc637bb78fce1af28dd95\",\"labels\":[],\"modified_at\":1768937323.679914,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"°C\"},\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 7 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5b470b4aa7c1d7e469ff00bf06256925\",\"labels\":[],\"modified_at\":1769764245.566513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 7 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cfe1476f76e9b5e40c2665623a580dcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c501a24867cf1e75b62a7d084fe6153b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 B", + "offset_ms": 51 + }, + { + "direction": "recv", + "type": "text", + "payload": "luetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"241a1502ecaf8436b468ad0986728e9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"976abf783a6596bb6e4ad93e5eef6ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aafd4d0f25e0058e7691e4b900fd888d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9432ea9dde7dafb7f04fa0fb66caf0d4\",\"labels\":[],\"modified_at\":1733904292.9764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9742771b1ceab90f1b14f82fe2f991\",\"labels\":[],\"modified_at\":1769764246.412117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9140026578f8696f95b3a23e7b4b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2eb9199ce7a259686aa22ed1201bcd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aefcada6f1ae5cd573ecafaed1f82cc9\",\"labels\":[],\"modified_at\":1726775504.304137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"327a9df8b4a560f9869c8a795aa427d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b8aa5d978c603d98ee826e002c5a51f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1935dba47b0942142c6137d75189c165\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b24892dd730b588b3ef58a9c5f6433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"683870d1b12dbfbe9958d3bbbd483be2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05628de07b292547de3074d0fecb63c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b52583e588d331b5489ad61d42d1b894\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea6754e922d43ed5faefd1c37aff673\",\"labels\":[],\"modified_at\":1726996801.234221,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67a5374ec1ce04d4b1fc7f504a5f5ceb\",\"labels\":[],\"modified_at\":1726775486.464706,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9989c20892e290c5f68ba8011da7480\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ac9c525c7baa10637bfa0bfcf5221a8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d33788e0c059d59c257f087a1473354\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6858fb1bfe673ad16c733d32e0e2eea5\",\"labels\":[],\"modified_at\":1736454087.142562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f8ecd430a0259a766ff87dd14850905\",\"labels\":[],\"modified_at\":1736454087.172581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ede90797f1d7ac76694a6f43d9bc8c45\",\"labels\":[],\"modified_at\":1736454087.212097,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"baa0e4cb851227a8feaf9d6df17e9fe3\",\"labels\":[],\"modified_at\":1736454087.244039,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212276650f0469c6b78f1aa1555eb08e\",\"labels\":[],\"modified_at\":1736454087.284983,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2c26aa9370eb6b26b415452c8aa37fa6\",\"labels\":[],\"modified_at\":1736454087.322599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5559192d4b1724258755211fd6c0eb2d\",\"labels\":[],\"modified_at\":1736454087.355909,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f2f1af76340c415aee598869f15f6b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ba5e415bd21554388b021818724eebb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49817327a16217538f7b5d10768914e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f382990d6af13a6f0f40861b861e446a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"acbdc6c80e798bd40e688481d54f3dfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b15ae82de7ad1a7193e870c8a928e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c39f19cdbc833df680ac7b7aeae2a1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"343e97cbda69dad188ebbf6b8c98cbbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95999d30a8740282d4530ca4dcc83763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8dc6554bf62986c588c250443bbd9a30\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501fe56c13dba2403f8e9f6305853d85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45103882a134b44b710984e492b782d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89602f6616e58d5fe6968e27e9de7f75\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f509ed5dc970c87935cd8abb4447cbdf\",\"labels\":[],\"modified_at\":1768937323.68247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Pixel 7 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce994d74c8d3dacc5f2b3f3ad1c4c862\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b81c76adf96efe95f486bca48df59198\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea6b5d6c0a7555063714d5e8fb0966b9\",\"labels\":[],\"modified_at\":1726996802.141611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e86041c03757821fbe478098482d762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f7c6db6916cfc8884490f24662d6d6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"179461930c9335bff09", + "offset_ms": 52 + }, + { + "direction": "recv", + "type": "text", + "payload": "691616b8a316c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d7bf3b13d2aa43a53bff5d32eb3b6a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b76e1c633c646f74498a1b4022d4aabd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ccd80680e8a746bace2ed530127ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"51f7f20cb4853fc0b780e3f12cf45927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:c4:36_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f0afd1ec6dd2925c7d3aa877f10716\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:a3:c8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab1ff41ba82a1e9a081c62b4a4e05baa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lamp_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc50d543f3d0de8dce6f30e83abaa051\",\"labels\":[],\"modified_at\":1768937324.522894,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_lamp_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:33:BF-light-office_lamp_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74f90347b451e99fe4564a5f9034b2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04350d1332ac239890df047ed24bd6ec\",\"labels\":[],\"modified_at\":1775870416.948326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Dining Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.dining_room_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_base_station_power_switch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd59869adefb3c2668706287d79ad134\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"VR Base Station Power Switch\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"switch.vr_base_stations\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"554456bc549d0c50d8ad023679b633b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn Off VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"974317cf2fdad27a6ff88ffdfe415537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn On VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067740.367542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94b349a8c075517a154253fb630c014c\",\"labels\":[],\"modified_at\":1775360982.274551,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f55335bb75f173f6fd401e50a1e6ebb\",\"labels\":[],\"modified_at\":1775360982.275026,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8424b92182bb8b52c940680327e1b956\",\"labels\":[],\"modified_at\":1775360982.275471,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86c88fab85fb335a99f5bbc40d5f6157\",\"labels\":[],\"modified_at\":1775360982.275902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00578db2e0fd380276579a29772a6ad2\",\"labels\":[],\"modified_at\":1775360982.276323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"091e225f048950d7bc9b58b427089acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d4ccd77c43917949c6f8998592f6d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72f6d099f1b60f2bef38928d26cd8c1b\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Lights Motion Off\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1681343760386\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.scaredy_cat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"875026434592cfe2277e6b60284b69ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Scaredy Cat\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"scaredy_cat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d709cb65d0bf72bdd756ad8e1f4ed26e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1c060ca1926ddc648dccc6a4ed79a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Scaredy Cat Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1685999337743\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0468ec0ea3a7c492de483fe1e2a6f3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bc61ccd7457d16d4521b75efa4de5263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"090f0966fdfe9202896f95e917094db9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33efabd658a938a3c84616668b943ad1\",\"labels\":[],\"modified_at\":1728721845.865992,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b46c1986a992590e543ab83dcc22be\",\"labels\":[],\"modified_at\":1728721845.86621,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47716215f6c1e4e0c958a2bd847d04b7\",\"labels\":[],\"modified_at\":1728721845.866372,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c0f16bdb9a7af253322e7f2c68037a1\",\"labels\":[],\"modified_at\":1728721845.866525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_not_accepted\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32047f8c6fedd304c0195365947e01c5\",\"labels\":[],\"modified_at\":1728721845.866674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages not accepted\",\"platform\":\"zwave_js\",\"translation_key\":\"nak\",\"unique_id\":\"4182894947.1.statistics_nak\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_collisions\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8508325f21df882e069374d85c2412c\",\"labels\":[],\"modified_at\":1728721845.866818,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Collisions\",\"platform\":\"zwave_js\",\"translation_key\":\"can\",\"unique_id\":\"4182894947.1.statistics_can\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5d1890f3771adcfbc650417995884fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeoutACK\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67397fab6dfc1efeb76db69e09cd2518\",\"labels\":[],\"modified_at\":1728721845.866966,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.1.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_callbacks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cb0ec827d35594d68324c943295da67\",\"labels\":[],\"modified_at\":1728721845.867108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out callbacks\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_callback\",\"unique_id\":\"4182894947.1.statistics_timeout_callback\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"682c4418ccc9d59ab4766feb2876d337\",\"labels\":[],\"modified_at\":1768937324.461784,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79be22754c52e9d3ba249c79d09b8c3d\",\"labels\":[],\"modified_at\":1768937324.462018,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b9e078797343e12caf9f44a0b0f5b23\",\"labels\":[],\"modified_at\":1768937324.462198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96bd4450ea3aa2dc0fefa5cdcca29ec6\",\"labels\":[],\"modified_at\":1768937324.462371,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d30b0a3a5acb331ecf9bd7faecf3c553\",\"labels\":[],\"modified_at\":1768937324.462545,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67ff38d870a2330331c2b8ce6d626c9d\",\"labels\":[],\"modified_at\":1768937324.462722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f177b710b34d34badf49d64727b08927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.4.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a73d8ed5443f8307691ac47b75cb6513\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.5.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad589416f84ee0a4bae7247f7101e698\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.6.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08fbadd4e068fb26c4d98b53f492e322\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.13.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb6e3d9400e10748fbb5b95f4d2c14df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.14.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9657d799395ad95f249170d72f4515ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.16.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be10ca3bcb5bc1051a357c059873eeb5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.17.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e9cf7a82a0f823c8cd07af1e9828c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.18.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a463e1a6b3777f832e1c78e3c725c8a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.20.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d13a24ca75cc9b0a0413f9f7c0f7c5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.24.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48d8ac6919beb5fd1f7b6715fbe12b43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.25.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f233496fe9a9cdb2df78bff33a2b836f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.26.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d6f8217dc1118036bf98bcd10f4133\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.28.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80029cb154657f9d9c91b39ba1e31549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.29.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46570cdf00c69acca5931fa450785a9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.30.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35b093dc4c64641b23021740e8cd27a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.36.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a65fc8863f070a02d939d1b8306a2d8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.37.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53ee574e53ebda2b8e3f989a3ba13fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.38.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30654040cc3e65801967d3b7cb69b1df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.39.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"544683dd8a7cc50d1bd208a73f4e3307\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.40.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ebe35465fe37aac78f69ed1222d264c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.66.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab0c922ac84db0b313a9c93dc22c6ee1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.4.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8385c6cfa7f0c4997be41b6a49a4b8de\",\"labels\":[],\"modified_at\":1728721845.982674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e386cb6e210fc89df0fab411faf5afd4\",\"labels\":[],\"modified_at\":1728721845.982907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9c808db283e54ab2446bab6fb1cc994\",\"labels\":[],\"modified_at\":1728721845.983117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba1e80a8483cdfc2899d23b81aed739c\",\"labels\":[],\"modified_at\":1728721845.983281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f42d47a34b6f9e3f87ae053978ee85\",\"labels\":[],\"modified_at\":1728721845.983435,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.4.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9be484fd8a2b1135e0eb46e741acd273\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.4.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"693765a84e9f3e3dcad716f4eeec22eb\",\"labels\":[],\"modified_at\":1768937324.528833,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.4.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"012352a68babdcf20b6cf95f876e926f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.5.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f672471b5c978420e5f1dba57dc4733\",\"labels\":[],\"modified_at\":1728721846.000478,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c4b943d6fb6f596b29d6d977e0e46f3\",\"labels\":[],\"modified_at\":1728721846.000702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9873f4f992eed491065ac7a2f339a7bc\",\"labels\":[],\"modified_at\":1728721846.000876,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69032bd476a7b17eade17059e08180a4\",\"labels\":[],\"modified_at\":1728721846.001035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb63ebe968c8197ed6fd472701949976\",\"labels\":[],\"modified_at\":1728721846.001179,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.5.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69dbe60b2c6ede995a5e608d08544cf1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.5.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46b8ead388ec6b9bbd189354e8d592ac\",\"labels\":[],\"modified_at\":1768937324.530131,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.5.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4cda4cccf1bf41fafadcd00681b40751\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.6.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3da25ea5b1606150ef66a9080137bdcf\",\"labels\":[],\"modified_at\":1728721846.008122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69e11426422fa9379fb37cc8b90b0100\",\"labels\":[],\"modified_at\":1728721846.008333,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6068bcf6b64da799f454a39f75d219d\",\"labels\":[],\"modified_at\":1728721846.008489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e19fe563fa9afb307a1d1ec0af6a47\",\"labels\":[],\"modified_at\":1728721846.008639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7c137d08211c63fc135d56ad8079b20\",\"labels\":[],\"modified_at\":1728721846.008782,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.6.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632b4444df9edd83dc36ddefc3105924\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.6.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b89faa5aa8c37389c327d33c0bed5f5e\",\"labels\":[],\"modified_at\":1768937324.535509,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.6.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c48a9484b52fe684114f779a2fb5404\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.13.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4c6df2834c4defdd486be1e9a612c07\",\"labels\":[],\"modified_at\":1728721846.026245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"511e3b988f5150cf206ecff8b0a48afe\",\"labels\":[],\"modified_at\":1728721846.026539,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e77fec708cbd9dafd349afe5a826a6f\",\"labels\":[],\"modified_at\":1728721846.026691,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d788a6b3695255083009f04d3dbf84a0\",\"labels\":[],\"modified_at\":1728721846.026831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bf7f721885b7646b04081641fc9b9d8\",\"labels\":[],\"modified_at\":1728721846.02697,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.13.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4461e4c669a848b9ef3223240813573e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.13.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"308b0682ae88de559074a6de7c53834e\",\"labels\":[],\"modified_at\":1768937324.541059,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.13.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_room_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"705c92b125e5de1380f3c18794369bf2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.14.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6521456f61c04ec8fe7b1e5b097d37\",\"labels\":[],\"modified_at\":1728721846.034872,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00c3b60e2e3cec4899e63d54e900e047\",\"labels\":[],\"modified_at\":1728721846.035075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec9cb65a35afed1951ae88b782595f5\",\"labels\":[],\"modified_at\":1728721846.035255,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"231a387ade3bdaa4a66853272db8b0ea\",\"labels\":[],\"modified_at\":1728721846.035404,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb1ecee5163bce8480c0fd35a09c6769\",\"labels\":[],\"modified_at\":1728721846.035575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.14.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"85069e58b15d22ef66a4bd97c6129f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.14.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c8fb660cd92b5d242ab5d679ccd7b33\",\"labels\":[],\"modified_at\":1768937324.546124,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.14.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c336a49feefaaa0e9faa1a38535c422\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.16.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d93c331bf5198470ef4ce4f524c52272\",\"labels\":[],\"modified_at\":1728721846.042608,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e863df09902ad83c56a2841cb51f576\",\"labels\":[],\"modified_at\":1728721846.042868,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"", + "offset_ms": 53 + }, + { + "direction": "recv", + "type": "text", + "payload": "58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"798ee7f183a63fe89f1e942c636b3bf9\",\"labels\":[],\"modified_at\":1728721846.043022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42ae2ffc8bde328a61b8ae4373aa5eb9\",\"labels\":[],\"modified_at\":1728721846.043158,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ea12c6f7d52404e2147b808e1242b41\",\"labels\":[],\"modified_at\":1728721846.043281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.16.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7ce0933d67d34e56e76dd1709593328b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.16.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dca82438215fb7fafede9cce49acda\",\"labels\":[],\"modified_at\":1768937324.551074,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.16.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"304e4ebde63c0b6724afd5e92cd59f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.17.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cdf393e8f27ba0fa618069c16022a026\",\"labels\":[],\"modified_at\":1728721846.051416,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40c570bea89d10e15145cb64ee1f7ab9\",\"labels\":[],\"modified_at\":1728721846.051615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b2edd3fbab7394bab0c14cbe7637c5\",\"labels\":[],\"modified_at\":1728721846.051761,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4353c6bd553ecb2277ca7b997c50c85f\",\"labels\":[],\"modified_at\":1728721846.051897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83be3dae9ec35473d348b3c5133411d5\",\"labels\":[],\"modified_at\":1728721846.052036,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.17.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3adf44d744835c998ccc919bce886ec9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.17.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7e70ca5aba67a4a230b2722299052e\",\"labels\":[],\"modified_at\":1768937324.557331,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.17.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a07cf5d4224ba6239a13744c18dd235\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.18.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7caa0248d8ee1076f41ddb3cc2c89f8e\",\"labels\":[],\"modified_at\":1728721846.057035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001bf6da6163b4586b7f7d920b182c3\",\"labels\":[],\"modified_at\":1728721846.057227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"407a6b9aee48fb0bb041de319bdc8731\",\"labels\":[],\"modified_at\":1728721846.057394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"474a984405d6ad3fa524af6f21852079\",\"labels\":[],\"modified_at\":1728721846.057527,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc3da0f80245bad1dd0b080c05f60ce\",\"labels\":[],\"modified_at\":1728721846.057654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.18.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"338d555606471bf4656042ddeac2dd42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.18.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"debf128d126cc42f9d9678a177a3d7ce\",\"labels\":[],\"modified_at\":1768937324.561345,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.18.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da1541fbce94275ba5cbca676f2702f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.20.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e4917ca0de8cb75740c3cf980a2b1f\",\"labels\":[],\"modified_at\":1728721846.06327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bac1b4c13d182d12c16822efc7415f3c\",\"labels\":[],\"modified_at\":1728721846.063447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04070ea7d7a035faa87209770e527115\",\"labels\":[],\"modified_at\":1728721846.063587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e29111b9581f147ea8a636aa9ca50c\",\"labels\":[],\"modified_at\":1728721846.063714,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77c23d9ce3ce745eab3994897b4c2d7b\",\"labels\":[],\"modified_at\":1728721846.063839,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.20.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9831210a5f148ffec0c960a3cef41eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.20.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ad24989273058ab1e0afede3384b0f9\",\"labels\":[],\"modified_at\":1768937324.565645,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.20.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52d9aa715f3b1cefbfb68ebd33ff9b74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.24.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05d8bcc97db99a59b495eb3c76a683c2\",\"labels\":[],\"modified_at\":1728721846.070907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe6722a9cc2ab68e12b30784f31b1428\",\"labels\":[],\"modified_at\":1728721846.071086,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2bb1f0bb2a2687cc1a615a13447f6c3\",\"labels\":[],\"modified_at\":1728721846.071316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c2e48f0bdf3f152646733a2065a7869\",\"labels\":[],\"modified_at\":1728721846.071476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8793d6ce94921703ff9d4ef6d283102\",\"labels\":[],\"modified_at\":1728721846.071605,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.24.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b971039f576f806395a3bfe630bed910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.24.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3ba969b6fccae3a10caf0bd81dacb57\",\"labels\":[],\"modified_at\":1768937324.570316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.24.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e199fcdf8a82e3cd5b2aaee7e98b3ed3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.25.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d118bd28fcac0c0e418c5fa26c908ae\",\"labels\":[],\"modified_at\":1728721846.079745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d036715c2c04cea631fb5ef537052fe8\",\"labels\":[],\"modified_at\":1728721846.079932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57325db8a7fb10afd15751aa94309c1c\",\"labels\":[],\"modified_at\":1728721846.080103,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0b56df69f1ed80a097a437a7234a8e9\",\"labels\":[],\"modified_at\":1728721846.080229,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887eef5e7ba55d9e0936e56bc66c567e\",\"labels\":[],\"modified_at\":1728721846.080355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.25.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afc9d72e408779d20b34dc1f01ad3536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.25.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcda026ec929142ce3cbfa14747dfaf4\",\"labels\":[],\"modified_at\":1768937324.576948,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.25.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1583858de49ba4c0a4b4ff2ee0c29d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.26.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f5033b58cce7dc54c076c8d180392f0\",\"labels\":[],\"modified_at\":1728721846.088895,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43147453f1b24bccb5c5f5e5e62f7068\",\"labels\":[],\"modified_at\":1728721846.089144,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4387dbeacfa284722783b317dacae2b\",\"labels\":[],\"modified_at\":1728721846.089304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d1c22a4b346df44287e85024006f90\",\"labels\":[],\"modified_at\":1728721846.08945,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"535c8d77519ba41280c4a64ec64bcb51\",\"labels\":[],\"modified_at\":1728721846.089582,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.26.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b08f4bb01195276c704b25cdd96196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.26.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b0af79a6c4a5379175d0900063ac555\",\"labels\":[],\"modified_at\":1768937324.583385,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.26.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abc77ab50d0d3573e9e10357e6b4092b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.28.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8cd26d45d0e80aab853b7d479f30848\",\"labels\":[],\"modified_at\":1728721846.098327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f324aa672663f6a659ee494545522e\",\"labels\":[],\"modified_at\":1728721846.098537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37fb21bcbda4df8298f567ba2d598434\",\"labels\":[],\"modified_at\":1728721846.098676,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c00a5c5168ae3d928deb75654328af4\",\"labels\":[],\"modified_at\":1728721846.098803,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8c544aed3196548a02205a35243f93\",\"labels\":[],\"modified_at\":1728721846.098936,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.28.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab6a89acdc4cc754d27d035797994522\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.28.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf69f70d06538e49a0517a65e09e86d0\",\"labels\":[],\"modified_at\":1768937324.589758,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.28.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a77e2f997e7096c9b763729289da0222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.29.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"570afd43cc017753eead4837bedc9bc8\",\"labels\":[],\"modified_at\":1728721846.105962,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa61e5c4f5406900003bcd53d7ea9d8d\",\"labels\":[],\"modified_at\":1728721846.106143,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1d9e9b71984b9ff29afff4c6bdc040d\",\"labels\":[],\"modified_at\":1728721846.106288,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a19383165b4ccf9d801c9c7f26f50ff1\",\"labels\":[],\"modified_at\":1728721846.106452,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3becb6b0af1994c2005db257d3c08b6c\",\"labels\":[],\"modified_at\":1728721846.106636,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.29.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19e1560eba677195d70fe919a6144950\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.29.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef43746b3d59b9ebed78786a6a0dfe9f\",\"labels\":[],\"modified_at\":1768937324.595077,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.29.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfb0c54c7cf85ab1e4adc409f895e19b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.30.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1fdfa3a2d14760b9475ad822051c5428\",\"labels\":[],\"modified_at\":1728721846.113654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e4b1a6e975cf9b1d9994e5c0fc96fe8\",\"labels\":[],\"modified_at\":1728721846.113904,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2940e9491fc8082f8a7566fd97155363\",\"labels\":[],\"modified_at\":1728721846.11411,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912541a2fa4cda4138a5d43e32b01c9b\",\"labels\":[],\"modified_at\":1728721846.114314,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09a2c2e79f06f78cac686eb78b5a0983\",\"labels\":[],\"modified_at\":1728721846.114484,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.30.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8184bb20bb3ac0aad8c150c92d9b60ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.30.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"595b480ffb15cb31f87e003a704469b6\",\"labels\":[],\"modified_at\":1768937324.600438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.30.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02636c3d8887bce10db55744cf1fb300\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.36.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3659d233ee1194e78d575c8259c79d75\",\"labels\":[],\"modified_at\":1728721846.119874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ab37c037a538751cc745fc318c53375\",\"labels\":[],\"modified_at\":1728721846.120105,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ebf0493baaeefaaf3727add303ef097\",\"labels\":[],\"modified_at\":1728721846.120293,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7aa05f5e8e60454c434e760f09ba7d0\",\"labels\":[],\"modified_at\":1728721846.120469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad7f8e9a7534ce6f62dea3787f34512\",\"labels\":[],\"modified_at\":1728721846.120604,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.36.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817b83fa9b3b611ef9148d3a1c7b9458\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.36.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"207b9f016771de3f0791a50db497c513\",\"labels\":[],\"modified_at\":1768937324.604321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.36.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32ed05ddcea53a4e1ab8ffe90200bb11\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.37.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fe4ae53649255d1e27d0064fd803ab9\",\"labels\":[],\"modified_at\":1728721846.126048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08e5d0574d23b7feab02b70f64bcaf5\",\"labels\":[],\"modified_at\":1728721846.126233,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e3ac4ad5973a9fc59e74f034b3f8a9d\",\"labels\":[],\"modified_at\":1728721846.126379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f451b1f3ff73499f3efa7843ba1fda53\",\"labels\":[],\"modified_at\":1728721846.126518,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a513a0bfadb8e062eb3d5ca06378ee1\",\"labels\":[],\"modified_at\":1728721846.126652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.37.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb48677e23288d884f9c18b559952cff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.37.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d2e87e3ea7659f4c1ec2f9581b248ab\",\"labels\":[],\"modified_at\":1768937324.608389,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.37.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5565c442b090e06c8f7eb6342f92e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.38.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6184498ceaf1572ecb710a88977504a\",\"labels\":[],\"modified_at\":1728721846.135332,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f8631a758d2f4b056f007426987b5d3\",\"labels\":[],\"modified_at\":1728721846.135525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8186ffa61a7c07f827a82f6ed999ef4b\",\"labels\":[],\"modified_at\":1728721846.135673,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4e9a80844eb2d564dc68cf1827019af\",\"labels\":[],\"modified_at\":1728721846.135808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0205fe39e1a0a4578c09918f54f68fb7\",\"labels\":[],\"modified_at\":1728721846.135937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.38.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a43cd34777a3876325239f0c80882549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.38.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cddfcbe8d05af4ead30b2c9a732e8d97\",\"labels\":[],\"modified_at\":1768937324.614863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.38.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa7663cdf3be9fb9aa633722f02fe95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.39.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"185eb8e01e811aa96f1055db2eba082f\",\"labels\":[],\"modified_at\":1728721846.146856,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7507b2bae3374108dd49ab35772c96e8\",\"labels\":[],\"modified_at\":1728721846.147069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11720db84f8dac252640168c91fae5b5\",\"labels\":[],\"modified_at\":1728721846.147219,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2415ed4c820427b452628be0746dcb0\",\"labels\":[],\"modified_at\":1728721846.147361,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"605baca0427b42514da2eaf78807a67f\",\"labels\":[],\"modified_at\":1728721846.1475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.39.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d2b90ddc8284b68e378215f59d0f6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.39.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f93c038fdf85ec4247f1559f1b415\",\"labels\":[],\"modified_at\":1768937324.622387,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.39.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5999ecfd025c3cc7800a4a89aa08edfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.40.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"917be806129eacb471d1ee0d0509698a\",\"labels\":[],\"modified_at\":1728721846.155502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94e074b915ef0ae11677a926f8f4e3d1\",\"labels\":[],\"modified_at\":1728721846.155744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84a23599661784c7f5dd79065fe6bc72\",\"labels\":[],\"modified_at\":1728721846.155897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e6d217bcbe4d21e0ac74a35882afd3d\",\"labels\":[],\"modified_at\":1728721846.156027,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d101cc55ce6cddcf624e76cbd806cc2\",\"labels\":[],\"modified_at\":1728721846.156151,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.40.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e96d40f2a5ff985cc298963049a9848c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.40.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a4374928a53f5685eb1db6dd22fa3d\",\"labels\":[],\"modified_at\":1768937324.628793,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.40.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db458cfaf86d76636a7d2bf0895309de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.66.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5270f9954244bb65705d47f9136e1aa2\",\"labels\":[],\"modified_at\":1728721846.230051,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82399c66db015194b4f3e070808696a1\",\"labels\":[],\"modified_at\":1728721846.230244,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471598b270ecac776090a8d2c01bda06\",\"labels\":[],\"modified_at\":1728721846.230396,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae71812be09a23822eafc01198f60890\",\"labels\":[],\"modified_at\":1728721846.230531,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e76593d32bda68336de64e105ec8f0cb\",\"labels\":[],\"modified_at\":1728721846.230667,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.66.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98d943f3a15d678a077164e12b0b6f8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.66.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"162a16ffb4efe6d9bec61e35df2cef00\",\"labels\":[],\"modified_at\":1768937324.632659,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.66.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db32b0a9239e3164b238a78d332fcc09\",\"labels\":[],\"modified_at\":1728721846.270694,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c11d0e40cda08b41a09ae52d89dd462\",\"labels\":[],\"modified_at\":1728721846.271147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20a58486d4ac94d1c4627100475635e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a37d873a73a470f8610b1d170620e9c8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c53aead1aed9f2d07387815e701ea7cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd37a59131eebc3d3efb87e3b9a180fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb13b83675e38a3d6fea9f88a7fd514c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d95d516b1ca9219bf2fca27f7f2908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b844ef9e2e6426121768a751759fe087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd47e78959ada5340c2f57306fa58db0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c37787e174ef03e1765d9bef617982bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60ead9b3b7d23ce46d5d7e26d8940d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d51696e440645ca3f4b8529e028f971d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"237fa206e122aa41369fa1c33d8d0a8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77483a0a861c0237c93f510811bd0c72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22e6ae4f8004df116af0e2b635af2c29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2648ad9b3ede6e6a150d9efb636b049c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2d88cfc6df1889a40731747606245be\",\"labels\":[],\"modified_at\":1728721846.274493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdea929adacbc2d74c59d113df4e814e\",\"labels\":[],\"modified_at\":1728721846.274952,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcabb74ebe7fa1ef4dfc174b377e74be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"139db407d0314d892e9399e794a94160\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9717997085ccceefc242700248840be7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e249ef83acfce3deefa5a3a95e68bbd\",\"labels\":[],\"modified_at\":1768937324.702562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f52e426d962ba92d279ea46fb81cfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a516cccd0dfde572f7ffe400ccc573ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69cc3fc9e5decb87fd544bd9c59b2d6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28b1032c218c390994d8cf969ce895d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02d8d11b76cfc3587daeee2a51de2670\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2abee3d97931b898d557d8b57204b5b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de10b3dccbd140d07b82ee3cbe00869a\",\"labels\":[],\"modified_at\":1728721846.285949,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"285d1906223aa890187af6f521ac5aa6\",\"labels\":[],\"modified_at\":1728721846.286414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9768e0fe86fe22a99d2bd1e6fa4a50a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad5520faefe19b4022eb20391dffd559\",\"labels\":[],\"modified_at\":1768937324.709538,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5816a5b2d76cec6a8f87bce0e5613c69\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66c6daf5be1551275842e31ca471799e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b103e540c009d00db923ae148d2ad3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3070f845f294440ea467f871f4e9758d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffe6be3b9f35cddc7519f62786d0eb4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b43884450e42b01a842b6373fab6954c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ff72dd6844c777f6523a15e4e86c4938\",\"labels\":[],\"modified_at\":1728721846.290665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a530ee6f5837210fe17a7eb90140108\",\"labels\":[],\"modified_at\":1728721846.291104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fbc10825a215ccf77771ac04d53a720\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0af0ae3d27d1b34515317f6f40dee262\",\"labels\":[],\"modified_at\":1728721846.294166,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74bdfa251036d94a97f241789a25b689\",\"labels\":[],\"modified_at\":1728721846.2946,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e698758cc618d42a7e6118d812ecf07d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2216fe6d827ae6564c3f5b55619314e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93cbf85dbce888c01dcd21f2d1c99370\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"183772562af3d9507f5f27c5b0ba0f38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c6433560756c9431e1df77c42b6d28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f6a57de7a98d6ac7b2e945d771fddb1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78debeb2eab74d07e95f30c8b4852e4a\",\"labels\":[],\"modified_at\":1768937324.729745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e70bb4917587f9b8a1d3bd96cadd5cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817943eab67fd9798445262f476064a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ca751c70c4d7fedf4bf8070434d7e6d\",\"labels\":[],\"modified_at\":1728721846.301652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44d8898092357555eefe4ecad44dee1f\",\"labels\":[],\"modified_at\":1728721846.302076,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf7330eb6dadaa91ec87c23ee00ae26a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c56e9d8fcf2d8ec59e77e00072f24838\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4446cf0c58d47c700287c9c21432bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffd7dbad382df41d7195eccfe18810d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e0906e8e3e7e8461a822528b1cc2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43b135c801d45745f3cf05c1bf20284d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a58405b84ac4e8dcaf4e760967791caf\",\"labels\":[],\"modified_at\":1768937324.733974,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f994629b2715d3c8dcf982027a8a780d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"762c0ea162380dc2056fd5704a2719ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7eaab4a2744c4902a408c6debc79cf37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d848e0323383acb9c5ddc423cbfd950a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"908ab6e73ada2695a0b1c8d01e975190\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d2852c957d65076fae9aa19748c9d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aeb0433e0d87026a6fbd8afc78aae33f\",\"labels\":[],\"modified_at\":1728721846.306497,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f989704f396de0f609d4b0351f2c0f9\",\"labels\":[],\"modified_at\":1728721846.306925,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a737baa4dc868142fb3dadc46322ab27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e14f8fb1c155d58e6f6f00768c1fbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"defadd1bbcba92ba76af88f17a4b6948\",\"labels\":[],\"modified_at\":1728721846.310189,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0014deb8f599a19a01599b67b85ba0cd\",\"labels\":[],\"modified_at\":1728721846.310607,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"904cf14860d4bd4c39b88c6ffc505eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2a2c87ca142a9691153c08e98c9484\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb608eabbcb86e1939bbfd47af08077\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1cc16282de895c102c625666255dd1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9654b1744b3eff83e9fe67c5f490209\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e48cf8e1095ef4f80ad4c5a40bfeedaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b5e2609b44518d7b650ed31366f9844\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"846632f2affb52790f552049838b285e\",\"labels\":[],\"modified_at\":1728721846.313113,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc5b74a375f77f6146ac469f4317556c\",\"labels\":[],\"modified_at\":1728721846.313655,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e31ea48aa516d44a0e74bd58e0bce5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2657140005056de27f2fd24f0f8c406e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f53dddb446efd5b75c2c104009de5a9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56a286889a09b67cb4f3da4901dcbaa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c06542330d8cd6459f5a6d000a45daad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17949bbabe2791d81f4839fe3e9110fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"523a483aa227e0b389baa33d916a600b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99761b8c80b75889a0e4d4e1e8d894ca\",\"labels\":[],\"modified_at\":1728721846.318031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d64a13fcd28fd09e1e1e8eb2cd8fa56\",\"labels\":[],\"modified_at\":1728721846.318493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70a2a1679ee20d747ff2a3a413f1e105\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f235f0b2abe04b471ec5b5e5dee4a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bc89c05c4c94a30db7238452914e215\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98571f78a667d1495fe0cf9836c9472c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e1e09dde3dbf7a35f9cd2d43962adf7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52c7ca7b64871829a52196f9006ab15f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8203802817bf1ad148be4fa89c851d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2584fd64a2409ee7a09a132954035e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98b7c7cf21f957af7621433d77abcb1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"beed0d43ff1aeede01dfb858e8c5970b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"921320ca502d44f294ef98cf28935e13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f3f60bb56320ae0aafa2079eb81f15e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d821dccb30962b1463ccc94505f53052\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e964cccf2a7ab8f0eb0eb913f676f05f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c84d95a9ef4cc438fc83d1cdbebba33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12ae7f7b84f0b2f02972e196ce9a93f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e42e6ff5ff57f588c006928612396ab9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d486aec5330d75337491301294bb4435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"346c374272b05752ac5fc931704ab571\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e36b9133e1d28872231dea0fb93528d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37d17dc9e2421530e61ab1fa54776f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9496b4f3a9d78224c587705a5efdbff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc277f4c90c74fb8271cce66304ddca1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b666", + "offset_ms": 55 + }, + { + "direction": "recv", + "type": "text", + "payload": "349984f09005c3ea218b605990dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf1377a4d496a97ca0468993f9d02d34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b237c13f8ff2d948207447d610bf79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7e258cdb97757b5d1dcb2cfcb1ca601\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd811627fcc5a2efe088ba85498824a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a034873b733f7302c12f77357cb7d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a06a139b75a0038df888efc160b6d718\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f342fffebdbb3961b6c7cb1483bdea7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fbd66619e5a006f253944775dbbe19e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe112a32c778fc5e1a85b57ddc7caee2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"269d59ba2afbf01a89976e87a7aa1210\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fdd6e83c70df50995811a7b4e2a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"461339479072e6cfa6a97b02f9607e66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4359424baa64e986b59fa41d415ab1a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc8aa0c17996ff85c861eaf8d5b0cf84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21eabeec28b1aaccd01363d19dfa11ba\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb5accdf9f56c10d895bd732f109ea3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d7d60da7940314cd626bd834af5e727\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"388577ab65bace3f26ee0ac8154104c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b33e66f09619f185899bf4fd71502c5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"531f0295e3afb7186a34bc84e036e106\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb697eb52f8e49d6847614e6c87ec81f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6c5c1713703f37c2d0c9dc58ab71d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa66284a36aad4743c9457b43009c3d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2dbebd1dffc9b31aa00702afca47fa85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"742d317e9b1b93196a64e738fe81c3e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_tamper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5694abb63a3d7d0f1fef64ca7ced652\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Tamper)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Tamper\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11e92860f380e2aed665f5bfbbcc4c5e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Motion)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7db329966d8fcaf7bf8f2a1a041f7972\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b27167efcf1befafb40ba35f59517cd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48fa14c557be3aac0f57468322f7eb26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb55ba8a855d25dd7428036e0cd0558e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ade08beb8063bcea7d4994e3339ae993\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b9cdda5ff0c3b9cc4a989febec670ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8a2920baf84268bd89b048d09e651e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d8ce0431cacc919f6654e0d26866a2ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05eff5902e0611fb8f7bebfb06af26cc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"576780787e0d9a68a0bf4ca262fd2e15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c83da5113e06a426ab49e391daa6f61b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2219269962fa6d6e19aeb17527475e5a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5588863a4b18d8b348a74149bba2221\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec633310e97c80c59c6315eddbaffb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"95ba1e0f0980a5e81a9ef637b5ba7137\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e1a41099b9e58ae2ac48892f7d7a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_sensor_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a191ceeb0e05a37927f92d920b7e346\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e06c6e040bcfbfa49d9e4e0f15ae549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fa47306024f7160e82fb2166d71503a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44754edc6ab7eab6babc1a133ecdb743\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68a3fe093a4715fbb03c1f6ddbfd4315\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e025e5d17b85cc5f449e4d48ae663657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"130711c5025aa11d4938873aa2b2ef5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a640b780d8eed0ce27f6b553fb0cabe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f692df4d0a05b8ad1192c699fed5eda5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6353d49e24aa16d649ccc114e07684\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc6a70fe7c7b6f1cbf485e3b2b3e6be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a088a5d0f5d09b2c15852d0c0e787b7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"964462020e6e73b0b0169f5a61eeb044\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22fb495535a4ebd7554ace311e87e8ab\",\"labels\":[],\"modified_at\":1768937324.754808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f062bd2af5cfe5046c59f564790afee9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47e5be29e488997e90937e83b9da396f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b7c79a5c504e2f3eef63f7237af33d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1562e743cda38cd488936d23e22b58f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99afb89d564e6c8b5f415c28ce8491b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4292496fbf98923806f65951145caf42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62c38c853703ab58d017fdffcfa06a03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35ac42b0024d325caa77eefbb92fd9b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5127f16f1631b5877cf467e2d58c1c7c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"55c1d4c91d596bd4191f48a726f50433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7407cd1518c4dcebc6ef6c5d8e7da423\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6415881cf9e2c0b61be6abfa112e5cf4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2725a94f79899b5a4970b5c4d3b9e418\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4704baadf1151fcb1af4eb70c654e09e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30ee61c6ac77872bef422f8ab9ac933a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0732e5ee938297a9f5b973ed48b06d3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24e11985867ee122b198a79d40d53bed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e0ad69f430a72ac40230febd6dcff06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73efe848e7f6628deb3e86f815638a6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e11e57268a63a858310fd24ac8994a26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3929bbaa3f8cd13a3aeef2e57952959\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42e94a93f2db059304acaaf69c17af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d643c40ce27169788c2810ecad316e60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_on_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"90198efa0dea712c09f423bc7fab9741\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: On Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_off_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21c9e490e8efe764f099f91b18f22c7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: Off Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_battery_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf3a65f5e9b1fbef950e3e779e92faab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bd57910353ffae53801fd8a4f1b5f0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"454f88037ba03f08b83dccfd939ddb4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b426c8fffa9d853c719d4ff70196f3e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6824baa7a41d44d33603b4c760879101\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f0b56e360639ff5daf69a28f3036e79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.office_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eafd82385841281bfe024783dda13491\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ce75698c6edf211b8ff2e161520b411\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b98a93997b7667b4711d2831983de8a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5734672a2c09d8f0f6f0e233752b945\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99e3d86cf2c0a6fc7015cbfe7d79a060\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc9e480f72433ef3b4ddfe4a5d6dfa3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bba437e48b66a4689e26bf8b75377b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5bd8a6289b290db5a819a7507404574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c540b165eb0ed98e6dcef5b988de2c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f131df2fc89b340d5ea5d8f7553075a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0b6740cab7d3dc04b516dde24dc616\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b37302459fe4a8e950d1cebd8a395e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e103d6684aeb59d2b23569b207ba4b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1360a0cf141f9ddedb50eac50ed00ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ac8de408549fc851b81f2ffacfb1b1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bathroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db63a6e036511328bd6ece0876ee562a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2b981534f8171df4c6da3f420af24f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.cat_bathroom_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"583b41419d24459b2457700e28653e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912457da9847cd4c455444e5e3f4b02b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d9f921b3ad910d1de65af1ca97cf54e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.large_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe738ced38fd9513231370dfbd42e0b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.small_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e39d012d9fc6092736ecec03677116f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_motion_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6db261bcc15334e1bd64fd2fa62f1cf8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f46c5e88175f5336c08f0ab4b7580be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5544ef469f053ffa8759c7294efa6ea2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4a34eaf48d2c692542296f0e8a7e5d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3c7cf072f2a8ee7bd8b5d3a2cd179fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46ea4278b577244adfc842379d0aef1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b396ff111d07c8a2336ffb8b9f73e25\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6128229fb9f940def07e9c96cf14fc6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1274c94252cb99885059e3bc453f9d55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bc4bd805d7619c9a1b04076c931616c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2984b5f884cac4f2c289443dc2062126\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff64a4970c47dd1e208dc6113f29e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2e22fcbf052b73b858a5895ddce0eac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2e19645094c9d18821b943096dbfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e205c1906cbc3351074944002bdd1128\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b64991bc065b8ccdcbbc057f446b1995\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c14062b8523902321eadf7b3b974257\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dbdb7cecb5c85ea349569e68c3b5db5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fb06bb52f2e78831d67c9bf81a0d07b\",\"labels\":[],\"modified_at\":1728721846.268738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7a0060798e93dae0faef390c32c1c1f\",\"labels\":[],\"modified_at\":1728721846.269198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bda4ab6b68f9cf6d154e58d087f0dfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"876da9cde9c3be1845863f537752d364\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c034573ffd52e5a3d3bda9ba303df881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04c854aaf4c81f1a2d429a4a710b960a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c51654eb9bcb7b8bde5f10aa2a6ac2b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37b229da70e600b50c4da7fdd12d386e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.back_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad8b88418744a70fe17230e705c04e4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2d44675bc66f37477a1df4661470f7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e093e8f61c9dde686aec60b62b160f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d1ca4fe6518f80345d12cdb048bca05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f5e73212ea9ec168cfe8f89cc5ecc5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"619631e25ad31c44d797b3373abc0121\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"41c5da359bd07253c5906ea3d1d5c9bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69ab1adac8e2d678e29ca7cfc3663b5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d18f196a4578f9f03c18c42a349f4942\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"828bed1781d3ed491bb52194aa5f52c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb03e8f944a74a8d6f22cacb69a179e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ceea1e88fa6359162498d39710e76608\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32c94f61cfaa021fec2a7c42c0187dcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f35b908065d262cbc20ce40e77913ec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6e4fba44f0f1074fdb8f59a099f984\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"698ef67888799c78702f6e5993f9b043\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0141219b641271db80532f3e4c208a8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6945bdd9b5c1286839ec2feda660167\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13524b9ae17c60833721f597a438923b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bff288f871c8d3234915db1df3aecac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_room_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0120415d97c3741ccebf80955941d0f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b225c98bbae007535c42703d08744762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c4ddfb2b2ea1632b65135e6b4696b1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"400140978e8261edd5986a6631c65408\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef58559c864967045bec692f21ffc889\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93b1acb4134dc4868cc73ba3a2b2719d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee02aeef4ca9d0bfbaa379d5510c5af2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08b5fb9ce8c93a2fdba273d6e9e2bc1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b3e485ee289f8b2389d5d8586ac10af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"295c55ea37ede32f5d0542f2084a8fdf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"af540de79c1a76846557cb5422a2440e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80c1b96899d7ba609ce43f5d3808e905\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e9642d047ce619369c413e6338734b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee3f22dd95d9b04f3bec4b329181605\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5263aec80e35c0827a946676a4aca38a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab751aacbd342317bd0a72094ab1e3d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"205523a60b2f2cb5043d22106d05b771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_room_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c71d1dd5aac2f57ef4e5d93a800dc49d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.back_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23eefb89f7598b1b12ddeb6aa9fa790b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54bb5483d9b560378be5ed481d8c6f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e010955d7518d31854c9e4aab3f27196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db9bfa3b546ed6770a643c10cd880ff1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7df987a19ef8c7183f8bc12db92dedf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9010dbccfdc1900b1f762399bfbfb817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3f2828ba1b43661dcea26810294801f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd7149d9366d9601a3da20992991bc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1033ca0a8c4bb87068b0b0ce5045202\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4b736f4e34f5b44cc71a6c173a28bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9d0afdbaee1c21cb97bf8ead789fd05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b7501814ada140ebbc75cba95bd508c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c14c404b2807aad042575bd543388bdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e509fce7fd82a687c5380cabdb85304\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f77247ea5f57e1024e9a33057575058\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e8e9d058603365d951ca1000c07f04f9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3b1909b7eb73dc73e68f2db669bacd1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc97dc24ca8dbf5b4cd695ec9f18062\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e458d225d20e0d47500ef79aacc1fe7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d1eff5533638de7fbabbea2304821f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dd61553487e0f10f1c0046b93c7421c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44fa78eab4837b85fd7e18b97b690646\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7fb980b446c6bba6e7fca57e53537b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"834c2fb0c37edbf7b9b7cf32759d7793\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17cf457e684ec08236fb7454df043269\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7cae94a92bf02857f8185574b9b2275\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dee0b93328e4119a8c1edde7101029e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbb5600871de8d1cf42b880a544aab10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce87e6ae3b11ea4e45fed434c0633010\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc5b08b6a1940f42619bd2cbaf4a6cac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7612f009094e943b1e129312251b6db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c69bb67dd0462ed5dd00def8ad53220e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1655d96ffffc5c9f04e400af601b4047\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2c82f032d22bc8734679d92ea0de83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12b3ea55e15328ea4d540058ed33d507\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74ce228c87059e06b84516671ac20763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a341d131322622995e0a4dcc4c2fb896\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6e47f1cc69120985b15d8613036a9bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b496ac89474549c88080fae26ab63448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d02dae110c56c726715e529953d922be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8220ab6bb0cc1fc23c6858361deeb46c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9c73a2a70d12be24ecb2bcaf74c1eb9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26e03526e28cfbb18f893ebcc3dfc0c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98a1532b78d15322829fff6448682702\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee8d5a14a38130a77623414ce6ee4fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bee0b4d100f784a89f713cf59ae7eda8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fceb8d7e9aae08b848cb5dc97b345c3d\",\"labels\":[],\"modified_at\":1768937324.720737,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6e6ad930ee7d37c2aeec57f725e8dbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77913513918309cf18ebe9a75f1af7bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9925ebcc60e4395ed603afbf5a139a72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.stairs_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"64ef85094caeca25ae98fa076d8c6ab2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.right_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63eb7490ebbdb77e4e07c750649c0110\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa8df4191c90e2069a0650185f007b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe3864550a3efb648fe327037ea10625\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8522f9d656d4ee8d60c972ef318b12e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"381daefc1183f93859612b03573ac4e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6dad265890c82659855a7c138b8ff20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2143f3dff81f749104e0882d5274088b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ba145ce3192c0052224a1909e8bfed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5cad207f07383af83050f38c418d4f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10ece451d2f337805ce9472f298d5025\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f40809067c9ee7888788e40620862448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b230d1dbc4c26ac2bd56e50bef6b57e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bceed13702f89123dd582c5438326a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba603234d4704fa0d097770442b26637\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9b570d6459263411f32ba20823378e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"540f56f2db42ef17ea074b6d12c6a8d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b882b539f37696ac5b0d72346094808\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e335a2340c99f5c831c30988019f4291\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1496ff3411098998299e6b70a8a6ac8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3e68f4e23f1a8c2db67c33fb020b7ad\",\"labels\":[],\"modified_at\":1768937324.724768,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57ec7dd098b7d22f35ef2adb35070c44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"580b0c98b0af40ef97ebe8526b5dd762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc7acfeb1f1383b3f1193746d7effa9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ffd52e582ef700cc04806eef2286427\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f104dff69eb4b8929dca5770b0071c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca88deb31ee64fe9db769663ff3ca08\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28846a193465e0feaf80158a9d92cd87\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df83d525d06cd5c6cb8935d53899ecb6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8aa35ed55a01305e566d54d73c674a13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4efd6b7a05ab072f70351db23b242817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96372675cb474b8a3a33403573ccd041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19d3b1945550830c400d18eec7936d10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"768825fc5893ae8c1a68cee71f34d430\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f0f3f4d2f6f41f46a7fc5883c19f7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f779f56acb8df9a45c5e26e1d34aaf94\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e88349529a6577002d4572cdcfa7ad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4113ed3a769b963fd4a00ddd0932f173\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc9935b81c48df8d37aee1e17845afbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05286428dda0b418578fa164c2ec2f41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7993ea69eaa97bcabc92f958925362ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9bb313fae31e282e00d2a262c1be84e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a33f6dc15ebeb5c65a8da89a90da3c76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eacc493fd250cbccb936a793286c7939\",\"labels\":[],\"modified_at\":1768937324.728547,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eddfdec1717ef07c1a822b3f1c6d417c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bbc32f88ebae70bf8372daf6ea6f84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"824e2082cd5cfa0b434b927daf025f91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f0851ad45568021e7ae5eab17e2673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"797330642b50fd7cc717526490b5cd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81aa7a7763b626a16c33da9baf51a380\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08710d667a90994008b9c2e51f4bbf49\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c7586cb4377fac8037833b67b9b555e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bff0a946287e8e81b4791204fb0c4b6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c91612079311a00400f01a0e5906a212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ba6d0c2e53883635ee9ac22d8e850f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede8b905bcee1104ef3416e5edadc25a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1ec16e8db40ca002ed689cad642b9f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05f81c05fdfc78fd9a4f8f4a1c8b8640\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53e8b9304e649c2f34dd0959606500ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b036c6bc350aaed23e9f86bc06cbd2c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a3739602f92462bbeac62fddc838fbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471c0a1606542b0d7f960c1d2922d7bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce49f041cf870cffd3f0df35ebb0b76c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048378228b0fc98e250dd66ec6ac6ad9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5e40022e450e73c4b5ab1198e302462\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d78bb4acc54d779836cde9c8c6a2f8f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79490028fdf09eeafcc7a7e0ad2d160f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f1ed32bba3d33dd34695c661fa72adc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51e3619b9800abefc65f0b522124c7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a1866797815d855c958561d455ffd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f0626cca53d88f5dcf005b18180e9305\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea487f330dfbaf833ebf624ed9896db3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.kitchen_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a635928a8b31bab1a27474ac2f6a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56e02b860edbebacfde760983dc798f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e605e68d92150816bc124ec684b725f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ff656e62d6fe3600aa3adbc8fb526a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec53255b3eaeab829b0d155c429e1d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a08806049e02892d2f6a3d53113f1db8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f3c6699a41458e7aec2b1989f540a80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0933863db47ac364ff1d232f8b46e9f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63481afc3a760089087eca73a0f651d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8957d79e5cb80b0c1a20820dc97b0a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a60f74fb0f1301397480c82b1d54ed5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b504e536735dfabc28835d2876bbb23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fbeb6d2c5a857c79c70e7bb0561fad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fc4e4d47d9a676285c15a975e1d3c36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97f291f24fbe5a30e18bb12dce1a6676\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d21bfd9435eda404f287c3abbad94d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0444d51382f134ceeb06a73d4f3a1cce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c05a4adf47ff0104122a9e4dbf7fadd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4aeaa7e71c122a5d88a3b1882ad8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b17374a4c0dcb067542fc6a74220221\",\"labels\":[],\"modified_at\":1768937324.749696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15c2353076b1bc70f96467ea60e93883\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_local_programming\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b8266fddd3dd1a3fc9c9044bd7f7d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Programming\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18011a3dcbe5a7f5c93c03f151658078\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2e6dbe9ad453568e0826d771078d367\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b381daedd22399332d0c23beca269986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.jenni_office_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1db1d985f5d174ebf175d27b918704de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e96da560109bfc549eb175d77df5239\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b773d9a25d7bd00ebb8c9b90fcfbd8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5deaf7bef811b681c4e8b76c77d2db39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a8dfa6c8c5decf4c4be882afc702163\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef6eb92baab404af7fd61ba41069d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e5b7d53a4b2adf058011f65f0e4ac19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c184dbdd6ad17f8784d17e874aa0d0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"967915145f0ef87b05cf3ec61ff92c4d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e7d97417712b18fdd39510f53345f54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9e05ed0d78214c146c191a7915fc2af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5524e4843b13f72a0b8d3c36529cecbd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"462517ea07b522dda3d29a5d77358b07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97bfc53818e1e5d2b0c76cd8c7ca68f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad2f5c181c586e3bc45dbfd170cc8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a205de2be1537a999eb4d266b7086c40\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da5602526297ba1f96d40f0e7ecc0f5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e10162dc3c84afe280c5a18dd51e9b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc24c82d16bd17b6b68e0b2f6f3f4ea6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001f6b44d64baa1ab159b150b478007\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e80550caccd4b20ad35acf4ca40d92e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6b3bb5ca29c4ba1a5f51a07c342319\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d442915fe41090821ed760f0fccea89e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae41e29abd52b9682303ac5e2c41635\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7de9997e9e1a3ef46e7bef4deb0a659\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0f95b7e389e44036f819bfaa12835a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9b9926bc3aead0f4952441c76387ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.front_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e18e30d8c73b2b7d8f56d6d8a72444c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5da04a067a75da78e01daf28eba1cebc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef81d350ae0a3120308f207a382754b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c93b8d9c39bfb59bb63bc28a67369b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c4bd8ae88880be45a949ba732dc061b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50561c8d822c3b26d448cccf525cd1b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b49703ed535bcef72a83f0289633087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bdd2faee34bb34a5f744a8881cbcc68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e5c2c80d8e6863d72a81c9dfe05218\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93d5ca265b8193cdc3e97680c6db647f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d95b3c17713874a2a9d757e5515f9a0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eff4988dfe92e73c693e77473291a68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aac4d6311ff78700b94194d61356c75c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4448f7a424cac4aa39698e8890b4d84c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adeeb59701ce2173bd76622bf5fc040a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8102a65d592a4a456c8cda46f495d8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ff20be2fc93225ec08b44330ce05f90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e23cb4f3bd96aff481106795ea4ac53c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c38948afd63807d9bea536058af2f4\",\"labels\":[],\"modified_at\":1728721846.364993,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dd9482ca71561ce5ec70dbb6aea6b3\",\"labels\":[],\"modified_at\":1728721846.365587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d299d44ce26d096fc59656441c155e91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ccf12162192b1db183d5e658ca8d5ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048c4c8a57e47dc7142d8ea6fa196a6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7984cbb544e0ef6af868a938894a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e58a5f4844984223a08cc57a1e2b5f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1eee0f58b4efc0fafbd2a40a8e11ed43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcd7f656cc785bc98cbe8849648c0967\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0bed885a5d924aba589b2583d05fd15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb6de87313ec6de004fa95b00aa6f927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d361feb6237b762704e0461d6fa7d83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b012aac779c2d71e28c4010032f7bcb0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8381ddf293ea7f56e0b6dc25d7a2f0de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ee4d83b710c21b6d1294eba54624b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eedec08306572ee3292cda66ec9bad50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ad3a714fdec28accbdd4c4e7de89a29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4db29e68a9831d8b83fbc34af4098986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b6a0c3b3f6f37b85e7d467dfca44c1ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea03c7aa1a8f7ee7ccad99b3c9ff4d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d565a0520b9f6299ef5cdcbeabfcda4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15cb859569c08f27db39dd118e8e87dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8507c90d370cbd16116be434d5246222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6474656dc92c4ffc2d68061062d4bd44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2ffa582700b450ce0892f6635734eef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dbad0e6f48a425781d17739f8795734\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6871d61691047f5f5f8a2003ab06bc35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2bf28252f61cd3cae9f59c22db2e929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status\",\"platform\":\"zwave_js\",\"translation_key\":\"controller_status\",\"unique_id\":\"4182894947.1.controller_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b6f1921f63105e65d33f275bbb06769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e2878_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.adam_desk_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7b32509cfd8e8b57f2135f982e8d34d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.adam_desk_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"744a5b039fbf04b72c13f42cb57c30a2\",\"labels\":[],\"modified_at\":1736355683.891054,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e2878_", + "offset_ms": 57 + }, + { + "direction": "recv", + "type": "text", + "payload": "0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4409a3f2be06b369227045d72f072caa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e2878_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b40a7ba376de7ec1f911de7228cc76f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e2878_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a23c6bc5a4861c4f54a86066cf26e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e2878_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e29a3d1eab9e6e7b39d4981814c1c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e2878_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9743c6abc46883a073a15fe1d32450b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e2878_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e52b7a6ef89176f6d30ae8b3bd7604\",\"labels\":[],\"modified_at\":1768937324.880394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e2878_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08d27aac87ed1eef797f4f56dbf0e5ef\",\"labels\":[],\"modified_at\":1768937324.881003,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e2878_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d396a6bef670fc54d085c5d175f16a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e2878_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e1f6a989fe00bcf10daa6fbdffd74c8\",\"labels\":[],\"modified_at\":1768937324.881525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e2878_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6852f43897d8fc7e5b971354177bc7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e2878_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2dd7622b83b59be4b859d62aae5fcfa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e2878_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"246aa304d51aacbe8c81d224279f1b60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e2878_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e787a2f31cb2b020e5a02ccecdb5194e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e2878_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c038f834fbc5de4047db5d693de5520f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e2878_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e318495a5de2c0ad46f0d9fcc212a1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e2878_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61cefcdb814557288d2f15616147ffe2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e2878_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a25d33a371e9d37b9e359fb3ab60102\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e2878_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"985029c1c4a205b9050eb47bfcb58278\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e2878_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88d63901ab44f88f1b109674d78fbe6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e2878_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da4ffaa9bcb00cf00f6048f46031c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e2878_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"596f907cc32b91ddcfc55730d567ad23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a1dc1ed378fd6ca5ea8531b3a2b0290\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"463d4f8bcc15b05ea1ac493576708a05\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48456beebaa2358ea71c3fdc9cf7ea53\",\"labels\":[],\"modified_at\":1768937324.522171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:08:8B-light-office_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"93c6c6544539cf899bad569ce9440560\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"260f603c708075690f0a0dc262c440cc\",\"labels\":[],\"modified_at\":1768937324.521066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:1A:86-light-office_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d4f33c22b2f134128499d170a9f81a2e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4316012718b14810c7ed8651d3e040ad\",\"labels\":[],\"modified_at\":1768937324.523393,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:05:0C-light-office_light_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c2328f12915a88e139203759aa099d80\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c58a3dcff1651522f7a004fa77854cf\",\"labels\":[],\"modified_at\":1768937324.525846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:07:3D-light-office_light_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fd4b4a826ba1ce85b11c2a14483964f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b81fb595012241623d52d08e29f7834\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c3957d10bb011bb12b3e6c41b598191\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd09a74fbce16b1ab27aa2b8ce22df44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26ef71b3733fe8af29953704041e8b92\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8f82b3e8f2771f0ab24c9839a858b0d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc545b29708c4c982c585913d9fa6f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e20e8_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bed_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63092158204e47a86900ac1d94b85d76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bed_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"765ce6a13ad4d227fd7d1df51c057076\",\"labels\":[],\"modified_at\":1736357560.669652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e20e8_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae1c3396e8bd72eb45ffd91d3d440d7e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e20e8_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887f889588a56f03619560b36016847b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e20e8_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd63c27148c664154b448d68dab14850\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e20e8_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c120e6c6942aca4361e8d3482d529b13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e20e8_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80be9a2f4eb93931f72869f82ee1a25d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e20e8_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b348375076eb71644edfa2d3a1a3fe5\",\"labels\":[],\"modified_at\":1768937324.888442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e20e8_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"14e92db25cdfa8cefc51b2e1ccc83517\",\"labels\":[],\"modified_at\":1775500964.404141,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e20e8_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f90598e2bc0b94fba4961f07483be83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e20e8_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2dc11642030b46b55567615c6b50cb5\",\"labels\":[],\"modified_at\":1775500964.40468,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e20e8_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a5a22be58f4439bfb5957f1b1ccdd5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e20e8_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab698dbf37373681bc08bbff54a7537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e20e8_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c22ea2a613d675a1479eb45f1993f33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e20e8_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b80991556b6a76854ca712e3dfc7496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e20e8_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed1e6c2b75bdc80fbfffad3c6cdb0aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e20e8_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99a6c55ed1a3ec824f83cd8b9306930c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e20e8_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66a0bbe3b51a4c4457e91b25d434b43f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e20e8_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a74556a0d4547c7c831b8f1e4753759\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e20e8_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7820433bb9beed63af31d3821944f306\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e20e8_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd7061bcac8bbe254b1298b5e4a41c1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e20e8_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1040da8c80ca7bbdcbed89aafe909b35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e20e8_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f6ee68ac821fe83edcd517dd51b7fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bed_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b80f0761cf4c725fabc1df8de30f0f4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bed Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bed_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d1ff20197a688334ed61ae0ef24610b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698022261893\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"375e166e0cda4a49184ddc7a3baaa4fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698131438659\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1516392955dea9d5c3987f65e1a21ae5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f262f6cf884c0de68c44d465232ef2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b77573023fd0e45cbd803efb780ad2c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3302b58f4523b9775deccc77aa05bf99\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a5224c58b24307c45e10299f3348cee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aacbb82d04534e5b5b389236a4c0f63b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0bd108d5e399f94d25c38981e1fa74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"717eec56b8ef81c8619737a303b154b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ced631fd54d05c61c0e74631e41c81e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7494f61b328a3fda8a55ab7a5fdf222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2e84cbdbcc51e4f48baf7214e76d722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71648192af447198dd4f8300ccc532e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ea641a89e1d849c3373b2c337c3a66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc0ff81ebe53c633db166a1af91cfaf5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e763fb2e22c28f390add28e636c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30be942857ce762791d50422aa7504d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"65a42c0fb4d243662d5cac0c4dd55944\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2abe6c30c0dfc40abca673632cc24f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b4dc28ae7f2524ca27c1706b5f16c88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f7707b0eabb9773200603b8bb1b32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20890daf170f69687407391661d973ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e0f4e90a3faba0db0361d78e006929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a82370728b30adefa3817e4cd46987b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79efb54b9582819a0637c7c994db3c02\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d5643409303cb984fe3b1510f5253f2\",\"labels\":[],\"modified_at\":1758660536.913726,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2c1ffa1fefe471a1db8c7975915cab\",\"labels\":[],\"modified_at\":1758660536.914575,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7f93fb1fc2ce5a89138f056d261f6c\",\"labels\":[],\"modified_at\":1758660536.915203,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ffc5c7999492de07a6ac08ddfbd6cd7\",\"labels\":[],\"modified_at\":1758660536.915773,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94f4819071ac098d75745bf9217ebafe\",\"labels\":[],\"modified_at\":1758660536.916339,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"762e6d3ba10d31145566124175888acb\",\"labels\":[],\"modified_at\":1758660536.916906,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b99d149c424b019412d5967bf59e2b03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8664760514c651576ea096f12a1f392\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1eff1ca3d5d08ce4e23061d9208cdf6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cf765d081c1063cc980327cd4b896b2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a7:98_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"250a48d09c2d5e25299e39b9a7a31a0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3f5c4f6251c9e5d461d24460a10568f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"810731b1b401be39f6e86bf0db1694e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aaabb95ae0d93dc3cb445aa90193ade\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:6d:d8:6c_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500bedb57e5c713e97640f8346c53669\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30a484b77d3b1466b9fbd3f5347769e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede974f57b59c7ba6453e2b9713b1b63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"408ef0bacefad7f762354332eb3df58d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:40:f0_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58e0d06d601277431a4397c287295dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b90fcb72d686e7f16f444e550870f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"562d26b904b539814c5ad4460facd881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82cfe763a98e9bf75c35410890e39def\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:e4:6e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"affe0aa48114f479c924abd9c9d5ae4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad9ecd3f5664ecafb765d2a1b1c52651\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16d12c6b79c955c505c8ecd86eaa19be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_4_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"298bf015afa9856b33dc43e85563138f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:ca:59_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5387707cbd7934a7f17ad2bfc2edaac6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd375e9778adf92ad651ebdbc6a2a4b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ccd49fabdd295c62319e1e568a8bb00\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_5_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4097f2af48e3dd76fdb6f8d500af3e93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:fc:44_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26b67877c9a2b2cb3a8215b88a6bf42d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d92c178e01c229bef991c42a015295c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"947a6a6c9d9b978f8a32ba22a2b3852a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_6_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1453d3b4b1b9be768f4db7b8b7ba4f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:56:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4db62557803ea897de2e45c2dbdcbb3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c25ec789c92b4385836706e4644e878\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"168cb748cc49f12a335dd8dfe3dcdc07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca28d3e1aaa9e4f900aa7ca1ca3f9aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:b5:89_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d255bd26c49c0b8316f7e69de655ab0f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"stt.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b596632825fe1076787e2e00a1d029d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-speech-to-text\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"tts.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2927fa130f0baaf124411cfe176ebead\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-text-to-speech\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e19a53d8400b62c1b8986a02b5b5b0a\",\"labels\":[],\"modified_at\":1728721845.983581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.4.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2df5dbf8c580bcacc36d1c0bda2dce\",\"labels\":[],\"modified_at\":1728721846.001319,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.5.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2992a8bf82bdea8f5b4f3edf59345\",\"labels\":[],\"modified_at\":1728721846.008929,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.6.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d534d2f4ef518b830eb886757e17e71\",\"labels\":[],\"modified_at\":1728721846.027127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.13.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"701f561124e85d69fe250c6f5ccddbc1\",\"labels\":[],\"modified_at\":1728721846.035759,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.14.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b8ba7d5ac2d0d7b15ded3b394797bb\",\"labels\":[],\"modified_at\":1728721846.043408,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.16.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"703ae656d9dc0a91ed9349e574913af1\",\"labels\":[],\"modified_at\":1728721846.052172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.17.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f933c2cb7825c0c98616a1cd0baf665\",\"labels\":[],\"modified_at\":1728721846.057779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.18.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b467e6ece5165bf28ef33e1806d567c\",\"labels\":[],\"modified_at\":1728721846.063963,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.20.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4deacb3773ea5ede7d53b9b0c4cc1b98\",\"labels\":[],\"modified_at\":1728721846.071734,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.24.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"907ff6d2edd7e5fe5373d1f1409792f2\",\"labels\":[],\"modified_at\":1728721846.080476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.25.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"862115a3de075173eb494c7860ed31df\",\"labels\":[],\"modified_at\":1728721846.089722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.26.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b423d803ad851f36a74255a889186bb\",\"labels\":[],\"modified_at\":1728721846.099062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.28.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47516de4224b0eef5c0d003c0513060d\",\"labels\":[],\"modified_at\":1728721846.1068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.29.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6f7dbe7caae310dd09d478d46a3028\",\"labels\":[],\"modified_at\":1728721846.114612,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.30.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6278dc427336c377caa1e58c30ff092\",\"labels\":[],\"modified_at\":1728721846.120738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.36.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f72a7429de924578f7b9c3fb6d781a7\",\"labels\":[],\"modified_at\":1728721846.126794,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.37.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4411a0bf4d7bb1ed0f6f11343dfcd199\",\"labels\":[],\"modified_at\":1728721846.136087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.38.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b6bd22bb44d0c9f184f996e2ae77d69\",\"labels\":[],\"modified_at\":1728721846.14763,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.39.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a26fddcd069cceb68a34e3461a6e0a03\",\"labels\":[],\"modified_at\":1728721846.156271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.40.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe7380af04fc4c2d01ce456a97f9ef8\",\"labels\":[],\"modified_at\":1728721846.230796,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.66.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e62d502703a6419c34e8edd95c486814\",\"labels\":[],\"modified_at\":1725239521.486838,\"name\":\"Dining Room FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7bb8fbf51788176cdb83547a004935fd\",\"labels\":[],\"modified_at\":1725239521.488668,\"name\":\"Dining Room FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"643d73eb1fbe0ddfcaa75370f3c8389e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a43b45ea88de4d9219e8d2841b42ea4e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3298e1c38a53b3c870fed75d6968c07\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f041b32270f9966ec39f26bc7e960f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46581f02785bb70fdee35529c92d263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6bffd588d27f8aad7cc650604b61c2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c74bfa7715f144957d804f646c4799bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights On White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25c3d5677fdc630832ee84427cd99536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902139116\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cbcd941a74a5a7396aad84ed9fc7dabf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902226266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3f98937a77978b4644ecd2e3b22e8c7d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.leks_lamp\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7fc3837a77f3b273d02c5bb1bf0170f\",\"labels\":[],\"modified_at\":1768937324.523879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"leks_lamp\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:E8-light-leks_lamp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c89435003eea4c6873d070c3c97fe473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3d27d28caa96a13c6ea25d0171638780\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1da40bd512b39f99dd627edb13c06403\",\"labels\":[],\"modified_at\":1768937324.524838,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:68-light-front_porch_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d054016a6b2f868c331522d5f2a024c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a43e095361249391c95d346bead29de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d6e9bd72ac413f4c9765807a7a8829e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d43bf2ed96db238ff6d5a3d55b74102c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5cfc016d624d22f58b972535e2c588e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:4c:4e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab8095363203057cbe0b359e78a434fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08f36a4038ba7e9ed484f4e40550a93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e32158757eb5aba850a4d85abb2be672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43eb4d024a7ef32436fc15eda451e656\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:92:15_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ddded55b837de9c9ba5d6b539445a14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4dc39ab3f597be7b5698f6d43b17afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4a3dfc05ea5897c3f4ca6d122a9e755\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d66b459d9b3468bce28a13faf238f788\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a1:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66bd7310f75118cb61fe4439c1b2dbaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e4f14bcbc3db07c23bde15014153663\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08167d99b04cd3119c18bc3a2a03dc54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78908f51b09bf8868105eeca61df8b51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:50:fc_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c312f3943f53f013a1698197beec7d9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be1582024ad1873d0529a0f5b617a21e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce297c2ac2bc5a14ebb49b8600041d2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0f550f0c1c6f6cdd1f2308b2e154000\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:d4:63_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de8b6bdb93fd71244574b16898e15903\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0197af3b4e34cdf7ec9a96ce8415728f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bd54501fcc95714cad1dcc1cd31f4a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"148c8043f4ec331449594ce281de74dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:9b:c1_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40777cf802aff4a5b6ed5e3d5c0883f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c03f2a67067cb61528fa31b6ad9b94dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33c056e4fecb95c459544ce4bd40bc90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8810cf2748e6123026bb56d1577b6b14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ba7328fddb154e27b647e31c8da72fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05c1a4ad242b4000e29be97d7bd1c3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"27cf5f296894b7daac381bf03d05ed66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"469441c2849c8da30a2a3175c2bd6d6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5a2de0bde5a2e1cfb2116303d6f5be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13c83850a4f8bfbe494ca9f383a652d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e979bf5003d332a9115b787a3d2dd2b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe12fde8dd7a18b5da9350bfc48afae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53fccaec9ce8f17e7d03d9dc4c33cc19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e27853184c40850e3134ef8116e8673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb7eeef067360dbb615665e6de5054b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0a5aed8a599743541e88238fe0839cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e632ddf5ed06b6df996980dcd58537b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.68.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2be995612da3708ee3aeabf4ad49d8da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.68.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47608e4f8a0b2cedbf2cfff1d12cb4d6\",\"labels\":[],\"modified_at\":1728721846.246357,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"538ed7a8af31562cd0d7c19f8a64c8e0\",\"labels\":[],\"modified_at\":1728721846.246572,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5fe7e5df6a5ce5a5694b4ef947580b6d\",\"labels\":[],\"modified_at\":1728721846.246723,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bbab6b72b677a179c8bc1228ec0fa29\",\"labels\":[],\"modified_at\":1728721846.246866,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f6ab96f4e24907de75d4f673141590\",\"labels\":[],\"modified_at\":1728721846.247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.68.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"830fd955b0b9dd786b18a7cee2c59bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.68.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee2102e9596641854623dacdf86a7c10\",\"labels\":[],\"modified_at\":1768937324.645237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.68.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab9f2342cbb08659c90acff506df3b8\",\"labels\":[],\"modified_at\":1728721846.247129,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.68.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b57a46d4c309703d4a6c50351952ca1f\",\"labels\":[],\"modified_at\":1768937324.765615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c4d6945336b15e0bba9b9345eea008b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"430cb36836ea27ca6cc4cce37605dad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519b5afe350cad9e05b31596d69a6e8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d050ee7382f25f72284e5cbadeff8d0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f44484b3ec3f6e65dc64ca21de50c405\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86bdfd735092c7fc659929e894fbc672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fdf886269a2fde49bd57cc2cbbd7fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"587df372365d29ba4d904980f49162ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c7888f5a2bca7dba8bd7f8db8e02292\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b273f3e4da902102c22068005d31362\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4923aba2eedfab503063be97268d349\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83882c656fefd0303211e999c22a2765\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17b020ebb60e265e372186ff5dec78fa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a821ce10588a5f5c21dca0d5a1caf1ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c2caa9b84384312cc3ee01843fcba18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df2245766365111ead8a1797d4aa1628\",\"labels\":[],\"modified_at\":1728721846.369908,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b21dcb9411ff471644d3bf7cc1f88d5\",\"labels\":[],\"modified_at\":1728721846.370379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b2a820515542e566358f93aea435a81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1598869d84f6256ea9af4669c9f1b726\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.upstairs_hallway_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2672687dfc897fee1ea56b169bb7c5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2119dc1ccc97edeb6e783ce5f0f7ad88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f562bfb09408687492fae4843c9aa192\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad9ecfe03131cd3738d0a0ce1ffc37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aab59415957dbb20b62b5aedb141e753\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e50482b2832b1c9478fd4d009eb8216e\",\"labels\":[],\"modified_at\":1737489134.76617,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966121423\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.night_tv_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2320f4922c41ae3049550a876bddadb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night TV Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"night_tv_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ae4f862e8267f53ba0ec595a391bd85\",\"labels\":[],\"modified_at\":1737489109.545107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966772353\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ce35a8be192434170cdc92d71e7ef8\",\"labels\":[],\"modified_at\":1737489123.678107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966888905\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a445cca6a8488132b472a230b330f318\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d07c497e4fb52fab5ac3b5d5dd718797\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41418b9d9c10e3c186e587bc21a21d95\",\"labels\":[],\"modified_at\":1725239498.826997,\"name\":\"Master Bedroom FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2995f0a20e4c3a95dc980037bc879f\",\"labels\":[],\"modified_at\":1725239498.828766,\"name\":\"Master Bedroom FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:bed\",\"id\":\"95df3f7dcf7e25696d4211430a78abd8\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"03dc995e582e7761e1a9f056d9a752d2\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"45e20dec6491a8436efbbf62938683e1\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom Not Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87bee964e12f4f43e8a77ca865687cf5\",\"labels\":[],\"modified_at\":1725149744.14575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709059722839\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b94ad5130258af70f3e44df53f10b5a\",\"labels\":[],\"modified_at\":1725239534.482943,\"name\":\"Master Bath FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69e5ff06047fee172494a676c9595b1b\",\"labels\":[],\"modified_at\":1725239534.484731,\"name\":\"Master Bath FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5bccd1e7de01b713e1b365a5823ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2080a737e85dba8c1c13d14ca844aa8f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49f9688732c5429b62c5cf2c39f5ebdd\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Presence\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"435b08e125fd43d1e5d67ed0d123fb6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709189535560\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_play_area_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"face7a647c70a0aef8bcc7901e21d7e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Play Area Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1710749651371\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_area_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09ad60b2d7e23af2bc93b52cb0ab7e50\",\"labels\":[],\"modified_at\":1775870416.948704,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Area Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_area_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.left_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1c843ff67b3c61ea82140a73d5ad090\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Left Upstairs Hallway Lights\",\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3cfa9649d5b814c5dff763cd6b76d9f\",\"labels\":[],\"modified_at\":1726995223.727702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b1734fd1032a711e2680a994926fa7d\",\"labels\":[],\"modified_at\":1726995223.730126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fea3aafb794c254c9981d05e2e69067\",\"labels\":[],\"modified_at\":1726995223.732286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f336d4a0a9c91ae0de81eb73b5e182\",\"labels\":[],\"modified_at\":1726995223.734449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f526bff502fe80b455c4e763a3a3db97\",\"labels\":[],\"modified_at\":1726995223.737066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43050533225ce62a16ed7cd33bd9e2d7\",\"labels\":[],\"modified_at\":1726995223.739279,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39cbc62a9910f6be46f1f17a716b402a\",\"labels\":[],\"modified_at\":1726995223.741579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913acb2bc62696d8db53f8508f1e1270\",\"labels\":[],\"modified_at\":1726995223.743703,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdb198312585d22902b2185c35214cfb\",\"labels\":[],\"modified_at\":1726995223.746068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a70affbb4ed972f8daec3166aa396f50\",\"labels\":[],\"modified_at\":1726995223.748907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"254c8b3136732d3bc8a34d91b8673ef8\",\"labels\":[],\"modified_at\":1726995223.751225,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e8694cb975a4e0c029556b1ba338d81\",\"labels\":[],\"modified_at\":1726995223.753406,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e0f89e58dac6a89d1cf0c76e956fc2\",\"labels\":[],\"modified_at\":1726995223.755504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"051e2e640e4c3291b09d55d3687c1471\",\"labels\":[],\"modified_at\":1726995223.757082,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f517ec7ef72b04193123c414c8c3f735\",\"labels\":[],\"modified_at\":1726995223.758519,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c26cf28b3b3dc9a6bf25c27fa43aae86\",\"labels\":[],\"modified_at\":1726995223.759977,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"971283eea4ef6a48d36d89350283bcec\",\"labels\":[],\"modified_at\":1726995223.761297,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9c3ea47b54daf6eb45abb3b17ad3724\",\"labels\":[],\"modified_at\":1726995223.780765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c44b3196aad16deed838f7a23fdb4098\",\"labels\":[],\"modified_at\":1726995223.783536,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5133e25e8f01dddbb6746b990b08f5ab\",\"labels\":[],\"modified_at\":1726995223.784321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9909d6d28676cc7831e49bde2470a7c8\",\"labels\":[],\"modified_at\":1726995223.785069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8482199ceba01d96d231e5f3a9dd368c\",\"labels\":[],\"modified_at\":1726995223.785825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23ee7b10cef9e4662e75be22310cefc2\",\"labels\":[],\"modified_at\":1726995223.78661,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd7c6e19c030f7196a8c11ba4b23fc41\",\"labels\":[],\"modified_at\":1726995223.787367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51d01dd8e96eb9b04bf64f2a2decc90\",\"labels\":[],\"modified_at\":1726995223.788115,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd490e9ecc4785dca9e2c059f36deffc\",\"labels\":[],\"modified_at\":1726995223.788879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7a4924a9ed506f1a7eb6ee0c5cbd0b8\",\"labels\":[],\"modified_at\":1726995223.789713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1a65aba3769dcf7d73471f08ee7487e\",\"labels\":[],\"modified_at\":1726995223.79048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9c01253348f061043bbdb1f1507a49c\",\"labels\":[],\"modified_at\":1726995223.791252,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d489d218083ad29b42fc36fef922cc13\",\"labels\":[],\"modified_at\":1726995223.792031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67713a70d56c5297ff28330a8713287b\",\"labels\":[],\"modified_at\":1726995223.79278,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9b7724b86925b6394800d7c6891b28f\",\"labels\":[],\"modified_at\":1726995223.793535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49962449d9f171c587ef0081e1cc465e\",\"labels\":[],\"modified_at\":1726995223.794287,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f4a5682eb43905036502e20f0d7cdf2\",\"labels\":[],\"modified_at\":1726995223.79504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4df9269002f04292ea5a51edd4f8c6\",\"labels\":[],\"modified_at\":1726995223.79579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dd1fa6fe3de99351f0c2e5b83f26c15\",\"labels\":[],\"modified_at\":1726995223.796556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69b62987fd5a78948f6cfdc65527fe6\",\"labels\":[],\"modified_at\":1726995223.811631,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"178c13bf6bbbb8549bf450a4b37821e5\",\"labels\":[],\"modified_at\":1726995223.81238,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60db789ceb739a57754a71f6a6341c62\",\"labels\":[],\"modified_at\":1726995223.815043,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaac7be99d399d761408d7db5905d168\",\"labels\":[],\"modified_at\":1726995223.815764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15733449911ed88087bdb00ce20a0bdf\",\"labels\":[],\"modified_at\":1726995223.816558,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"429e1e416e644ac2e44b56eef5823108\",\"labels\":[],\"modified_at\":1726995223.817315,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08656fa710c862cb6e1223682c8c5dc3\",\"labels\":[],\"modified_at\":1726995223.818008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1df54d5c58a731bbfab080b1a87906b6\",\"labels\":[],\"modified_at\":1726995223.818713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc787e9c0359d3254b83bd29ba368af\",\"labels\":[],\"modified_at\":1726995223.819405,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7d473447060f92cff978b9a385e9e68\",\"labels\":[],\"modified_at\":1726995223.820087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"055386324f02620a24c7ac18946b8bf3\",\"labels\":[],\"modified_at\":1726995223.820745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"76b3a961774fe3c039a138cfd39bb5b4\",\"labels\":[],\"modified_at\":1726995223.821464,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1d47fcf2e0a7f8584fd0e2f3c7df26\",\"labels\":[],\"modified_at\":1726995223.822171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6664341496258104260c74c65e71e362\",\"labels\":[],\"modified_at\":1726995223.822825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb8d289562757807719ada54917fd1b\",\"labels\":[],\"modified_at\":1726995223.823475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f21ff74ba7e2a3ef0d9c35584ff6eff1\",\"labels\":[],\"modified_at\":1726995223.824163,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5d811edc4036d76580e45069c0c9d4a\",\"labels\":[],\"modified_at\":1726995223.824852,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1dabea2c9416bad06dd40deacf241ca\",\"labels\":[],\"modified_at\":1726995223.825603,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49200ecce06beddd4ae77d277f4e14ff\",\"labels\":[],\"modified_at\":1726995223.82625,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd926acee83d1a62199e77a8dfb0aa05\",\"labels\":[],\"modified_at\":1726995223.826914,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5fd1ebd4c46c2508f368824f8e8152\",\"labels\":[],\"modified_at\":1726995223.828388,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2f8d02c9a7424a0357cba3b49eaebb\",\"labels\":[],\"modified_at\":1726995223.829147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_current_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2393f3fae020b53ab99954ca957c3a89\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Current Power\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_current_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_today_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d7106ff82fcb4a141f250d27a389e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Today Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_today_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_lifetime_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"96d9d3cb20150a5d688099ee3d59ebcd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Lifetime Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_lifetime_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1f5897cc45878de2eb2c5a5f1dff53bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad685a605a9e3440bda5246f75285600\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_online_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a1ff8defd768f741f55d65e9a7f1d5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"687378e33ac65e5d1c22ce92420ebe2f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a7c5493056d56a29653e33999a7ea9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d95ca2a85ce23754796fb7dfc047a34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18bc901d7dfcde1fde8bd62fae8a5113\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca63b9ad9d43371a52ac3613c109af07\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e07bc3bcceaeb880e71ed355f609b238\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd7571675990539e04f4f8a77406c490\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"211dbb3a7c69779aecea73e41f9c6473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"498fc8386aa58186c1fe7da679696211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e1ed71597a80a21a1881c86b442e6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3babf3437ebf12fd772a1aa54f4ab6f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e09f448a85712812e396a7f9cc1d393\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f9e1810e5a0c6896a04a053cc67f82a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f93e1a44de3fc2012749ef93295ddd9f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c20dea6e1ee110ac5ced5123e4947d32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"026a47e3e1d3993dc0ba1ad3c7446bf2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63dc709ee9f548ea607f688f93cf3234\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a06c4b37c7f1e33fe923bbd3149d2211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52154fde2fa3736366353ce80d9143fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5655856d7f5e8bd562dd95b8b8552212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7839750c868429f82ea60be31065090b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"345ca71bd27275be777e84858b01aeca\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f2714bb3fe47257fb7d75ed619377c4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca87da2f07b93a7514c465435b42fc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11ff9bdd285d12419a16b1c4046b164d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501f530e38c0a5ffb668116d0338b7e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79635f34cc537787519a607cef9c2b54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04f5ba7c71b00f927719dd6d1f76a24e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22a79eb3bd15b816fbd2353b874fb8c2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4e289027532937da275a2afe8a1e54b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c889610feda4c5d2919574a4a4b2e9fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6767893333bd2dd2faae401b17f6287\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9719fafdbf800c3e41c1247e9ddec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"709f79ac43c1de05cd9b92356daa783f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bbde1b266563b56db9b76c48b5e4c802\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cea749b7d0157bda9c8b3b8da7d0c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ddd7cef675562790ac794cf05db84eb7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3c559183ae7d9c9e8da0b9e9b52d2c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"361a1fc2a89ff20381d82750957d8e6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"99764c4bfbb97e8902e9a2ffbd269940\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6dd91fa0dddc72d17c5e9bc5febcb1bc\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d0458b6571acce21bda18fa4ed91f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"967c6fffba2e2da7a3df57bd136547a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"089c111078e7402a6d5d28aa89648473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d4c2fa1d9b5d9f01caeaceef8fa3b38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"456f0dd0f5c3770d056cc3764dc13d64\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77885fc4334d3e5779eaa71dac27688f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d0917ede83bd0ea1b545fb27ae2a4ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a36bcb574711bfe4e239bc12d85c031d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ccaf61f0c36aa89e2cc6b95d91fb0471\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05811a50db6dd93844c0b196d39d2acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"383a71bc0095d7e93746e6ea4f917198\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62cebac91c63149058b957314fb161b4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f283b802affc5a6ca5f1c7fc5de091\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee406fe27a3eec7c0c329ac2825c475a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"168791062da8f11816f49242dac4076e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"31ea3d07718bab198b5b9fc6af1dad97\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"305d5bd7a5ce07000c053958fcd55f12\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8835ef4f2b23d870d8155e9d6d5601\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fdd8ffe94c60d06b945af26a4352cb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"140d724fb5d154e0c3e6baab9f1b2c8a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"45d3fcce547a5c666959dfc27b70823c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"869b21114a648290559184a15408ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e821ed6d71bb8f39e7b129afe3af4d9d\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00d279b67b2610254703b2f54f7c19fb\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70fd486013d17ba726e8011eb3a73a3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d40dc815657ac375ec8fc97364d0587d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42be692b3321a3c3b636ca3c45f84b83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e32b957382e291736c3509dfdfd9aa4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"03f49ee636edc9301e014dade638cb4e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3846da42a87cde40ac6aea0bfc100b05\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"223c68438e658441b8a74c18d7440baf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c161128d74cde1b9df0ac526abe9a06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7b1a0a10460e1b2b3ede2e562a703f5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adc4e9307e5f4586c50c9b3d85f66b27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33f66484a0035b233ab171ed3b696fa6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"592ca6e323759a3be3e15662afff9297\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"893b80ec5dd05fb72fd00141fb518e32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d688d2d1bf1a31622070b2fb094c4cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4e72cd5d23acb39a4f9bc63cd0a21b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"da85884355ff3f4994596e259973be64\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2f84c45e7569a132689cdd9ed95b065\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a1f3186ff560113bb369dd97d7817da\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3db09b81e63e277131f85a8131a8025d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0b16c038d6c97b603911b86046cd25af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4eff38935461680017f59921787a34f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d18af827376be02cc0d3a1b6f9e01ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98977f8e3432f6e1ff5ebc307b85bf5c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4561d19a5716fbe7e1234f629b30767a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e9a028e3c404f0497df004b9975faad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f02043ae6d3212ba58eff7b1f7747496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1712170208fdab217e72e9ccd1bfd12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22e1a76aaf68da0ffb5403b0d2e2e274\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70909c374becd6dd73c82b4ff632b3c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0eae697b783ebba9efdb307f5ac8880a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c413014864a571a604089ceeb62ed55a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39450e87b48a58faf8da5a7a85133642\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5b1e2afd4751933180abf85fc4807f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a967fc1ae03d7238ecea72c0a0ee0d6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbe669bd0773be004f53e90bcb0df11a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56cddc0e777db2dbcc227171ce9f8054\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79b07b22b2ee648f66881c503ff3745d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d58f33bac449e9831ab4e1e98bc8409\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3859824896da3b25243af7a06a9ac8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39adcc1e155986621cc39a150c750070\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56317bf1aeaba04d33f714030392e692\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25113df24a5179f21d9e43126c27f58c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"466f741572070700ef6306949735069e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b12a0cd54325f7f91fee567870e913f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74e4b4ca3efba5d75a1727aa21c083fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"569cc4587b3157e2f58acd98ad72443d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74526ec1a4f846d0ddfaef484bc13493\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4203eae9736a10d438a8ee366d836774\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f8eb498aa41b793797942795f06c310e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Using Cached Data\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_data_from_cache\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_restart\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2bd4ab12752eaaa02b11c84a1e3290b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Restart\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_restart_ecu\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_query_device\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0ca0562ffcb02644dafae6227b475d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Query Device\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_query_device\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0a21329364115517cea604476281c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_inverters_online\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_003\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c5d8e19b2f7ef7dad358b83e242a65d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 003\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_confirm_configuration_change\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d25ae85a81c5a18a3965894f77da168e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator: Confirm Configuration Change\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e465c51bf88dbc32a6785a7b6dad1f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71fd02485d1c3201235dfebb5dcfe3b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e703e04564a595e11b85dc51d5afdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc9b9913efd0c2f8819a21443737e28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449a3a66c448b698823d287dee56c864\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_on_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"553ae2641fa529953c7c9c90ea018e2c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09447a340f5a951b315041b5dc38910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_scene_control_remote_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4108e95bdb9ab52a683d50b3c1eeb35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control: Remote 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed_dimmer_and_group_3_and_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96fb107556a5754998e6d4d86ade7860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed (Dimmer and Group 3 and 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24813797e3fe66e246880f75f276e964\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea0442a91f3c09d591f5ddfd39b6057b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0152622d192ee621b119886a52d711d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7d94a13fb61185a29df32572fff71f7\",\"labels\":[],\"modified_at\":1758660536.917488,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80eeb792b9601da317217fe3bdc1d46c\",\"labels\":[],\"modified_at\":1758660536.917716,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2068d0dc53aa2c783a1b70575e6d7755\",\"labels\":[],\"modified_at\":1758660536.917878,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d71e0683e8fa779d02db54bf283e7f92\",\"labels\":[],\"modified_at\":1758660536.91804,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1b34b38e43714428e109ed8d1c945\",\"labels\":[],\"modified_at\":1758660536.918202,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f895402c9d8d3bbe9eacb657e5a92be\",\"labels\":[],\"modified_at\":1758660536.918462,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.total_inverter_watts\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb73b03eeb9a43d362378e6ef0a89fb7\",\"labels\":[],\"modified_at\":1768937322.85093,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Total_Inverter_Watts\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"43febd2c80fd35383b1796826e76aad9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"notify.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de018507a30e449b6455fef4fe0fedc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980_notify_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ffbd90ab3bdee9a04e0e066a46c2d94\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eebcb05ee23fa77b122afde9ce221d20\",\"labels\":[],\"modified_at\":1768937324.525363,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"", + "offset_ms": 61 + }, + { + "direction": "recv", + "type": "text", + "payload": "C4:5B:BE:DF:34:6F-light-mariah_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1dd305fbfb47d33a89aa39aa5305aa6c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bec4f47de87f948d86a066bb2ab2c70\",\"labels\":[],\"modified_at\":1768937324.526369,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:32:24-light-mariah_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a815fe83e1ed7dc52f51fbdcc13b71\",\"labels\":[],\"modified_at\":1726995223.830482,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e558dddb1abc1eeeaedc81b16c01f9e9\",\"labels\":[],\"modified_at\":1726995223.838912,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56d69a23bcd42abf56831b1b71694eb0\",\"labels\":[],\"modified_at\":1726995223.777968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"581ec35adc2c957a76a2c7fd60ef8633\",\"labels\":[],\"modified_at\":1726995223.807272,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e52835bcd7056629b1f1a99e20075585\",\"labels\":[],\"modified_at\":1726995223.837479,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47538b6ae63e2feeba44c44fae84ffa1\",\"labels\":[],\"modified_at\":1726995223.776542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2833708ebf6506c52dd79313ad59d26d\",\"labels\":[],\"modified_at\":1726995223.805802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1602432411104b1ff4945fed97b8e1a\",\"labels\":[],\"modified_at\":1726995223.763548,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c02d2d704d9242c0fbbed6a12f6213d\",\"labels\":[],\"modified_at\":1726995223.798062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d105430a04958aac57cef96114b7c07\",\"labels\":[],\"modified_at\":1726995223.831134,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9eae8ff171be93ebed91308be8af407\",\"labels\":[],\"modified_at\":1726995223.838195,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d811fdd8bfa49dab565b28ada1eac2ba\",\"labels\":[],\"modified_at\":1726995223.829815,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a920c156a1c4ac8ed2c8c7e1167e51\",\"labels\":[],\"modified_at\":1726995223.762419,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b11670409d6bdf9aacdf2aa240b77fda\",\"labels\":[],\"modified_at\":1726995223.797323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4aba70109c330d3dbe361ef2f93ae3b\",\"labels\":[],\"modified_at\":1726995223.765802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a56194f193842b6926637417fbce5d3\",\"labels\":[],\"modified_at\":1726995223.831809,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3566ef3b27ff4ad879bf2679940865a\",\"labels\":[],\"modified_at\":1726995223.7996,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9344a735c3f7b30f4f067902c5e8699e\",\"labels\":[],\"modified_at\":1726995223.842465,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d473f6cd0d1bd253b226a132ea261d92\",\"labels\":[],\"modified_at\":1726995223.810927,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa0f97c72bd513df9f4ae63f90bcde63\",\"labels\":[],\"modified_at\":1726995223.843171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555d62f0d7d846827fea1966f7a795f\",\"labels\":[],\"modified_at\":1726995223.782285,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b738544dccea104b025e9d0e05eb0a0\",\"labels\":[],\"modified_at\":1726995223.843932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3279a9c16bede20195a82db3a2d5ac6\",\"labels\":[],\"modified_at\":1726995223.813127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"edf1ee16bcab171c1c577c63ab97f10c\",\"labels\":[],\"modified_at\":1726995223.813846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d546166876e4b211dd195567284dc59\",\"labels\":[],\"modified_at\":1726995223.781575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"083bdec6d96d2f404c70507685f3dd3e\",\"labels\":[],\"modified_at\":1726995223.84177,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dca79ad23d502629a88f7013fa68932\",\"labels\":[],\"modified_at\":1726995223.810227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16aa1de89eab7ad3ed129eb4cc0ac3c6\",\"labels\":[],\"modified_at\":1726995223.771136,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e4964ba1e71db161a6472592eb9e740\",\"labels\":[],\"modified_at\":1726995223.80033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8570560d08e0567d3efebba878cdb6ab\",\"labels\":[],\"modified_at\":1726995223.832485,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4aebf740e9f7b9bd6c98c37d306197a6\",\"labels\":[],\"modified_at\":1726995223.778671,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fe20c2ae51615b00769343092fafd6a\",\"labels\":[],\"modified_at\":1726995223.807968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"068e413358fd64469c9a6e6f35b42a3d\",\"labels\":[],\"modified_at\":1726995223.839642,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aed56680f8f167daeb016cde5c2ba644\",\"labels\":[],\"modified_at\":1726995223.84033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fc85df1d90cebda5ab8b19c32436ae0\",\"labels\":[],\"modified_at\":1726995223.779376,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"021a49ce92e7476a582236b73b6e3535\",\"labels\":[],\"modified_at\":1726995223.802855,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6a40eac34dc70bf8dc5def5b0073fa\",\"labels\":[],\"modified_at\":1726995223.772679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c553fc274e111c629dd000aeec4c2b7\",\"labels\":[],\"modified_at\":1726995223.802104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df570e55b17fd5b868f21fdaaa452f90\",\"labels\":[],\"modified_at\":1726995223.83469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8e13752690827fa5e282140c5762e8\",\"labels\":[],\"modified_at\":1726995223.773442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b20b811f7244af9d9b23c2761c84b693\",\"labels\":[],\"modified_at\":1726995223.833935,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a5afa9a0787a0de471b3ee2c02657c1\",\"labels\":[],\"modified_at\":1726995223.808684,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8732cb4c313abb97189c10f0054108\",\"labels\":[],\"modified_at\":1726995223.775718,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed76a423a40fae6a4f24c824afc7805\",\"labels\":[],\"modified_at\":1726995223.833237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60203a103ce1b8ad003b1909fb4295b3\",\"labels\":[],\"modified_at\":1726995223.841088,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75a7375b9fceab8ece8c8d79beec2075\",\"labels\":[],\"modified_at\":1726995223.78008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d4429655a28d7c4d11c8ac748d6ec40\",\"labels\":[],\"modified_at\":1726995223.836044,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09fe4444cdc9cd9c1cb1d6365af990f\",\"labels\":[],\"modified_at\":1726995223.774958,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd10e1850ddc2620520d0c61a8bd97c6\",\"labels\":[],\"modified_at\":1726995223.804328,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4251e01f23bc9625e8a30bf7203a470a\",\"labels\":[],\"modified_at\":1726995223.835367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743fe98bbc2fed1b1af8b35cf2fb0ec9\",\"labels\":[],\"modified_at\":1726995223.774193,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6269259dcc0345571feab5284d7d09b9\",\"labels\":[],\"modified_at\":1726995223.803587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"524dd66763944a8be56ef44aa306ce9c\",\"labels\":[],\"modified_at\":1726995223.809514,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81b1a35be54fea6be3a192e4c82541f8\",\"labels\":[],\"modified_at\":1726995223.801083,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63bbd707bde7aeba07b3b5ecf5b7fa17\",\"labels\":[],\"modified_at\":1726995223.77192,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45170e964613947df7b4c57ebc0acd48\",\"labels\":[],\"modified_at\":1726995223.805066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8207f151f883386419a3a7979d3e5a37\",\"labels\":[],\"modified_at\":1726995223.83675,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e1e9be0c3cae58fefc0f6b8691e7327\",\"labels\":[],\"modified_at\":1726995223.764679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a81c4266cbdb0d23e04e4ae57619dceb\",\"labels\":[],\"modified_at\":1726995223.777271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6adb060e525a0b02802e9e8b6afa176\",\"labels\":[],\"modified_at\":1726995223.798783,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e88cf00ff5ffb15ab94f37a9aba66c0\",\"labels\":[],\"modified_at\":1726995223.806537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ede71d69993e45389dde366b477559a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.zwave_controller_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ada086edb92a8f505bced7c2559caac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8115e52cb16c7a28f096995d2b3b67e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f44e4ed83c8b09e72ec4ffd1df79953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f359fcdc3ab75ebc7bfb58acf0fe25e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46e839f2f5b0c124ad2a0b5c355967fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7b78974ef1f75948f492f64fd4859ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f780def514df1d90ed58dc922b80c574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.69.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_controller_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96d8fc5c5e35a76c655c9b71b67ef899\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.69.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a133bfa2a01f055c0c8d1bd38418a9\",\"labels\":[],\"modified_at\":1728721846.252105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e3e85a4be70951809ca9f5dfe3e4f27\",\"labels\":[],\"modified_at\":1728721846.252322,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6422ed2bc95eec7c77e8299c3132dd3b\",\"labels\":[],\"modified_at\":1728721846.252479,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e3039be25344df3c303f10d2af506\",\"labels\":[],\"modified_at\":1728721846.252618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"493c98ca3f5d28add9b1e76d9ea0fd2a\",\"labels\":[],\"modified_at\":1728721846.252884,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.69.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e9c3189a4b2c3bc9beaba32e4f6d17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.69.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba107fafd299fefa29cb886864a6b6ff\",\"labels\":[],\"modified_at\":1768937324.649113,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.69.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e97d839fc36f285ba34c95e0aedfb525\",\"labels\":[],\"modified_at\":1728721846.253026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.69.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_controller\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a09ee2d6dae31c200ed543531a11a022\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_status_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1aa247cfe4361de79507e8ccf24a9abd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf005657afa97b1d708b15d9ce67af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c16c9234ee62e39da6d416bd74c4bf36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9964c19a9f2c7334e16ed21f53a3b47f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89981bfb5fb0a71346ba5c4a7fd7f436\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4bee7cdfbbbb6c2df376f6acbc9f8e0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a4d1c9f055f635a8a634822ce0443b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6dc9f7340d74772ba42c3d47103bc06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57972bc34dc5d7e963a491a8f73724f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a2e8fc6466088be70d409688c666748\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f693ad03c26b3259e108bc893124dc78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf35e53c8dc9a7f47de20aa646f2a06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a5ec9e8137600e298bee781d72b83af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"284a0c5a0e4fbb0bcfedfc117d6d0cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae04ca93744aa073da36ab542919ff8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"049d7e26a1fd2ebae088bd47e33c28c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f3c6220aeebafd0398bd96fade2132\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be4b4db30be6b69c892b44b359c6b20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80d8ed745bc23622d5388e9075693bb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"306db4629c8a60e5464dd368235e8317\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c04dfad2dc4762af4bb76906a45d36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b439907fac4276ebd5799a625ec1ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb5b5d71754b964eebf3dabae76e6cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_dc_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b6fdcf38fa8ab2b6dee499c7d18e08f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.garage_controller_basic_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f54c77989f4d5e8568905b09f0c46f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"949433e099fb4164e0fafef364d9d3be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.large_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage-variant\",\"id\":\"7103f21d0a7b132c69440a9d6979648a\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Large Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.small_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage\",\"id\":\"efa8ffc287061c04b28a05e2d6789429\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Small Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_back_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"200b3bc82d4792b83862ab4c8cbb5d60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Back Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836786749\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_front_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25b6b2f05b818b741e6862688a763aff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Front Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836943690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x17\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c29cfef30f97af820f587cd0d380f6d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x17\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x87\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4dc3db0b7fb0e8835ad90f9649d49ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x87\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x87\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_water_valve_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b60d57c74b8a0fc026da3c5efe1ca529\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Water Valve unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Water Valve-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.neck_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b16d267f43e86640e991f613d652ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Neck Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"neck_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.migraine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e0cd7c0a5bad5564b84ba8e22f577d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Migraine\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"migraine\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.back\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a96f0af191e7ef39888e595237fc79d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Back\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"back\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.water_intake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81a9b155d2aa5e2ce0c7cb5dca44c82c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Water Intake\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"water_intake\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b24234ca56ac77e9c79f6e353a9de91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"648e83e3c8bf58cd2e4eff867c7f26fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc3f2404fff79b6deefc2d10c7d221fa\",\"labels\":[],\"modified_at\":1724358474.764135,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.mariah_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45abb940e65545be9eba91e9c7c27266\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:14:0f_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.joint_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78f692acbb46a9d5516120af473ee045\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Joint Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"joint_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de63e43f6a93586a800fa07684f40d6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724140995216\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b26a6c2d503838f2bd69b2b4425daae8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141048676\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68e5beb6d9c92149ac9c90cd78e98694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141102872\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.thermostat_aux_heat_only\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10172ebe8ddeadf985bb596b028dcae9\",\"labels\":[],\"modified_at\":1732123640.2771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Auxiliary heat only\",\"platform\":\"ecobee\",\"translation_key\":\"aux_heat_only\",\"unique_id\":\"511883021980_aux_heat_only\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":1724358474.76478,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.mariah_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4fed1642c4e2312aef35b63ec334976a\",\"labels\":[],\"modified_at\":1724358481.090975,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:14:0f_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543171,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_start_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20a9befee49729b0b2137b2abfa3f2da\",\"labels\":[],\"modified_at\":1724358911.543261,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric start date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_start_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543599,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_end_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65d71d7e1d0a884417f030f39de51b62\",\"labels\":[],\"modified_at\":1724358911.543669,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric end date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_end_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.98836,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.ha_floorplan_your_imagination_just_became_the_new_limit_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3784e07efac13a5e30236d87aea4fec0\",\"labels\":[],\"modified_at\":1724359451.989217,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.989902,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.dahua_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e20245435d618d476b342520dc05bde5\",\"labels\":[],\"modified_at\":1724359451.989949,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990389,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.emporia_vue_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33d53b6ba7f741c6d34066bffe189297\",\"labels\":[],\"modified_at\":1724359451.990431,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990856,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.average_sensor_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83923fd4d6f02182318adda6b96afc53\",\"labels\":[],\"modified_at\":1724359451.990901,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991326,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.lovelace_home_feed_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30d80177caf3df3331d797d783c5539a\",\"labels\":[],\"modified_at\":1724359451.991374,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991795,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.smartthinq_lge_sensors_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cd6da87bfe167df17bccc9b0bc3f160\",\"labels\":[],\"modified_at\":1724359451.991841,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.99502,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.fold_entity_row_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d2c850e540e1848f6d18f94e1d33df8\",\"labels\":[],\"modified_at\":1724359451.995069,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995516,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.card_tools_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa13dab5ed75447d38ec11bb05b39148\",\"labels\":[],\"modified_at\":1724359451.995558,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995977,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apsystems_ecu_r_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6355ba3eab69573857aa3095dfe8bb29\",\"labels\":[],\"modified_at\":1724359451.996022,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996442,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.hacs_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee6b6e287f399d2a0f069f2f3630f9de\",\"labels\":[],\"modified_at\":1724359451.996483,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996903,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.number_box_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4973abd138f62d11c94d23869d4332c6\",\"labels\":[],\"modified_at\":1724359451.996945,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997365,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.layout_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f6016a8e966604387a938ca589078bb\",\"labels\":[],\"modified_at\":1724359451.997407,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997831,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.opensprinkler_integration_for_home_assistant_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b81d07934da5c7e0354b8fcffd03768d\",\"labels\":[],\"modified_at\":1724359451.997883,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.998293,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.auto_entities_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7eaa56b622d4a80a22c66036a4e7bff\",\"labels\":[],\"modified_at\":1724359451.998341,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.000211,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"057af5b48646a036f034fd05c24730ac\",\"labels\":[],\"modified_at\":1728248033.394848,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00067,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.dahua_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39b3a5e25ed21ff451dd821e74135856\",\"labels\":[],\"modified_at\":1728765061.996176,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dahua update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00105,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.emporia_vue_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e29e7a00297a5a491404aa12c42c1323\",\"labels\":[],\"modified_at\":1726802997.261126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Emporia Vue update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001406,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.average_sensor_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"10b897f9ab5ff47d44ed99b8cad96a01\",\"labels\":[],\"modified_at\":1728269633.52911,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Average Sensor update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001753,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.lovelace_home_feed_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"692a965a89752f7152ac33da536bbed1\",\"labels\":[],\"modified_at\":1774138612.944037,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lovelace Home Feed Card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.0021,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3cb7c37711861e8a4f3c5450350f13c1\",\"labels\":[],\"modified_at\":1728226433.446449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SmartThinQ LGE Sensors update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.002442,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fold_entity_row_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f07711c04f71f779880758ee4fd3ca0\",\"labels\":[],\"modified_at\":1750126348.796186,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"fold-entity-row update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003037,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.card_tools_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8857ce93625614d4a532e41e988a77ca\",\"labels\":[],\"modified_at\":1774138612.945999,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"card-tools update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003384,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apsystems_ecu_r_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eb5eead0182826b4bd85b3cbbc8b855d\",\"labels\":[],\"modified_at\":1741914692.185678,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"APSystems ECU-R update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003737,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.hacs_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b4d63ea37ba5c94123db67da9a7b4a\",\"labels\":[],\"modified_at\":1725474380.986863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"HACS update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004085,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.number_box_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf9428ea6400cb62210ef5a817aa3f4\",\"labels\":[],\"modified_at\":1774138612.947972,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Number Box update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004425,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.layout_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9814393596a8063e564904eea508d5\",\"labels\":[],\"modified_at\":1724359470.337507,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"layout-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004773,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64aa16e9bfa85282bdb6b21e1f285a0c\",\"labels\":[],\"modified_at\":1728377633.939246,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler integration for Home Assistant update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.005134,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.auto_entities_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c1b0f1673df40ae25aff2e19e9bdb999\",\"labels\":[],\"modified_at\":1746450676.644499,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"auto-entities update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.878711,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d782eae7ac9b06c199b0499afff0d330\",\"labels\":[],\"modified_at\":1725237298.640764,\"name\":\"Living Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.880189,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a40c8c00fa4561861b93cac2ae12162\",\"labels\":[],\"modified_at\":1725237298.642678,\"name\":\"Living Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.620171,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95350dcc7aab2e2b8ad42eff96a3bbe9\",\"labels\":[],\"modified_at\":1725239509.709835,\"name\":\"Office FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.621822,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"457ea4d9622eaa89f01768b2d3cb13b7\",\"labels\":[],\"modified_at\":1725239509.711619,\"name\":\"Office FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9119d30965efa939f043665b8f522c7\",\"labels\":[],\"modified_at\":1725122973.950769,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d74e8506dabac922300249b97a64fd92\",\"labels\":[],\"modified_at\":1725122989.160884,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f75ee8a8e6a0e889e600b497c966f4be\",\"labels\":[],\"modified_at\":1725123000.642922,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.881487,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a80cd1fd55b60d92e924c5d0a86b57bf\",\"labels\":[],\"modified_at\":1725123140.792999,\"name\":\"Living Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.62291,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65796cc5504c6f97911d5984b7697240\",\"labels\":[],\"modified_at\":1725123172.764679,\"name\":\"Office Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.623792,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4870514fbeca2b830d674880c226e4b1\",\"labels\":[],\"modified_at\":1725123300.434383,\"name\":\"Adam Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.625331,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ae3bf2a8005788c86e4ed1db0e26deba\",\"labels\":[],\"modified_at\":1725123348.631538,\"name\":\"Leksi Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.626608,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"92cd99596879bed65510157a3e4440b8\",\"labels\":[],\"modified_at\":1725123370.960249,\"name\":\"Mariah Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.882516,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_couch_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df55257bb93d1c4d83ab27bb28cc7088\",\"labels\":[],\"modified_at\":1725128801.063257,\"name\":\"Small Couch Occupied\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.884521,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.main_couch_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d5054b087303392f4b4c1afa3087c65f\",\"labels\":[],\"modified_at\":1725211786.993681,\"name\":\"Main Couch Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.885552,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.massage_chair_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6166b7fcdd2cb9ddf567fd2ef3444519\",\"labels\":[],\"modified_at\":1725216435.355422,\"name\":\"Massage Chair Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.041669,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.mariah_room_fp2_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05362f331bbb95c88b007da2281c2835\",\"labels\":[],\"modified_at\":1725237352.484952,\"name\":\"Mariah Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.047465,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"572e2d9b32244570b0d0b314a4c0b609\",\"labels\":[],\"modified_at\":1725237352.487786,\"name\":\"Mariah Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.051823,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5970db3a2e7b0259e89db44e4cfa579\",\"labels\":[],\"modified_at\":1725237416.812842,\"name\":\"Mariah Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.055599,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff08f0de11c1b85bc8cd0d449bc0c733\",\"labels\":[],\"modified_at\":1725237437.467906,\"name\":\"Mariah Room Bean Bag\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.059074,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6bfab91f865d492c15136b5c01e3ea3\",\"labels\":[],\"modified_at\":1725237447.998816,\"name\":\"Mariah Room Bed\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2696\"},{\"area_id\":\"mariah_bedroom\",\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237505.317515,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"scene.mariah_in_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fb3c6924d403f71d58b0bb0dabf3c01\",\"labels\":[],\"modified_at\":1725237505.338758,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Mariah In Bed\",\"platform\":\"homeassistant\",\"translation_key\":null,\"unique_id\":\"1725237502868\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237787.837052,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_purple\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"624dd2844883b69d29ed148095cfedd4\",\"labels\":[],\"modified_at\":1725237787.837879,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Purple\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_purple\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237915.884351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d456942a6323ea80effd232373cc5b99\",\"labels\":[],\"modified_at\":1725237915.885773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238041.890769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"75cf52bb1c878e6bff34b625af14e080\",\"labels\":[],\"modified_at\":1725238103.797624,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up_initial\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238636.640793,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3b6a0b1778090f2e8c408dda4f83c35\",\"labels\":[],\"modified_at\":1725238636.641973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238624495\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238701.670496,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9999f46a955a0e9f9084655c2278aae\",\"labels\":[],\"modified_at\":1725238701.671689,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238682447\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239006.346545,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4ce3b7950ba257b7202c193ad300ec6\",\"labels\":[],\"modified_at\":1725239006.347468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Beanbag\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238993576\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239193.188985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f01bb92164b255a0efc6d56ad8e2d267\",\"labels\":[],\"modified_at\":1725239193.189985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off_motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239220.921769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7ab674921f77ca79b116b8ad3510f592\",\"labels\":[],\"modified_at\":1725239220.923107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725239208837\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725240282.042413,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7ca8c0f7712e5307b5d9763e9de9b94\",\"labels\":[],\"modified_at\":1725240282.04309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.352226,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45c2f5c4dc505611cb256120f1f2830\",\"labels\":[],\"modified_at\":1727942594.370094,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.395121,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"642124e3cca72e7af2215ef9a52ec5b8\",\"labels\":[],\"modified_at\":1727942594.403475,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.425326,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"784abe3673b46c36d82dd6392e364987\",\"labels\":[],\"modified_at\":1727942594.425962,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.45199,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"150bd1465c22a43804cecfd9a73b625d\",\"labels\":[],\"modified_at\":1727942594.452773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1728721845.869036,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b63b865295f97c1a420158b97b7759ea\",\"labels\":[],\"modified_at\":1728721845.869115,\"name\":null,\"options\":{},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeout_ack\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.793984,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385bc6fdb93d7ac940f95ec7929b93a2\",\"labels\":[],\"modified_at\":1729542987.794601,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.818634,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd8c93ee004038b3809d9bf5e9651e47\",\"labels\":[],\"modified_at\":1729542987.819224,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927412.116135,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"955ffcb77910a5ce5c785cbb4567a5f4\",\"labels\":[],\"modified_at\":1730927412.117253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927396308\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.917166,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"987472eb0c0a9d61f145fe1ffa7ec389\",\"labels\":[],\"modified_at\":1730927493.919085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.920247,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"252a7a535fed97b7201a3d818cbf6b41\",\"labels\":[],\"modified_at\":1730927493.923132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.925051,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.entry_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97c48c7149d9b2887c6c759a19330130\",\"labels\":[],\"modified_at\":1730927493.927034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.928963,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.entry_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500c84effc8332e2f1c41a3075838240\",\"labels\":[],\"modified_at\":1730927493.932234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:cb:b8_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.935595,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.entry_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743ad90a794f64c648bd1898865e94f4\",\"labels\":[],\"modified_at\":1730927493.936077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:cb:b8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927707.36645,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1265c862bfdaa5054cae39b5f86e369c\",\"labels\":[],\"modified_at\":1730927707.367325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927687152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927799.13572,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d209c365471b448fef5272375db2ff0\",\"labels\":[],\"modified_at\":1730927799.137491,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927783620\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.182084,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf28a6cb7c5941b7f5f4a22f00a9f0e\",\"labels\":[],\"modified_at\":1731010174.182936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.185823,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff2608f2319d6a14116e79184fb9de\",\"labels\":[],\"modified_at\":1731010174.186057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.188286,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02c6d610044ed99bb98012037e946b99\",\"labels\":[],\"modified_at\":1731010174.188925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Water Alarm Water temperature alarm status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.189509,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c63c08e0a24247681b3d434ba4fb34cb\",\"labels\":[],\"modified_at\":1731010174.19004,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"No data\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.190342,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abb7f974abebcb04c1b547a6286cded4\",\"labels\":[],\"modified_at\":1731010174.190851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Below low threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.191145,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f614798b9e419b24613abcca2ed35048\",\"labels\":[],\"modified_at\":1731010174.19163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Above high threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.764381,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac6c25ec61299c2cb06e3968752d2b33\",\"labels\":[],\"modified_at\":1732137151.765016,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.71.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.765454,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"470d94d96fdc410faa1a1d853ce54872\",\"labels\":[],\"modified_at\":1732137151.765996,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.71.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.766523,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bdd8a3d8d5649e3c59bcd0afe21a3233\",\"labels\":[],\"modified_at\":1732137151.766708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767048,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e664059fc7a8cd2a4c332b3dd7c088\",\"labels\":[],\"modified_at\":1732137151.767202,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767524,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167a34dc614f039f41fc040f39e15d2c\",\"labels\":[],\"modified_at\":1732137151.767682,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.76799,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b457d5cbaa8a6d30f5db0cfa9205e7c\",\"labels\":[],\"modified_at\":1732137151.768142,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768433,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"efb4c2b5944fd9687778e2300f221aba\",\"labels\":[],\"modified_at\":1732137151.76858,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.71.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768882,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e0206961390409df0866659ba3bde3c\",\"labels\":[],\"modified_at\":1732137151.769029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.71.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.769331,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45bfe6ad87c79146ddc2780321ecc45c\",\"labels\":[],\"modified_at\":1768937324.655714,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.71.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.770858,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7befa0f701f255251d4f0713e34362f\",\"labels\":[],\"modified_at\":1732137151.771513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.71.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.588866,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2668e06370022ffa63e0af58450c4deb\",\"labels\":[],\"modified_at\":1768937324.772972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.590101,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e406cccffc6c5b1a623fd47a73eba1f\",\"labels\":[],\"modified_at\":1732137162.590693,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.591473,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02301ae4db885a81128ada934ab4a086\",\"labels\":[],\"modified_at\":1732137162.592025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.592528,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6fee332c76665dc7ef1990beab6911\",\"labels\":[],\"modified_at\":1732137162.592694,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593141,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb96048cc18af78626c04d902a8e7007\",\"labels\":[],\"modified_at\":1732137162.593303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593752,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bded064f1e92e2734f097e5c6fc559b\",\"labels\":[],\"modified_at\":1732137162.593913,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.594349,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7628d05dcf62a79ba33c64966408e4a7\",\"labels\":[],\"modified_at\":1732137162.594936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.595438,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5f170a01f0cacbeb2fd47e3cedac5f\",\"labels\":[],\"modified_at\":1732137162.595608,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596071,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d11c36c8b1ae89a2329b8466196adb6\",\"labels\":[],\"modified_at\":1732137162.596235,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596681,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"322ec7947d8e42919a0133cd17e116f7\",\"labels\":[],\"modified_at\":1732137162.59686,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597312,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_minimum_reporting_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adf1bb1bfe2a4f11cadf90f298ff2d35\",\"labels\":[],\"modified_at\":1732137162.597473,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Minimum Reporting Frequency\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-172\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_battery_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0afe97af7c4e124df81a1ac9cc483560\",\"labels\":[],\"modified_at\":1732137162.598073,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-182\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.598509,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10efd918aa86083fadb425ff9a4a4a34\",\"labels\":[],\"modified_at\":1732137162.598687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-183\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.59912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3c5669678178150a506c354e6f1be9\",\"labels\":[],\"modified_at\":1732137162.599283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-184\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.599718,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_brightness_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913286fe33112a9c3d531a34472f5945\",\"labels\":[],\"modified_at\":1732137162.599878,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-185\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601005,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_multi_sensor_vibration_sensor_enable_or_disable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3db884502b02d5d6a290bdf2d41907c\",\"labels\":[],\"modified_at\":1732137162.601212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration sensor enable or disable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601721,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4f6c95db11d3ac17bca07d2264430a4\",\"labels\":[],\"modified_at\":1732137162.601885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602321,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e453c0781a8c76f1e73aefc41ad58342\",\"labels\":[],\"modified_at\":1732137162.602485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602937,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5581de38027d90f3ef0cb1cd2c41d2a0\",\"labels\":[],\"modified_at\":1732137162.603098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.60353,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_temperature_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2fedd7c6df14c4b5c04f34a712b7e8\",\"labels\":[],\"modified_at\":1732137162.603692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for temperature sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-173\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604137,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_humidity_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e70223c7a145435b2ed9e879cd97c40\",\"labels\":[],\"modified_at\":1732137162.604311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for humidity sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-174\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604784,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_light_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"126c174154d818c34882bf702cd2ecb1\",\"labels\":[],\"modified_at\":1732137162.604956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for light sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-175\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.605428,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f8387b33452ea29b9bf9b484030fe46\",\"labels\":[],\"modified_at\":1732137162.605656,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-201\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.606111,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e4b96482125c77b71a934b2d26f18e\",\"labels\":[],\"modified_at\":1732137162.607041,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-202\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.6076,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e78741347ca06e5ec1b6e8c3ba8b559\",\"labels\":[],\"modified_at\":1732137162.607783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-203\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.608276,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46015d5ffd1da337365d54035bbbec1f\",\"labels\":[],\"modified_at\":1732137162.608489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609037,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5515fb214b05e9d99121d850fdc2cc3e\",\"labels\":[],\"modified_at\":1732137162.609207,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609708,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36b46883ad9a46c08d9ace6a631f3ab0\",\"labels\":[],\"modified_at\":1732137162.609873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.610376,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e5ec6faa8b7d0368a1aaef25db69cfae\",\"labels\":[],\"modified_at\":1732137162.610934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.611673,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7eadc541b21bdc09a3ede440e16e781\",\"labels\":[],\"modified_at\":1732137162.612885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.61343,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2ee927581c1eeef7e93ff0d97ddee896\",\"labels\":[],\"modified_at\":1732137162.613993,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.614532,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dcdb2a7c64feec4cb475111ab74f4d8f\",\"labels\":[],\"modified_at\":1732137162.6151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.615626,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88ae53a601694ce99968bd1f2e333c08\",\"labels\":[],\"modified_at\":1732137162.61618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.616467,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0edb4b570f956fbd585e38c96895ee89\",\"labels\":[],\"modified_at\":1732137162.616941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.617512,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"813c7f2ffa0892c3422fa632fefc12fd\",\"labels\":[],\"modified_at\":1732137162.618824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.619386,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93dc4ae4941e37f57821eab3fd04fdcb\",\"labels\":[],\"modified_at\":1732137162.619911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.620392,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6557f3d6a9a2cf2d58f3637dab11b0fc\",\"labels\":[],\"modified_at\":1732137162.621174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.621782,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7728624fe2d08c453eb1f5570b13110\",\"labels\":[],\"modified_at\":1732137162.622362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.62405,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_multi_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e01d9271034ccc4742137810a44c7296\",\"labels\":[],\"modified_at\":1732137162.624683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.633871,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28458c3031c3f4c248b9a590649b56b8\",\"labels\":[],\"modified_at\":1752106041.646984,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 1 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_1_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.634984,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8233a76f8e5b57101fa68fa5d761e95d\",\"labels\":[],\"modified_at\":1752106041.647528,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 2 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_2_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.635932,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4306e274bbda0cdb3c63207a6f31f939\",\"labels\":[],\"modified_at\":1752106041.647924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_rain_delay_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.636864,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8cfc6b3d9aa316b1a16b51c6c90236c4\",\"labels\":[],\"modified_at\":1752106041.648321,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Paused\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_paused\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.637837,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_program_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d677537788a5eafcb8532c16cf717224\",\"labels\":[],\"modified_at\":1752106041.648738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_program_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.638843,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s01_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78da84e6aefcc386e0046bf1b665406b\",\"labels\":[],\"modified_at\":1752106041.649173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.640317,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef03c61878db30aef1069ae462af17\",\"labels\":[],\"modified_at\":1752106041.649602,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.641282,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s03_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e7f2050e9cf5b99317afc5bc8437b60b\",\"labels\":[],\"modified_at\":1752106041.649991,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.642249,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd1dcda93262483eb387ef6990169370\",\"labels\":[],\"modified_at\":1752106041.650391,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.643239,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s05_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabc42d8716a5866c0d562652bb54f56\",\"labels\":[],\"modified_at\":1752106041.650775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.644241,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s06_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4f5a122107cab3853f733992b28f8c9\",\"labels\":[],\"modified_at\":1752106041.651155,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.646097,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s07_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3293c0b56291ae6e9a7bd65e0abd60ab\",\"labels\":[],\"modified_at\":1752106041.65154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.647084,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s08_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44907512c87223c107c95f467afd32ac\",\"labels\":[],\"modified_at\":1752106041.651931,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.64834,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s01_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a38e3beb90e104dd21a41eb83801ef5\",\"labels\":[],\"modified_at\":1752106041.652574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S01 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.649353,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_lawn_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68796744a1de3fd9f2849c34c91293d8\",\"labels\":[],\"modified_at\":1752106041.653615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Lawn Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.650323,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s03_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7192a3ad6d844197c490a376e3f70b1\",\"labels\":[],\"modified_at\":1752106041.65404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S03 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.651977,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9199ba6acba78346f517315046715e7b\",\"labels\":[],\"modified_at\":1752106041.654442,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Flower Bed Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.652985,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s05_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ac557888704caa59ca96935fd70b6d\",\"labels\":[],\"modified_at\":1752106041.654835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S05 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.653945,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s06_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6edb59dd3e64c4913f7de4e938acd59\",\"labels\":[],\"modified_at\":1752106041.655236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S06 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.654928,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s07_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"43667b7d50dd98b035e656e0bab89356\",\"labels\":[],\"modified_at\":1752106041.655641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S07 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.656158,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s08_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf30ad107bbd19dba22c07d3614de624\",\"labels\":[],\"modified_at\":1752106041.656036,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S08 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.657793,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_interval_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab30ba1fa24ea82ab2abbc82c046d16f\",\"labels\":[],\"modified_at\":1752106041.656454,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Interval Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_interval_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.658844,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_starting_in_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70fc9278f25b33ebbc97bee258bc426\",\"labels\":[],\"modified_at\":1768937328.473047,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Starting In Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_starting_in_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.659895,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"532c0ab02f8bacd4922c9e8fb929b233\",\"labels\":[],\"modified_at\":1752106041.657319,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Count\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_count_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.660553,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82c9f077606745c02474ab5be55a620f\",\"labels\":[],\"modified_at\":1752106041.65765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Interval\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_interval_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.661207,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ff12afe9d9a6186ccedc30b97f98c5b\",\"labels\":[],\"modified_at\":1752106041.657982,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.662274,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start1_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5eaab58a3eaa4725ee1acc2c7d0af43\",\"labels\":[],\"modified_at\":1752106041.65843,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start1_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.663542,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start2_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"900d108248145e047c6222d5dab38a6d\",\"labels\":[],\"modified_at\":1752106041.658749,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start2_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.664261,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start3_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53547b2a17ba809162f4c80e4c95c494\",\"labels\":[],\"modified_at\":1752106041.659059,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start3_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.66517,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_restrictions\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98120ea7a8c6aec01a0b4c930f4d271a\",\"labels\":[],\"modified_at\":1752106041.659582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Restrictions\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_restrictions_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.666191,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86585bafecd310548350429db5de5ac4\",\"labels\":[],\"modified_at\":1752106041.659999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.667173,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_additional_start_time_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ecea61af97b2c0c60f95fe1aea7a1c\",\"labels\":[],\"modified_at\":1752106041.660415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Additional Start Time Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.668408,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_start_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c19fa2860614bd4a8f05e40abc011676\",\"labels\":[],\"modified_at\":1752106041.660824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670177,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start1_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41990b44f367572d2e3191a12b36cdcc\",\"labels\":[],\"modified_at\":1752106041.661229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start1_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670831,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start2_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd85f5a98d6ad86127c3b5823860fec6\",\"labels\":[],\"modified_at\":1752106041.661525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start2_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.671452,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start3_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a20cd58ad5a61fee98b1af89696b25\",\"labels\":[],\"modified_at\":1752106041.661818,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start3_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.672332,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_last_run\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dcb6bda0ee19761e85c6fade1412faef\",\"labels\":[],\"modified_at\":1752106041.662311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Last Run\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_last_run\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.673368,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5559a9931dd1e25341ea309e5a82f85\",\"labels\":[],\"modified_at\":1752106041.662722,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Stop Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_rdst\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.674302,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_water_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c8cf60018b734e890992bd9eed2ec34\",\"labels\":[],\"modified_at\":1752106041.663111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Water Level\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_water_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676033,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55cbcd1e26e5440341dfb0355bd8bcc7\",\"labels\":[],\"modified_at\":1752106041.663513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Flow Rate\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_flow_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676994,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_draw\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2fdebd9b4d3a941ed6738378fd82c4\",\"labels\":[],\"modified_at\":1752106041.663901,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Draw\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_current_draw\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.677946,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"004c2dddd6a671840404bde623b57bec\",\"labels\":[],\"modified_at\":1752106041.664278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_devt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.678559,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"928cbf681537aefdcec79f502a31c202\",\"labels\":[],\"modified_at\":1752106041.664568,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Pause End Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_pt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.679532,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s01_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7c0622cc402dd16d31691f5bbd346a0\",\"labels\":[],\"modified_at\":1752106041.664954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.680486,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_lawn_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec3d3107b963ae9e98697b474d274f97\",\"labels\":[],\"modified_at\":1752106041.665365,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.682227,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s03_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee3da72518ce48c980b2b30be13c8807\",\"labels\":[],\"modified_at\":1752106041.665741,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.683445,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_flower_bed_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e68cff1ef73136d91264bef3338e6b8e\",\"labels\":[],\"modified_at\":1752106041.66612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.684415,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s05_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3fa7d6a18fd72776a962c38ebab8505f\",\"labels\":[],\"modified_at\":1752106041.666497,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.685369,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s06_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0400d09413e1943988a75450678b1ebb\",\"labels\":[],\"modified_at\":1752106041.66687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.686365,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s07_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8eeb163f3069a24eb8b02be77dabfe38\",\"labels\":[],\"modified_at\":1752106041.667242,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.687354,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s08_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a67713de10858c8f5573df5bf7deff48\",\"labels\":[],\"modified_at\":1752106041.667621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.688636,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.opensprinkler_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a0dc8f5e507c1f6fde72f904788cdbb6\",\"labels\":[],\"modified_at\":1732137663.689179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"OpenSprinkler Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_controller_enabled\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.689659,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_program_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5814850390edeb9e2eeda752197bc5c\",\"labels\":[],\"modified_at\":1750061531.449132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.690656,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_monday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a2e95f50238ccb6e70e50e56b98b27\",\"labels\":[],\"modified_at\":1752106041.668769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Monday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_monday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691244,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_tuesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5359ae42aaef47628647352704d15ec6\",\"labels\":[],\"modified_at\":1752106041.669071,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Tuesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_tuesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691842,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_wednesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edd1e6010cbe67594ea1ee82924f6f8c\",\"labels\":[],\"modified_at\":1752106041.669369,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Wednesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_wednesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.692443,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_thursday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4472ffa505c8f15ca6ab865630355d4\",\"labels\":[],\"modified_at\":1752106041.669655,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Thursday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_thursday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693014,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_friday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1be9033a6ff2cb2f995d8ef74c0afa5b\",\"labels\":[],\"modified_at\":1752106041.669939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Friday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_friday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693609,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_saturday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4abfd9b07e0f49d65f187324b9feddd\",\"labels\":[],\"modified_at\":1752106041.670226,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Saturday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_saturday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.694193,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_sunday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4357c7a7797385e7b9355358ded32f94\",\"labels\":[],\"modified_at\":1752106041.670505,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Sunday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_sunday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.69484,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.front_program_use_weather\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5914f46ad2cfb68aad3c6706cb684a8\",\"labels\":[],\"modified_at\":1752106041.670809,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Use Weather\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_use_weather_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.696024,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s01_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee933341e59eab4e1de01dfb380d57d4\",\"labels\":[],\"modified_at\":1732137663.696604,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S01 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.697116,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_lawn_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27734f41473d59fab6ac03f37eb7bfb8\",\"labels\":[],\"modified_at\":1732137663.697653,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Lawn Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.698106,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s03_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cddda4b9abd4a2112b5d386fb355d349\",\"labels\":[],\"modified_at\":1732137663.698787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S03 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.699266,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aebefeb6ed4d1b726994cfd307f4cd2a\",\"labels\":[],\"modified_at\":1732137663.699922,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Flower Bed Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.700567,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s05_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1b9b1f74a2038ccf2d6ada0f37c6fa\",\"labels\":[],\"modified_at\":1732137663.701324,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S05 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.702531,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s06_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2dd24c218d32a94dd0335de195f7f2d2\",\"labels\":[],\"modified_at\":1732137663.70317,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S06 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.703647,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s07_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d911d53c2592a07306a7b6b3b3fa66\",\"labels\":[],\"modified_at\":1732137663.704181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S07 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.704672,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s08_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"35c35dbbf2e3f45e3f06fa1dbae6b749\",\"labels\":[],\"modified_at\":1732137663.705194,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S08 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.706649,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"text.front_program_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37e6efeffb3cda3c638bab8e88d2538f\",\"labels\":[],\"modified_at\":1752106041.673929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Name\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_text_program_name_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.709345,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"time.front_start_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3218db77bd10bc723c7584475171ab4f\",\"labels\":[],\"modified_at\":1752106041.675042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.71041,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start1_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd2cee6ac188f1157bc1dabe9135722f\",\"labels\":[],\"modified_at\":1752106041.67576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start1_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711008,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start2_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8099b78938edadefa49d3f10af5d3a33\",\"labels\":[],\"modified_at\":1752106041.67606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start2_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711572,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start3_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"960046c7225148a4e2e04959c16b02f6\",\"labels\":[],\"modified_at\":1752106041.676347,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start3_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.982321,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"176bdb7963a4d2e8e0993dd991c2d61a\",\"labels\":[],\"modified_at\":1732138416.983212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.73.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.983825,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3830b7b3aafeadc0f0a4a4cafdbba3c7\",\"labels\":[],\"modified_at\":1732138416.984423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.73.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.984956,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a40c07eeee574d0a58ea7e537b5dddb\",\"labels\":[],\"modified_at\":1732138416.985133,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.985534,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2445fa8e4bd61ebde86370bc8523e1\",\"labels\":[],\"modified_at\":1732138416.985692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986061,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f41c04d85d79bf9677d75b8c16c04b\",\"labels\":[],\"modified_at\":1732138416.986233,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986748,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"194631aec7814b1c0eeba1cf4e786d0a\",\"labels\":[],\"modified_at\":1732138416.986932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.98735,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae9b1ef37b45bab86290b6d49def769b\",\"labels\":[],\"modified_at\":1732138416.988081,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.73.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.988538,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98007b9b486441a51a5279bb7fed6b8a\",\"labels\":[],\"modified_at\":1732138416.988715,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.73.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.989091,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49dc7f599fdd1f2027fe2bcf95006dff\",\"labels\":[],\"modified_at\":1768937324.663851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.73.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.990462,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33557f07cdf75bc2412ad0a885c0bc44\",\"labels\":[],\"modified_at\":1732138416.991131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.73.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.790002,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72e8b62740080ea3f946f208f1fb7bc7\",\"labels\":[],\"modified_at\":1768937324.779845,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.791422,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d04acf192d2fd0fc6179ab20b4104f4\",\"labels\":[],\"modified_at\":1732138423.792057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.792664,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f328919b5fbd52d7e3554c431eaecda5\",\"labels\":[],\"modified_at\":1732138423.793293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.793874,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57f5ea17ee03c8aef502d38ef8bd6b1b\",\"labels\":[],\"modified_at\":1732138423.794042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.79457,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd876b6092259cb5ead6b986d88ee635\",\"labels\":[],\"modified_at\":1732138423.794748,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.795911,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555c9ad71f1f7fdd6ee1463b6969d21\",\"labels\":[],\"modified_at\":1732138423.796098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.796629,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec00430092b4eeab0664d84f21df0171\",\"labels\":[],\"modified_at\":1732138423.796797,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797307,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88dc5c6dce5ae4332a1d45a4f0cc4c99\",\"labels\":[],\"modified_at\":1732138423.797468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797983,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ac88bfe9cceaa214b06d93c173a4837\",\"labels\":[],\"modified_at\":1732138423.798146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.798681,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc6960dcb05013fd42b9c69458102c16\",\"labels\":[],\"modified_at\":1732138423.798846,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.799334,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07a1c78242bf060670017b91e7d94d35\",\"labels\":[],\"modified_at\":1732138423.799489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.800068,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"043056745e8987e49706de0b21d04793\",\"labels\":[],\"modified_at\":1732138423.800234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.804869,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"daf1f79fbd90cabfc5a34ad780956cdb\",\"labels\":[],\"modified_at\":1732138423.805095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.806501,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbb8694e79a2ad14cb64c8f8e5d47a2f\",\"labels\":[],\"modified_at\":1732138423.80718,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.807718,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7424d3a9e7da60ac2ba9d4adfd79a18\",\"labels\":[],\"modified_at\":1732138423.808298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.808844,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24c0c8ec26f7f4075cd8e45ffcde07a1\",\"labels\":[],\"modified_at\":1732138423.809401,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.809877,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22bf5cdc43c8ee4de64819afa890cc68\",\"labels\":[],\"modified_at\":1732138423.811783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.812418,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8312156799f26c4fd9c0c0e868d613df\",\"labels\":[],\"modified_at\":1732138423.81303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.81356,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cde146585342c60fa01d113994424977\",\"labels\":[],\"modified_at\":1732138423.814241,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.816756,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a15df092ba0c6a7154348a4898157ad4\",\"labels\":[],\"modified_at\":1732138423.817406,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.618014,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416b91acfddf3047384e7ee2ae08296c\",\"labels\":[],\"modified_at\":1732138684.618664,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.75.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.619114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22ca26c888e4f320444bfe76a2069291\",\"labels\":[],\"modified_at\":1732138684.619621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.75.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620099,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3617768155b9135fc6e5f44b7e21189c\",\"labels\":[],\"modified_at\":1732138684.620274,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620594,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"118bc1f4edbe3b8896b0d0a6751133e3\",\"labels\":[],\"modified_at\":1732138684.620752,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.621063,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c365245a707d6329e913801bd91ca5d1\",\"labels\":[],\"modified_at\":1732138684.621225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.62154,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75eb84dd5f8d9bc95ca286dc1eeca79d\",\"labels\":[],\"modified_at\":1732138684.621706,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622015,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2777138368a9abe7f9f042f0023f48b\",\"labels\":[],\"modified_at\":1732138684.622179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.75.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622502,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c57670c418667c196d39dca2483a5d14\",\"labels\":[],\"modified_at\":1732138684.622961,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.75.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.623544,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15d78da0a4398cd66194710995979ef2\",\"labels\":[],\"modified_at\":1768937324.668105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.75.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.624153,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b3ad094b6fb47d54160dc27a2402c7a\",\"labels\":[],\"modified_at\":1732138684.624744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.75.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.636665,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fa00abf3918f8fac60b707bed85cdd7\",\"labels\":[],\"modified_at\":1732138695.636933,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.637438,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa0f8a73745bfcdc301019929f9f395\",\"labels\":[],\"modified_at\":1732138695.637612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.63806,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4687608966a4d41618657f50e8d41a50\",\"labels\":[],\"modified_at\":1732138695.638228,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.638762,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfafac5c6126794a57742fe36400fea6\",\"labels\":[],\"modified_at\":1732138695.638934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.639408,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03f80773d857d3dacb7fd5e038bb1f31\",\"labels\":[],\"modified_at\":1732138695.639583,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640039,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a365309305395eecd9b2293a9b2ed220\",\"labels\":[],\"modified_at\":1732138695.640208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640663,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e34194de8abc885606521034b1889ed\",\"labels\":[],\"modified_at\":1732138695.640834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.641306,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_motion_untrigger_send_basic_cmd\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99cf610a23717a99dbfe052a0bb6ea34\",\"labels\":[],\"modified_at\":1775549231.59514,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ared\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.64198,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_configuration_param_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b0ce3efe64c82a980bac45f2c10a14\",\"labels\":[],\"modified_at\":1775549231.595476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Settings Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-254\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.642575,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df497c8d1113a36c54c4db878e0fca8b\",\"labels\":[],\"modified_at\":1732138695.642925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.643371,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbfd1827b608ec30e50a2c8d9ac1738a\",\"labels\":[],\"modified_at\":1732138695.6439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.644367,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"067ff38baebfeba542fc2d93fd6d846b\",\"labels\":[],\"modified_at\":1732138695.64489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.645399,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d4d2fb65ea95c82c89912955ce2d74f\",\"labels\":[],\"modified_at\":1732138695.645909,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.646344,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a746d156e0579cb6a0c282ec8423459d\",\"labels\":[],\"modified_at\":1732138695.646873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.647407,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afe52a71944a7bce54e82309066779eb\",\"labels\":[],\"modified_at\":1732138695.648124,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.648719,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ccfe4098bf64d024b3a4280d44249f06\",\"labels\":[],\"modified_at\":1732138695.648905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.649411,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e4dca10b749b4af9b227c82fb79d73f\",\"labels\":[],\"modified_at\":1732138695.649587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.650062,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ea778c5ee2223334224e979796972\",\"labels\":[],\"modified_at\":1732138695.650629,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.65114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e84349c9c3f7be88ffdb3b431a0ba7\",\"labels\":[],\"modified_at\":1732138695.652399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.653016,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"714c36211355e8c6eed8b0f405f1af18\",\"labels\":[],\"modified_at\":1732138695.653613,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.654109,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7baadd3ceacdd507c216212cb3b87068\",\"labels\":[],\"modified_at\":1732138695.654668,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.655381,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4c051cf51f0348ae219dc014e260222e\",\"labels\":[],\"modified_at\":1732138695.655966,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732139452.718891,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed7dbfad7f175f21a652c7d0d3330d8b\",\"labels\":[],\"modified_at\":1732139538.777695,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1732174703.971423,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_lights_left_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"924db9892cc5519731a5c110545b3061\",\"labels\":[],\"modified_at\":1732174703.972284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Lights Left On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1732174695099\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.375013,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b816b35414f8bc2d381fc987e434b35f\",\"labels\":[],\"modified_at\":1733163448.545247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Connection state\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_connection_state_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.41395,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_restart_required\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61f46e69a48027efacc7d58134f627a3\",\"labels\":[],\"modified_at\":1733163448.547781,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart required\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_required_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.45896,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bfd3f57c36e237bbb9ad6afb80870b6\",\"labels\":[],\"modified_at\":1733163448.551286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.504733,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba7340b4cbd21643896dea7f309921f9\",\"labels\":[],\"modified_at\":1733163448.643092,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Log level\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_log_level_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.548301,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25f4a31cb1ccecc4e9469f5ea9cc3e0e\",\"labels\":[],\"modified_at\":1733163448.646729,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.593799,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_coordinator_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b842f63a9b81e3a2af0ef251ecf7ab4\",\"labels\":[],\"modified_at\":1733163448.649525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Coordinator version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_coordinator_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.644285,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_network_map\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12df011646a6b17600d15ab9fa6fe99c\",\"labels\":[],\"modified_at\":1733163448.653364,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Network map\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_network_map_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.690207,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aca42208b299223d614f58e3feb2c840\",\"labels\":[],\"modified_at\":1733163448.656796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Permit join timeout\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_timeout_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.783081,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b33f74080c92f71e53d49d2fc60e406\",\"labels\":[],\"modified_at\":1733163448.659761,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.829562,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e381ec7dcd1341f5776bd0a2886f9209\",\"labels\":[],\"modified_at\":1733163448.662249,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.873645,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a31d7d3cbcf76b4365c2756f2418ca31\",\"labels\":[],\"modified_at\":1733163448.665131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action angle\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_angle_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.917858,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_device_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a754f3acf910cd43563ed2676eedb040\",\"labels\":[],\"modified_at\":1768937325.657919,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_device_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.961537,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_power_outage_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb5cc9dfece2a14128321a8c8ba0044c\",\"labels\":[],\"modified_at\":1733163448.672203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power outage count\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_power_outage_count_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.00603,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_from_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9624c92d6b8366ef9cd1804493185dab\",\"labels\":[],\"modified_at\":1733163448.674787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action from side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_from_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.049561,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac02738c9db3275fac7690e531555c11\",\"labels\":[],\"modified_at\":1733163448.67793,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.093516,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_to_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c008909747cd28dd536a03d115d711a\",\"labels\":[],\"modified_at\":1733163448.680929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action to side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_to_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.137499,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0e64fef54c101ab96c4081bad5a2ad8\",\"labels\":[],\"modified_at\":1733163448.683803,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.225948,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a932bc8c951ba62827fe0f990e2702db\",\"labels\":[],\"modified_at\":1733163448.686366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.313491,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_desk_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a28d2af38fd6ac7279788810b8f4d7\",\"labels\":[],\"modified_at\":1733163448.688208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.405348,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_cabinet_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f0bb80add1fa704cc495207b3f5d194\",\"labels\":[],\"modified_at\":1733163448.691535,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.740788,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df49492914ec67f302e0b6a69c122293\",\"labels\":[],\"modified_at\":1733163448.695336,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Permit join\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.27003,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_desk_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e62b257bc1586c7d6f6c0d9757293a\",\"labels\":[],\"modified_at\":1733163448.698409,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.357407,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_cabinet_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81a443a3981f42bf8049cb72eb3726f2\",\"labels\":[],\"modified_at\":1733163448.70122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1733166139.84886,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_z2mqtt\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad1ef16f58ed42f31138cf882cbd1923\",\"labels\":[],\"modified_at\":1733166139.849744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Z2MQTT\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1733166130068\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733166143.681489,\"device_id\":\"c4e6de4e26e939f7d433bf6d0a56df00\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.desk_cube_last_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42f966c6395b8ea360e7aa399ca72b13\",\"labels\":[],\"modified_at\":1733166143.682204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"last side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"desk_cube-e600b772e2d38b5b159093786d5bf1b2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.273786,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.thermostat_temperature_display_units\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3f00ecf5048b3f9e64a704e2ca9d92e0\",\"labels\":[],\"modified_at\":1733470323.274554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Temperature Display Units\",\"platform\":\"homekit_controller\",\"translation_key\":\"temperature_display_units\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.275631,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.thermostat_current_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6a708b72d19d3425a4bffde4773acf9\",\"labels\":[],\"modified_at\":1733470323.276196,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Current Mode\",\"platform\":\"homekit_controller\",\"translation_key\":\"ecobee_mode\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.276884,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"02eb281ddab89f579541da3c48364480\",\"labels\":[],\"modified_at\":1768937330.226836,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Thermostat Current Temperature\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.277912,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_humidity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aada76d6b800aa198307edc8f2f94b49\",\"labels\":[],\"modified_at\":1733470323.278441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Current Humidity\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.279066,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a34e9a572df91bb7a2bea56b6c7befc\",\"labels\":[],\"modified_at\":1733470323.279596,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Motion\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_56\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.280059,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a53e234c9a95713683719a42f1f7d16\",\"labels\":[],\"modified_at\":1733470323.280586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Occupancy\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_57\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.281426,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1dc2c5f590596a957c5d442d276f9551\",\"labels\":[],\"modified_at\":1775463025.83871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.282857,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.thermostat_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea789899d09226775d0daa530027b9d\",\"labels\":[],\"modified_at\":1733470323.283385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_1_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.28388,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.thermostat_clear_hold\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f25cd194cab996c6b0d11611f99101c\",\"labels\":[],\"modified_at\":1733470323.28457,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Clear Hold\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_48\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.854459,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0990beda4adbced67f9da8fbf14a5734\",\"labels\":[],\"modified_at\":1733904292.858855,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.892119,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e84579ecf7f13526a23c78731d3755\",\"labels\":[],\"modified_at\":1733904292.895779,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":1736319447.525713,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b9ac173954a17489fd6438677e48e78\",\"labels\":[],\"modified_at\":1741148806.093313,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Compressor minimum temperature\",\"platform\":\"ecobee\",\"translation_key\":\"compressor_protection_min_temp\",\"unique_id\":\"511883021980_compressor_protection_min_temp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.905972,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f04cd994bf4a7ca806e873689f0a05\",\"labels\":[],\"modified_at\":1736320519.906751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.79.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.907344,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e78e8aa7ecee5b3adb88cf6760e660\",\"labels\":[],\"modified_at\":1736320519.907957,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.79.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.908601,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aed21f201e4e9e49dc6e2fbfa6b269f\",\"labels\":[],\"modified_at\":1736320519.908898,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909112,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11d59ab7cf13cb711f9f6aa4d904b40f\",\"labels\":[],\"modified_at\":1736320519.909248,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909421,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea3a75a361da66c42a17ab240ac6619\",\"labels\":[],\"modified_at\":1736320519.909546,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909714,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9098616b205b24cbad4a88c83997e963\",\"labels\":[],\"modified_at\":1736320519.909949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.910119,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519aa11c201477c7828a3bc98fd1133d\",\"labels\":[],\"modified_at\":1736320519.910246,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.79.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911034,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bec59707ccd7dc529a90b1f098e5463\",\"labels\":[],\"modified_at\":1736320519.911218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.79.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911435,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef05212c0e42c4bfe401b3c4a440be4b\",\"labels\":[],\"modified_at\":1768937324.673569,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.79.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911768,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e515cf0760d43f4a81b2b3979145422\",\"labels\":[],\"modified_at\":1736320519.912168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.79.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.889798,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03c6b2e96c8518f922c1f7976a43224f\",\"labels\":[],\"modified_at\":1736320523.890247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.890604,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cfadce8334aa142551bb0271cb3a332f\",\"labels\":[],\"modified_at\":1736320523.890983,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891298,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e97ff3d04362f3398435b9c09280c19\",\"labels\":[],\"modified_at\":1736320523.891644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891976,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1be6ea19b6705198c44062cd8c886913\",\"labels\":[],\"modified_at\":1736320523.892111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892381,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1163e30b6367ba70cdb0bbe818bd86a\",\"labels\":[],\"modified_at\":1736320523.89251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892784,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003c87cfb9a0c7a08e1e6a9413bb72be\",\"labels\":[],\"modified_at\":1736320523.892915,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893181,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a74f8edd31d0d23fcb5d7911f5de558e\",\"labels\":[],\"modified_at\":1736320523.893314,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893609,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd4b36349b64e4afb0efbd8cae27ceb1\",\"labels\":[],\"modified_at\":1736320523.893743,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894017,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dce04321343b8f8650a1638e540c066\",\"labels\":[],\"modified_at\":1736320523.894147,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894415,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a26041ffe1d767c1eb6d43d5eaa1062\",\"labels\":[],\"modified_at\":1736320523.894549,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895246,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"335173b1290e32b28674d76b3139a7e3\",\"labels\":[],\"modified_at\":1736320523.895405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895685,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b023c61c1897b503e351ab61f1397b60\",\"labels\":[],\"modified_at\":1736320523.895824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896095,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18346fff64001fa0e036649a9ce026a3\",\"labels\":[],\"modified_at\":1736320523.896229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896493,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c84119a15d609af8e002b03a3113d945\",\"labels\":[],\"modified_at\":1736320523.896637,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896904,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be85935d305056837922385a2d2166d\",\"labels\":[],\"modified_at\":1736320523.897033,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897297,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba44272b6f19db495f0bad8e04150bdf\",\"labels\":[],\"modified_at\":1736320523.897427,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897689,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60c44e307fd48158ef5a870f6e1ea15f\",\"labels\":[],\"modified_at\":1736320523.897823,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898087,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"779e519eb982bf17eafbb4185d8a5538\",\"labels\":[],\"modified_at\":1736320523.898218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898501,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param017\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13eb4a7de3ff753f4f4551bb6b34c3fc\",\"labels\":[],\"modified_at\":1736320523.898633,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param017\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898906,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param018\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2aade9b24c3cf098837c05f198a84196\",\"labels\":[],\"modified_at\":1736320523.899034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param018\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.899325,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a75845967c301f447fdadd705ccd7bb\",\"labels\":[],\"modified_at\":1736320523.899681,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.900013,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cce3b69f3c06d161dec626b5790ce5b3\",\"labels\":[],\"modified_at\":1736320523.900352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.901702,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e73cbc35e18958125287a74471c3a7\",\"labels\":[],\"modified_at\":1736320523.902118,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c40ab8344787dc7d21e29d547af9168\",\"labels\":[],\"modified_at\":1736353596.37888,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"config_subentry_id\":null,\"created_at\":1736353647.022559,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9b5fcaa227f65f8d411267b0c87e17c\",\"labels\":[],\"modified_at\":1736353647.026856,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Garage Motion\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354201.335657,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9b4fba2f11f641562e2a0cf02f5193a8\",\"labels\":[],\"modified_at\":1736354201.33641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354191063\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354274.958347,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"830666f260932ede8c27eb30fa0f2acd\",\"labels\":[],\"modified_at\":1736354274.959061,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354261558\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356766.764731,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f39e4da6bae1a1fb17133e0994052d7\",\"labels\":[],\"modified_at\":1736356766.76768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"1e0e99c393cebaf6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.582007,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a426428dce7d3a5ad82a464d6c13626\",\"labels\":[],\"modified_at\":1736356803.582649,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.882889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"109baa4874d527c5dce0fa51e7ec766e\",\"labels\":[],\"modified_at\":1736356803.883446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.157783,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18486e2eea948c77d599307cb1afac40\",\"labels\":[],\"modified_at\":1736356804.158354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.504037,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8b32e5fb84db954de2baea306396bcdf\",\"labels\":[],\"modified_at\":1736356804.504525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.770611,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7076de51a9429320f8f79a3b02daee09\",\"labels\":[],\"modified_at\":1736356804.771166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.094326,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0957b1480c95f751131df14c11de93e7\",\"labels\":[],\"modified_at\":1736356805.094874,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.332161,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b9d7f3508915fa3d10cc3763c4c732b\",\"labels\":[],\"modified_at\":1736356805.332734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.632478,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"654a35e29ec254b14f7342b941c57ebc\",\"labels\":[],\"modified_at\":1736356805.905853,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.134424,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ab3ad53acb2fb31265c2beaf81a787\",\"labels\":[],\"modified_at\":1736356806.223628,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.408371,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4a6ac60b8a79e875715714e9d98b53\",\"labels\":[],\"modified_at\":1736356806.65203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.77282,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9a1414d4439efae40503ca6f2d0de1c1\",\"labels\":[],\"modified_at\":1736356806.918576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.0732,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad998071e0851fcdac692503e773cad\",\"labels\":[],\"modified_at\":1736356807.073755,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.47584,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d14678412ea3738987ba070e0d1dc47\",\"labels\":[],\"modified_at\":1736356807.476394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.789064,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b94f06998a4a37f7fa272ebb5d4a82\",\"labels\":[],\"modified_at\":1736356807.792482,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.131893,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3de7df881a6322e0971ccea176dddd43\",\"labels\":[],\"modified_at\":1736356808.132439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.44137,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0585654f850aa6c80809d8159b522c\",\"labels\":[],\"modified_at\":1736356808.441885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.789329,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"14f7490f06cca0ba2fd96f2482289589\",\"labels\":[],\"modified_at\":1736356808.789536,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.075127,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"157241e5f848a341290b22d44b2c6cc3\",\"labels\":[],\"modified_at\":1736356809.075701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.53918,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e11a13791aa5e28f584841a514467af6\",\"labels\":[],\"modified_at\":1736356809.539734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.885361,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b318f00270d6a9b45165c6e5a44f637\",\"labels\":[],\"modified_at\":1736356809.885939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.259692,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52087a4595d9da9fbde6eea04ad63196\",\"labels\":[],\"modified_at\":1736356810.260095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.533183,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fee843fda76fc8d65a653091ced38e8\",\"labels\":[],\"modified_at\":1736356810.533737,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.955986,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11f9a4558ce5421169edbeb2e555d5cd\",\"labels\":[],\"modified_at\":1736356810.956558,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.034081,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be48034f51cdaff9ee7e90fe0fef9d98\",\"labels\":[],\"modified_at\":1772683905.232172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.297521,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0819605111bcbcd4f7e39d21c88a07\",\"labels\":[],\"modified_at\":1772683905.835153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.540434,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e47ff59093cdd8c4b107074e038dcb3c\",\"labels\":[],\"modified_at\":1736399063.500589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.909769,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46db01c2adedfbe43630a5f6dccc6a99\",\"labels\":[],\"modified_at\":1745524780.005163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359657.453126,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3c001f67d93fb5258ae48c47210beb2\",\"labels\":[],\"modified_at\":1736399064.263031,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.581695,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ead35b09a45c83eee2915b09e240cf5\",\"labels\":[],\"modified_at\":1736399064.531165,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.882863,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"297937f666f3e5a757b1165cbc567ea3\",\"labels\":[],\"modified_at\":1736399064.803276,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.137825,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6389ef9fa7957cc4e8fd6626ea88768\",\"labels\":[],\"modified_at\":1736399065.081707,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.363443,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bedtime_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7af1d7a08626154d89c6fe3bcff2049a\",\"labels\":[],\"modified_at\":1736359659.36398,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bedtime mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bedtime_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.625494,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4b1ce8d630d3c1139af9939d53abb39\",\"labels\":[],\"modified_at\":1736359659.626054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.876657,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2de0b22a75bc9020376fa995d4f55f\",\"labels\":[],\"modified_at\":1736359659.877219,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.132724,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27be5d92b8d529284e3b279099754ea2\",\"labels\":[],\"modified_at\":1736399067.294751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.376811,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0d40b3310f8c0e746ca68a5444b0d1b\",\"labels\":[],\"modified_at\":1736399068.107397,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.60476,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d8083b32c92d976e8df45388ba480189\",\"labels\":[],\"modified_at\":1736359660.605316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359661.793629,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adaa4c83bc9bca3d19a9af0ec81a8eea\",\"labels\":[],\"modified_at\":1736399795.169023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.177957,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53eb4bdb941f55dbbd581722fbf5fcfa\",\"labels\":[],\"modified_at\":1736359662.178469,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.645451,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01129317545bbe3d974404fc7b754d4f\",\"labels\":[],\"modified_at\":1736359662.64603,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359663.612969,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41d3cf71221566d53676a59927079525\",\"labels\":[],\"modified_at\":1736399795.946725,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.24639,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9dc6b7eb95805f4edcd634365fed345\",\"labels\":[],\"modified_at\":1736359664.246953,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.510519,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7cb0a33d907765f791a568845f3ca99\",\"labels\":[],\"modified_at\":1736359664.51107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359665.204889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23e948de201d1840aef0bcac3f026dcc\",\"labels\":[],\"modified_at\":1736359665.205434,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359666.440523,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5707e58d3dc6e2aac0394c2fcb3b7819\",\"labels\":[],\"modified_at\":1736359666.441115,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359667.195641,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"814ba5368dd8ce19d270c59f3aa70d95\",\"labels\":[],\"modified_at\":1736359667.196212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359668.184418,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d79100a0ce88a95bb3508f92917c50e\",\"labels\":[],\"modified_at\":1736399797.665211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359669.14242,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09a91b37c035dc8468fb33c46d22b688\",\"labels\":[],\"modified_at\":1736399798.122323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.04832,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d6892d2d211d5450673f97825289382\",\"labels\":[],\"modified_at\":1736399798.705635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.992047,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"013180467fa74f25bf8aeac4685c0bb6\",\"labels\":[],\"modified_at\":1736399799.392385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359671.938631,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"beb1135710edcf430ee9c09b403bb4f5\",\"labels\":[],\"modified_at\":1736399799.790352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359672.866807,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6230302d762bf3ab79d12409c1231bbf\",\"labels\":[],\"modified_at\":1736399800.787298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359673.78006,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8be95f5af00e6d22af4f2e5ac47c6fdf\",\"labels\":[],\"modified_at\":1736399801.429003,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359674.698165,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72b59c954d688b0c5d56dc7515ecb8fe\",\"labels\":[],\"modified_at\":1736399802.363037,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359675.62217,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42c8a56ab854162a1745cb4a09dbdb4f\",\"labels\":[],\"modified_at\":1736399803.362446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359676.543017,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e317baaf0f76275291f5c2d076ee5e5\",\"labels\":[],\"modified_at\":1736359676.543581,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359677.44848,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"273ecd3a847f25375673692d0e17e105\",\"labels\":[],\"modified_at\":1736399805.439232,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359678.422497,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40b84792dccc1ab0c45ddb0dd47ace3f\",\"labels\":[],\"modified_at\":1736359678.423076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359679.312512,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7048d27edebd7601ca231221f6b27f69\",\"labels\":[],\"modified_at\":1736399807.564816,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359680.283382,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1743057c6757d698d0d65799731be65b\",\"labels\":[],\"modified_at\":1736359680.283927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359681.140505,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_on_body_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b75d2c31d19e391f5d178240a6c0209e\",\"labels\":[],\"modified_at\":1736359681.141105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 On body sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_on_body\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.090116,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2dead3b819e75b6b5211443a5ac78f4\",\"labels\":[],\"modified_at\":1736359682.090675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.9708,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34c63b944355c9e51b84ba3f6b774b6e\",\"labels\":[],\"modified_at\":1736359682.971298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359683.958379,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a7bf80c63ca3bee1b4879fb6b1ba99d\",\"labels\":[],\"modified_at\":1736359683.958927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359684.857759,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47ce2137b53c5b8f6d94331b3e025002\",\"labels\":[],\"modified_at\":1763328460.580366,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359685.654766,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ef2b4cd3a27c1b0051ac47549a23b72\",\"labels\":[],\"modified_at\":1736359685.655329,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359686.705391,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0a92448dcdd542b9e3e8a75fe04559a9\",\"labels\":[],\"modified_at\":1736359686.705956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359687.625097,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ab731ae8b74fd38f20f4fb6c43506c5\",\"labels\":[],\"modified_at\":1736359687.625639,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359688.516154,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_theater_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"703096c37b80a7d5fa418e41d4f81c31\",\"labels\":[],\"modified_at\":1736359688.516736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Theater mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_theater_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359689.529591,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b843d7d77fd0e55c1b9dbc9bcbc183f\",\"labels\":[],\"modified_at\":1736359689.530093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.333626,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab5205e7d9e3858de62ea0bb4794194c\",\"labels\":[],\"modified_at\":1736359690.334183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.652265,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fad870f9abcfa3727367793912e2f758\",\"labels\":[],\"modified_at\":1736359690.652862,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359691.299905,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wet_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6912d4a233b925946eb92a607354856e\",\"labels\":[],\"modified_at\":1736359691.300455,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wet mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wet_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359692.209767,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_activity_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6c82536cb995ebbba982c2ab021ced8\",\"labels\":[],\"modified_at\":1736399825.35309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Activity state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_activity_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359693.154691,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39a8afb6f701ab75cfc7fdb255e13a6f\",\"labels\":[],\"modified_at\":1736359693.155251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_floors\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359694.058948,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ff694331b621b1f0fda4e48e8bbcc53\",\"labels\":[],\"modified_at\":1736399827.024194,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.003274,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_calories\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d9e973ac42cfc50c48e30ad90288748\",\"labels\":[],\"modified_at\":1736399827.952805,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily calories\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_calories\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.81776,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2e45bb02534ec3078c8e0eea4344ca\",\"labels\":[],\"modified_at\":1736359695.818316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.856213,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e71d567db688d94b4e0e0f224fb9ce28\",\"labels\":[],\"modified_at\":1736803158.868554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.887145,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20c1bb2e7c3adbd94bfdfbdf8b652b8d\",\"labels\":[],\"modified_at\":1736803158.895143,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.925194,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"139f6cd0dd468aa9019150651d43f434\",\"labels\":[],\"modified_at\":1736803158.934833,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.958586,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d27e6bddb02baaf8770ba59450229223\",\"labels\":[],\"modified_at\":1736803158.959123,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.000035,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adad2dae764b1b4c5e4f1b8615f7c6ec\",\"labels\":[],\"modified_at\":1736803159.000571,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.020193,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"130892cbc52a3a5d41acf63fc52264a7\",\"labels\":[],\"modified_at\":1736803159.045045,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.05282,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4df84fa332afe1a1ba6e2afbe3e0c538\",\"labels\":[],\"modified_at\":1736803159.053349,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1737067561.611876,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_sensor_2_sensor_state_co2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bddd6f808427ba2a97adca93c8768213\",\"labels\":[],\"modified_at\":1737067561.612126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sensor state (CO2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-CO2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1740257490.056992,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de2bdae5c394ce75a2e72d945fd67d78\",\"labels\":[],\"modified_at\":1740257490.057769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Solar ECU Unavailable\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1740257477923\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.753328,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.under_cabinet_lighting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47a17625819d6de9a9a5a9fcb068dfd3\",\"labels\":[],\"modified_at\":1742764374.448547,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_light_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.742879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.under_cabinet_lighting_effect\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f83446880146584e49ffe7ca9d992136\",\"labels\":[],\"modified_at\":1742764374.450385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Effect\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_effect_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.780879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbc2aaaed253d3bbe2c0ea5e8596772d\",\"labels\":[],\"modified_at\":1742764374.496804,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Do not disturb\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_switch_do_not_disturb_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.829072,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.under_cabinet_lighting_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb2a38c1e988902be72a7518cea08f79\",\"labels\":[],\"modified_at\":1742764374.541366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467771.203002,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ef0cd9a1858bc9149e47113717459b5\",\"labels\":[],\"modified_at\":1745467771.203562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.019608,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9411a9c653ef38ea742ed08dc2a31067\",\"labels\":[],\"modified_at\":1745467772.03278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.047222,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37f7acf271e127f4e49d357bb0c5bb68\",\"labels\":[],\"modified_at\":1745467772.060087,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.227616,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc0faadddf515e78993cb2525101a9e9\",\"labels\":[],\"modified_at\":1745467772.228166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.295831,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2710c8eb328c4a060bfab6e1a34674fb\",\"labels\":[],\"modified_at\":1745467772.313176,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.391191,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7cc10320bf0eac221b1bbe0e37984f\",\"labels\":[],\"modified_at\":1745467772.408751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1745524781.207297,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"545c407bdcb5d35ec63d78f7a8878b00\",\"labels\":[],\"modified_at\":1745524781.207876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1745542172.503223,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18e492ba2733085e4e9f4ff0a5428df0\",\"labels\":[],\"modified_at\":1745542172.50526,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CO2 Alarm unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-CO2 Alarm-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.46243,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"747f703192d22d8ec8759bc94a1fce76\",\"labels\":[],\"modified_at\":1748219109.463014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.640996,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5198dc56db91ba7df5b10c7a015e581\",\"labels\":[],\"modified_at\":1748219109.655051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.685402,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb41fd2f446a5f8881e816b46c3f8feb\",\"labels\":[],\"modified_at\":1748219109.685973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.721723,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3d0012049fbeda8166b02790dc37b92\",\"labels\":[],\"modified_at\":1748219109.722298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.757491,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eba82b80d5619332290deb4a3efb5c84\",\"labels\":[],\"modified_at\":1748219109.758093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.785413,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5e763389817f6ec085e23be56ee54f5\",\"labels\":[],\"modified_at\":1748219109.792204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.110811,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee83713b4ec50e5a22b0f247fa5bc1c5\",\"labels\":[],\"modified_at\":1749590887.112776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.113208,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa86888ae5a955cc2ca0fb3ce1559700\",\"labels\":[],\"modified_at\":1749590887.11367,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.114151,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_shower\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"244d25b21371ef06dfbe70c38a8e3a27\",\"labels\":[],\"modified_at\":1749590887.11467,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.11557,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_shower_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"197264aec52c5bb54e81ebf28f841d6d\",\"labels\":[],\"modified_at\":1749590887.115711,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:82:fb:6a_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.694619,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"217b95c6b680c1836cdf60eb9da2f503\",\"labels\":[],\"modified_at\":1749590895.696348,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.697451,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003565fb8b8be878769578dc74c69752\",\"labels\":[],\"modified_at\":1749590895.699001,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.701685,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.matter_bath_toilet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a965f5cf56792192cef7e0ab7b9a31a7\",\"labels\":[],\"modified_at\":1749590895.703552,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.708213,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.matter_bath_toilet_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84160aed320a4e66dd6c9ad44039bd9b\",\"labels\":[],\"modified_at\":1749590895.708736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:83:1f:53_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"config_subentry_id\":null,\"created_at\":1750061075.141771,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49204eb2a92de917a9e42ff6f8f588f5\",\"labels\":[],\"modified_at\":1775870416.949195,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Master Bath Lights \",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180319,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_param027\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ea8e9374eae954b3bbd8d18020ca120\",\"labels\":[],\"modified_at\":1752102847.180555,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param027\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180971,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_separate_inputs_from_outputs\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca290e9cdd8d4d5d6b3073329b06547b\",\"labels\":[],\"modified_at\":1775490675.663286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Input Trigger\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.1822,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fb5086cf8fcc21f5e28d90e0db54c78\",\"labels\":[],\"modified_at\":1775490675.663838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"config_subentry_id\":null,\"created_at\":1759378690.394779,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"calendar.maya_school\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cca23ca8717983fe71c89426ca56c7b5\",\"labels\":[],\"modified_at\":1759378690.395441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maya school\",\"platform\":\"local_calendar\",\"translation_key\":null,\"unique_id\":\"01K6HJ8M54G71Y4477XK05AGBG\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386477.277947,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4097cd598a3a06c6f0daff8cad6ca79\",\"labels\":[],\"modified_at\":1759386477.279521,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1759386477130\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386507.028808,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be669aa5658d128e8ffcd6168710677f\",\"labels\":[],\"modified_at\":1759386579.806063,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387437.349538,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4820d645ddc7e05d31da79d542bdfe\",\"labels\":[],\"modified_at\":1759387437.351339,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"band day 2\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387072.988787,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_button.band_day_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3dc6766f5367c3f345af29958d10bc\",\"labels\":[],\"modified_at\":1768937321.234765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"collection\":{\"hash\":\"1b24d0ddf479ed85340a79f72c595317\"},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day 3\",\"platform\":\"input_button\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498155.515729,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_phone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c3949e0a3c86ebd635f939b4da67b68\",\"labels\":[],\"modified_at\":1760976737.49654,\"name\":\"Adam Phone\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"51e12b25d85b4b1e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.63507,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b25ffeb9832412e4729bc9a3554e791\",\"labels\":[],\"modified_at\":1774279284.833829,\"name\":\"Adam Phone Battery level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.848698,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bceafcf813f3d0c7f5875af49aa7014c\",\"labels\":[],\"modified_at\":1772691190.431663,\"name\":\"Adam Phone Battery state\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.380282,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52a1a4199f6226c81e7a9e280bf8a5c2\",\"labels\":[],\"modified_at\":1772691194.336662,\"name\":\"Adam Phone Charger type\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.561785,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f78b5a31c1f1797cecc8021a4bc283c\",\"labels\":[],\"modified_at\":1763016724.667262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.150666,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"753010fef896a676a949100adf1a5df3\",\"labels\":[],\"modified_at\":1760976737.499635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.996611,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093bf4d5f49f15e5238231d70b093df3\",\"labels\":[],\"modified_at\":1760976737.502342,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.632604,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b21e81370aec744ff4cef9a8bf0ef00\",\"labels\":[],\"modified_at\":1760976737.502738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.837407,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7107aad5e9b8e1943301af2a059e93ea\",\"labels\":[],\"modified_at\":1760976737.503069,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.908791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47c1557ded81eebf8aa0a96ac63d2841\",\"labels\":[],\"modified_at\":1760976737.503394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.362775,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29de90a8bd56b781a47d398184b68cb6\",\"labels\":[],\"modified_at\":1760976737.503709,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.387797,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b09b3df0b3a9f47a8e6eb4bb0725a8d\",\"labels\":[],\"modified_at\":1761859609.313035,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.086212,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"06c5550926c6fdd6b5ff1b6d10511768\",\"labels\":[],\"modified_at\":1760976737.504334,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.677976,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e02d2deb740d7a31ec1ac86e66289584\",\"labels\":[],\"modified_at\":1760976737.504647,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.113948,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e6cfd871a0249cfa6fcfa5cb067c22a\",\"labels\":[],\"modified_at\":1760976737.504954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.052956,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23b032cf9074ee4d0ccd20a2c7b170a8\",\"labels\":[],\"modified_at\":1760976737.505278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.298484,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"511534407bbe94e987b4e6b18616dbd7\",\"labels\":[],\"modified_at\":1760976737.505582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.564591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"630126c44d79334d10daaac76b3e6da6\",\"labels\":[],\"modified_at\":1760976737.505883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.859128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54186ed87499f0363a7a795031ac8091\",\"labels\":[],\"modified_at\":1760976737.506183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.072203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c107fd5dd3a23152c737aeacfb93f12e\",\"labels\":[],\"modified_at\":1760976737.506487,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.114625,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fc30dd8af197aa5604097778df128b90\",\"labels\":[],\"modified_at\":1760976737.506796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.74326,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a99fecae7b35c0c91c2d87db9221d854\",\"labels\":[],\"modified_at\":1760976737.507099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.11767,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa5f2c7ce053d4544cf8d6062e90490e\",\"labels\":[],\"modified_at\":1760976737.508044,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.804439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6473733425a0a0786d883979d5b4aa81\",\"labels\":[],\"modified_at\":1760976737.508353,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.173261,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_wi_fi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1794c62e4b88cb613114ae22f6763cc6\",\"labels\":[],\"modified_at\":1760976737.508622,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.044578,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42417c7948736cba9d2a5224ad710014\",\"labels\":[],\"modified_at\":1760976737.508885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.833075,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b941b110fe0ebe77e2578dbf0457db9a\",\"labels\":[],\"modified_at\":1760976737.509153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.523966,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"120365806cf1ad9034b62efe0f58c093\",\"labels\":[],\"modified_at\":1760976737.50941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.731496,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad43a289a78ae9decb7a8bb8636ec15b\",\"labels\":[],\"modified_at\":1760976737.509663,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.578065,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82b4fccab26e5f8d9dc5b863a430eabb\",\"labels\":[],\"modified_at\":1763016726.90644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.923363,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681210dd7cb2b664dfc7160e4b59f9e8\",\"labels\":[],\"modified_at\":1760976737.510166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.508973,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"76b86a4aaafcf69e892ab189d3a5a37d\",\"labels\":[],\"modified_at\":1760976737.51042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.354383,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1337823dd9fe63383689acfe28169998\",\"labels\":[],\"modified_at\":1763016726.688987,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.723152,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e043cb0b1e1d248cb65f41b026f07c34\",\"labels\":[],\"modified_at\":1760976737.510914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.143052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2be1edbc1804fca84d30e0ff2af37d3\",\"labels\":[],\"modified_at\":1763016727.38029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.53214,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f72f7f7a26dd97cc36f76faefadc3116\",\"labels\":[],\"modified_at\":1760976737.511404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.594056,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff782efae98210cfe14a22d3d01023bd\",\"labels\":[],\"modified_at\":1760976737.511651,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.047203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f003eadb014be21895e4c4dc182b09c1\",\"labels\":[],\"modified_at\":1760976737.511895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.846127,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9688273e8fc0f9d29c7fae09c089596d\",\"labels\":[],\"modified_at\":1760976737.512138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.422557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85a174f235fbda9b9cdd6ef97bdb64eb\",\"labels\":[],\"modified_at\":1760976737.512378,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.203052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8a9981a0cce9ee63b08edc8b74a776ca\",\"labels\":[],\"modified_at\":1760976737.512621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.726411,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ded137b29a2ac9791fc1f1d244796b0a\",\"labels\":[],\"modified_at\":1760976737.51286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.751762,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"750907f9a2ecaf511d6767527d52e002\",\"labels\":[],\"modified_at\":1760976737.513111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.94591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cd9c953d266dd30bc5eb3151a5f2f66\",\"labels\":[],\"modified_at\":1760976737.513705,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.654737,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ac1339b135ff5cb6054610e09599cd4b\",\"labels\":[],\"modified_at\":1760976737.513999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.100199,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6559562de9368b5176d4c2bab69341be\",\"labels\":[],\"modified_at\":1760976737.51426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.317375,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e5aa6887ffe1c9ba20be2f9dad865c9\",\"labels\":[],\"modified_at\":1760976737.514516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.522632,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2d58c1b05145799f6a0e942e418637b\",\"labels\":[],\"modified_at\":1760976737.514765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.816273,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff01611593ce914c8e55b99746ade7bb\",\"labels\":[],\"modified_at\":1760976737.515013,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.856176,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1df9caee459458f4261ba3769b30a2fd\",\"labels\":[],\"modified_at\":1760976737.515262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.027941,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84ef8a67d8861618e18ec8e2201925f9\",\"labels\":[],\"modified_at\":1760976737.515509,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.497115,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ef002fc4b535738730128cd41020e5dc\",\"labels\":[],\"modified_at\":1760976737.515764,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.248154,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b7742f63b3eca975967469453a345b\",\"labels\":[],\"modified_at\":1760976737.516015,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.542876,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d10a7204fe5e2ea0fa40d8ae5a3144b\",\"labels\":[],\"modified_at\":1760976737.516268,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.257567,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"685e196a4c4f6c3101615348fb51dd51\",\"labels\":[],\"modified_at\":1760976737.516", + "offset_ms": 66 + }, + { + "direction": "recv", + "type": "text", + "payload": "516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.499288,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586179dae81f48674014b0857ed88ee4\",\"labels\":[],\"modified_at\":1760976737.516767,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.717817,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6034cd7356664dc063906e2f52a0a3\",\"labels\":[],\"modified_at\":1760976737.517018,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.94185,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"66165e96b66d1a023f8e8737fbe9e2d0\",\"labels\":[],\"modified_at\":1760976737.51728,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.528186,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ea8b6d6b10896ddbdf5ae9fafbbecc6\",\"labels\":[],\"modified_at\":1760976737.51753,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.252135,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385366fcc059b77a728168515f2586f2\",\"labels\":[],\"modified_at\":1760976737.517778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.461271,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f58c113ad08028f0af872124030c30f\",\"labels\":[],\"modified_at\":1760976737.518028,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498158.942049,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cba6a4bdd6a805551cc283b957b22e63\",\"labels\":[],\"modified_at\":1763016721.943079,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.192313,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2c38371850e50f3e5988540443f5c5d\",\"labels\":[],\"modified_at\":1760976737.51852,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.577028,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16f7fe2f79e1b1f0db02866ac85a4bc3\",\"labels\":[],\"modified_at\":1760976737.518771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.336206,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73631aa51e0e6a1d7794697379003876\",\"labels\":[],\"modified_at\":1760976737.519354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.260623,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"32245ba0b08e126f84726702cb6db8bc\",\"labels\":[],\"modified_at\":1761859609.314665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.171655,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0d32ff833fcd601cd32f482eb5f1c9a\",\"labels\":[],\"modified_at\":1760976737.519914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.382664,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7711c9412df10e8fe9452f68a7038e60\",\"labels\":[],\"modified_at\":1760976737.520171,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.610829,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a08d9ebbb81e0c3fc7a08d30d98e3b7e\",\"labels\":[],\"modified_at\":1760976737.520425,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.121172,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2cc61e1c263d63262ab756c2a5e9d31\",\"labels\":[],\"modified_at\":1760976737.520676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.498003,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81e3fb1a860e34c3494dbee1d95fe70f\",\"labels\":[],\"modified_at\":1760976737.520924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.21988,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3af3544de87e7dbab445e7a8029afa34\",\"labels\":[],\"modified_at\":1760976737.52119,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.731054,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db1336da12c043c7c61d784c7a622187\",\"labels\":[],\"modified_at\":1760976737.521439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.428907,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"553383b37e8d644518a821ebf99f99b3\",\"labels\":[],\"modified_at\":1760976737.521685,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.943883,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23a5abddd967354312c03855e037976f\",\"labels\":[],\"modified_at\":1760976737.521932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.518682,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0be097c7eb3dbe6aef6a25e3a6cd8ef\",\"labels\":[],\"modified_at\":1760976737.522174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.180681,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e09414a784c4b8a03feca8292b47fc\",\"labels\":[],\"modified_at\":1760976737.522426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.937301,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bfcdb749179ca990270164a9c1aace4c\",\"labels\":[],\"modified_at\":1760976737.52267,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.759405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f329d40f3cb4c98261ecbcca9d730f7\",\"labels\":[],\"modified_at\":1760976737.522917,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.012128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f894e57866a8b946f69234a7c97291\",\"labels\":[],\"modified_at\":1760976737.523164,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.284899,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"148c211961e1b76470e79174b4283b73\",\"labels\":[],\"modified_at\":1760976737.52341,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.985246,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f71e7d4f62b65e5450706d56114cc93f\",\"labels\":[],\"modified_at\":1760976737.523665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.763524,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d835075c5dbbd4973e040149a3f7514\",\"labels\":[],\"modified_at\":1760976737.523911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.601118,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d62adbd002ce98615faf711cc7a26d5f\",\"labels\":[],\"modified_at\":1760976737.524157,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.141649,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663371403a63a19124a1b4abc6b27be8\",\"labels\":[],\"modified_at\":1760976737.524405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.336255,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"112988ca48584654f5650f5359c7e4bc\",\"labels\":[],\"modified_at\":1763017007.83862,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.582052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a877e0462d77e8dd3e37703c0c12842c\",\"labels\":[],\"modified_at\":1760976737.525423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.843111,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e19e322d38c79279c958e4aa96c1dddd\",\"labels\":[],\"modified_at\":1760976737.525683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.275509,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00aca62e34295f7facd401ad154fe8e6\",\"labels\":[],\"modified_at\":1760976737.525937,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.858586,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33498cbeacef2dcdc4f033a0b26838cd\",\"labels\":[],\"modified_at\":1760976737.526188,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.07771,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e6c658d666885b7bcae24ba94db552e\",\"labels\":[],\"modified_at\":1760976737.526437,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.856422,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"607fc15e13eb6e05972e82df9e2b66c3\",\"labels\":[],\"modified_at\":1763016727.1138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.70849,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73bb92c35f39f034be36798feb770698\",\"labels\":[],\"modified_at\":1760976737.526939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.916128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28017fee78f1ddd7f4142211e16c0d30\",\"labels\":[],\"modified_at\":1760976737.528024,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.157067,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff11b226bb853a90c464d79f8178ce33\",\"labels\":[],\"modified_at\":1760976737.528323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.366557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40dd3bb633abe1862d801f81b3ce8980\",\"labels\":[],\"modified_at\":1760976737.528584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.978133,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9fce7d56272a707de807cc72548ee17a\",\"labels\":[],\"modified_at\":1760976737.530283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.801608,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"401a043f2c726c93b7b23b4564a1f94a\",\"labels\":[],\"modified_at\":1760976737.53057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.02263,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28e13521bf85269ec4c9f0a082f0c6b7\",\"labels\":[],\"modified_at\":1760976737.530838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.345391,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b190136a43f7bcf64e68901f7d275935\",\"labels\":[],\"modified_at\":1760976737.531099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.594556,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"951499259e3906795a24cd53fc3d1249\",\"labels\":[],\"modified_at\":1760976737.531357,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.156068,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f6bc7f4a033172190b30075550a37521\",\"labels\":[],\"modified_at\":1760976737.531615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.285791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"404a79d1477c10408dde8e055ae80b2e\",\"labels\":[],\"modified_at\":1760976737.531871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.353564,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b1f9968e09762e9bda52a6df2fbd23c7\",\"labels\":[],\"modified_at\":1763016724.247126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.78676,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e40f6aa713fca29f4bd8a635509859c\",\"labels\":[],\"modified_at\":1760976737.532386,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.7486,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df9290d342500fe2636c79ddbc9952bd\",\"labels\":[],\"modified_at\":1760976737.53264,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.96248,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d61cf3fe32f5fe3b39fa7ec9dae68b7\",\"labels\":[],\"modified_at\":1760976737.532893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.23677,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9aa7c0a93561eb0c9c492db8575a1989\",\"labels\":[],\"modified_at\":1760976737.53315,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.443444,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e929af2da1a8fd0c0c9e2eb613c88c3f\",\"labels\":[],\"modified_at\":1760976737.533399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.176575,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b2353cba1cfc2ba0270b144f2043de0\",\"labels\":[],\"modified_at\":1760976737.533645,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.397439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1af3533513a0c5338f0e1f7900eaf9e5\",\"labels\":[],\"modified_at\":1760976737.533893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.507945,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18af8f2d02f6418723e32a510e19391c\",\"labels\":[],\"modified_at\":1760976737.534144,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.906106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"144ae42445c05a952df5ef29aa014a17\",\"labels\":[],\"modified_at\":1760976737.534396,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.18106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62bfd57e3cb228991c9b903d59e6587f\",\"labels\":[],\"modified_at\":1760976737.534646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.176689,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c294c624ab78af85b8acb03e41009e22\",\"labels\":[],\"modified_at\":1760976737.534894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.73368,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b20652958edaaf0ef0042d2a97318da\",\"labels\":[],\"modified_at\":1760976737.535255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.515405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f69443e387af0b10bf4cffad511cab3e\",\"labels\":[],\"modified_at\":1760976737.535554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.963861,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"57e733b28e1a7f745cd42b1588ea7b92\",\"labels\":[],\"modified_at\":1760976737.535819,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.383975,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3757ce7c4b5a7037d34b233e1626b5bb\",\"labels\":[],\"modified_at\":1760976737.536076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.520076,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d093158049a91d9ec6342c460f7697d\",\"labels\":[],\"modified_at\":1760976737.536331,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.290619,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b54445aea1c6b5a23c7a7f8756d331f\",\"labels\":[],\"modified_at\":1760976737.536584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.432903,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41dc6b0212fa61d780912d275265cd1a\",\"labels\":[],\"modified_at\":1760976737.536834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.76291,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49e886aeaca51ef663020c9d6adedd4d\",\"labels\":[],\"modified_at\":1760976737.537084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.966045,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"97423ae7ee25d6b9c6138c20f803937d\",\"labels\":[],\"modified_at\":1760976737.537345,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.640943,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"641af75b3fbe0762c553b05543247e0a\",\"labels\":[],\"modified_at\":1760976737.537592,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.578752,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f98be744eca04298b701b1d066cf33f2\",\"labels\":[],\"modified_at\":1761584275.553227,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.584734,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"38be44c9b9441e8136de779aff02c4d4\",\"labels\":[],\"modified_at\":1761584275.555476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.625112,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eaaa8aa99a75156fd029e017b2345aa3\",\"labels\":[],\"modified_at\":1761584275.60354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.675625,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70710798be185d2ee29eb867eb9f8222\",\"labels\":[],\"modified_at\":1761584275.644775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.796301,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param019\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5c6e0fb47a0136310e04a22d88fc83\",\"labels\":[],\"modified_at\":1761667162.796517,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param019\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.797016,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_param020\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e23bda23aa0ac99b0116586ea0a1b92\",\"labels\":[],\"modified_at\":1761667162.797168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param020\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1761667201.291363,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87fb7ada2339f2039551943482ae1358\",\"labels\":[],\"modified_at\":1761667201.292122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1761667192807\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c2862a4df8f6bd691cf5d04a6dfd54c\",\"labels\":[],\"modified_at\":1761690295.874343,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Headphones connected\",\"platform\":\"roku\",\"translation_key\":\"headphones_connected\",\"unique_id\":\"YJ002K604601_headphones_connected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7cd833409d36d7f019fd3e2c56a3099f\",\"labels\":[],\"modified_at\":1761690295.875222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports AirPlay\",\"platform\":\"roku\",\"translation_key\":\"supports_airplay\",\"unique_id\":\"YJ002K604601_supports_airplay\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a220cc398a638aa2eab462c5dc09595\",\"labels\":[],\"modified_at\":1768937324.483172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports Ethernet\",\"platform\":\"roku\",\"translation_key\":\"supports_ethernet\",\"unique_id\":\"YJ002K604601_supports_ethernet\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6165850622ccf0780a12cb93f99fbe6b\",\"labels\":[],\"modified_at\":1761690295.876894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports find remote\",\"platform\":\"roku\",\"translation_key\":\"supports_find_remote\",\"unique_id\":\"YJ002K604601_supports_find_remote\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d7e470b926897e7baf7da15c69c1a5f\",\"labels\":[],\"modified_at\":1772591841.640657,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3921d505142fc5a908c983dbda85e39\",\"labels\":[],\"modified_at\":1761690295.882215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.living_room_tv_application\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be671b5fc39f53da44534bf656ccfcbc\",\"labels\":[],\"modified_at\":1774121824.587607,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Application\",\"platform\":\"roku\",\"translation_key\":\"application\",\"unique_id\":\"YJ002K604601_application\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b34030d711baecbca2bd7babbb9523f4\",\"labels\":[],\"modified_at\":1761690295.884134,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app\",\"platform\":\"roku\",\"translation_key\":\"active_app\",\"unique_id\":\"YJ002K604601_active_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6a7cd59919db06d42748a1849f35440\",\"labels\":[],\"modified_at\":1761690295.885026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app ID\",\"platform\":\"roku\",\"translation_key\":\"active_app_id\",\"unique_id\":\"YJ002K604601_active_app_id\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1762452953.450373,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"353b8458de409f30f3da7f59dd2279ae\",\"labels\":[],\"modified_at\":1762452953.451146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room TV - Off - Idle\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1762452936157\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.79738,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4bc33ac1bdf05a5a4ad0efe2cf243cd\",\"labels\":[],\"modified_at\":1766477279.797958,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.80.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.798349,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a14d2d0b96e1d99308488b35cfe32d6b\",\"labels\":[],\"modified_at\":1766477279.798784,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.80.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799203,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"acd5e1535a0b58f433b138c0b6faf421\",\"labels\":[],\"modified_at\":1766477279.799355,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799642,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"378e7086f5619183bd617e93465aa802\",\"labels\":[],\"modified_at\":1766477279.799778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800052,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d59fdf37e7ce07ae033e5e4a7871a74\",\"labels\":[],\"modified_at\":1766477279.80019,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800465,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"042c7a9cd428a17c8fedf3be0152a3be\",\"labels\":[],\"modified_at\":1766477279.800606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800883,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f68eb2507739535d9913773ab943d15f\",\"labels\":[],\"modified_at\":1766477279.801023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.80.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.80138,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3369734c52812a3a3ee4bbe2560f1ad\",\"labels\":[],\"modified_at\":1766477279.801562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.80.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.801858,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd7ddf313a54743de6d1f72a3d7bd312\",\"labels\":[],\"modified_at\":1768937324.809754,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.80.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.802282,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62306b73556be6a658a2970154edf24b\",\"labels\":[],\"modified_at\":1766477279.803236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.80.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.228835,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce76270335388122109676234797a801\",\"labels\":[],\"modified_at\":1766477296.229428,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.229892,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21621c315a84182b4f410308413f7b21\",\"labels\":[],\"modified_at\":1768937324.853995,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.23085,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75446919eaeef4477c5765e479030bd7\",\"labels\":[],\"modified_at\":1768937324.85453,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.231761,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2adf7a33a0ac224ec14b279aa8347cdf\",\"labels\":[],\"modified_at\":1766477296.232285,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.232869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"352a62902d4625293870ccad5a0e8ce7\",\"labels\":[],\"modified_at\":1768937324.855306,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.233759,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"959edfed6f06b47aa8cfffad60cb3b27\",\"labels\":[],\"modified_at\":1768937324.855699,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.234957,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e94b9747cdafaf5de7e0065d9bea1787\",\"labels\":[],\"modified_at\":1766477296.235117,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.235534,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d032c73c25b557c150eb9a1554ab27a8\",\"labels\":[],\"modified_at\":1766477296.235674,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236042,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b282d98fd058c4a3fc14cd5cab2ed0d\",\"labels\":[],\"modified_at\":1769099101.051939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_energy_kwh_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03aba463e32ff9cd002a085bc096c2a7\",\"labels\":[],\"modified_at\":1766477296.236667,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy (kWh) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_current_a_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44ed91985e8e2345c6d85aa23ca1ebcc\",\"labels\":[],\"modified_at\":1769099101.052448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current (A) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-35\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237544,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_voltage_v_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8c9afc6dd91370538afa4d09be302d2\",\"labels\":[],\"modified_at\":1769099101.052763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage (V) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238041,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_overload_protection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24702ae99561a23fa90891c83b007f12\",\"labels\":[],\"modified_at\":1766477296.238175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Overload Protection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238538,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a643dcd0c18ea735dc117372cbd9c4\",\"labels\":[],\"modified_at\":1766477296.238676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9278543cbfa4150cf96b9825a399dce\",\"labels\":[],\"modified_at\":1766477296.239179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a20c9254c9e99e639df912c45870f78\",\"labels\":[],\"modified_at\":1766477296.239678,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24004,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9f5c165e12ba64506d0eaf24e58fd09\",\"labels\":[],\"modified_at\":1766477296.240905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241404,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a8223d52922cf9b4adff20414916eee\",\"labels\":[],\"modified_at\":1766477296.241556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241944,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39ecfec962692eccc82d3081e479f8b4\",\"labels\":[],\"modified_at\":1766477296.242085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242445,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"91b749f9293951042533d2401e898b94\",\"labels\":[],\"modified_at\":1766477296.24258,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242942,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e391e07c8a08dd2a25df2be663bcfbac\",\"labels\":[],\"modified_at\":1766477296.243077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243424,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3c85d30cdac3aafebede8607197ce65\",\"labels\":[],\"modified_at\":1766477296.243556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243913,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dacd0709ac8eb1359a94e7710f78784\",\"labels\":[],\"modified_at\":1766477296.244051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244403,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b054386465dab5e8e5b9b8d7c18d91df\",\"labels\":[],\"modified_at\":1766477296.244534,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244894,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f902120e1bceb78e61c17590fe38269\",\"labels\":[],\"modified_at\":1766477296.245029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245392,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fad06e4d9f3d509906b6338e4b79a65\",\"labels\":[],\"modified_at\":1766477296.245527,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245884,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68d921eab0fa608d5f6c2dadd993dccd\",\"labels\":[],\"modified_at\":1766477296.246023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.246994,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b090c9d937ff7066c525cc564347a594\",\"labels\":[],\"modified_at\":1766477296.247152,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24754,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2b9a5eb299f5a41546cecb74eb4db\",\"labels\":[],\"modified_at\":1766477296.24768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248038,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ead661391dda43c8a9cff95e08d325f9\",\"labels\":[],\"modified_at\":1766477296.248173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f79cf7061a486a5938ef84ca4f41ca3f\",\"labels\":[],\"modified_at\":1766477296.248675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da59ba2e721740da07c9e1fce8eeb446\",\"labels\":[],\"modified_at\":1766477296.249177,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b311235ba306b94712f179b47a13304\",\"labels\":[],\"modified_at\":1766477296.24968,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.250039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eed8930162c1f50fb3efa88ed014a90\",\"labels\":[],\"modified_at\":1766477296.250175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25053,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"943fe31b185242de7233f509c6714ad4\",\"labels\":[],\"modified_at\":1766477296.250661,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251018,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e41a3fe1c2e739c5c0b08c01ba04964\",\"labels\":[],\"modified_at\":1766477296.251151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.2515,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f339b2e6b6df648e6ca92d60bf56623\",\"labels\":[],\"modified_at\":1766477296.251636,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251984,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19bb03a5b1ae0e40e13d9da02ae88aa0\",\"labels\":[],\"modified_at\":1766477296.253395,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.253836,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97b7a04a80a5cdf61867e56d866b6dce\",\"labels\":[],\"modified_at\":1766477296.253989,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.254358,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f60a5f4e92244effdf0936a193c2e55\",\"labels\":[],\"modified_at\":1766477296.2545,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25486,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eb52f03fe8467f94f87c777a7a350c0\",\"labels\":[],\"modified_at\":1766477296.254997,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255351,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_usb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cc335594f81afccba401289b6b502d8\",\"labels\":[],\"modified_at\":1768937324.860358,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (USB)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-34\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255867,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cc3f8a76c39d2050f2ca01c684f502d\",\"labels\":[],\"modified_at\":1766477296.256325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Over-load status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.256729,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45740620b4805cce189bb1ae036fcd9b\",\"labels\":[],\"modified_at\":1766477296.257184,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Over-load detected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.257687,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04246652716b229857e01efec2e38e67\",\"labels\":[],\"modified_at\":1766477296.257835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25825,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63039bbbd456696f096140397e346135\",\"labels\":[],\"modified_at\":1766477296.258392,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.259279,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63ad70871975f5f5d34c36a3bc238c67\",\"labels\":[],\"modified_at\":1766477296.259764,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.260212,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c3075512fe6a8b1b0fcb12082a49d76\",\"labels\":[],\"modified_at\":1768937324.86197,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.261175,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"568c6e02c40f5c3a555cdd0db313a4de\",\"labels\":[],\"modified_at\":1768937324.862516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262093,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b395a875cae5455761476ff388705320\",\"labels\":[],\"modified_at\":1768937324.862985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262992,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f06ff5e731abcb200fdf4ce8c56d7a8b\",\"labels\":[],\"modified_at\":1768937324.863363,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.263832,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37ae354122a69445674d2c8a74c662e3\",\"labels\":[],\"modified_at\":1766477296.264255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.265295,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2531dc116e28190045ae5672d09ebe3\",\"labels\":[],\"modified_at\":1768937324.866356,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.266195,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6f6c69f0ddef207889934c80289ca86\",\"labels\":[],\"modified_at\":1766477296.26662,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267047,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc336050e207d78bd1ba0f3bba28051a\",\"labels\":[],\"modified_at\":1768937324.867025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267979,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe9d9f695586d322624d93d749bbcc61\",\"labels\":[],\"modified_at\":1768937324.867472,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.26889,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"01988ea7826bbd8f6ed128469da20098\",\"labels\":[],\"modified_at\":1766477296.269415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.270015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf8ef299aa298fd3248a48bac27ac029\",\"labels\":[],\"modified_at\":1768937324.868225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.271554,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c97f990f08dbf8bfb2e36f79dcf8ce3f\",\"labels\":[],\"modified_at\":1768937324.868598,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.272394,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a2d1328c988166cd19fcc662a187aa9\",\"labels\":[],\"modified_at\":1766477296.272806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-4-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.273243,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50a06ac0b5cc38dd737642d4c89a7b51\",\"labels\":[],\"modified_at\":1768937324.869253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.274164,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d375f897f48b0c3979382b79f793ce7c\",\"labels\":[],\"modified_at\":1768937324.869703,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.275064,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66472225aa97981e6655a6197be3821e\",\"labels\":[],\"modified_at\":1766477296.275574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.276183,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaaeda5a465e1272738851dfaca0bb89\",\"labels\":[],\"modified_at\":1768937324.870776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.278333,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0e4675689b5404d93f71ebfc1d7379f\",\"labels\":[],\"modified_at\":1768937324.871166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.279172,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7093c72b49a8f2d940f6b823759f028\",\"labels\":[],\"modified_at\":1766477296.279589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-5-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.280015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da6ce7565775e6386bc5449a208859de\",\"labels\":[],\"modified_at\":1768937324.871832,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.28095,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0ebf85251bc2805df5a1617f98725cf\",\"labels\":[],\"modified_at\":1768937324.872271,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.281873,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416e2d0423d1f41bd4b56b6bd81b964f\",\"labels\":[],\"modified_at\":1766477296.282883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.283571,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee94a4c4b5043f4b3107f935049eba10\",\"labels\":[],\"modified_at\":1768937324.873009,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.284479,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1f1ce22f894ebe0933234d04a843de8\",\"labels\":[],\"modified_at\":1768937324.873387,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.285287,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c0cacfb741929580682337f02a692ff3\",\"labels\":[],\"modified_at\":1766477296.285701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-6-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286074,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"537517b1a5530389a93a15939111bc6d\",\"labels\":[],\"modified_at\":1768937324.873956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-6-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2db9999532c1e7a9ed05488f029cf7f\",\"labels\":[],\"modified_at\":1766477296.287284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-7-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.287657,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e343a71bdbc71812276c9427c7be85b\",\"labels\":[],\"modified_at\":1768937324.874499,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-7-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.289939,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa5a18f80f779019ca3f23d010909f4d\",\"labels\":[],\"modified_at\":1766477296.290448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477441.695525,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd09b25c9105ef44432c19688ac32e1\",\"labels\":[],\"modified_at\":1768937324.865485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477542.697583,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"faa614fa04d30ee895cd1ff09546164d\",\"labels\":[],\"modified_at\":1768937324.865972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":1768937323.145127,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17e0ae17cdd955a63df94aadb4a81bca\",\"labels\":[],\"modified_at\":1768937323.145187,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46291,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_avg_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7600251cc55099e6789858d8dd0c6b54\",\"labels\":[],\"modified_at\":1768937324.462981,\"name\":null,\"options\":{},\"original_name\":\"Avg. signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.463148,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99723fdd7485a7d6bb927d5bc468a2a9\",\"labels\":[],\"modified_at\":1768937324.463195,\"name\":null,\"options\":{},\"original_name\":\"Signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46361,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.zwave_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b8620184feb8e076a3dcbc4862fa35d\",\"labels\":[],\"modified_at\":1768937352.32353,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.686858,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd5c271fa69e1cb2e08837126e390603\",\"labels\":[],\"modified_at\":1768957339.60269,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.690717,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"06894aa51ff0e9d62478d9bfb5d6b7d1\",\"labels\":[],\"modified_at\":1769108140.491853,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.691308,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632aed480ee30ce82ac8ba8afd55e91f\",\"labels\":[],\"modified_at\":1769108140.492738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.71521,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eab179038325dced95da0495d530c83\",\"labels\":[],\"modified_at\":1768937352.324438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.715894,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69ac603ee53e2fa3e583a9e7e61979e5\",\"labels\":[],\"modified_at\":1768937352.324557,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.776916,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"944905c91677260a69d3c4fb169af92f\",\"labels\":[],\"modified_at\":1768937352.324779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.785768,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"141eddff457c88321aa49743e5165cb7\",\"labels\":[],\"modified_at\":1775491285.628223,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1768937325.683515,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"803942d09c418a98aae2af768bde2657\",\"labels\":[],\"modified_at\":1768974704.217654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":1768937332.413279,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_preset_position\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79c985bf4b12ca603756fd8c2f4d00fe\",\"labels\":[],\"modified_at\":1768937357.407137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Preset Position\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_preset_position\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.683464,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18d7f0c9095f29d981bfa5129a5c8719\",\"labels\":[],\"modified_at\":1768937355.683876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684339,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23798e61c080b6b8bb9292d41b753ebd\",\"labels\":[],\"modified_at\":1768937355.684708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684947,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0506bfac83008cc2d1ce31972a6f2785\",\"labels\":[],\"modified_at\":1768937355.685312,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.685556,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4b56bbe1e3393cda2a02b5958aa3772\",\"labels\":[],\"modified_at\":1768937355.685892,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.68613,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f334207a3706ffc4bdea3fcc21b27f0\",\"labels\":[],\"modified_at\":1768937355.68646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f91be395aa637b853783d80af21df6ea\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88f797601578a44b7f18fe2d310f5c8f\",\"labels\":[],\"modified_at\":1768937820.170123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:26:9F-light-front_porch_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.729653,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_external_switch_multiple_click_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"911f689ea83e4f559f934622cbfaf55e\",\"labels\":[],\"modified_at\":1769099083.729723,\"name\":null,\"options\":{},\"original_name\":\"External Switch: Multiple Click Detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.743385,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34c37d47d0530bffe97567dab6f0a423\",\"labels\":[],\"modified_at\":1769099083.743449,\"name\":null,\"options\":{},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.058963,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c34673f93ef0696b560de0710c886316\",\"labels\":[],\"modified_at\":1769326461.249458,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061192,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34a76e058ab3f8062606e039bb6f7d75\",\"labels\":[],\"modified_at\":1769326461.349576,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061905,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"327d27c3b2d11d6b5ed0a7c67feae89c\",\"labels\":[],\"modified_at\":1769326461.949935,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [A] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.476924,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.overseerr_last_media_event\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1241c0fd94296f38dd4beef033a35d11\",\"labels\":[],\"modified_at\":1769188672.47763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last media event\",\"platform\":\"overseerr\",\"translation_key\":\"last_media_event\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-media\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.478287,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bbb89d6744aa52101d6b2d634dd3a3d2\",\"labels\":[],\"modified_at\":1769188672.478886,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total requests\",\"platform\":\"overseerr\",\"translation_key\":\"total_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.479308,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_movie_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25b77947e4e5901105419056fabf10a0\",\"labels\":[],\"modified_at\":1769188672.479959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Movie requests\",\"platform\":\"overseerr\",\"translation_key\":\"movie_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-movie_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.480365,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_tv_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d94898a7d080d06b0f08ca6451625f7\",\"labels\":[],\"modified_at\":1769188672.480955,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TV requests\",\"platform\":\"overseerr\",\"translation_key\":\"tv_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-tv_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.481447,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_pending_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e190d80632de506998d2cef0552efc3\",\"labels\":[],\"modified_at\":1769188672.482418,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pending requests\",\"platform\":\"overseerr\",\"translation_key\":\"pending_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-pending_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.482777,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_declined_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fc5b3ab324f29fd3454426a63274bc4\",\"labels\":[],\"modified_at\":1769188672.483266,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Declined requests\",\"platform\":\"overseerr\",\"translation_key\":\"declined_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-declined_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.483584,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_processing_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6304a3cd9a5400d32e011d1a277523a3\",\"labels\":[],\"modified_at\":1769188672.484082,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Processing requests\",\"platform\":\"overseerr\",\"translation_key\":\"processing_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-processing_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.484437,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_available_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f9e7f08d9c31ca040fa2066e660551\",\"labels\":[],\"modified_at\":1769188672.484959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Available requests\",\"platform\":\"overseerr\",\"translation_key\":\"available_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-available_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.485331,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00735f8a4a910a0d1254f132ba93de9a\",\"labels\":[],\"modified_at\":1769188672.485849,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total issues\",\"platform\":\"overseerr\",\"translation_key\":\"total_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.486201,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_open_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8ccc6de99805f93f168264e67c712ca\",\"labels\":[],\"modified_at\":1769188672.486713,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open issues\",\"platform\":\"overseerr\",\"translation_key\":\"open_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-open_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487069,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_closed_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc5f4929fb61b84f1593ac32c2e1396e\",\"labels\":[],\"modified_at\":1769188672.487587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed issues\",\"platform\":\"overseerr\",\"translation_key\":\"closed_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-closed_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487953,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_video_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c23a9db4525e8ccd6821507bbce056d\",\"labels\":[],\"modified_at\":1769188672.488474,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Video issues\",\"platform\":\"overseerr\",\"translation_key\":\"video_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-video_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.488825,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_audio_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1677624b1402c112c6e4345588afb313\",\"labels\":[],\"modified_at\":1769188672.489362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Audio issues\",\"platform\":\"overseerr\",\"translation_key\":\"audio_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-audio_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.489714,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c90b1860175195d2a23fccb791504ca0\",\"labels\":[],\"modified_at\":1769188672.490236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Subtitle issues\",\"platform\":\"overseerr\",\"translation_key\":\"subtitle_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-subtitle_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912183.185244,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34a32d14426d3e169ae057627439d98d\",\"labels\":[],\"modified_at\":1771912183.186014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - Off - Timeout\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912170361\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912395.891354,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"773273d151b8c8d49b92ee8627d586d2\",\"labels\":[],\"modified_at\":1771912395.892381,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - On - Door Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912391140\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.625986,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b07a6abab79d073c5be007066b3a3b6d\",\"labels\":[],\"modified_at\":1774116424.626947,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bed Occupied Stable\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bed_occupied_stable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.627238,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6fda5463b7f7691786174b39cbc043\",\"labels\":[],\"modified_at\":1774116424.627924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bedroom Motion Confirmed\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bedroom_motion_confirmed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.957554,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3e5033899feeede780f2808f7b73e24\",\"labels\":[],\"modified_at\":1774116432.958181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.958454,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_nap_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b706a2024115adbf2d36028c6713abcf\",\"labels\":[],\"modified_at\":1774116432.958992,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Nap Detection\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.14926,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4563dd8ceda742b1447360a08afd99e7\",\"labels\":[],\"modified_at\":1774138030.911495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149593,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2d62fcd0d6717798722ba043bce9d40\",\"labels\":[],\"modified_at\":1774138030.911857,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149824,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"806b34a0f2af42d04d3883b58f48a6ef\",\"labels\":[],\"modified_at\":1774138030.912047,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"58122b4c7d81745a9de83d7435a88559\",\"labels\":[],\"modified_at\":1774138030.912215,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150246,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46650fb68d9b63404a046c228467c62c\",\"labels\":[],\"modified_at\":1774138030.912379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150448,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8b8c08c11a816b5e91c5d45b883066e\",\"labels\":[],\"modified_at\":1774138030.912537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150653,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a94089b7222280376a7dad9ef1bf2a92\",\"labels\":[],\"modified_at\":1774138030.912696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152103,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa674acc6fb02b01c66b3433930e2d01\",\"labels\":[],\"modified_at\":1774138030.91286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152289,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5a7edad01fc39a518660614518bcdf2\",\"labels\":[],\"modified_at\":1774138030.913011,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.154985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d16f049693b501d63ea5473129d3198e\",\"labels\":[],\"modified_at\":1774138030.9132,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1pct\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.155394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bffe32a5b8efb97c7c5e604c2bc2abc4\",\"labels\":[],\"modified_at\":1774138030.913358,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_halloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.156076,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54146ec2dbaad8902fd311d6c18d996b\",\"labels\":[],\"modified_at\":1774138030.913521,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.15684,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d740742a1b722377a0897440fd402bbe\",\"labels\":[],\"modified_at\":1774138030.913681,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a62870971ca19efe980ffc144f1a1899\",\"labels\":[],\"modified_at\":1774138030.913831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157231,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"949278d55db1a4d8246fa35f91e617f2\",\"labels\":[],\"modified_at\":1774138030.913979,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Day\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157424,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"276ef5e2cd3663a6236c81c36f446fc6\",\"labels\":[],\"modified_at\":1774138030.914128,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Night\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_night\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157587,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a84f593ccf99ee4dedf54fd732754e2c\",\"labels\":[],\"modified_at\":1774138030.914274,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774138612.949732,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mushroom_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d59320285d90702b2c855475ee95639e\",\"labels\":[],\"modified_at\":1774138612.950796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mushroom update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774139555.128573,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mushroom_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c33c28bb04498effba938ec97b5b805\",\"labels\":[],\"modified_at\":1774139555.128638,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140343.854706,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mini_graph_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56350d9930148e8fd5d61e880540724\",\"labels\":[],\"modified_at\":1774140343.855222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"mini-graph-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140477.398217,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mini_graph_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d58d70df50c79d3213bbf8236a5fe6ce\",\"labels\":[],\"modified_at\":1774140477.398278,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.352598,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681707778436ce05e7199951846ef14d\",\"labels\":[],\"modified_at\":1775489223.761484,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.421699,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c98623c4f1d03a6794ba466def6392\",\"labels\":[],\"modified_at\":1775489223.761621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.690469,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30c8f6f016a9a07d3072df92bf9c837f\",\"labels\":[],\"modified_at\":1775489223.761751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.769537,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fec7537b3f51428841c6f12821476333\",\"labels\":[],\"modified_at\":1775489223.761895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.155983,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4f68f200753e31f0a21132e2ff02e3c\",\"labels\":[],\"modified_at\":1775489223.762023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.222085,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf10bec5854978fe997fc5eb6d1db426\",\"labels\":[],\"modified_at\":1775489223.76215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354869.951525,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dbb9d05d05fcd2ca67c6fd8472bab9eb\",\"labels\":[],\"modified_at\":1775489223.762284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354870.020436,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd61a8fe509fc46135e34167d34e5b3\",\"labels\":[],\"modified_at\":1775489223.762414,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355638.331143,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5144d05444588d3e7a500ac509fae21e\",\"labels\":[],\"modified_at\":1775489223.762539,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355657.972878,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a3162680c956e4ed166e74ca65dbf31\",\"labels\":[],\"modified_at\":1775489223.762673,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356334.664723,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73fe68c3f5230ab53809f13454c7f7ce\",\"labels\":[],\"modified_at\":1775489223.762806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.604859,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f0456298a746305de2207d41a214c7\",\"labels\":[],\"modified_at\":1775489223.76293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.686933,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9e93e6a89fec209b2154e4b4aa5c0\",\"labels\":[],\"modified_at\":1775489223.763054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.039186,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3725b439d15a4d1e0e0b8ef16c5bcec8\",\"labels\":[],\"modified_at\":1775489223.763189,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.114222,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09f3eb747f5823fe21b96763355a9fd3\",\"labels\":[],\"modified_at\":1775489223.763316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.671129,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4cb866d53da98bac0fdd3d9a50958c1\",\"labels\":[],\"modified_at\":1775489223.763449,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.73551,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bdb1093192bc6e83a24ef3ef98ef251a\",\"labels\":[],\"modified_at\":1775489223.763579,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.683881,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"17948118ea0453a21060b9ac3c3bd35f\",\"labels\":[],\"modified_at\":1775489223.763821,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.752892,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2bf26cdc24ddb324070b32bf95efb\",\"labels\":[],\"modified_at\":1775489223.763949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.611255,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2de2190bdb6019e1ebaf8f9f6db56d92\",\"labels\":[],\"modified_at\":1775489269.20277,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reset total energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_reset_total_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.720667,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2b188397cf5cf91ade7924d39597fc\",\"labels\":[],\"modified_at\":1775489254.288937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn off\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_off_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.725676,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ba3493529496e8be49faa472f4272\",\"labels\":[],\"modified_at\":1775489254.289157,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn on\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_on_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.730362,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817a29630544a8935b5b5208cfad3a6a\",\"labels\":[],\"modified_at\":1775491843.189477,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power rise threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_rise_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.735072,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb512790cefd801f44d3170bcbe18fb3\",\"labels\":[],\"modified_at\":1775491843.201122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power drop threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_drop_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.782524,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f1e618efc7019719ba1c008909ae61b\",\"labels\":[],\"modified_at\":1775489269.203071,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power-on behavior\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_on_behavior_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.808614,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a65df0e6618f2527a49b04cb44ddc8d\",\"labels\":[],\"modified_at\":1775586383.664326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.810039,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6da142d344b25e493d4e7150811898a9\",\"labels\":[],\"modified_at\":1775489269.20327,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":1},\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.81576,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6fd914af279d2e8f766c6a3ff2de023\",\"labels\":[],\"modified_at\":1775489269.203513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_humidity_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.817887,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_pressure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd3458814c78abb0afee054f005cdd78\",\"labels\":[],\"modified_at\":1775489308.697985,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Atmospheric pressure\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_pressure_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.819624,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b51cd3241371b7561f77450e43672efb\",\"labels\":[],\"modified_at\":1775492079.877324,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.821311,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89221a788e97735b88a9981fc28d3fbe\",\"labels\":[],\"modified_at\":1775489227.821354,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.822693,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_power\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0950382cdf5c1ae4e598bc5443a02839\",\"labels\":[],\"modified_at\":1775520590.696024,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.825626,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d9bb9d1c71c5dd2c20a45dc1b6dea2c\",\"labels\":[],\"modified_at\":1775491830.269932,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.828464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07990395421c102974cefa27b6a9b997\",\"labels\":[],\"modified_at\":1775489254.291151,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Frequency\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_ac_frequency_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.830508,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_power_factor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7fffd049106dfd91742c2374ec66011a\",\"labels\":[],\"modified_at\":1775489227.830555,\"name\":null,\"options\":{},\"original_name\":\"Power factor\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_factor_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.832056,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b1f2d89a6fa56eaa6ebd7a325233c5b\",\"labels\":[],\"modified_at\":1775520597.935816,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_current_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.833866,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1dec75cbe9a7ba93bf0f0846e5fe5fac\",\"labels\":[],\"modified_at\":1775525154.098723,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.836162,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbdff817ee00883d0aa353adead094b5\",\"labels\":[],\"modified_at\":1775489227.83621,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.84296,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1de84ba2dcb17a277ea97a987f467d07\",\"labels\":[],\"modified_at\":1775489269.203705,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.844464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3be8da09eeb8e0acc452fa4a9ba78a5\",\"labels\":[],\"modified_at\":1775489269.203885,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Metering only mode\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_metering_only_mode_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.850014,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcee0811885c8854563443ba4dced1ab\",\"labels\":[],\"modified_at\":1775489306.418611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1775549231.594472,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_vibration_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9db7f91c5b54278bf3f7a80f5df91bc\",\"labels\":[],\"modified_at\":1775549231.594723,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.825542,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5077add4bf45e912a2ef646bae511f14\",\"labels\":[],\"modified_at\":1775678362.82721,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.827502,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f3761580a85a1bd3953bddb2c989d35\",\"labels\":[],\"modified_at\":1775678362.828154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000004\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.828418,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be7a1d87aaf721c4188bf8bec50329f4\",\"labels\":[],\"modified_at\":1775678362.828943,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000005\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.37481,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167b598bb2635889c041d73857d27990\",\"labels\":[],\"modified_at\":1775868913.129506,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.376546,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa1b588575b52fe468f5b0b654084236\",\"labels\":[],\"modified_at\":1775868913.130469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.613679,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00cfdcc6fd718b086b498d183ec763fe\",\"labels\":[],\"modified_at\":1775868913.131303,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.615726,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb552019b26731f2c51b5b208e46821\",\"labels\":[],\"modified_at\":1775875660.872463,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.618016,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a715ee29ebb812ad53ff3962471973c\",\"labels\":[],\"modified_at\":1775868886.618058,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.61896,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fed74cd33f82ba6c78036a9cebbf06\",\"labels\":[],\"modified_at\":1775868913.133053,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62005,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6aa5184211eb3c2d8ccd38a3b494e66f\",\"labels\":[],\"modified_at\":1775872197.350263,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62157,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62526651242478435d1e767d473d0b01\",\"labels\":[],\"modified_at\":1775868886.621614,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.622608,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c40a87b4581f5eae3d7a6360360a4fc\",\"labels\":[],\"modified_at\":1775868913.13455,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.624775,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d40ea24dbd15c204e20d4041d24cd2d0\",\"labels\":[],\"modified_at\":1775868886.624821,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.640178,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_fed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"339abf0c4de7f4ba8ac9610f75299234\",\"labels\":[],\"modified_at\":1775868913.135283,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.641542,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.tracker_one\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4dde6447448035238f372ce06801427\",\"labels\":[],\"modified_at\":1775868913.136075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.643148,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_sink_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2195ff58fb96b2adfde3932a8dba49a5\",\"labels\":[],\"modified_at\":1775868913.136902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775869869.03551,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apexcharts_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59310574b32edd03da9449e2fc1b7504\",\"labels\":[],\"modified_at\":1775869869.036084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"apexcharts-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870068.253425,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.track_tracker_one_log_press\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"251e799623f0dc9e26c3a81c1bcc0e30\",\"labels\":[],\"modified_at\":1775870068.254211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TRACK - Tracker One - Log Press\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775869806572\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870401.81351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.fish_fed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86abac3ce035a999bd58f59520b2f4f0\",\"labels\":[],\"modified_at\":1775870444.348953,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Fish Fed\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"fish_fed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870404.195975,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.tracker_one_presses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"563381785d898580a4ec98b5d47f8241\",\"labels\":[],\"modified_at\":1775870428.194489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tracker One Presses\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"tracker_one_presses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775870404.57426,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apexcharts_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3c39d6ccf8398fd21217517712467e\",\"labels\":[],\"modified_at\":1775870404.574316,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485157,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15bd4e2db4610819856a0a96d8fb46ac\",\"labels\":[],\"modified_at\":1775870556.016822,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Fish Fed - Latch On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485897,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_fish_fed_reset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb491690a44f98c51901d58d37cdd2d8\",\"labels\":[],\"modified_at\":1775890800.094108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Fish Fed - Reset\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211862\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"config_subentry_id\":null,\"created_at\":1775959350.075729,\"device_id\":\"bd61b07f6c18d67ffd4150ebf11743fa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18f6e46b7275812f380f65c45ab68432\",\"labels\":[],\"modified_at\":1775959350.076865,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Car in Garage\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"44:17:93:1B:60:94-binary_sensor-car_in_garage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067514.535912,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52f365b0d3680334baa51a6a1268693d\",\"labels\":[],\"modified_at\":1776067514.537586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067515.336196,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ba17144d4b28c18b1610c9e6524f080\",\"labels\":[],\"modified_at\":1776067515.337787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"}]}", + "offset_ms": 75 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_async_update_entity_registry_entry.json b/cassettes/test_entity_registry/test_async_update_entity_registry_entry.json new file mode 100644 index 00000000..b9ed088c --- /dev/null +++ b/cassettes/test_entity_registry/test_async_update_entity_registry_entry.json @@ -0,0 +1,67 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:00.359929+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": \"Async Test Name\", \"id\": 2, \"type\": \"config/entity_registry/update\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067740.36143,\"name\":\"Async Test Name\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", + "offset_ms": 18 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": null, \"id\": 3, \"type\": \"config/entity_registry/update\"}", + "offset_ms": 18 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067740.367542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", + "offset_ms": 25 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_get_entity_registry_entry.json b/cassettes/test_entity_registry/test_get_entity_registry_entry.json new file mode 100644 index 00000000..c1edb03e --- /dev/null +++ b/cassettes/test_entity_registry/test_get_entity_registry_entry.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:59.657941+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"id\": 2, \"type\": \"config/entity_registry/get\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067515.271304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}", + "offset_ms": 16 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_list_entity_registry.json b/cassettes/test_entity_registry/test_list_entity_registry.json new file mode 100644 index 00000000..d3459f80 --- /dev/null +++ b/cassettes/test_entity_registry/test_list_entity_registry.json @@ -0,0 +1,433 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:59.289806+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config/entity_registry/list\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.updater\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48544df94cdd8858d51e4825d887b87f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Updater\",\"platform\":\"updater\",\"translation_key\":null,\"unique_id\":\"updater\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.adam\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af3cc6ab1d311d80445a2911bab8a736\",\"labels\":[],\"modified_at\":1774112250.228571,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"collection\":{\"hash\":\"8ea23eafe65450db9d5d7917f1e1808a\"}},\"original_name\":\"Adam\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"adam\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"52fc2b39306eecd553aa2d1275b23f13\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.logan_s_landing\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc17bdf0b19aac327302b5ed8e37842\",\"labels\":[],\"modified_at\":1776067736.245874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Logan's Landing\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"home\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.remote_ui\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"662f53bf96ef56470f84c30f01b8db1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Remote UI\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-remote-ui-connectivity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.jenni\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"867ce61cfc7ab736b355b85c14411b09\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"jenni\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1566df05da78124d095f06fd3478d69d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Front Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015141627\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ff73de8af671e02bdb687bc221a551\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Back Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015238936\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stair_chandelier\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73856bdb53725526e8e63e078c9ebebe\",\"labels\":[],\"modified_at\":1775870416.949593,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.stair_chandelier\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a4c91300d5c0eebf9260967a60a018\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_routine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70c959e47b0e9e5e4b826c5900cad954\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Routine\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629617283234\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9bd88b769429a941a9478debe90a70a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785091384\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.wake_up_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f995f568522466041f6955cdbcc536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Wake Up Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"wake_up_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c348fbb7c91293d0d89150a1e883d05c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785279492\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f204a6e1edd3b3c13d9dc6e48613dd20\",\"labels\":[],\"modified_at\":1741730439.823744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Cat Bathroom Door Closed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950849970\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b4711ee4a97eb0c7c20e508d9b5c2afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950974058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2cc79375b1f971d1a5e8e393733e821\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631951014424\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8e2a310dc06849858f204cad33666aa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952292117\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37007cf65958ceae04ddd495d3be6771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952347170\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6221addad0ec6c1d678b405921c56c42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952450891\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_lamps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ead5a9e4369bbe20f36cdc5cdbb169bf\",\"labels\":[],\"modified_at\":1775870416.945327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.living_room_lamps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05c094b96331a2e72fa623591306c435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb5b70bdb5e625b89f9c05075b86919\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Occupancy\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-occupancy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d2c826662df9e49d3b4c59696b2198d\",\"labels\":[],\"modified_at\":1728721845.856414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":\"ecobee\",\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3bc3484981e75dcef88140475f41ad\",\"labels\":[],\"modified_at\":1768937324.405202,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"289469882a9d4c390942a2c28d21e837\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73aca607e21724f9c52d8d593ec4d76a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7ebb8f03146939f38815de610add87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895391373\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3381c206b02ec2b698ffba1019a5e8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Kids Room Motion White\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895431041\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_off_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54fa204f71e05ab0e55d9f4409aa6ac2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off Motion\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895565944\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":\"user\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_motion_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b122a6403b1e6102b774c5f91d37a109\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Door Motion Alarm\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b041853caeba17cf928939638155c248\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Human\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_human\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0247c03858e81ac316c24dbea6f0bd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Button Pressed\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_button_pressed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_invite\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b490d78c9b4cbaafadf0c893b801a05c\",\"labels\":[],\"modified_at\":1730406829.425846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Invite\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_invite\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_door_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bcca1ae5fefcacfd0ef6dcb4d8b7b11d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Door Status\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_door_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0f14d3b72d1f98e8ed47fbecd5b419\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Call No Answered\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_call_no_answered\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_infrared\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e21d212136e8f6167e23615634933ebf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Infrared\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_infrared\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_main\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dc52219ced77a446fe360690a4cc784a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Main\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Main\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28587a1f49ec36f599f8f42020999c28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d86893f808d91f26b6859f432eac7d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Red Alert\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"red_alert\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0c880ea25f8f95f5f4149b3b3dbde52a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Illuminate\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c375ec26f63adaba2a3600d0", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "884e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Show Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"show_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212fbb3cd5dfca24ca5dfee46fa297da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Kids Room\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_kids_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"abf611beb1cf6771f05cea144108c5a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.kid_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0296bfaeadf38a3c2c643aa0fa317ffc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kid Dance Party\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"kid_dance_party\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ad4a44c058301709a2c85029eb3a928\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633315499530\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72c0da4ff910be4448a82584819265d5\",\"labels\":[],\"modified_at\":1758172744.684397,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633316964978\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33ec4ea4e5c89927fda1517f3c16fbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317039614\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30cd2b7857a2400001b3c24d6828ffcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317101093\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_kids_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ac91a924370b63b79e242b921321b50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Kids Dance Party\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317161375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb22ada93ef655ba18e9b9e9168627e4\",\"labels\":[],\"modified_at\":1758172743.683117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317518311\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf072fca0aaa7e3cb0d7edf9000ec1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633318458266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39ea7e6d5efb9cb8e90240ca9498b48d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633321371244\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_living_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a338e143092fc0aac6088733d8f992\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Living Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633323598789\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64928aa007ddb8ca5083b35e7f8ccd60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Red Alert\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633329926454\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1412ca1484c26fc0f1b15b903c39c979\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b549da1714cb046914a04ae5f9df208\",\"labels\":[],\"modified_at\":1768937324.521669,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:0F:FC-light-front_porch_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f1a54ce97cc4d298e3ebede755c053\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f32cf07f4683f55bcab89798695a46\",\"labels\":[],\"modified_at\":1768937324.493498,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:23:60-light-front_porch_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4473c2dbc00d6320702cda169c7a91c8\",\"labels\":[],\"modified_at\":1775870416.945947,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Porch Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.front_porch_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c474f9af1ecc77455a800c66b4682d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cf5e19c579425ff2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb03e342c2822bb15c887a38425c17d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1637480683670\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea302a8d7dd8f0aad892f4ab3a01", + "offset_ms": 25 + }, + { + "direction": "recv", + "type": "text", + "payload": "29ed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - On - Dusk\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606004641\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b408a1694e51a832ebd0110266ae9b95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606124541\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_restore\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67d608cf2a32ab837f3f638603121f6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Restore\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606172266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c47fb544830a808c164453e004ccaa80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Off - After Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606436231\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2911270340373d6692ced07821d91a\",\"labels\":[],\"modified_at\":1775870416.946362,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.master_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_ceiling_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1a9fe62dd87298be3e20bf76dc5ede2\",\"labels\":[],\"modified_at\":1775870416.947281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_ceiling_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f184a5dcee5c41d074c34bcf6f0788a\",\"labels\":[],\"modified_at\":1775870416.947891,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Office Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_master\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23f3071c3353df3f910d738281ccebf0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Master\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_master\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec4945d179a66d50aeda49d07fd8d1d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights Off\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edc8c107b4d7bdde4ea4ea619fbb029a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639120832058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"712ed0c3c619a6f18ead981897ff48cf\",\"labels\":[],\"modified_at\":1745898587.722042,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639715090770\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d82e452611e452407b78b0ef3b5ca41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.jenni_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a3c8889231a5bf5d75dea1ab9619b42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"jenni_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_close_garage_door_leave\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22831cf5534857f869f81216a62334ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Close Garage Door - Leave\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639718580516\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"524e32ae2138f47b68e69030d244bbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Open Garage Door - Arrive\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639724678294\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_security_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"066e17ebc66789db48cf2e304ed5379d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Security Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_security_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3002756754c22bdc89b0046fb4d2cbb8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85dcc97f2bb788c39ebc5175f6c653dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub_2\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.nap_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"944bf3860f83ebc3f9fab66742d581b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Nap Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"nap_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae5f17c250b517908480297107e4f3", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641177479575\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb7ed0ee5f58ab9e7d2801bfdfee8fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188755198\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a1917bd219066d9a31dddd40526ac3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188941984\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.adult_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1fbc8990624c59d6baebd252a9927d20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Adult Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"adult_bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7dda3951af520ed7aa14de0528021459\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641190435073\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"143a15957bf22bdb04ac5c7772a2ce51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Door Open 10 Min\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641191518035\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time_persistent\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ebdc4128b00a85d18f09c1a3f4df0da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time Persistent\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time_persistent\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7e1d8b9bd1cf3e328c05b5577a8cd13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641192891526\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2af5d760ba8ab63f823839e9455f953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b578d45bd122395c5de1934f8f46e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Away\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225378269\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_home\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a8af2ebb3869fa92d132d3d3d00ac804\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Home\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225411475\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51ccecfcf007db71262f1935420252e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Large Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d1ebd3722f10011fa664fec57ed37472\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Small Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"471dfdb1b7068471e0e1fcfea1e471ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225671056\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e582eb57efe5d94969905cf1bff8f81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225729228\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"651aa5c71d4b4b596f4a13407ce60767\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226072324\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cdb6f8074feda911c7b4db1a1e0478e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226100136\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b91da8b1552452b28294bcc304b4f8bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pause Master Bedroom Lights\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"pause_master_bedroom_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"timer.garage_door_closed_recently\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"90320387b4e4ec3a3c7cbd84dbc5ad90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Garage Door Closed Recently\",\"platform\":\"timer\",\"translation_key\":null,\"unique_id\":\"garage_door_closed_recently\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_nap_time_over\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f25dc80c5eb3444609b559695bcff2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Nap Time Over\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1643176701270\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_disarming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"889c9705fedda7305ea5fc7107f5a56e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Disarming\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_disarming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_ring_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01c245ad5b42f3410ceadf17493c617d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Ring Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_ring_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_smart_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d98b2a6e9c31c4c5aebe6deef37adab3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2e11abfde42f19a5057b1b585c72c3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1652512982739\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e04623ca1cdd79fb8087c8cadfc8a27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"468809c6fd06ce648ffd4890de5cc742\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4f4ac0f275a156c8d2384faebbeb939\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandalier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6571da15bd6e6aaf28760a38252de8f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stairs_chandalier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b323727cf823f62522377f2dd6b67c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1124603e90858bd2a7c8eeaa4ef0c908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91edb81063054b8b29e5bc0aee5ca722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a55fd0624053c3fc70a102047121f57f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68111fcc2532b27a80ba3cc01980d288\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0fe65477af3a205470a1ccced0b63d2a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42f50125299f3927c531c18b669aaa60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"261cda58fa35c9826e2e8a9e46548ff6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4bbd43bfe7fd1687e3f9474bf5306d86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48c6d2458f235bc19dff653c6f3bfbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"134f2a9c097befabd5c7d358e36a7a6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3dfacb9c1a377c0cc5390b71bd2955e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16ffd02c1f172e132bc50ed2bf793eaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8487a8d303943a19ac5668fa6c21f68b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73d67204eb476a06333ef8f4adfe5ef7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24288404b3c7dd6c44ff56181d1124e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"864b5cd1631ecb4437a6a0a50c7257e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"722bcebdf2dd4b683a717d50365989dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2caeff606e9499afc9924c3338e29c0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Large Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_christmas\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e869294cbe465647705bafc2c47d8477\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Christmas\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_christmas\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85e9eb0070a496e7fa87eba9e56abbd3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0989c392a71f038b4ce8fe25569ac13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37cbb875f4dfc9ba34dd3b3e17930562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a1e6bfae1dfa193385ec058c31f2fb9d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Small Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e487877af8428842b8d8007616674a62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aa3800e7a126f118ae9b7666deaa2314\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56cd7bf3d052edfdad8981918cd6267\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fddd2acbdfde2f3570dba13d43190b0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6a231953d122e3658bdd77cdcd797f16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24022be80cfdf60a4115c7bad5b035ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec52255713718153f0196eae444e4fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89ea19ac476812b23f5fa073e720b4a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eef0de05d0aa24da9c82355406167041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7940e0e30fc1e1fcc4c9b7a48565002\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_fade_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663c860aed914fba5858948be314cbe4", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White Fade On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_fade_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6be2f831d75032a3ad7b684508d65e16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.notify_phones_about_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ece1f2275efa510e2dd20151a04ed9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Notify Phones About Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"notify_phones_about_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_meeting\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"372e3957cccc5cb8619ea55b6ad0795b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Meeting\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_meeting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"754734721fc9477df34eeb036bb991bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f7c8ae1fc9b54bf0123181ee762641\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dead_zwave_devices\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ca6ff31d8ab85a686150917f46387b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Dead ZWave Devices\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"dead_zwave_devices\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f63024643aed08b3bfac6124ecf6ad55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Detected Activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59f0788b350cff3ed3e4c80681032694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11670cf20ba415249941c61df360a87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6349ef75a1840deb307830662b0981ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4516a2d3d10614f0276006803376821c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9a1de4c001b65b023873dc67b2e1aeb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e26c607d067a78c441b7f9cc75dba4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f9b0a9b9747f274c8ec2c4049f13188\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2591a8696175650360ecb04c34ebde3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Standby Bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c29b2793fa42375476a4961a9cb9f3c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4c4aa34addf089c6e0d44c3dbb69fd8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Ringer Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b402edad0d1f3609fe2ea219651b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Audio Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabac057a1daed31e37304dddb21888c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_mic_muted\",\"", + "offset_ms": 32 + }, + { + "direction": "recv", + "type": "text", + "payload": "has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d03380fb776af8c689f558f3d81ec56c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mic Muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c849b40230913371f3ae86450152296\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb4b92f25deb1c26c4d3a75796804cd6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Music Active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63c6ddd0e2c380c423406f865ab4466b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aece69b417cbd569b31f9e3f03cbaa5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"08d4816026b16e5765055bcb256faaaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"167a38f51480e27d6f32ea9bd21cffe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b36dc595459a5eb7754d1bd53f679d9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fa664a57085896e92fe622bcfad9ffd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level System\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4947061539f7e448c220cbbe3d9791ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79866ed9f3d374f668978f602c522936\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"754c6b6be3ff40167959413eee71a769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bf324078f46e09e10914ddd9ad39ea18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f2ae98f237b3a3c18efcfb76a44309\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Is Charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d588b0f08c94af014bcad08dfd9c82bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Charger Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af35ad533bc818679f6142f0fba98ae9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4eeb5c4fc5a9c4740e441917048cb56c\",\"labels\":[],\"modified_at\":1768937323.674991,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 6 Battery Temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e620a9902d2503fadcb5049f62bd3a\",\"labels\":[],\"modified_at\":1768937323.675654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 6 Battery Power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0bea36868dc2852f26e606cb5585978b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7c392d0e5b5805c04c01a8de1d19c6a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f5694e88652fbe7b4aea3571cd3ad68e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 BLE Transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0c86f94983c08b0aee46a117de5db3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Do Not Disturb Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4925d0a68fae8a6820872b19a33e5e86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Work Profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6e361c77027c92ca103f02ee555a17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Geocoded Location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"61959a38850d543f21bb0e1569e0ede8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e12b5bf1dc6312d8adfe9566a8cddbc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4213bef8495768305cd59cdf35ca4b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e97bb579088e5ea424b616dd154aa791\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f66c0118c076670fb52aaffa7ba1997\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Used App\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2f9ae155ba2acb94d2e58ff2481cd0dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4984eeb61df82c1962b1568de93ae1e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Update Trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c379a58d167afdca3215f4bdad404860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Light Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed4aca22759c17dad01d4267be06c9c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093eab6b381d30ac54b915f31a1ffe6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Update Interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5b1fcf09cfe62058415e538ad489578\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e7c731edc371565fad28bffa63f26fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data Roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3345b994bae95f98a977b05251d2c18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"36a81e770148fbf8c3501c4034d8b519\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"393daf81b19a2e000076de43a50e0d5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a86d523635b1107073a00863ea200833\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Link Speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf293b8e7370ea8c4cede0e10f834424\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5dcf1e1bbef07ef59ddfe608cbc0132d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aea0472231ddd7b05ac99a683af7c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Signal Strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"660adb553e2a9af427c52f135747f7f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Public IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"176bca32b338d93754f9c7be44fa07f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Network Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0285447de022be2a252f35fa4ad7fd5d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Next Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586470a0e2dff113e76d335d791c7cd8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4359e632b04270993df87c3fe628cf32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Removed Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c9addd802bcc76b59bad7b47f376a6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Active Notification Count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"422e2b7d93661fb5bf555757d9aff815\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Media Session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4816202ee229e1793e3f4118768d562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Phone State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6c47cf4f550f86dd82efbe37e4d94c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"978bf765161185ef6cfd1d543281d100\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3da6d97d96132bbaf358275ffac29b85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c969863cd8081060eb057eea1b261e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Doze Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"859d0df2447518ce6d43471eeb66ff04\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Power Save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ada0b3b5277c155272a320fdb3d308e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Pressure Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbfa1364f9833d410ae76130415c30f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Proximity Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a8b1e9e42181e7f2598315ecbfcd15c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Steps Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2dfe5cda59186cdf2870eb4805567d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Internal Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ed6c593bbd2acc4ff1fff9f30bd8655f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 External Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_t", + "offset_ms": 34 + }, + { + "direction": "recv", + "type": "text", + "payload": "ime_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"60436b2e4c4506cbf65bbe328d971eb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Time Zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a2fadec84d4c8c45bb51cb557092dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c088aa9a3a0892284a692665a13625e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4a8a05e4ae43df88bc2ba18d31bc976\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db3a97e3ec912bb7ef3afb01868c097b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5a96bfeab8ef33995d19d1c286975ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f0f857a8968c9cf06c05d1eb7ed8e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"599fa49165ca52cdaa308a9291244c32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69bbcb02486b22633b2e78f73ed39657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"zone.school\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df94776e25d1b4c511664437c6d8cd8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"School\",\"platform\":\"zone\",\"translation_key\":null,\"unique_id\":\"school\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec6368556983ccd7323a40edadf2e38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Beacon Monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2160869c0d0023d5de9f7280cff177e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Accent Color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9f2220a04f3d0be4796b6fee9d9b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Screen Brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98521848d3efe121dc305c63a3ae9482\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_hallloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd0dc4211c81c4003e1b7c52010f64b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea4b856a58974c9350f0dc8531733eb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e7b49dcd25a0e17a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"752981de05fcf25b9881f49201d2d259\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e583b4572c572a970b8e4f79740d1d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84d1e072ec6a946787dd954f39def970\",\"labels\":[],\"modified_at\":1733904291.14561,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f441123d912ddae3e6d32aa9719fa8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd925eb2c0373b46333f9982693cc539\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8add6e050c44b030b775c0900d7d955b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca4da0e5938f0ad9b79786aebfc94261\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6da88d50b1815e413cb3c18effddca46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b9ee129cb84e064e54f6b6f2a68bfd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b56def15f41aad4941106a5a95a55bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7427f7c8df98d3cbaba16fb1cbf5f27e\",\"labels\":[],\"modified_at\":1769764244.706022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d92a1c422ab0a536d81c42d8ae646da5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ca15e3b72854b67b5f6bd20861d12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6c4b3a155edb068cee9c57e4b9114bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2600df00617c34fd4a6f7085fa9ad2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9d033d4f9202f91a6b56293e16399cc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d704b74e9a8a5a2a3bbabbc7aceac39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fba7cd65763c03f75099ea4f8f2df62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4048c62fc405ce5317c7353ddecc8db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44607a13e9e0906a7b252b2367029b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ffff734debf22a5da1f04227ed7ce61\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7851ce9b8b45d02c259b100099695bcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e75244fd4d702e9e24eed421f19f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80553ce4ab17b8e3a3c8a0e9f2333369\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df84eb0485292a8dd0738dd75af58ea6\",\"labels\":[],\"modified_at\":1772660779.072245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"962b89bb2e91c9e72416f05984d53a0e\",\"labels\":[],\"modified_at\":1751875652.892459,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a32c673dec6f143954907e9d833d05c1\",\"labels\":[],\"modified_at\":1751875652.921495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d73b8b9674d497ee18d5fc04803bfaae\",\"labels\":[],\"modified_at\":1769764245.433226,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc442861fb551a6a06c1f1789d3a8d47\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8176790314abc637bb78fce1af28dd95\",\"labels\":[],\"modified_at\":1768937323.679914,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"°C\"},\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 7 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5b470b4aa7c1d7e469ff00bf06256925\",\"labels\":[],\"modified_at\":1769764245.566513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 7 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cfe1476f76e9b5e40c2665623a580dcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c501a24867cf1e75b62a7d084fe615", + "offset_ms": 36 + }, + { + "direction": "recv", + "type": "text", + "payload": "3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"241a1502ecaf8436b468ad0986728e9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"976abf783a6596bb6e4ad93e5eef6ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aafd4d0f25e0058e7691e4b900fd888d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9432ea9dde7dafb7f04fa0fb66caf0d4\",\"labels\":[],\"modified_at\":1733904292.9764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9742771b1ceab90f1b14f82fe2f991\",\"labels\":[],\"modified_at\":1769764246.412117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9140026578f8696f95b3a23e7b4b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2eb9199ce7a259686aa22ed1201bcd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aefcada6f1ae5cd573ecafaed1f82cc9\",\"labels\":[],\"modified_at\":1726775504.304137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"327a9df8b4a560f9869c8a795aa427d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b8aa5d978c603d98ee826e002c5a51f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1935dba47b0942142c6137d75189c165\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b24892dd730b588b3ef58a9c5f6433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"683870d1b12dbfbe9958d3bbbd483be2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05628de07b292547de3074d0fecb63c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b52583e588d331b5489ad61d42d1b894\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea6754e922d43ed5faefd1c37aff673\",\"labels\":[],\"modified_at\":1726996801.234221,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67a5374ec1ce04d4b1fc7f504a5f5ceb\",\"labels\":[],\"modified_at\":1726775486.464706,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9989c20892e290c5f68ba8011da7480\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ac9c525c7baa10637bfa0bfcf5221a8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d33788e0c059d59c257f087a1473354\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6858fb1bfe673ad16c733d32e0e2eea5\",\"labels\":[],\"modified_at\":1736454087.142562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f8ecd430a0259a766ff87dd14850905\",\"labels\":[],\"modified_at\":1736454087.172581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ede90797f1d7ac76694a6f43d9bc8c45\",\"labels\":[],\"modified_at\":1736454087.212097,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"baa0e4cb851227a8feaf9d6df17e9fe3\",\"labels\":[],\"modified_at\":1736454087.244039,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212276650f0469c6b78f1aa1555eb08e\",\"labels\":[],\"modified_at\":1736454087.284983,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2c26aa9370eb6b26b415452c8a", + "offset_ms": 37 + }, + { + "direction": "recv", + "type": "text", + "payload": "a37fa6\",\"labels\":[],\"modified_at\":1736454087.322599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5559192d4b1724258755211fd6c0eb2d\",\"labels\":[],\"modified_at\":1736454087.355909,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f2f1af76340c415aee598869f15f6b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ba5e415bd21554388b021818724eebb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49817327a16217538f7b5d10768914e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f382990d6af13a6f0f40861b861e446a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"acbdc6c80e798bd40e688481d54f3dfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b15ae82de7ad1a7193e870c8a928e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c39f19cdbc833df680ac7b7aeae2a1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"343e97cbda69dad188ebbf6b8c98cbbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95999d30a8740282d4530ca4dcc83763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8dc6554bf62986c588c250443bbd9a30\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501fe56c13dba2403f8e9f6305853d85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45103882a134b44b710984e492b782d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89602f6616e58d5fe6968e27e9de7f75\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f509ed5dc970c87935cd8abb4447cbdf\",\"labels\":[],\"modified_at\":1768937323.68247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Pixel 7 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce994d74c8d3dacc5f2b3f3ad1c4c862\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b81c76adf96efe95f486bca48df59198\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea6b5d6c0a7555063714d5e8fb0966b9\",\"labels\":[],\"modified_at\":1726996802.141611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e86041c03757821fbe478098482d762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f7c6db6916cfc8884490f24662d6d6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"179461930c9335bff09691616b8a316c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d7bf3b13d2aa43a53bff5d32eb3b6a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b76e1c633c646f74498a1b4022d4aabd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ccd80680e8a746bace2ed530127ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"51f7f20cb4853fc0b780e3f12cf45927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:c4:36_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f0afd1ec6dd2925c7d3aa877f10716\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:a3:c8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab1ff41ba82a1e9a081c62b4a4e05baa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lamp_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc50d543f3d0de8dce6f30e83abaa051\",\"labels\":[],\"modified_at\":1768937324.522894,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_lamp_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:33:BF-light-office_lamp_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74f90347b451e99fe4564a5f9034b2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04350d1332ac239890df047ed24bd6ec\",\"labels\":[],\"modified_at\":1775870416.948326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Dining Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.dining_room_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_base_station_power_switch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd59869adefb3c2668706287d79ad134\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"VR Base Station Power Switch\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"switch.vr_base_stations\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"554456bc549d0c50d8ad023679b633b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn Off VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"974317cf2fdad27a6ff88ffdfe415537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn On VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067515.271304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94b349a8c075517a154253fb630c014c\",\"labels\":[],\"modified_at\":1775360982.274551,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f55335bb75f173f6fd401e50a1e6ebb\",\"labels\":[],\"modified_at\":1775360982.275026,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8424b92182bb8b52c940680327e1b956\",\"labels\":[],\"modified_at\":1775360982.275471,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86c88fab85fb335a99f5bbc40d5f6157\",\"labels\":[],\"modified_at\":1775360982.275902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00578db2e0fd380276579a29772a6ad2\",\"labels\":[],\"modified_at\":1775360982.276323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"091e225f048950d7bc9b58b427089acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d4ccd77c43917949c6f8998592f6d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72f6d099f1b60f2bef38928d26cd8c1b\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Lights Motion Off\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1681343760386\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.scaredy_cat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"875026434592cfe2277e6b60284b69ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Scaredy Cat\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"scaredy_cat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d709cb65d0bf72bdd756ad8e1f4ed26e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1c060ca1926ddc648dccc6a4ed79a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Scaredy Cat Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1685999337743\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0468ec0ea3a7c492de483fe1e2a6f3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bc61ccd7457d16d4521b75efa4de5263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"090f0966fdfe9202896f95e917094d", + "offset_ms": 39 + }, + { + "direction": "recv", + "type": "text", + "payload": "b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33efabd658a938a3c84616668b943ad1\",\"labels\":[],\"modified_at\":1728721845.865992,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistic", + "offset_ms": 41 + }, + { + "direction": "recv", + "type": "text", + "payload": "s_messages_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b46c1986a992590e543ab83dcc22be\",\"labels\":[],\"modified_at\":1728721845.86621,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47716215f6c1e4e0c958a2bd847d04b7\",\"labels\":[],\"modified_at\":1728721845.866372,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c0f16bdb9a7af253322e7f2c68037a1\",\"labels\":[],\"modified_at\":1728721845.866525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_not_accepted\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32047f8c6fedd304c0195365947e01c5\",\"labels\":[],\"modified_at\":1728721845.866674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages not accepted\",\"platform\":\"zwave_js\",\"translation_key\":\"nak\",\"unique_id\":\"4182894947.1.statistics_nak\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_collisions\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8508325f21df882e069374d85c2412c\",\"labels\":[],\"modified_at\":1728721845.866818,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Collisions\",\"platform\":\"zwave_js\",\"translation_key\":\"can\",\"unique_id\":\"4182894947.1.statistics_can\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5d1890f3771adcfbc650417995884fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeoutACK\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67397fab6dfc1efeb76db69e09cd2518\",\"labels\":[],\"modified_at\":1728721845.866966,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.1.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_callbacks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cb0ec827d35594d68324c943295da67\",\"labels\":[],\"modified_at\":1728721845.867108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out callbacks\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_callback\",\"unique_id\":\"4182894947.1.statistics_timeout_callback\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"682c4418ccc9d59ab4766feb2876d337\",\"labels\":[],\"modified_at\":1768937324.461784,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79be22754c52e9d3ba249c79d09b8c3d\",\"labels\":[],\"modified_at\":1768937324.462018,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b9e078797343e12caf9f44a0b0f5b23\",\"labels\":[],\"modified_at\":1768937324.462198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96bd4450ea3aa2dc0fefa5cdcca29ec6\",\"labels\":[],\"modified_at\":1768937324.462371,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d30b0a3a5acb331ecf9bd7faecf3c553\",\"labels\":[],\"modified_at\":1768937324.462545,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67ff38d870a2330331c2b8ce6d626c9d\",\"labels\":[],\"modified_at\":1768937324.462722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f177b710b34d34badf49d64727b08927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.4.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a73d8ed5443f8307691ac47b75cb6513\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.5.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad589416f84ee0a4bae7247f7101e698\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.6.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08fbadd4e068fb26c4d98b53f492e322\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.13.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"", + "offset_ms": 42 + }, + { + "direction": "recv", + "type": "text", + "payload": "9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb6e3d9400e10748fbb5b95f4d2c14df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.14.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9657d799395ad95f249170d72f4515ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.16.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be10ca3bcb5bc1051a357c059873eeb5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.17.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e9cf7a82a0f823c8cd07af1e9828c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.18.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a463e1a6b3777f832e1c78e3c725c8a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.20.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d13a24ca75cc9b0a0413f9f7c0f7c5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.24.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48d8ac6919beb5fd1f7b6715fbe12b43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.25.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f233496fe9a9cdb2df78bff33a2b836f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.26.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d6f8217dc1118036bf98bcd10f4133\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.28.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80029cb154657f9d9c91b39ba1e31549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.29.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46570cdf00c69acca5931fa450785a9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.30.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35b093dc4c64641b23021740e8cd27a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.36.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a65fc8863f070a02d939d1b8306a2d8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.37.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53ee574e53ebda2b8e3f989a3ba13fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.38.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30654040cc3e65801967d3b7cb69b1df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.39.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"544683dd8a7cc50d1bd208a73f4e3307\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.40.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ebe35465fe37aac78f69ed1222d264c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.66.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab0c922ac84db0b313a9c93dc22c6ee1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.4.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8385c6cfa7f0c4997be41b6a49a4b8de\",\"labels\":[],\"modified_at\":1728721845.982674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e386cb6e210fc89df0fab411faf5afd4\",\"labels\":[],\"modified_at\":1728721845.982907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9c808db283e54ab2446bab6fb1cc994\",\"labels\":[],\"modified_at\":1728721845.983117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba1e80a8483cdfc2899d23b81aed739c\",\"labels\":[],\"modified_at\":1728721845.983281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f42d47a34b6f9e3f87ae053978ee85\",\"labels\":[],\"modified_at\":1728721845.983435,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.4.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9be484fd8a2b1135e0eb46e741acd273\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.4.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"693765a84e9f3e3dcad716f4eeec22eb\",\"labels\":[],\"modified_at\":1768937324.528833,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.4.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"012352a68babdcf20b6cf95f876e926f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.5.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f672471b5c978420e5f1dba57dc4733\",\"labels\":[],\"modified_at\":1728721846.000478,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c4b943d6fb6f596b29d6d977e0e46f3\",\"labels\":[],\"modified_at\":1728721846.000702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9873f4f992eed491065ac7a2f339a7bc\",\"labels\":[],\"modified_at\":1728721846.000876,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69032bd476a7b17eade17059e08180a4\",\"labels\":[],\"modified_at\":1728721846.001035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb63ebe968c8197ed6fd472701949976\",\"labels\":[],\"modified_at\":1728721846.001179,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.5.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69dbe60b2c6ede995a5e608d08544cf1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.5.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46b8ead388ec6b9bbd189354e8d592ac\",\"labels\":[],\"modified_at\":1768937324.530131,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.5.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4cda4cccf1bf41fafadcd00681b40751\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.6.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3da25ea5b1606150ef66a9080137bdcf\",\"labels\":[],\"modified_at\":1728721846.008122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69e11426422fa9379fb37cc8b90b0100\",\"labels\":[],\"modified_at\":1728721846.008333,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6068bcf6b64da799f454a39f75d219d\",\"labels\":[],\"modified_at\":1728721846.008489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e19fe563fa9afb307a1d1ec0af6a47\",\"labels\":[],\"modified_at\":1728721846.008639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7c137d08211c63fc135d56ad8079b20\",\"labels\":[],\"modified_at\":1728721846.008782,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.6.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632b4444df9edd83dc36ddefc3105924\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.6.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b89faa5aa8c37389c327d33c0bed5f5e\",\"labels\":[],\"modified_at\":1768937324.535509,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.6.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c48a9484b52fe684114f779a2fb5404\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.13.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4c6df2834c4defdd486be1e9a612c07\",\"labels\":[],\"modified_at\":1728721846.026245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"511e3b988f5150cf206ecff8b0a48afe\",\"labels\":[],\"modified_at\":1728721846.026539,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e77fec708cbd9dafd349afe5a826a6f\",\"labels\":[],\"modified_at\":1728721846.026691,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d788a6b3695255083009f04d3dbf84a0\",\"labels\":[],\"modified_at\":1728721846.026831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bf7f721885b7646b04081641fc9b9d8\",\"labels\":[],\"modified_at\":1728721846.02697,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.13.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4461e4c669a848b9ef3223240813573e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.13.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"308b0682ae88de559074a6de7c53834e\",\"labels\":[],\"modified_at\":1768937324.541059,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.13.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_room_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"705c92b125e5de1380f3c18794369bf2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.14.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6521456f61c04ec8fe7b1e5b097d37\",\"labels\":[],\"modified_at\":1728721846.034872,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00c3b60e2e3cec4899e63d54e900e047\",\"labels\":[],\"modified_at\":1728721846.035075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec9cb65a35afed1951ae88b782595f5\",\"labels\":[],\"modified_at\":1728721846.035255,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"231a387ade3bdaa4a66853272db8b0ea\",\"labels\":[],\"modified_at\":1728721846.035404,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb1ecee5163bce8480c0fd35a09c6769\",\"labels\":[],\"modified_at\":1728721846.035575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.14.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"85069e58b15d22ef66a4bd97c6129f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.14.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c8fb660cd92b5d242a", + "offset_ms": 43 + }, + { + "direction": "recv", + "type": "text", + "payload": "b5d679ccd7b33\",\"labels\":[],\"modified_at\":1768937324.546124,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.14.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c336a49feefaaa0e9faa1a38535c422\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.16.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d93c331bf5198470ef4ce4f524c52272\",\"labels\":[],\"modified_at\":1728721846.042608,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e863df09902ad83c56a2841cb51f576\",\"labels\":[],\"modified_at\":1728721846.042868,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"", + "offset_ms": 45 + }, + { + "direction": "recv", + "type": "text", + "payload": "successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"798ee7f183a63fe89f1e942c636b3bf9\",\"labels\":[],\"modified_at\":1728721846.043022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42ae2ffc8bde328a61b8ae4373aa5eb9\",\"labels\":[],\"modified_at\":1728721846.043158,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ea12c6f7d52404e2147b808e1242b41\",\"labels\":[],\"modified_at\":1728721846.043281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.16.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7ce0933d67d34e56e76dd1709593328b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.16.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dca82438215fb7fafede9cce49acda\",\"labels\":[],\"modified_at\":1768937324.551074,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.16.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"304e4ebde63c0b6724afd5e92cd59f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.17.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cdf393e8f27ba0fa618069c16022a026\",\"labels\":[],\"modified_at\":1728721846.051416,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40c570bea89d10e15145cb64ee1f7ab9\",\"labels\":[],\"modified_at\":1728721846.051615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b2edd3fbab7394bab0c14cbe7637c5\",\"labels\":[],\"modified_at\":1728721846.051761,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4353c6bd553ecb2277ca7b997c50c85f\",\"labels\":[],\"modified_at\":1728721846.051897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83be3dae9ec35473d348b3c5133411d5\",\"labels\":[],\"modified_at\":1728721846.052036,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.17.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3adf44d744835c998ccc919bce886ec9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.17.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7e70ca5aba67a4a230b2722299052e\",\"labels\":[],\"modified_at\":1768937324.557331,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.17.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a07cf5d4224ba6239a13744c18dd235\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.18.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7caa0248d8ee1076f41ddb3cc2c89f8e\",\"labels\":[],\"modified_at\":1728721846.057035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001bf6da6163b4586b7f7d920b182c3\",\"labels\":[],\"modified_at\":1728721846.057227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"407a6b9aee48fb0bb041de319bdc8731\",\"labels\":[],\"modified_at\":1728721846.057394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"474a984405d6ad3fa524af6f21852079\",\"labels\":[],\"modified_at\":1728721846.057527,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc3da0f80245bad1dd0b080c05f60ce\",\"labels\":[],\"modified_at\":1728721846.057654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.18.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"338d555606471bf4656042ddeac2dd42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.18.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"debf128d126cc42f9d9678a177a3d7ce\",\"labels\":[],\"modified_at\":1768937324.561345,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.18.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da1541fbce94275ba5cbca676f2702f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.20.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e4917ca0de8cb75740c3cf980a2b1f\",\"labels\":[],\"modified_at\":1728721846.06327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bac1b4c13d182d12c16822efc7415f3c\",\"labels\":[],\"modified_at\":1728721846.063447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04070ea7d7a035faa87209770e527115\",\"labels\":[],\"modified_at\":1728721846.063587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e29111b9581f147ea8a636aa9ca50c\",\"labels\":[],\"modified_at\":1728721846.063714,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77c23d9ce3ce745eab3994897b4c2d7b\",\"labels\":[],\"modified_at\":1728721846.063839,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.20.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9831210a5f148ffec0c960a3cef41eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.20.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ad24989273058ab1e0afede3384b0f9\",\"labels\":[],\"modified_at\":1768937324.565645,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.20.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52d9aa715f3b1cefbfb68ebd33ff9b74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.24.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05d8bcc97db99a59b495eb3c76a683c2\",\"labels\":[],\"modified_at\":1728721846.070907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe6722a9cc2ab68e12b30784f31b1428\",\"labels\":[],\"modified_at\":1728721846.071086,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2bb1f0bb2a2687cc1a615a13447f6c3\",\"labels\":[],\"modified_at\":1728721846.071316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c2e48f0bdf3f152646733a2065a7869\",\"labels\":[],\"modified_at\":1728721846.071476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8793d6ce94921703ff9d4ef6d283102\",\"labels\":[],\"modified_at\":1728721846.071605,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.24.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b971039f576f806395a3bfe630bed910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.24.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3ba969b6fccae3a10caf0bd81dacb57\",\"labels\":[],\"modified_at\":1768937324.570316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.24.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e199fcdf8a82e3cd5b2aaee7e98b3ed3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.25.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d118bd28fcac0c0e418c5fa26c908ae\",\"labels\":[],\"modified_at\":1728721846.079745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d036715c2c04cea631fb5ef537052fe8\",\"labels\":[],\"modified_at\":1728721846.079932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57325db8a7fb10afd15751aa94309c1c\",\"labels\":[],\"modified_at\":1728721846.080103,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0b56df69f1ed80a097a437a7234a8e9\",\"labels\":[],\"modified_at\":1728721846.080229,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_time", + "offset_ms": 47 + }, + { + "direction": "recv", + "type": "text", + "payload": "d_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887eef5e7ba55d9e0936e56bc66c567e\",\"labels\":[],\"modified_at\":1728721846.080355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.25.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afc9d72e408779d20b34dc1f01ad3536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.25.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcda026ec929142ce3cbfa14747dfaf4\",\"labels\":[],\"modified_at\":1768937324.576948,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.25.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1583858de49ba4c0a4b4ff2ee0c29d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.26.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f5033b58cce7dc54c076c8d180392f0\",\"labels\":[],\"modified_at\":1728721846.088895,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43147453f1b24bccb5c5f5e5e62f7068\",\"labels\":[],\"modified_at\":1728721846.089144,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4387dbeacfa284722783b317dacae2b\",\"labels\":[],\"modified_at\":1728721846.089304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d1c22a4b346df44287e85024006f90\",\"labels\":[],\"modified_at\":1728721846.08945,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"535c8d77519ba41280c4a64ec64bcb51\",\"labels\":[],\"modified_at\":1728721846.089582,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.26.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b08f4bb01195276c704b25cdd96196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.26.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b0af79a6c4a5379175d0900063ac555\",\"labels\":[],\"modified_at\":1768937324.583385,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.26.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abc77ab50d0d3573e9e10357e6b4092b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.28.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8cd26d45d0e80aab853b7d479f30848\",\"labels\":[],\"modified_at\":1728721846.098327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f324aa672663f6a659ee494545522e\",\"labels\":[],\"modified_at\":1728721846.098537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37fb21bcbda4df8298f567ba2d598434\",\"labels\":[],\"modified_at\":1728721846.098676,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c00a5c5168ae3d928deb75654328af4\",\"labels\":[],\"modified_at\":1728721846.098803,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8c544aed3196548a02205a35243f93\",\"labels\":[],\"modified_at\":1728721846.098936,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.28.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab6a89acdc4cc754d27d035797994522\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.28.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf69f70d06538e49a0517a65e09e86d0\",\"labels\":[],\"modified_at\":1768937324.589758,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.28.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a77e2f997e7096c9b763729289da0222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.29.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"570afd43cc017753eead4837bedc9bc8\",\"labels\":[],\"modified_at\":1728721846.105962,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa61e5c4f5406900003bcd53d7ea9d8d\",\"labels\":[],\"modified_at\":1728721846.106143,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1d9e9b71984b9ff29afff4c6bdc040d\",\"labels\":[],\"modified_at\":1728721846.106288,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a19383165b4ccf9d801c9c7f26f50ff1\",\"labels\":[],\"modified_at\":1728721846.106452,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3becb6b0af1994c2005db257d3c08b6c\",\"labels\":[],\"modified_at\":1728721846.106636,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.29.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19e1560eba677195d70fe919a6144950\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.29.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef43746b3d59b9ebed78786a6a0dfe9f\",\"labels\":[],\"modified_at\":1768937324.595077,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.29.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfb0c54c7cf85ab1e4adc409f895e19b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.30.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1fdfa3a2d14760b9475ad822051c5428\",\"labels\":[],\"modified_at\":1728721846.113654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e4b1a6e975cf9b1d9994e5c0fc96fe8\",\"labels\":[],\"modified_at\":1728721846.113904,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2940e9491fc8082f8a7566fd97155363\",\"labels\":[],\"modified_at\":1728721846.11411,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912541a2fa4cda4138a5d43e32b01c9b\",\"labels\":[],\"modified_at\":1728721846.114314,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09a2c2e79f06f78cac686eb78b5a0983\",\"labels\":[],\"modified_at\":1728721846.114484,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.30.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8184bb20bb3ac0aad8c150c92d9b60ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.30.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"595b480ffb15cb31f87e003a704469b6\",\"labels\":[],\"modified_at\":1768937324.600438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.30.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02636c3d8887bce10db55744cf1fb300\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.36.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3659d233ee1194e78d575c8259c79d75\",\"labels\":[],\"modified_at\":1728721846.119874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ab37c037a538751cc745fc318c53375\",\"labels\":[],\"modified_at\":1728721846.120105,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ebf0493baaeefaaf3727add303ef097\",\"labels\":[],\"modified_at\":1728721846.120293,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7aa05f5e8e60454c434e760f09ba7d0\",\"labels\":[],\"modified_at\":1728721846.120469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad7f8e9a7534ce6f62dea3787f34512\",\"labels\":[],\"modified_at\":1728721846.120604,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.36.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817b83fa9b3b611ef9148d3a1c7b9458\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.36.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"207b9f016771de3f0791a50db497c513\",\"labels\":[],\"modified_at\":1768937324.604321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.36.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32ed05ddcea53a4e1ab8ffe90200bb11\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.37.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fe4ae53649255d1e27d0064fd803ab9\",\"labels\":[],\"modified_at\":1728721846.126048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08e5d0574d23b7feab02b70f64bcaf5\",\"labels\":[],\"modified_at\":1728721846.126233,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e3ac4ad5973a9fc59e74f034b3f8a9d\",\"labels\":[],\"modified_at\":1728721846.126379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f451b1f3ff73499f3efa7843ba1fda53\",\"labels\":[],\"modified_at\":1728721846.126518,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a513a0bfadb8e062eb3d5ca06378ee1\",\"labels\":[],\"modified_at\":1728721846.126652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.37.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb48677e23288d884f9c18b559952cff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.37.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d2e87e3ea7659f4c1ec2f9581b248ab\",\"labels\":[],\"modified_at\":1768937324.608389,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.37.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5565c442b090e06c8f7eb6342f92e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.38.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6184498ceaf1572ecb710a88977504a\",\"labels\":[],\"modified_at\":1728721846.135332,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f8631a758d2f4b056f007426987b5d3\",\"labels\":[],\"modified_at\":1728721846.135525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8186ffa61a7c07f827a82f6ed999ef4b\",\"labels\":[],\"modified_at\":1728721846.135673,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4e9a80844eb2d564dc68cf1827019af\",\"labels\":[],\"modified_at\":1728721846.135808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0205fe39e1a0a4578c09918f54f68fb7\",\"labels\":[],\"modified_at\":1728721846.135937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.38.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a43cd34777a3876325239f0c80882549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.38.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cddfcbe8d05af4ead30b2c9a732e8d97\",\"labels\":[],\"modified_at\":1768937324.614863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.38.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa7663cdf3be9fb9aa633722f02fe95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.39.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"185eb8e01e811aa96f1055db2eba082f\",\"labels\":[],\"modified_at\":", + "offset_ms": 56 + }, + { + "direction": "recv", + "type": "text", + "payload": "1728721846.146856,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7507b2bae3374108dd49ab35772c96e8\",\"labels\":[],\"modified_at\":1728721846.147069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11720db84f8dac252640168c91fae5b5\",\"labels\":[],\"modified_at\":1728721846.147219,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2415ed4c820427b452628be0746dcb0\",\"labels\":[],\"modified_at\":1728721846.147361,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"605baca0427b42514da2eaf78807a67f\",\"labels\":[],\"modified_at\":1728721846.1475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.39.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d2b90ddc8284b68e378215f59d0f6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.39.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f93c038fdf85ec4247f1559f1b415\",\"labels\":[],\"modified_at\":1768937324.622387,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.39.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5999ecfd025c3cc7800a4a89aa08edfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.40.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"917be806129eacb471d1ee0d0509698a\",\"labels\":[],\"modified_at\":1728721846.155502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94e074b915ef0ae11677a926f8f4e3d1\",\"labels\":[],\"modified_at\":1728721846.155744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84a23599661784c7f5dd79065fe6bc72\",\"labels\":[],\"modified_at\":1728721846.155897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e6d217bcbe4d21e0ac74a35882afd3d\",\"labels\":[],\"modified_at\":1728721846.156027,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d101cc55ce6cddcf624e76cbd806cc2\",\"labels\":[],\"modified_at\":1728721846.156151,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.40.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e96d40f2a5ff985cc298963049a9848c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.40.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a4374928a53f5685eb1db6dd22fa3d\",\"labels\":[],\"modified_at\":1768937324.628793,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.40.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db458cfaf86d76636a7d2bf0895309de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.66.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5270f9954244bb65705d47f9136e1aa2\",\"labels\":[],\"modified_at\":1728721846.230051,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82399c66db015194b4f3e070808696a1\",\"labels\":[],\"modified_at\":1728721846.230244,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471598b270ecac776090a8d2c01bda06\",\"labels\":[],\"modified_at\":1728721846.230396,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae71812be09a23822eafc01198f60890\",\"labels\":[],\"modified_at\":1728721846.230531,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e76593d32bda68336de64e105ec8f0cb\",\"labels\":[],\"modified_at\":1728721846.230667,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.66.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98d943f3a15d678a077164e12b0b6f8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.66.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"162a16ffb4efe6d9bec61e35df2cef00\",\"labels\":[],\"modified_at\":1768937324.632659,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.66.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db32b0a9239e3164b238a78d332fcc09\",\"labels\":[],\"modified_at\":1728721846.270694,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c11d0e40cda08b41a09ae52d89dd462\",\"labels\":[],\"modified_at\":1728721846.271147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm L", + "offset_ms": 58 + }, + { + "direction": "recv", + "type": "text", + "payload": "evel\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20a58486d4ac94d1c4627100475635e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a37d873a73a470f8610b1d170620e9c8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c53aead1aed9f2d07387815e701ea7cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd37a59131eebc3d3efb87e3b9a180fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb13b83675e38a3d6fea9f88a7fd514c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d95d516b1ca9219bf2fca27f7f2908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b844ef9e2e6426121768a751759fe087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd47e78959ada5340c2f57306fa58db0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c37787e174ef03e1765d9bef617982bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60ead9b3b7d23ce46d5d7e26d8940d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d51696e440645ca3f4b8529e028f971d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"237fa206e122aa41369fa1c33d8d0a8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77483a0a861c0237c93f510811bd0c72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22e6ae4f8004df116af0e2b635af2c29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2648ad9b3ede6e6a150d9efb636b049c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2d88cfc6df1889a40731747606245be\",\"labels\":[],\"modified_at\":1728721846.274493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdea929adacbc2d74c59d113df4e814e\",\"labels\":[],\"modified_at\":1728721846.274952,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcabb74ebe7fa1ef4dfc174b377e74be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"139db407d0314d892e9399e794a94160\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9717997085ccceefc242700248840be7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e249ef83acfce3deefa5a3a95e68bbd\",\"labels\":[],\"modified_at\":1768937324.702562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f52e426d962ba92d279ea46fb81cfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a516cccd0dfde572f7ffe400ccc573ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69cc3fc9e5decb87fd544bd9c59b2d6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28b1032c218c390994d8cf969ce895d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02d8d11b76cfc3587daeee2a51de2670\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2abee3d97931b898d557d8b57204b5b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de10b3dccbd140d07b82ee3cbe00869a\",\"labels\":[],\"modified_at\":1728721846.285949,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"285d1906223aa890187af6f521ac5aa6\",\"labels\":[],\"modified_at\":1728721846.286414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9768e0fe86fe22a99d2bd1e6fa4a50a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad5520faefe19b4022eb20391dffd559\",\"labels\":[],\"modified_at\":1768937324.709538,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5816a5b2d76cec6a8f87bce0e5613c69\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66c6daf5be1551275842e31ca471799e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b103e540c009d00db923ae148d2ad3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3070f845f294440ea467f871f4e9758d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffe6be3b9f35cddc7519f62786d0eb4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b43884450e42b01a842b6373fab6954c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ff72dd6844c777f6523a15e4e86c4938\",\"labels\":[],\"modified_at\":1728721846.290665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a530ee6f5837210fe17a7eb90140108\",\"labels\":[],\"modified_at\":1728721846.291104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fbc10825a215ccf77771ac04d53a720\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0af0ae3d27d1b34515317f6f40dee262\",\"labels\":[],\"modified_at\":1728721846.294166,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74bdfa251036d94a97f241789a25b689\",\"labels\":[],\"modified_at\":1728721846.2946,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e698758cc618d42a7e6118d812ecf07d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2216fe6d827ae6564c3f5b55619314e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93cbf85dbce888c01dcd21f2d1c99370\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"183772562af3d9507f5f27c5b0ba0f38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c6433560756c9431e1df77c42b6d28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f6a57de7a98d6ac7b2e945d771fddb1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78debeb2eab74d07e95f30c8b4852e4a\",\"labels\":[],\"modified_at\":1768937324.729745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e70bb4917587f9b8a1d3bd96cadd5cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817943eab67fd9798445262f476064a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ca751c70c4d7fedf4bf8070434d7e6d\",\"labels\":[],\"modified_at\":1728721846.301652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44d8898092357555eefe4ecad44dee1f\",\"labels\":[],\"modified_at\":1728721846.302076,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf7330eb6dadaa91ec87c23ee00ae26a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c56e9d8fcf2d8ec59e77e00072f24838\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4446cf0c58d47c700287c9c21432bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffd7dbad382df41d7195eccfe18810d2\",\"labels\":[],\"modified_at\":", + "offset_ms": 60 + }, + { + "direction": "recv", + "type": "text", + "payload": "0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e0906e8e3e7e8461a822528b1cc2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43b135c801d45745f3cf05c1bf20284d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a58405b84ac4e8dcaf4e760967791caf\",\"labels\":[],\"modified_at\":1768937324.733974,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f994629b2715d3c8dcf982027a8a780d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"762c0ea162380dc2056fd5704a2719ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7eaab4a2744c4902a408c6debc79cf37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d848e0323383acb9c5ddc423cbfd950a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"908ab6e73ada2695a0b1c8d01e975190\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d2852c957d65076fae9aa19748c9d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aeb0433e0d87026a6fbd8afc78aae33f\",\"labels\":[],\"modified_at\":1728721846.306497,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f989704f396de0f609d4b0351f2c0f9\",\"labels\":[],\"modified_at\":1728721846.306925,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a737baa4dc868142fb3dadc46322ab27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e14f8fb1c155d58e6f6f00768c1fbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"defadd1bbcba92ba76af88f17a4b6948\",\"labels\":[],\"modified_at\":1728721846.310189,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0014deb8f599a19a01599b67b85ba0cd\",\"labels\":[],\"modified_at\":1728721846.310607,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"904cf14860d4bd4c39b88c6ffc505eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2a2c87ca142a9691153c08e98c9484\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb608eabbcb86e1939bbfd47af08077\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1cc16282de895c102c625666255dd1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9654b1744b3eff83e9fe67c5f490209\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e48cf8e1095ef4f80ad4c5a40bfeedaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b5e2609b44518d7b650ed31366f9844\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"846632f2affb52790f552049838b285e\",\"labels\":[],\"modified_at\":1728721846.313113,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc5b74a375f77f6146ac469f4317556c\",\"labels\":[],\"modified_at\":1728721846.313655,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e31ea48aa516d44a0e74bd58e0bce5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2657140005056de27f2fd24f0f8c406e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f53dddb446efd5b75c2c104009de5a9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56a286889a09b67cb4f3da4901dcbaa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c06542330d8cd6459f5a6d000a45daad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17949bbabe2791d81f4839fe3e9110fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"523a483aa227e0b389baa33d916a600b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99761b8c80b75889a0e4d4e1e8d894ca\",\"labels\":[],\"modified_at\":1728721846.318031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d64a13fcd28fd09e1e1e8eb2cd8fa56\",\"labels\":[],\"modified_at\":1728721846.318493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70a2a1679ee20d747ff2a3a413f1e105\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f235f0b2abe04b471ec5b5e5dee4a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bc89c05c4c94a30db7238452914e215\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98571f78a667d1495fe0cf9836c9472c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e1e09dde3dbf7a35f9cd2d43962adf7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52c7ca7b64871829a52196f9006ab15f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8203802817bf1ad148be4fa89c851d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2584fd64a2409ee7a09a132954035e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98b7c7cf21f957af7621433d77abcb1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"beed0d43ff1aeede01dfb858e8c5970b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"921320ca502d44f294ef98cf28935e13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f3f60bb56320ae0aafa2079eb81f15e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d821dccb30962b1463ccc94505f53052\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e964cccf2a7ab8f0eb0eb913f676f05f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c84d95a9ef4cc438fc83d1cdbebba33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12ae7f7b84f0b2f02972e196ce9a93f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e42e6ff5ff57f588c006928612396ab9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d486aec5330d75337491301294bb4435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"346c374272b05752ac5fc931704ab571\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e36b9133e1d28872231dea0fb93528d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37d17dc9e2421530e61ab1fa54776f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9496b4f3a9d78224c587705a5efdbff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc277f4c90c74fb8271cce66304ddca1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bath", + "offset_ms": 61 + }, + { + "direction": "recv", + "type": "text", + "payload": "room_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b666349984f09005c3ea218b605990dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf1377a4d496a97ca0468993f9d02d34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b237c13f8ff2d948207447d610bf79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7e258cdb97757b5d1dcb2cfcb1ca601\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd811627fcc5a2efe088ba85498824a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a034873b733f7302c12f77357cb7d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a06a139b75a0038df888efc160b6d718\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f342fffebdbb3961b6c7cb1483bdea7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fbd66619e5a006f253944775dbbe19e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe112a32c778fc5e1a85b57ddc7caee2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"269d59ba2afbf01a89976e87a7aa1210\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fdd6e83c70df50995811a7b4e2a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"461339479072e6cfa6a97b02f9607e66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4359424baa64e986b59fa41d415ab1a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc8aa0c17996ff85c861eaf8d5b0cf84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21eabeec28b1aaccd01363d19dfa11ba\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb5accdf9f56c10d895bd732f109ea3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d7d60da7940314cd626bd834af5e727\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"388577ab65bace3f26ee0ac8154104c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b33e66f09619f185899bf4fd71502c5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"531f0295e3afb7186a34bc84e036e106\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb697eb52f8e49d6847614e6c87ec81f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6c5c1713703f37c2d0c9dc58ab71d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa66284a36aad4743c9457b43009c3d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2dbebd1dffc9b31aa00702afca47fa85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"742d317e9b1b93196a64e738fe81c3e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_tamper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5694abb63a3d7d0f1fef64ca7ced652\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Tamper)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Tamper\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11e92860f380e2aed665f5bfbbcc4c5e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Motion)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7db329966d8fcaf7bf8f2a1a041f7972\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b27167efcf1befafb40ba35f59517cd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48fa14c557be3aac0f57468322f7eb26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb55ba8a855d25dd7428036e0cd0558e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ade08beb8063bcea7d4994e3339ae993\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b9cdda5ff0c3b9cc4a989febec670ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8a2920baf84268bd89b048d09e651e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d8ce0431cacc919f6654e0d26866a2ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05eff5902e0611fb8f7bebfb06af26cc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"576780787e0d9a68a0bf4ca262fd2e15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c83da5113e06a426ab49e391daa6f61b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2219269962fa6d6e19aeb17527475e5a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5588863a4b18d8b348a74149bba2221\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec633310e97c80c59c6315eddbaffb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"95ba1e0f0980a5e81a9ef637b5ba7137\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e1a41099b9e58ae2ac48892f7d7a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_sensor_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a191ceeb0e05a37927f92d920b7e346\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e06c6e040bcfbfa49d9e4e0f15ae549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fa47306024f7160e82fb2166d71503a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44754edc6ab7eab6babc1a133ecdb743\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68a3fe093a4715fbb03c1f6ddbfd4315\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e025e5d17b85cc5f449e4d48ae663657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"130711c5025aa11d4938873aa2b2ef5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a640b780d8eed0ce27f6b553fb0cabe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f692df4d0a05b8ad1192c699fed5eda5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6353d49e24aa16d649ccc114", + "offset_ms": 63 + }, + { + "direction": "recv", + "type": "text", + "payload": "e07684\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc6a70fe7c7b6f1cbf485e3b2b3e6be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a088a5d0f5d09b2c15852d0c0e787b7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"964462020e6e73b0b0169f5a61eeb044\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22fb495535a4ebd7554ace311e87e8ab\",\"labels\":[],\"modified_at\":1768937324.754808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f062bd2af5cfe5046c59f564790afee9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47e5be29e488997e90937e83b9da396f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b7c79a5c504e2f3eef63f7237af33d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1562e743cda38cd488936d23e22b58f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99afb89d564e6c8b5f415c28ce8491b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4292496fbf98923806f65951145caf42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62c38c853703ab58d017fdffcfa06a03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35ac42b0024d325caa77eefbb92fd9b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5127f16f1631b5877cf467e2d58c1c7c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"55c1d4c91d596bd4191f48a726f50433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7407cd1518c4dcebc6ef6c5d8e7da423\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6415881cf9e2c0b61be6abfa112e5cf4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2725a94f79899b5a4970b5c4d3b9e418\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4704baadf1151fcb1af4eb70c654e09e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30ee61c6ac77872bef422f8ab9ac933a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0732e5ee938297a9f5b973ed48b06d3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24e11985867ee122b198a79d40d53bed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e0ad69f430a72ac40230febd6dcff06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73efe848e7f6628deb3e86f815638a6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e11e57268a63a858310fd24ac8994a26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3929bbaa3f8cd13a3aeef2e57952959\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42e94a93f2db059304acaaf69c17af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d643c40ce27169788c2810ecad316e60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_on_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"90198efa0dea712c09f423bc7fab9741\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: On Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_off_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21c9e490e8efe764f099f91b18f22c7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: Off Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_battery_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf3a65f5e9b1fbef950e3e779e92faab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bd57910353ffae53801fd8a4f1b5f0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"454f88037ba03f08b83dccfd939ddb4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b426c8fffa9d853c719d4ff70196f3e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6824baa7a41d44d33603b4c760879101\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f0b56e360639ff5daf69a28f3036e79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.office_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eafd82385841281bfe024783dda13491\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ce75698c6edf211b8ff2e161520b411\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b98a93997b7667b4711d2831983de8a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5734672a2c09d8f0f6f0e233752b945\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99e3d86cf2c0a6fc7015cbfe7d79a060\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc9e480f72433ef3b4ddfe4a5d6dfa3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bba437e48b66a4689e26bf8b75377b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5bd8a6289b290db5a819a7507404574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c540b165eb0ed98e6dcef5b988de2c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f131df2fc89b340d5ea5d8f7553075a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0b6740cab7d3dc04b516dde24dc616\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b37302459fe4a8e950d1cebd8a395e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e103d6684aeb59d2b23569b207ba4b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1360a0cf141f9ddedb50eac50ed00ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ac8de408549fc851b81f2ffacfb1b1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bathroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db63a6e036511328bd6ece0876ee562a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2b981534f8171df4c6da3f420af24f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.cat_bathroom_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"583b41419d24459b2457700e28653e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912457da9847cd4c455444e5e3f4b02b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d9f921b3ad910d1de65af1ca97cf54e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.large_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe738ced38fd9513231370dfbd42e0b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.small_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e39d012d9fc6092736ecec03677116f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_motion_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6db261bcc15334e1bd64fd2fa62f1cf8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f46c5e88175f5336c08f0ab4b7580be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5544ef469f053ffa8759c7294efa6ea2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4a34eaf48d2c692542296f0e8a7e5d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3c7cf072f2a8ee7bd8b5d3a2cd179fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46ea4278b577", + "offset_ms": 65 + }, + { + "direction": "recv", + "type": "text", + "payload": "244adfc842379d0aef1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b396ff111d07c8a2336ffb8b9f73e25\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6128229fb9f940def07e9c96cf14fc6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1274c94252cb99885059e3bc453f9d55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bc4bd805d7619c9a1b04076c931616c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2984b5f884cac4f2c289443dc2062126\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff64a4970c47dd1e208dc6113f29e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2e22fcbf052b73b858a5895ddce0eac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2e19645094c9d18821b943096dbfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e205c1906cbc3351074944002bdd1128\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b64991bc065b8ccdcbbc057f446b1995\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c14062b8523902321eadf7b3b974257\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dbdb7cecb5c85ea349569e68c3b5db5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fb06bb52f2e78831d67c9bf81a0d07b\",\"labels\":[],\"modified_at\":1728721846.268738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7a0060798e93dae0faef390c32c1c1f\",\"labels\":[],\"modified_at\":1728721846.269198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bda4ab6b68f9cf6d154e58d087f0dfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"876da9cde9c3be1845863f537752d364\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c034573ffd52e5a3d3bda9ba303df881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04c854aaf4c81f1a2d429a4a710b960a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c51654eb9bcb7b8bde5f10aa2a6ac2b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37b229da70e600b50c4da7fdd12d386e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.back_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad8b88418744a70fe17230e705c04e4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2d44675bc66f37477a1df4661470f7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e093e8f61c9dde686aec60b62b160f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d1ca4fe6518f80345d12cdb048bca05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f5e73212ea9ec168cfe8f89cc5ecc5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"619631e25ad31c44d797b3373abc0121\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"41c5da359bd07253c5906ea3d1d5c9bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69ab1adac8e2d678e29ca7cfc3663b5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d18f196a4578f9f03c18c42a349f4942\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"828bed1781d3ed491bb52194aa5f52c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb03e8f944a74a8d6f22cacb69a179e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ceea1e88fa6359162498d39710e76608\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32c94f61cfaa021fec2a7c42c0187dcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f35b908065d262cbc20ce40e77913ec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6e4fba44f0f1074fdb8f59a099f984\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"698ef67888799c78702f6e5993f9b043\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0141219b641271db80532f3e4c208a8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6945bdd9b5c1286839ec2feda660167\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13524b9ae17c60833721f597a438923b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bff288f871c8d3234915db1df3aecac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_room_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0120415d97c3741ccebf80955941d0f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b225c98bbae007535c42703d08744762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c4ddfb2b2ea1632b65135e6b4696b1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"400140978e8261edd5986a6631c65408\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef58559c864967045bec692f21ffc889\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93b1acb4134dc4868cc73ba3a2b2719d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee02aeef4ca9d0bfbaa379d5510c5af2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08b5fb9ce8c93a2fdba273d6e9e2bc1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b3e485ee289f8b2389d5d8586ac10af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"295c55ea37ede32f5d0542f2084a8fdf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"af540de79c1a76846557cb5422a2440e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80c1b96899d7ba609ce43f5d3808e905\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e9642d047ce619369c413e6338734b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee3f22dd95d9b04f3bec4b329181605\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5263aec80e35c0827a946676a4aca38a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab751aacbd342317bd0a72094ab1e3d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"205523a60b2f2cb5043d22106d05b771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_room_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c71d1dd5aac2f57ef4e5d93a800dc49d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.back_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23eefb89f75", + "offset_ms": 68 + }, + { + "direction": "recv", + "type": "text", + "payload": "98b1b12ddeb6aa9fa790b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54bb5483d9b560378be5ed481d8c6f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e010955d7518d31854c9e4aab3f27196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db9bfa3b546ed6770a643c10cd880ff1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7df987a19ef8c7183f8bc12db92dedf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9010dbccfdc1900b1f762399bfbfb817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3f2828ba1b43661dcea26810294801f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd7149d9366d9601a3da20992991bc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch", + "offset_ms": 70 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1033ca0a8c4bb87068b0b0ce5045202\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4b736f4e34f5b44cc71a6c173a28bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9d0afdbaee1c21cb97bf8ead789fd05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b7501814ada140ebbc75cba95bd508c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c14c404b2807aad042575bd543388bdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e509fce7fd82a687c5380cabdb85304\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f77247ea5f57e1024e9a33057575058\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e8e9d058603365d951ca1000c07f04f9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3b1909b7eb73dc73e68f2db669bacd1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc97dc24ca8dbf5b4cd695ec9f18062\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e458d225d20e0d47500ef79aacc1fe7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d1eff5533638de7fbabbea2304821f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dd61553487e0f10f1c0046b93c7421c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44fa78eab4837b85fd7e18b97b690646\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7fb980b446c6bba6e7fca57e53537b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"834c2fb0c37edbf7b9b7cf32759d7793\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17cf457e684ec08236fb7454df043269\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7cae94a92bf02857f8185574b9b2275\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dee0b93328e4119a8c1edde7101029e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbb5600871de8d1cf42b880a544aab10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce87e6ae3b11ea4e45fed434c0633010\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc5b08b6a1940f42619bd2cbaf4a6cac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7612f009094e943b1e129312251b6db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c69bb67dd0462ed5dd00def8ad53220e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1655d96ffffc5c9f04e400af601b4047\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2c82f032d22bc8734679d92ea0de83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12b3ea55e15328ea4d540058ed33d507\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74ce228c87059e06b84516671ac20763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a341d131322622995e0a4dcc4c2fb896\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6e47f1cc69120985b15d8613036a9bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b496ac89474549c88080fae26ab63448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d02dae110c56c726715e529953d922be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8220ab6bb0cc1fc23c6858361deeb46c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9c73a2a70d12be24ecb2bcaf74c1eb9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26e03526e28cfbb18f893ebcc3dfc0c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98a1532b78d15322829fff6448682702\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee8d5a14a38130a77623414ce6ee4fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bee0b4d100f784a89f713cf59ae7eda8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fceb8d7e9aae08b848cb5dc97b345c3d\",\"labels\":[],\"modified_at\":1768937324.720737,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6e6ad930ee7d37c2aeec57f725e8dbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77913513918309cf18ebe9a75f1af7bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9925ebcc60e4395ed603afbf5a139a72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.stairs_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"64ef85094caeca25ae98fa076d8c6ab2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.right_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63eb7490ebbdb77e4e07c750649c0110\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa8df4191c90e2069a0650185f007b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe3864550a3efb648fe327037ea10625\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8522f9d656d4ee8d60c972ef318b12e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"381daefc1183f93859612b03573ac4e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6dad265890c82659855a7c138b8ff20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2143f3dff81f749104e0882d5274088b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ba145ce3192c0052224a1909e8bfed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5cad207f07383af83050f38c418d4f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10ece451d2f337805ce9472f298d5025\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f40809067c9ee7888788e40620862448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b230d1dbc4c26ac2bd56e50bef6b57e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bceed13702f89123dd582c5438326a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba603234d4704fa0d097770442b26637\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9b570d6459263411f32ba20823378e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"540f56f2db42ef17ea074b6d12c6a8d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b882b539f37696ac5b0d72346094808\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e335a2340c99f5c831c30988019f4291\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1496ff3411098998299e6b70a8a6ac8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3e68f4e23f1a8c2db67c33fb020b7ad\",\"labels\":[],\"modified_at\":1768937324.724768,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57ec7dd098b7d22f35ef2adb35070c44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"580b0c98b0af40ef97ebe8526b5dd762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"", + "offset_ms": 73 + }, + { + "direction": "recv", + "type": "text", + "payload": "button.right_upstairs_hallway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc7acfeb1f1383b3f1193746d7effa9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ffd52e582ef700cc04806eef2286427\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f104dff69eb4b8929dca5770b0071c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca88deb31ee64fe", + "offset_ms": 75 + }, + { + "direction": "recv", + "type": "text", + "payload": "9db769663ff3ca08\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28846a193465e0feaf80158a9d92cd87\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df83d525d06cd5c6cb8935d53899ecb6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8aa35ed55a01305e566d54d73c674a13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4efd6b7a05ab072f70351db23b242817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96372675cb474b8a3a33403573ccd041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19d3b1945550830c400d18eec7936d10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"768825fc5893ae8c1a68cee71f34d430\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f0f3f4d2f6f41f46a7fc5883c19f7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f779f56acb8df9a45c5e26e1d34aaf94\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e88349529a6577002d4572cdcfa7ad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4113ed3a769b963fd4a00ddd0932f173\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc9935b81c48df8d37aee1e17845afbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05286428dda0b418578fa164c2ec2f41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7993ea69eaa97bcabc92f958925362ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9bb313fae31e282e00d2a262c1be84e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a33f6dc15ebeb5c65a8da89a90da3c76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eacc493fd250cbccb936a793286c7939\",\"labels\":[],\"modified_at\":1768937324.728547,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eddfdec1717ef07c1a822b3f1c6d417c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bbc32f88ebae70bf8372daf6ea6f84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"824e2082cd5cfa0b434b927daf025f91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f0851ad45568021e7ae5eab17e2673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"797330642b50fd7cc717526490b5cd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81aa7a7763b626a16c33da9baf51a380\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08710d667a90994008b9c2e51f4bbf49\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c7586cb4377fac8037833b67b9b555e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bff0a946287e8e81b4791204fb0c4b6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c91612079311a00400f01a0e5906a212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ba6d0c2e53883635ee9ac22d8e850f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede8b905bcee1104ef3416e5edadc25a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1ec16e8db40ca002ed689cad642b9f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05f81c05fdfc78fd9a4f8f4a1c8b8640\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53e8b9304e649c2f34dd0959606500ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b036c6bc350aaed23e9f86bc06cbd2c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a3739602f92462bbeac62fddc838fbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471c0a1606542b0d7f960c1d2922d7bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce49f041cf870cffd3f0df35ebb0b76c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048378228b0fc98e250dd66ec6ac6ad9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5e40022e450e73c4b5ab1198e302462\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d78bb4acc54d779836cde9c8c6a2f8f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79490028fdf09eeafcc7a7e0ad2d160f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f1ed32bba3d33dd34695c661fa72adc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51e3619b9800abefc65f0b522124c7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a1866797815d855c958561d455ffd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f0626cca53d88f5dcf005b18180e9305\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea487f330dfbaf833ebf624ed9896db3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.kitchen_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a635928a8b31bab1a27474ac2f6a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56e02b860edbebacfde760983dc798f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e605e68d92150816bc124ec684b725f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ff656e62d6fe3600aa3adbc8fb526a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec53255b3eaeab829b0d155c429e1d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a08806049e02892d2f6a3d53113f1db8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f3c6699a41458e7aec2b1989f540a80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0933863db47ac364ff1d232f8b46e9f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63481afc3a760089087eca73a0f651d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8957d79e5cb80b0c1a20820dc97b0a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a60f74fb0f1301397480c82b1d54ed5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b504e536735dfabc28835d2876bbb23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fbeb6d2c5a857c79c70e7bb0561fad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fc4e4d47d9a676285c15a975e1d3c36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97f291f24fbe5a30e18bb12dce1a6676\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d21bfd9435eda404f287c3abbad94d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0444d51382f134ceeb06a73d4f3a1cce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c05a4adf47ff0104122a9e4dbf7fadd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4aeaa7e71c122a5d88a3b1882ad8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b17374a4c0dcb067542fc6a74220221\",\"labels\":[],\"modified_at\":1768937324.749696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15c2353076b1bc70f96467ea6", + "offset_ms": 78 + }, + { + "direction": "recv", + "type": "text", + "payload": "0e93883\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_local_programming\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b8266fddd3dd1a3fc9c9044bd7f7d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Programming\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18011a3dcbe5a7f5c93c03f151658078\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2e6dbe9ad453568e0826d771078d367\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b381daedd2239", + "offset_ms": 81 + }, + { + "direction": "recv", + "type": "text", + "payload": "9332d0c23beca269986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.jenni_office_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1db1d985f5d174ebf175d27b918704de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e96da560109bfc549eb175d77df5239\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b773d9a25d7bd00ebb8c9b90fcfbd8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5deaf7bef811b681c4e8b76c77d2db39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a8dfa6c8c5decf4c4be882afc702163\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef6eb92baab404af7fd61ba41069d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e5b7d53a4b2adf058011f65f0e4ac19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c184dbdd6ad17f8784d17e874aa0d0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"967915145f0ef87b05cf3ec61ff92c4d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e7d97417712b18fdd39510f53345f54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9e05ed0d78214c146c191a7915fc2af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5524e4843b13f72a0b8d3c36529cecbd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"462517ea07b522dda3d29a5d77358b07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97bfc53818e1e5d2b0c76cd8c7ca68f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad2f5c181c586e3bc45dbfd170cc8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a205de2be1537a999eb4d266b7086c40\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da5602526297ba1f96d40f0e7ecc0f5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e10162dc3c84afe280c5a18dd51e9b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc24c82d16bd17b6b68e0b2f6f3f4ea6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001f6b44d64baa1ab159b150b478007\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e80550caccd4b20ad35acf4ca40d92e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6b3bb5ca29c4ba1a5f51a07c342319\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d442915fe41090821ed760f0fccea89e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae41e29abd52b9682303ac5e2c41635\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7de9997e9e1a3ef46e7bef4deb0a659\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0f95b7e389e44036f819bfaa12835a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9b9926bc3aead0f4952441c76387ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.front_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e18e30d8c73b2b7d8f56d6d8a72444c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5da04a067a75da78e01daf28eba1cebc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef81d350ae0a3120308f207a382754b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c93b8d9c39bfb59bb63bc28a67369b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c4bd8ae88880be45a949ba732dc061b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50561c8d822c3b26d448cccf525cd1b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b49703ed535bcef72a83f0289633087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bdd2faee34bb34a5f744a8881cbcc68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e5c2c80d8e6863d72a81c9dfe05218\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93d5ca265b8193cdc3e97680c6db647f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d95b3c17713874a2a9d757e5515f9a0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eff4988dfe92e73c693e77473291a68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aac4d6311ff78700b94194d61356c75c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4448f7a424cac4aa39698e8890b4d84c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adeeb59701ce2173bd76622bf5fc040a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8102a65d592a4a456c8cda46f495d8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get E", + "offset_ms": 84 + }, + { + "direction": "recv", + "type": "text", + "payload": "lectrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ff20be2fc93225ec08b44330ce05f90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e23cb4f3bd96aff481106795ea4ac53c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c38948afd63807d9bea536058af2f4\",\"labels\":[],\"modified_at\":1728721846.364993,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dd9482ca71561ce5ec70dbb6aea6b3\",\"labels\":[],\"modified_at\":1728721846.365587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d299d44ce26d096fc59656441c155e91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ccf12162192b1db183d5e658ca8d5ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048c4c8a57e47dc7142d8ea6fa196a6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7984cbb544e0ef6af868a938894a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e58a5f4844984223a08cc57a1e2b5f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1eee0f58b4efc0fafbd2a40a8e11ed43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcd7f656cc785bc98cbe8849648c0967\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0bed885a5d924aba589b2583d05fd15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb6de87313ec6de004fa95b00aa6f927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d361feb6237b762704e0461d6fa7d83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b012aac779c2d71e28c4010032f7bcb0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8381ddf293ea7f56e0b6dc25d7a2f0de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ee4d83b710c21b6d1294eba54624b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eedec08306572ee3292cda66ec9bad50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ad3a714fdec28accbdd4c4e7de89a29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device", + "offset_ms": 86 + }, + { + "direction": "recv", + "type": "text", + "payload": "_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4db29e68a9831d8b83fbc34af4098986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b6a0c3b3f6f37b85e7d467dfca44c1ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea03c7aa1a8f7ee7ccad99b3c9ff4d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d565a0520b9f6299ef5cdcbeabfcda4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15cb859569c08f27db39dd118e8e87dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8507c90d370cbd16116be434d5246222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6474656dc92c4ffc2d68061062d4bd44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2ffa582700b450ce0892f6635734eef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dbad0e6f48a425781d17739f8795734\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6871d61691047f5f5f8a2003ab06bc35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2bf28252f61cd3cae9f59c22db2e929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status\",\"platform\":\"zwave_js\",\"translation_key\":\"controller_status\",\"unique_id\":\"4182894947.1.controller_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b6f1921f63105e65d33f275bbb06769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e2878_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.adam_desk_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7b32509cfd8e8b57f2135f982e8d34d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.adam_desk_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"744a5b039fbf04b72c13f42cb57c30a2\",\"labels\":[],\"modified_at\":1736355683.891054,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"", + "offset_ms": 89 + }, + { + "direction": "recv", + "type": "text", + "payload": "platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e2878_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4409a3f2be06b369227045d72f072caa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e2878_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b40a7ba376de7ec1f911de7228cc76f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e2878_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a23c6bc5a4861c4f54a86066cf26e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e2878_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e29a3d1eab9e6e7b39d4981814c1c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e2878_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9743c6abc46883a073a15fe1d32450b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e2878_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e52b7a6ef89176f6d30ae8b3bd7604\",\"labels\":[],\"modified_at\":1768937324.880394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e2878_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08d27aac87ed1eef797f4f56dbf0e5ef\",\"labels\":[],\"modified_at\":1768937324.881003,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e2878_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d396a6bef670fc54d085c5d175f16a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e2878_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e1f6a989fe00bcf10daa6fbdffd74c8\",\"labels\":[],\"modified_at\":1768937324.881525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e2878_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6852f43897d8fc7e5b971354177bc7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e2878_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2dd7622b83b59be4b859d62aae5fcfa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e2878_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"246aa304d51aacbe8c81d224279f1b60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e2878_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e787a2f31cb2b020e5a02ccecdb5194e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e2878_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c038f834fbc5de4047db5d693de5520f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e2878_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e318495a5de2c0ad46f0d9fcc212a1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e2878_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61cefcdb814557288d2f15616147ffe2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e2878_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a25d33a371e9d37b9e359fb3ab60102\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e2878_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"985029c1c4a205b9050eb47bfcb58278\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e2878_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88d63901ab44f88f1b109674d78fbe6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e2878_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da4ffaa9bcb00cf00f6048f46031c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e2878_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"596f907cc32b91ddcfc55730d567ad23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a1dc1ed378fd6ca5ea8531b3a2b0290\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"463d4f8bcc15b05ea1ac493576708a05\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48456beebaa2358ea71c3fdc9cf7ea53\",\"labels\":[],\"modified_at\":1768937324.522171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:08:8B-light-office_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"93c6c6544539cf899bad569ce9440560\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"260f603c708075690f0a0dc262c440cc\",\"labels\":[],\"modified_at\":1768937324.521066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:1A:86-light-office_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d4f33c22b2f134128499d170a9f81a2e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4316012718b14810c7ed8651d3e040ad\",\"labels\":[],\"modified_at\":1768937324.523393,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:05:0C-light-office_light_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c2328f12915a88e139203759aa099d80\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c58a3dcff1651522f7a004fa77854cf\",\"labels\":[],\"modified_at\":1768937324.525846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:07:3D-light-office_light_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fd4b4a826ba1ce85b11c2a14483964f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b81fb595012241623d52d08e29f7834\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c3957d10bb011bb12b3e6c41b598191\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd09a74fbce16b1ab27aa2b8ce22df44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26ef71b3733fe8af29953704041e8b92\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8f82b3e8f2771f0ab24c9839a858b0d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc545b29708c4c982c585913d9fa6f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e20e8_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bed_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63092158204e47a86900ac1d94b85d76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bed_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"765ce6a13ad4d227fd7d1df51c057076\",\"labels\":[],\"modified_at\":1736357560.669652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e20e8_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae1c3396e8bd72eb45ffd91d3d440d7e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e20e8_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887f889588a56f03619560b36016847b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e20e8_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd63c27148c664154b448d68dab14850\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e20e8_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c120e6c6942aca4361e8d3482d529b13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e20e8_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80be9a2f4eb93931f72869f82ee1a25d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e20e8_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b348375076eb71644edfa2d3a1a3fe5\",\"labels\":[],\"modified_at\":1768937324.888442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e20e8_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"14e92db25cdfa8cefc51b2e1ccc83517\",\"labels\":[],\"modified_at\":1775500964.404141,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e20e8_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f90598e2bc0b94fba4961f07483be83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e20e8_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2dc11642030b46b55567615c6b50cb5\",\"labels\":[],\"modified_at\":1775500964.40468,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e20e8_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a5a22be58f4439bfb5957f1b1ccdd5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e20e8_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab698dbf37373681bc08bbff54a7537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e20e8_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c22ea2a613d675a1479eb45f1993f33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e20e8_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b80991556b6a76854ca712e3dfc7496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e20e8_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed1e6c2b75bdc80fbfffad3c6cdb0aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e20e8_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99a6c55ed1a3ec824f83cd8b9306930c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e20e8_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66a0bbe3b51a4c4457e91b25d434b43f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e20e8_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.", + "offset_ms": 92 + }, + { + "direction": "recv", + "type": "text", + "payload": "master_bed_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a74556a0d4547c7c831b8f1e4753759\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e20e8_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7820433bb9beed63af31d3821944f306\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e20e8_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd7061bcac8bbe254b1298b5e4a41c1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e20e8_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1040da8c80ca7bbdcbed89aafe909b35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e20e8_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7", + "offset_ms": 95 + }, + { + "direction": "recv", + "type": "text", + "payload": "f6ee68ac821fe83edcd517dd51b7fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bed_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b80f0761cf4c725fabc1df8de30f0f4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bed Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bed_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d1ff20197a688334ed61ae0ef24610b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698022261893\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"375e166e0cda4a49184ddc7a3baaa4fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698131438659\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1516392955dea9d5c3987f65e1a21ae5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f262f6cf884c0de68c44d465232ef2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b77573023fd0e45cbd803efb780ad2c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3302b58f4523b9775deccc77aa05bf99\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a5224c58b24307c45e10299f3348cee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aacbb82d04534e5b5b389236a4c0f63b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0bd108d5e399f94d25c38981e1fa74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"717eec56b8ef81c8619737a303b154b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ced631fd54d05c61c0e74631e41c81e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7494f61b328a3fda8a55ab7a5fdf222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2e84cbdbcc51e4f48baf7214e76d722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71648192af447198dd4f8300ccc532e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ea641a89e1d849c3373b2c337c3a66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc0ff81ebe53c633db166a1af91cfaf5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e763fb2e22c28f390add28e636c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30be942857ce762791d50422aa7504d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"65a42c0fb4d243662d5cac0c4dd55944\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2abe6c30c0dfc40abca673632cc24f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b4dc28ae7f2524ca27c1706b5f16c88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f7707b0eabb9773200603b8bb1b32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20890daf170f69687407391661d973ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e0f4e90a3faba0db0361d78e006929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a82370728b30adefa3817e4cd46987b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79efb54b9582819a0637c7c994db3c02\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d5643409303cb984fe3b1510f5253f2\",\"labels\":[],\"modified_at\":1758660536.913726,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2c1ffa1fefe471a1db8c7975915cab\",\"labels\":[],\"modified_at\":1758660536.914575,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7f93fb1fc2ce5a89138f056d261f6c\",\"labels\":[],\"modified_at\":1758660536.915203,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ffc5c7999492de07a6ac08ddfbd6cd7\",\"labels\":[],\"modified_at\":1758660536.915773,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94f4819071ac098d75745bf9217ebafe\",\"labels\":[],\"modified_at\":1758660536.916339,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"762e6d3ba10d31145566124175888acb\",\"labels\":[],\"modified_at\":1758660536.916906,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b99d149c424b019412d5967bf59e2b03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8664760514c651576ea096f12a1f392\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1eff1ca3d5d08ce4e23061d9208cdf6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cf765d081c1063cc980327cd4b896b2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a7:98_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"250a48d09c2d5e25299e39b9a7a31a0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3f5c4f6251c9e5d461d24460a10568f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"810731b1b401be39f6e86bf0db1694e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aaabb95ae0d93dc3cb445aa90193ade\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:6d:d8:6c_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500bedb57e5c713e97640f8346c53669\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30a484b77d3b1466b9fbd3f5347769e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede974f57b59c7ba6453e2b9713b1b63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40", + "offset_ms": 98 + }, + { + "direction": "recv", + "type": "text", + "payload": "8ef0bacefad7f762354332eb3df58d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:40:f0_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58e0d06d601277431a4397c287295dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b90fcb72d686e7f16f444e550870f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"562d26b904b539814c5ad4460facd881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82cfe763a98e9bf75c35410890e39def\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:e4:6e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"affe0aa48114f479c924abd9c9d5ae4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad9ecd3f5664ecafb765d2a1b1c52651\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16d12c6b79c955c505c8ecd86eaa19be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_4_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"298bf015afa9856b33dc43e85563138f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:ca:59_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5387707cbd7934a7f17ad2bfc2edaac6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd375e9778adf92ad651ebdbc6a2a4b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ccd49fabdd295c62319e1e568a8bb00\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_5_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4097f2af48e3dd76fdb6f8d500af3e93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:fc:44_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26b67877c9a2b2cb3a8215b88a6bf42d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d92c178e01c229bef991c42a015295c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"947a6a6c9d9b978f8a32ba22a2b3852a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_6_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1453d3b4b1b9be768f4db7b8b7ba4f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:56:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4db62557803ea897de2e45c2dbdcbb3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c25ec789c92b4385836706e4644e878\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"168cb748cc49f12a335dd8dfe3dcdc07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca28d3e1aaa9e4f900aa7ca1ca3f9aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:b5:89_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d255bd26c49c0b8316f7e69de655ab0f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"stt.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b596632825fe1076787e2e00a1d029d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-speech-to-text\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"tts.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2927fa130f0baaf124411cfe176ebead\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-text-to-speech\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e19a53d8400b62c1b8986a02b5b5b0a\",\"labels\":[],\"modified_at\":1728721845.983581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.4.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2df5dbf8c580bcacc36d1c0bda2dce\",\"labels\":[],\"modified_at\":1728721846.001319,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.5.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2992a8bf82bdea8f5b4f3edf59345\",\"labels\":[],\"modified_at\":1728721846.008929,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.6.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d534d2f4ef518b830eb886757e17e71\",\"labels\":[],\"modified_at\":1728721846.027127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.13.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"701f561124e85d69fe250c6f5ccddbc1\",\"labels\":[],\"modified_at\":1728721846.035759,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.14.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b8ba7d5ac2d0d7b15ded3b394797bb\",\"labels\":[],\"modified_at\":1728721846.043408,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.16.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"703ae656d9dc0a91ed9349e574913af1\",\"labels\":[],\"modified_at\":1728721846.052172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.17.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f933c2cb7825c0c98616a1cd0baf665\",\"labels\":[],\"modified_at\":1728721846.057779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.18.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b467e6ece5165bf28ef33e1806d567c\",\"labels\":[],\"modified_at\":1728721846.063963,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.20.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4deacb3773ea5ede7d53b9b0c4cc1b98\",\"labels\":[],\"modified_at\":1728721846.071734,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.24.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"907ff6d2edd7e5fe5373d1f1409792f2\",\"labels\":[],\"modified_at\":1728721846.080476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.25.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"862115a3de075173eb494c7860ed31df\",\"labels\":[],\"modified_at\":1728721846.089722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.26.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b423d803ad851f36a74255a889186bb\",\"labels\":[],\"modified_at\":1728721846.099062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.28.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47516de4224b0eef5c0d003c0513060d\",\"labels\":[],\"modified_at\":1728721846.1068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.29.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6f7dbe7caae310dd09d478d46a3028\",\"labels\":[],\"modified_at\":1728721846.114612,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.30.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6278dc427336c377caa1e58c30ff092\",\"labels\":[],\"modified_at\":1728721846.120738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.36.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f72a7429de924578f7b9c3fb6d781a7\",\"labels\":[],\"modified_at\":1728721846.126794,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.37.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4411a0bf4d7bb1ed0f6f11343dfcd199\",\"labels\":[],\"modified_at\":1728721846.136087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.38.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b6bd22bb44d0c9f184f996e2ae77d69\",\"labels\":[],\"modified_at\":1728721846.14763,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.39.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a26fddcd069cceb68a34e3461a6e0a03\",\"labels\":[],\"modified_at\":1728721846.156271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.40.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe7380af04fc4c2d01ce456a97f9ef8\",\"labels\":[],\"modified_at\":1728721846.230796,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.66.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e62d502703a6419c34e8edd95c486814\",\"labels\":[],\"modified_at\":1725239521.486838,\"name\":\"Dining Room FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level", + "offset_ms": 101 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7bb8fbf51788176cdb83547a004935fd\",\"labels\":[],\"modified_at\":1725239521.488668,\"name\":\"Dining Room FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"643d73eb1fbe0ddfcaa75370f3c8389e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a43b45ea88de4d9219e8d2841b42ea4e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3298e1c38a53b3c870fed75d6968c07\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f041b32270f9966ec39f26bc7e960f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46581f02785bb70fdee35529c92d263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6bffd588d27f8aad7cc650604b61c2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c74bfa7715f144957d804f646c4799bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights On White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25c3d5677fdc630832ee84427cd99536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902139116\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cbcd941a74a5a7396aad84ed9fc7dabf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902226266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3f98937a77978b4644ecd2e3b22e8c7d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.leks_lamp\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7fc3837a77f3b273d02c5bb1bf0170f\",\"labels\":[],\"modified_at\":1768937324.523879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"leks_lamp\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:E8-light-leks_lamp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c89435003eea4c6873d070c3c97fe473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3d27d28caa96a13c6ea25d0171638780\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1da40bd512b39f99dd627edb13c06403\",\"labels\":[],\"modified_at\":1768937324.524838,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:68-light-front_porch_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d054016a6b2f868c331522d5f2a024c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a43e095361249391c95d346bead29de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d6e9bd72ac413f4c9765807a7a8829e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d43bf2ed96db238ff6d5a3d55b74102c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5cfc016d624d22f58b972535e2c588e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:4c:4e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab8095363203057cbe0b359e78a434fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08f36a4038ba7e9ed484f4e40550a93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e32158757eb5aba850a4d85abb2be672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43eb4d024a7ef32436fc15eda451e656\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:92:15_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ddded55b837de9c9ba5d6b539445a14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4dc39ab3f597be7b5698f6d43b17afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4a3dfc05ea5897c3f4ca6d122a9e755\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d66b459d9b3468bce28a13faf238f788\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a1:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66bd7310f75118cb61fe4439c1b2dbaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e4f14bcbc3db07c23bde15014153663\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08167d99b04cd3119c18bc3a2a03dc54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78908f51b09bf8868105eeca61df8b51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:50:fc_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c312f3943f53f013a1698197beec7d9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be1582024ad1873d0529a0f5b617a21e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce297c2ac2bc5a14ebb49b8600041d2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0f550f0c1c6f6cdd1f2308b2e154000\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:d4:63_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de8b6bdb93fd71244574b16898e15903\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0197af3b4e34cdf7ec9a96ce8415728f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bd54501fcc95714cad1dcc1cd31f4a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"148c8043f4ec331449594ce281de74dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:9b:c1_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40777cf802aff4a5b6ed5e3d5c0883f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c03f2a67067cb61528fa31b6ad9b94dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33c056e4fecb95c459544ce4bd40bc90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8810cf2748e6123026bb56d1577b6b14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ba7328fddb154e27b647e31c8da72fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05c1a4ad242b4000e29be97d7bd1c3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"27cf5f296894b7daac381bf03d05ed66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"469441c2849c8da30a2a3175c2bd6d6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5a2de0bde5a2e1cfb2116303d6f5be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13c83850a4f8bfbe494ca9f383a652d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e979bf5003d332a9115b787a3d2dd2b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"", + "offset_ms": 105 + }, + { + "direction": "recv", + "type": "text", + "payload": "Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe12fde8dd7a18b5da9350bfc48afae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53fccaec9ce8f17e7d03d9dc4c33cc19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e27853184c40850e3134ef8116e8673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb7eeef067360dbb615665e6de5054b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0a5aed8a599743541e88238fe0839cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e632ddf5ed06b6df996980dcd58537b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.68.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2be995612da3708ee3aeabf4ad49d8da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.68.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47608e4f8a0b2cedbf2cfff1d12cb4d6\",\"labels\":[],\"modified_at\":1728721846.246357,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"538ed7a8af31562cd0d7c19f8a64c8e0\",\"labels\":[],\"modified_at\":1728721846.246572,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5fe7e5df6a5ce5a5694b4ef947580b6d\",\"labels\":[],\"modified_at\":1728721846.246723,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bbab6b72b677a179c8bc1228ec0fa29\",\"labels\":[],\"modified_at\":1728721846.246866,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f6ab96f4e24907de75d4f673141590\",\"labels\":[],\"modified_at\":1728721846.247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.68.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"830fd955b0b9dd786b18a7cee2c59bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.68.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee2102e9596641854623dacdf86a7c10\",\"labels\":[],\"modified_at\":1768937324.645237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.68.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab9f2342cbb08659c90acff506df3b8\",\"labels\":[],\"modified_at\":1728721846.247129,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.68.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b57a46d4c309703d4a6c50351952ca1f\",\"labels\":[],\"modified_at\":1768937324.765615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c4d6945336b15e0bba9b9345eea008b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"430cb36836ea27ca6cc4cce37605dad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519b5afe350cad9e05b31596d69a6e8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d050ee7382f25f72284e5cbadeff8d0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f44484b3ec3f6e65dc64ca21de50c405\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86bdfd735092c7fc659929e894fbc672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fdf886269a2fde49bd57cc2cbbd7fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"587df372365d29ba4d904980f49162ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c7888f5a2bca7dba8bd7f8db8e02292\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b273f3e4da902102c22068005d31362\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4923aba2eedfab503063be97268d349\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83882c656fefd0303211e999c22a2765\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17b020ebb60e265e372186ff5dec78fa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a821ce10588a5f5c21dca0d5a1caf1ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c2caa9b84384312cc3ee01843fcba18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df2245766365111ead8a1797d4aa1628\",\"labels\":[],\"modified_at\":1728721846.369908,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b21dcb9411ff471644d3bf7cc1f88d5\",\"labels\":[],\"modified_at\":1728721846.370379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b2a820515542e566358f93aea435a81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1598869d84f6256ea9af4669c9f1b726\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.upstairs_hallway_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2672687dfc897fee1ea56b169bb7c5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2119dc1ccc97edeb6e783ce5f0f7ad88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f562bfb09408687492fae4843c9aa192\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad9ecfe03131cd3738d0a0ce1ffc37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aab59415957dbb20b62b5aedb141e753\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e50482b2832b1c9478fd4d009eb8216e\",\"labels\":[],\"modified_at\":1737489134.76617,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966121423\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.night_tv_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2320f4922c41ae3049550a876bddadb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night TV Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"night_tv_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ae4f862e8267f53ba0ec595a391bd85\",\"labels\":[],\"modified_at\":1737489109.545107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966772353\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ce35a8be192434170cdc92d71e7ef8\",\"labels\":[],\"modified_at\":1737489123.678107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966888905\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a445cca6a8488132b472a230b330f318\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d07c497e4fb52fab5ac3b5d5dd718797\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"414", + "offset_ms": 108 + }, + { + "direction": "recv", + "type": "text", + "payload": "18b9d9c10e3c186e587bc21a21d95\",\"labels\":[],\"modified_at\":1725239498.826997,\"name\":\"Master Bedroom FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2995f0a20e4c3a95dc980037bc879f\",\"labels\":[],\"modified_at\":1725239498.828766,\"name\":\"Master Bedroom FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:bed\",\"id\":\"95df3f7dcf7e25696d4211430a78abd8\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"03dc995e582e7761e1a9f056d9a752d2\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"45e20dec6491a8436efbbf62938683e1\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom Not Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87bee964e12f4f43e8a77ca865687cf5\",\"labels\":[],\"modified_at\":1725149744.14575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709059722839\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b94ad5130258af70f3e44df53f10b5a\",\"labels\":[],\"modified_at\":1725239534.482943,\"name\":\"Master Bath FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69e5ff06047fee172494a676c9595b1b\",\"labels\":[],\"modified_at\":1725239534.484731,\"name\":\"Master Bath FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5bccd1e7de01b713e1b365a5823ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2080a737e85dba8c1c13d14ca844aa8f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49f9688732c5429b62c5cf2c39f5ebdd\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Presence\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"435b08e125fd43d1e5d67ed0d123fb6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709189535560\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_play_area_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"face7a647c70a0aef8bcc7901e21d7e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Play Area Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1710749651371\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_area_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09ad60b2d7e23af2bc93b52cb0ab7e50\",\"labels\":[],\"modified_at\":1775870416.948704,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Area Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_area_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.left_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1c843ff67b3c61ea82140a73d5ad090\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Left Upstairs Hallway Lights\",\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3cfa9649d5b814c5dff763cd6b76d9f\",\"labels\":[],\"modified_at\":1726995223.727702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b1734fd1032a711e2680a994926fa7d\",\"labels\":[],\"modified_at\":1726995223.730126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fea3aafb794c254c9981d05e2e69067\",\"labels\":[],\"modified_at\":1726995223.732286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f336d4a0a9c91ae0de81eb73b5e182\",\"labels\":[],\"modified_at\":1726995223.734449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f526bff502fe80b455c4e763a3a3db97\",\"labels\":[],\"modified_at\":1726995223.737066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43050533225ce62a16ed7cd33bd9e2d7\",\"labels\":[],\"modified_at\":1726995223.739279,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39cbc62a9910f6be46f1f17a716b402a\",\"labels\":[],\"modified_at\":1726995223.741579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913acb2bc62696d8db53f8508f1e1270\",\"labels\":[],\"modified_at\":1726995223.743703,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdb198312585d22902b2185c35214cfb\",\"labels\":[],\"modified_at\":1726995223.746068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a70affbb4ed972f8daec3166aa396f50\",\"labels\":[],\"modified_at\":1726995223.748907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"254c8b3136732d3bc8a34d91b8673ef8\",\"labels\":[],\"modified_at\":1726995223.751225,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e8694cb975a4e0c029556b1ba338d81\",\"labels\":[],\"modified_at\":1726995223.753406,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e0f89e58dac6a89d1cf0c76e956fc2\",\"labels\":[],\"modified_at\":1726995223.755504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"051e2e640e4c3291b09d55d3687c1471\",\"labels\":[],\"modified_at\":1726995223.757082,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f517ec7ef72b04193123c414c8c3f735\",\"labels\":[],\"modified_at\":1726995223.758519,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c26cf28b3b3dc9a6bf25c27fa43aae86\",\"labels\":[],\"modified_at\":1726995223.759977,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"971283eea4ef6a48d36d89350283bcec\",\"labels\":[],\"modified_at\":1726995223.761297,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9c3ea47b54daf6eb45abb3b17ad3724\",\"labels\":[],\"modified_at\":1726995223.780765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c44b3196aad16deed838f7a23fdb4098\",\"labels\":[],\"modified_at\":1726995223.783536,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5133e25e8f01dddbb6746b990b08f5ab\",\"labels\":[],\"modified_at\":1726995223.784321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9909d6d28676cc7831e49bde2470a7c8\",\"labels\":[],\"modified_at\":1726995223.785069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8482199ceba01d96d231e5f3a9dd368c\",\"labels\":[],\"modified_at\":1726995223.785825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23ee7b10cef9e4662e75be22310cefc2\",\"labels\":[],\"modified_at\":1726995223.78661,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd7c6e19c030f7196a8c11ba4b23fc41\",\"labels\":[],\"modified_at\":1726995223.787367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51d01dd8e96eb9b04bf64f2a2decc90\",\"labels\":[],\"modified_at\":1726995223.788115,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"", + "offset_ms": 112 + }, + { + "direction": "recv", + "type": "text", + "payload": "9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd490e9ecc4785dca9e2c059f36deffc\",\"labels\":[],\"modified_at\":1726995223.788879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7a4924a9ed506f1a7eb6ee0c5cbd0b8\",\"labels\":[],\"modified_at\":1726995223.789713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1a65aba3769dcf7d73471f08ee7487e\",\"labels\":[],\"modified_at\":1726995223.79048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9c01253348f061043bbdb1f1507a49c\",\"labels\":[],\"modified_at\":1726995223.791252,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d489d218083ad29b42fc36fef922cc13\",\"labels\":[],\"modified_at\":1726995223.792031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67713a70d56c5297ff28330a8713287b\",\"labels\":[],\"modified_at\":1726995223.79278,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9b7724b86925b6394800d7c6891b28f\",\"labels\":[],\"modified_at\":1726995223.793535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49962449d9f171c587ef0081e1cc465e\",\"labels\":[],\"modified_at\":1726995223.794287,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f4a5682eb43905036502e20f0d7cdf2\",\"labels\":[],\"modified_at\":1726995223.79504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4df9269002f04292ea5a51edd4f8c6\",\"labels\":[],\"modified_at\":1726995223.79579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dd1fa6fe3de99351f0c2e5b83f26c15\",\"labels\":[],\"modified_at\":1726995223.796556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69b62987fd5a78948f6cfdc65527fe6\",\"labels\":[],\"modified_at\":1726995223.811631,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"178c13bf6bbbb8549bf450a4b37821e5\",\"labels\":[],\"modified_at\":1726995223.81238,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60db789ceb739a57754a71f6a6341c62\",\"labels\":[],\"modified_at\":1726995223.815043,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaac7be99d399d761408d7db5905d168\",\"labels\":[],\"modified_at\":1726995223.815764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15733449911ed88087bdb00ce20a0bdf\",\"labels\":[],\"modified_at\":1726995223.816558,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"429e1e416e644ac2e44b56eef5823108\",\"labels\":[],\"modified_at\":1726995223.817315,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08656fa710c862cb6e1223682c8c5dc3\",\"labels\":[],\"modified_at\":1726995223.818008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1df54d5c58a731bbfab080b1a87906b6\",\"labels\":[],\"modified_at\":1726995223.818713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc787e9c0359d3254b83bd29ba368af\",\"labels\":[],\"modified_at\":1726995223.819405,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7d473447060f92cff978b9a385e9e68\",\"labels\":[],\"modified_at\":1726995223.820087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"055386324f02620a24c7ac18946b8bf3\",\"labels\":[],\"modified_at\":1726995223.820745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"76b3a961774fe3c039a138cfd39bb5b4\",\"labels\":[],\"modified_at\":1726995223.821464,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1d47fcf2e0a7f8584fd0e2f3c7df26\",\"labels\":[],\"modified_at\":1726995223.822171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6664341496258104260c74c65e71e362\",\"labels\":[],\"modified_at\":1726995223.822825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb8d289562757807719ada54917fd1b\",\"labels\":[],\"modified_at\":1726995223.823475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f21ff74ba7e2a3ef0d9c35584ff6eff1\",\"labels\":[],\"modified_at\":1726995223.824163,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5d811edc4036d76580e45069c0c9d4a\",\"labels\":[],\"modified_at\":1726995223.824852,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1dabea2c9416bad06dd40deacf241ca\",\"labels\":[],\"modified_at\":1726995223.825603,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49200ecce06beddd4ae77d277f4e14ff\",\"labels\":[],\"modified_at\":1726995223.82625,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd926acee83d1a62199e77a8dfb0aa05\",\"labels\":[],\"modified_at\":1726995223.826914,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5fd1ebd4c46c2508f368824f8e8152\",\"labels\":[],\"modified_at\":1726995223.828388,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2f8d02c9a7424a0357cba3b49eaebb\",\"labels\":[],\"modified_at\":1726995223.829147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_current_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2393f3fae020b53ab99954ca957c3a89\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Current Power\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_current_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_today_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d7106ff82fcb4a141f250d27a389e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Today Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_today_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_lifetime_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"96d9d3cb20150a5d688099ee3d59ebcd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Lifetime Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_lifetime_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1f5897cc45878de2eb2c5a5f1dff53bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad685a605a9e3440bda5246f75285600\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_online_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a1ff8defd768f741f55d65e9a7f1d5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"687378e33ac65e5d1c22ce92420ebe2f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a7c5493056d56a29653e33999a7ea9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d95ca2a85ce23754796fb7dfc047a34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18bc901d7dfcde1fde8bd62fae8a5113\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca63b9ad9d43371a52ac3613c109af07\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e07bc3bcceaeb880e71ed355f609b238\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd7571675990539e04f4f8a77406c490\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"211dbb3a7c69779aecea73e41f9c6473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"498fc8386aa58186c1fe7da679696211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e1ed71597a80a21a1881c86b442e6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3babf3437ebf12fd772a1aa54f4ab6f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e09f448a85712812e396a7f9cc1d393\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f9e1810e5a0c6896a04a053cc67f82a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f93e1a44de3fc2012749ef93295ddd9f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c20dea6e1ee110ac5ced5123e4947d32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"026a47e3e1d3993dc0ba1ad3c7446bf2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63dc709ee9f548ea607f688f93cf3234\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a06c4b37c7f1e33fe923bbd3149d2211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52154fde2fa3736366353ce80d9143fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5655856d7f5e8bd562dd95b8b8552212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7839750c868429f82ea60be31065090b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"345ca71bd27275be777e84858b01aeca\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f2714bb3fe47257fb7d75ed61", + "offset_ms": 116 + }, + { + "direction": "recv", + "type": "text", + "payload": "9377c4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca87da2f07b93a7514c465435b42fc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11ff9bdd285d12419a16b1c4046b164d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501f530e38c0a5ffb668116d0338b7e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79635f34cc537787519a607cef9c2b54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04f5ba7c71b00f927719dd6d1f76a24e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22a79eb3bd15b816fbd2353b874fb8c2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4e289027532937da275a2afe8a1e54b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c889610feda4c5d2919574a4a4b2e9fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6767893333bd2dd2faae401b17f6287\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9719fafdbf800c3e41c1247e9ddec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"709f79ac43c1de05cd9b92356daa783f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bbde1b266563b56db9b76c48b5e4c802\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cea749b7d0157bda9c8b3b8da7d0c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ddd7cef675562790ac794cf05db84eb7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3c559183ae7d9c9e8da0b9e9b52d2c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"361a1fc2a89ff20381d82750957d8e6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"99764c4bfbb97e8902e9a2ffbd269940\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6dd91fa0dddc72d17c5e9bc5febcb1bc\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d0458b6571acce21bda18fa4ed91f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"967c6fffba2e2da7a3df57bd136547a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"089c111078e7402a6d5d28aa89648473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d4c2fa1d9b5d9f01caeaceef8fa3b38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"456f0dd0f5c3770d056cc3764dc13d64\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77885fc4334d3e5779eaa71dac27688f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d0917ede83bd0ea1b545fb27ae2a4ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a36bcb574711bfe4e239bc12d85c031d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ccaf61f0c36aa89e2cc6b95d91fb0471\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05811a50db6dd93844c0b196d39d2acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"383a71bc0095d7e93746e6ea4f917198\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62cebac91c63149058b957314fb161b4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f283b802affc5a6ca5f1c7fc5de091\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee406fe27a3eec7c0c329ac2825c475a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"168791062da8f11816f49242dac4076e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"31ea3d07718bab198b5b9fc6af1dad97\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"305d5bd7a5ce07000c053958fcd55f12\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8835ef4f2b23d870d8155e9d6d5601\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fdd8ffe94c60d06b945af26a4352cb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"140d724fb5d154e0c3e6baab9f1b2c8a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"45d3fcce547a5c666959dfc27b70823c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"869b21114a648290559184a15408ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e821ed6d71bb8f39e7b129afe3af4d9d\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00d279b67b2610254703b2f54f7c19fb\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70fd486013d17ba726e8011eb3a73a3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d40dc815657ac375ec8fc97364d0587d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42be692b3321a3c3b636ca3c45f84b83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e32b957382e291736c3509dfdfd9aa4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"03f49ee636edc9301e014dade638cb4e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3846da42a87cde40ac6aea0bfc100b05\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"223c68438e658441b8a74c18d7440baf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c161128d74cde1b9df0ac526abe9a06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7b1a0a10460e1b2b3ede2e562a703f5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adc4e9307e5f4586c50c9b3d85f66b27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33f66484a0035b233ab171ed3b696fa6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"592ca6e323759a3be3e15662afff9297\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"893b80ec5dd05fb72fd00141fb518e32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d688d2d1bf1a31622070b2fb094c4cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4e72cd5d23acb39a4f9bc63cd0a21b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"da85884355ff3f4994596e259973be64\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2f84c45e7569a132689cdd9ed95b065\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a1f3186ff560113bb369dd97d7817da\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3db09b81e63e277131f85a8131a8025d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0b16c038d6c97b603911b86046cd25af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4eff38935461680017f59921787a34f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d18af827376be02cc0d3a1b6f9e01ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98977f8e3432f6e1ff5ebc307b85bf5c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_", + "offset_ms": 119 + }, + { + "direction": "recv", + "type": "text", + "payload": "0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4561d19a5716fbe7e1234f629b30767a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e9a028e3c404f0497df004b9975faad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f02043ae6d3212ba58eff7b1f7747496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1712170208fdab217e72e9ccd1bfd12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22e1a76aaf68da0ffb5403b0d2e2e274\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70909c374becd6dd73c82b4ff632b3c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0eae697b783ebba9efdb307f5ac8880a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c413014864a571a604089ceeb62ed55a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39450e87b48a58faf8da5a7a85133642\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5b1e2afd4751933180abf85fc4807f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a967fc1ae03d7238ecea72c0a0ee0d6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbe669bd0773be004f53e90bcb0df11a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56cddc0e777db2dbcc227171ce9f8054\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79b07b22b2ee648f66881c503ff3745d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d58f33bac449e9831ab4e1e98bc8409\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3859824896da3b25243af7a06a9ac8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39adcc1e155986621cc39a150c750070\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56317bf1aeaba04d33f714030392e692\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25113df24a5179f21d9e43126c27f58c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"466f741572070700ef6306949735069e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b12a0cd54325f7f91fee567870e913f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74e4b4ca3efba5d75a1727aa21c083fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"569cc4587b3157e2f58acd98ad72443d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74526ec1a4f846d0ddfaef484bc13493\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4203eae9736a10d438a8ee366d836774\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f8eb498aa41b793797942795f06c310e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Using Cached Data\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_data_from_cache\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_restart\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2bd4ab12752eaaa02b11c84a1e3290b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Restart\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_restart_ecu\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_query_device\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0ca0562ffcb02644dafae6227b475d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Query Device\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_query_device\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0a21329364115517cea604476281c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_inverters_online\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_003\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c5d8e19b2f7ef7dad358b83e242a65d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 003\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_confirm_configuration_change\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d25ae85a81c5a18a3965894f77da168e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator: Confirm Configuration Change\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e465c51bf88dbc32a6785a7b6dad1f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71fd02485d1c3201235dfebb5dcfe3b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e703e04564a595e11b85dc51d5afdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc9b9913efd0c2f8819a21443737e28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449a3a66c448b698823d287dee56c864\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_on_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"553ae2641fa529953c7c9c90ea018e2c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09447a340f5a951b315041b5dc38910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_scene_control_remote_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4108e95bdb9ab52a683d50b3c1eeb35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control: Remote 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed_dimmer_and_group_3_and_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96fb107556a5754998e6d4d86ade7860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed (Dimmer and Group 3 and 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24813797e3fe66e246880f75f276e964\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea0442a91f3c09d591f5ddfd39b6057b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"shou", + "offset_ms": 123 + }, + { + "direction": "recv", + "type": "text", + "payload": "ld_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0152622d192ee621b119886a52d711d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7d94a13fb61185a29df32572fff71f7\",\"labels\":[],\"modified_at\":1758660536.917488,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80eeb792b9601da317217fe3bdc1d46c\",\"labels\":[],\"modified_at\":1758660536.917716,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2068d0dc53aa2c783a1b70575e6d7755\",\"labels\":[],\"modified_at\":1758660536.917878,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d71e0683e8fa779d02db54bf283e7f92\",\"labels\":[],\"modified_at\":1758660536.91804,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1b34b38e43714428e109ed8d1c945\",\"labels\":[],\"modified_at\":1758660536.918202,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f895402c9d8d3bbe9eacb657e5a92be\",\"labels\":[],\"modified_at\":1758660536.918462,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.total_inverter_watts\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb73b03eeb9a43d362378e6ef0a89fb7\",\"labels\":[],\"modified_at\":1768937322.85093,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Total_Inverter_Watts\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"43febd2c80fd35383b1796826e76aad9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"notify.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de018507a30e449b6455fef4fe0fedc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980_notify_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ffbd90ab3bdee9a04e0e066a46c2d94\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eebcb05ee23fa77b122afde9ce221d20\",\"labels\":[],\"modified_at\":1768937324.525363,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:6F-light-mariah_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1dd305fbfb47d33a89aa39aa5305aa6c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bec4f47de87f948d86a066bb2ab2c70\",\"labels\":[],\"modified_at\":1768937324.526369,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:32:24-light-mariah_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a815fe83e1ed7dc52f51fbdcc13b71\",\"labels\":[],\"modified_at\":1726995223.830482,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e558dddb1abc1eeeaedc81b16c01f9e9\",\"labels\":[],\"modified_at\":1726995223.838912,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56d69a23bcd42abf56831b1b71694eb0\",\"labels\":[],\"modified_at\":1726995223.777968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"581ec35adc2c957a76a2c7fd60ef8633\",\"labels\":[],\"modified_at\":1726995223.807272,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e52835bcd7056629b1f1a99e20075585\",\"labels\":[],\"modified_at\":1726995223.837479,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47538b6ae63e2feeba44c44fae84ffa1\",\"labels\":[],\"modified_at\":1726995223.776542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2833708ebf6506c52dd79313ad59d26d\",\"labels\":[],\"modified_at\":1726995223.805802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1602432411104b1ff4945fed97b8e1a\",\"labels\":[],\"modified_at\":1726995223.763548,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c02d2d704d9242c0fbbed6a12f6213d\",\"labels\":[],\"modified_at\":1726995223.798062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d105430a04958aac57cef96114b7c07\",\"labels\":[],\"modified_at\":1726995223.831134,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9eae8ff171be93ebed91308be8af407\",\"labels\":[],\"modified_at\":1726995223.838195,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d811fdd8bfa49dab565b28ada1eac2ba\",\"labels\":[],\"modified_at\":1726995223.829815,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a920c156a1c4ac8ed2c8c7e1167e51\",\"labels\":[],\"modified_at\":1726995223.762419,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b11670409d6bdf9aacdf2aa240b77fda\",\"labels\":[],\"modified_at\":1726995223.797323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4aba70109c330d3dbe361ef2f93ae3b\",\"labels\":[],\"modified_at\":1726995223.765802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a56194f193842b6926637417fbce5d3\",\"labels\":[],\"modified_at\":1726995223.831809,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3566ef3b27ff4ad879bf2679940865a\",\"labels\":[],\"modified_at\":1726995223.7996,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9344a735c3f7b30f4f067902c5e8699e\",\"labels\":[],\"modified_at\":1726995223.842465,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d473f6cd0d1bd253b226a132ea261d92\",\"labels\":[],\"modified_at\":1726995223.810927,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa0f97c72bd513df9f4ae63f90bcde63\",\"labels\":[],\"modified_at\":1726995223.843171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555d62f0d7d846827fea1966f7a795f\",\"labels\":[],\"modified_at\":1726995223.782285,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b738544dccea104b025e9d0e05eb0a0\",\"labels\":[],\"modified_at\":1726995223.843932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3279a9c16bede20195a82db3a2d5ac6\",\"labels\":[],\"modified_at\":1726995223.813127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"edf1ee16bcab171c1c577c63ab97f10c\",\"labels\":[],\"modified_at\":1726995223.813846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d546166876e4b211dd195567284dc59\",\"labels\":[],\"modified_at\":1726995223.781575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"083bdec6d96d2f404c70507685f3dd3e\",\"labels\":[],\"modified_at\":1726995223.84177,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dca79ad23d502629a88f7013fa68932\",\"labels\":[],\"modified_at\":1726995223.810227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16aa1de89eab7ad3ed129eb4cc0ac3c6\",\"labels\":[],\"modified_at\":1726995223.771136,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e4964ba1e71db161a6472592eb9e740\",\"labels\":[],\"modified_at\":1726995223.80033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8570560d08e0567d3efebba878cdb6ab\",\"labels\":[],\"modified_at\":1726995223.832485,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4aebf740e9f7b9bd6c98c37d306197a6\",\"labels\":[],\"modified_at\":1726995223.778671,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fe20c2ae51615b00769343092fafd6a\",\"labels\":[],\"modified_at\":1726995223.807968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"068e413358fd64469c9a6e6f35b42a3d\",\"labels\":[],\"modified_at\":1726995223.839642,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aed56680f8f167daeb016cde5c2ba644\",\"labels\":[],\"modified_at\":1726995223.84033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fc85df1d90cebda5ab8b19c32436ae0\",\"labels\":[],\"modified_at\":1726995223.779376,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation", + "offset_ms": 127 + }, + { + "direction": "recv", + "type": "text", + "payload": "_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"021a49ce92e7476a582236b73b6e3535\",\"labels\":[],\"modified_at\":1726995223.802855,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6a40eac34dc70bf8dc5def5b0073fa\",\"labels\":[],\"modified_at\":1726995223.772679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c553fc274e111c629dd000aeec4c2b7\",\"labels\":[],\"modified_at\":1726995223.802104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df570e55b17fd5b868f21fdaaa452f90\",\"labels\":[],\"modified_at\":1726995223.83469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8e13752690827fa5e282140c5762e8\",\"labels\":[],\"modified_at\":1726995223.773442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b20b811f7244af9d9b23c2761c84b693\",\"labels\":[],\"modified_at\":1726995223.833935,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a5afa9a0787a0de471b3ee2c02657c1\",\"labels\":[],\"modified_at\":1726995223.808684,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8732cb4c313abb97189c10f0054108\",\"labels\":[],\"modified_at\":1726995223.775718,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed76a423a40fae6a4f24c824afc7805\",\"labels\":[],\"modified_at\":1726995223.833237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60203a103ce1b8ad003b1909fb4295b3\",\"labels\":[],\"modified_at\":1726995223.841088,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75a7375b9fceab8ece8c8d79beec2075\",\"labels\":[],\"modified_at\":1726995223.78008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d4429655a28d7c4d11c8ac748d6ec40\",\"labels\":[],\"modified_at\":1726995223.836044,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09fe4444cdc9cd9c1cb1d6365af990f\",\"labels\":[],\"modified_at\":1726995223.774958,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd10e1850ddc2620520d0c61a8bd97c6\",\"labels\":[],\"modified_at\":1726995223.804328,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4251e01f23bc9625e8a30bf7203a470a\",\"labels\":[],\"modified_at\":1726995223.835367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743fe98bbc2fed1b1af8b35cf2fb0ec9\",\"labels\":[],\"modified_at\":1726995223.774193,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6269259dcc0345571feab5284d7d09b9\",\"labels\":[],\"modified_at\":1726995223.803587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"524dd66763944a8be56ef44aa306ce9c\",\"labels\":[],\"modified_at\":1726995223.809514,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81b1a35be54fea6be3a192e4c82541f8\",\"labels\":[],\"modified_at\":1726995223.801083,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63bbd707bde7aeba07b3b5ecf5b7fa17\",\"labels\":[],\"modified_at\":1726995223.77192,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45170e964613947df7b4c57ebc0acd48\",\"labels\":[],\"modified_at\":1726995223.805066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8207f151f883386419a3a7979d3e5a37\",\"labels\":[],\"modified_at\":1726995223.83675,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e1e9be0c3cae58fefc0f6b8691e7327\",\"labels\":[],\"modified_at\":1726995223.764679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a81c4266cbdb0d23e04e4ae57619dceb\",\"labels\":[],\"modified_at\":1726995223.777271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6adb060e525a0b02802e9e8b6afa176\",\"labels\":[],\"modified_at\":1726995223.798783,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e88cf00ff5ffb15ab94f37a9aba66c0\",\"labels\":[],\"modified_at\":1726995223.806537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ede71d69993e45389dde366b477559a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.zwave_controller_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ada086edb92a8f505bced7c2559caac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8115e52cb16c7a28f096995d2b3b67e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f44e4ed83c8b09e72ec4ffd1df79953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f359fcdc3ab75ebc7bfb58acf0fe25e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46e839f2f5b0c124ad2a0b5c355967fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7b78974ef1f75948f492f64fd4859ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f780def514df1d90ed58dc922b80c574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.69.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_controller_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96d8fc5c5e35a76c655c9b71b67ef899\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.69.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a133bfa2a01f055c0c8d1bd38418a9\",\"labels\":[],\"modified_at\":1728721846.252105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e3e85a4be70951809ca9f5dfe3e4f27\",\"labels\":[],\"modified_at\":1728721846.252322,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6422ed2bc95eec7c77e8299c3132dd3b\",\"labels\":[],\"modified_at\":1728721846.252479,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e3039be25344df3c303f10d2af506\",\"labels\":[],\"modified_at\":1728721846.252618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"493c98ca3f5d28add9b1e76d9ea0fd2a\",\"labels\":[],\"modified_at\":1728721846.252884,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.69.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e9c3189a4b2c3bc9beaba32e4f6d17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.69.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba107fafd299fefa29cb886864a6b6ff\",\"labels\":[],\"modified_at\":1768937324.649113,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.69.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e97d839fc36f285ba34c95e0aedfb525\",\"labels\":[],\"modified_at\":1728721846.253026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.69.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_controller\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a09ee2d6dae31c200ed543531a11a022\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_status_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1aa247cfe4361de79507e8ccf24a9abd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf005657afa97b1d708b15d9ce67af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c16c9234ee62e39da6d416bd74c4bf36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9964c19a9f2c7334e16ed21f53a3b47f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch ", + "offset_ms": 132 + }, + { + "direction": "recv", + "type": "text", + "payload": "3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89981bfb5fb0a71346ba5c4a7fd7f436\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4bee7cdfbbbb6c2df376f6acbc9f8e0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a4d1c9f055f635a8a634822ce0443b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6dc9f7340d74772ba42c3d47103bc06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57972bc34dc5d7e963a491a8f73724f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a2e8fc6466088be70d409688c666748\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f693ad03c26b3259e108bc893124dc78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf35e53c8dc9a7f47de20aa646f2a06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a5ec9e8137600e298bee781d72b83af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"284a0c5a0e4fbb0bcfedfc117d6d0cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae04ca93744aa073da36ab542919ff8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"049d7e26a1fd2ebae088bd47e33c28c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f3c6220aeebafd0398bd96fade2132\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be4b4db30be6b69c892b44b359c6b20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80d8ed745bc23622d5388e9075693bb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"306db4629c8a60e5464dd368235e8317\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c04dfad2dc4762af4bb76906a45d36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b439907fac4276ebd5799a625ec1ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb5b5d71754b964eebf3dabae76e6cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_dc_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b6fdcf38fa8ab2b6dee499c7d18e08f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.garage_controller_basic_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f54c77989f4d5e8568905b09f0c46f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"949433e099fb4164e0fafef364d9d3be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.large_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage-variant\",\"id\":\"7103f21d0a7b132c69440a9d6979648a\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Large Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.small_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage\",\"id\":\"efa8ffc287061c04b28a05e2d6789429\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Small Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_back_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"200b3bc82d4792b83862ab4c8cbb5d60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Back Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836786749\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_front_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25b6b2f05b818b741e6862688a763aff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Front Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836943690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x17\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c29cfef30f97af820f587cd0d380f6d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x17\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x87\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4dc3db0b7fb0e8835ad90f9649d49ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x87\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x87\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_water_valve_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b60d57c74b8a0fc026da3c5efe1ca529\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Water Valve unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Water Valve-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.neck_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b16d267f43e86640e991f613d652ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Neck Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"neck_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.migraine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e0cd7c0a5bad5564b84ba8e22f577d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Migraine\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"migraine\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.back\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a96f0af191e7ef39888e595237fc79d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Back\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"back\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.water_intake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81a9b155d2aa5e2ce0c7cb5dca44c82c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Water Intake\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"water_intake\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b24234ca56ac77e9c79f6e353a9de91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"648e83e3c8bf58cd2e4eff867c7f26fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc3f2404fff79b6deefc2d10c7d221fa\",\"labels\":[],\"modified_at\":1724358474.764135,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.mariah_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45abb940e65545be9eba91e9c7c27266\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:14:0f_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.joint_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78f692acbb46a9d5516120af473ee045\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Joint Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"joint_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de63e43f6a93586a800fa07684f40d6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724140995216\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b26a6c2d503838f2bd69b2b4425daae8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141048676\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68e5beb6d9c92149ac9c90cd78e98694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141102872\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.thermostat_aux_heat_only\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10172ebe8ddeadf985bb596b028dcae9\",\"labels\":[],\"modified_at\":1732123640.2771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Auxiliary heat only\",\"platform\":\"ecobee\",\"translation_key\":\"aux_heat_only\",\"unique_id\":\"511883021980_aux_heat_only\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":1724358474.76478,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.mariah_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4fed1642c4e2312aef35b63ec334976a\",\"labels\":[],\"modified_at\":1724358481.090975,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:14:0f_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543171,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_start_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20a9befee49729b0b2137b2abfa3f2da\",\"labels\":[],\"modified_at\":1724358911.543261,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric start date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_start_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543599,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_end_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65d71d7e1d0a884417f030f39de51b62\",\"labels\":[],\"modified_at\":1724358911.543669,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric end date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_end_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.98836,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.ha_floorplan_your_imagination_just_became_the_new_limit_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3784e07efac13a5e30236d87aea4fec0\",\"labels\":[],\"modified_at\":1724359451.989217,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.989902,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.dahua_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e20245435d618d476b342520dc05bde5\",\"labels\":[],\"modified_at\":1724359451.989949,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990389,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.emporia_vue_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33d53b6ba7f741c6d34066bffe18929", + "offset_ms": 137 + }, + { + "direction": "recv", + "type": "text", + "payload": "7\",\"labels\":[],\"modified_at\":1724359451.990431,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990856,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.average_sensor_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83923fd4d6f02182318adda6b96afc53\",\"labels\":[],\"modified_at\":1724359451.990901,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991326,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.lovelace_home_feed_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30d80177caf3df3331d797d783c5539a\",\"labels\":[],\"modified_at\":1724359451.991374,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991795,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.smartthinq_lge_sensors_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cd6da87bfe167df17bccc9b0bc3f160\",\"labels\":[],\"modified_at\":1724359451.991841,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.99502,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.fold_entity_row_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d2c850e540e1848f6d18f94e1d33df8\",\"labels\":[],\"modified_at\":1724359451.995069,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995516,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.card_tools_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa13dab5ed75447d38ec11bb05b39148\",\"labels\":[],\"modified_at\":1724359451.995558,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995977,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apsystems_ecu_r_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6355ba3eab69573857aa3095dfe8bb29\",\"labels\":[],\"modified_at\":1724359451.996022,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996442,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.hacs_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee6b6e287f399d2a0f06", + "offset_ms": 142 + }, + { + "direction": "recv", + "type": "text", + "payload": "9f2f3630f9de\",\"labels\":[],\"modified_at\":1724359451.996483,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996903,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.number_box_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4973abd138f62d11c94d23869d4332c6\",\"labels\":[],\"modified_at\":1724359451.996945,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997365,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.layout_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f6016a8e966604387a938ca589078bb\",\"labels\":[],\"modified_at\":1724359451.997407,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997831,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.opensprinkler_integration_for_home_assistant_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b81d07934da5c7e0354b8fcffd03768d\",\"labels\":[],\"modified_at\":1724359451.997883,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.998293,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.auto_entities_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7eaa56b622d4a80a22c66036a4e7bff\",\"labels\":[],\"modified_at\":1724359451.998341,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.000211,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"057af5b48646a036f034fd05c24730ac\",\"labels\":[],\"modified_at\":1728248033.394848,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00067,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.dahua_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39b3a5e25ed21ff451dd821e74135856\",\"labels\":[],\"modified_at\":1728765061.996176,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dahua update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00105,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.emporia_vue_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e29e7a00297a5a491404aa12c42c1323\",\"labels\":[],\"modified_at\":1726802997.261126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Emporia Vue update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001406,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.average_sensor_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"10b897f9ab5ff47d44ed99b8cad96a01\",\"labels\":[],\"modified_at\":1728269633.52911,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Average Sensor update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001753,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.lovelace_home_feed_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"692a965a89752f7152ac33da536bbed1\",\"labels\":[],\"modified_at\":1774138612.944037,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lovelace Home Feed Card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.0021,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3cb7c37711861e8a4f3c5450350f13c1\",\"labels\":[],\"modified_at\":1728226433.446449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SmartThinQ LGE Sensors update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.002442,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fold_entity_row_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f07711c04f71f779880758ee4fd3ca0\",\"labels\":[],\"modified_at\":1750126348.796186,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"fold-entity-row update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003037,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.card_tools_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8857ce93625614d4a532e41e988a77ca\",\"labels\":[],\"modified_at\":1774138612.945999,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"card-tools update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003384,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apsystems_ecu_r_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eb5eead0182826b4bd85b3cbbc8b855d\",\"labels\":[],\"modified_at\":1741914692.185678,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"APSystems ECU-R update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003737,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.hacs_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b4d63ea37ba5c94123db67da9a7b4a\",\"labels\":[],\"modified_at\":1725474380.986863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"HACS update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004085,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.number_box_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf9428ea6400cb62210ef5a817aa3f4\",\"labels\":[],\"modified_at\":1774138612.947972,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Number Box update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004425,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.layout_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9814393596a8063e564904eea508d5\",\"labels\":[],\"modified_at\":1724359470.337507,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"layout-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004773,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64aa16e9bfa85282bdb6b21e1f285a0c\",\"labels\":[],\"modified_at\":1728377633.939246,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler integration for Home Assistant update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.005134,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.auto_entities_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c1b0f1673df40ae25aff2e19e9bdb999\",\"labels\":[],\"modified_at\":1746450676.644499,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"auto-entities update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.878711,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d782eae7ac9b06c199b0499afff0d330\",\"labels\":[],\"modified_at\":1725237298.640764,\"name\":\"Living Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.880189,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a40c8c00fa4561861b93cac2ae12162\",\"labels\":[],\"modified_at\":1725237298.642678,\"name\":\"Living Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.620171,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95350dcc7aab2e2b8ad42eff96a3bbe9\",\"labels\":[],\"modified_at\":1725239509.709835,\"name\":\"Office FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.621822,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"457ea4d9622eaa89f01768b2d3cb13b7\",\"labels\":[],\"modified_at\":1725239509.711619,\"name\":\"Office FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9119d30965efa939f043665b8f522c7\",\"labels\":[],\"modified_at\":1725122973.950769,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d74e8506dabac922300249b97a64fd92\",\"labels\":[],\"modified_at\":1725122989.160884,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f75ee8a8e6a0e889e600b497c966f4be\",\"labels\":[],\"modified_at\":1725123000.642922,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.88148", + "offset_ms": 146 + }, + { + "direction": "recv", + "type": "text", + "payload": "7,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a80cd1fd55b60d92e924c5d0a86b57bf\",\"labels\":[],\"modified_at\":1725123140.792999,\"name\":\"Living Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.62291,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65796cc5504c6f97911d5984b7697240\",\"labels\":[],\"modified_at\":1725123172.764679,\"name\":\"Office Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.623792,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4870514fbeca2b830d674880c226e4b1\",\"labels\":[],\"modified_at\":1725123300.434383,\"name\":\"Adam Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.625331,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ae3bf2a8005788c86e4ed1db0e26deba\",\"labels\":[],\"modified_at\":1725123348.631538,\"name\":\"Leksi Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.626608,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"92cd99596879bed65510157a3e4440b8\",\"labels\":[],\"modified_at\":1725123370.960249,\"name\":\"Mariah Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.882516,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_couch_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df55257bb93d1c4d83ab27bb28cc7088\",\"labels\":[],\"modified_at\":1725128801.063257,\"name\":\"Small Couch Occupied\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.884521,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.main_couch_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d5054b087303392f4b4c1afa3087c65f\",\"labels\":[],\"modified_at\":1725211786.993681,\"name\":\"Main Couch Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.885552,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.massage_chair_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6166b7fcdd2cb9ddf567fd2ef3444519\",\"labels\":[],\"modified_at\":1725216435.355422,\"name\":\"Massage Chair Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.041669,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.mariah_room_fp2_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05362f331bbb95c88b007da2281c2835\",\"labels\":[],\"modified_at\":1725237352.484952,\"name\":\"Mariah Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.047465,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"572e2d9b32244570b0d0b314a4c0b609\",\"labels\":[],\"modified_at\":1725237352.487786,\"name\":\"Mariah Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.051823,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5970db3a2e7b0259e89db44e4cfa579\",\"labels\":[],\"modified_at\":1725237416.812842,\"name\":\"Mariah Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.055599,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff08f0de11c1b85bc8cd0d449bc0c733\",\"labels\":[],\"modified_at\":1725237437.467906,\"name\":\"Mariah Room Bean Bag\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.059074,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6bfab91f865d492c15136b5c01e3ea3\",\"labels\":[],\"modified_at\":1725237447.998816,\"name\":\"Mariah Room Bed\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2696\"},{\"area_id\":\"mariah_bedroom\",\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237505.317515,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"scene.mariah_in_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fb3c6924d403f71d58b0bb0dabf3c01\",\"labels\":[],\"modified_at\":1725237505.338758,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Mariah In Bed\",\"platform\":\"homeassistant\",\"translation_key\":null,\"unique_id\":\"1725237502868\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237787.837052,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_purple\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"624dd2844883b69d29ed148095cfedd4\",\"labels\":[],\"modified_at\":1725237787.837879,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Purple\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_purple\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237915.884351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d456942a6323ea80effd232373cc5b99\",\"labels\":[],\"modified_at\":1725237915.885773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238041.890769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"75cf52bb1c878e6bff34b625af14e080\",\"labels\":[],\"modified_at\":1725238103.797624,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up_initial\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238636.640793,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3b6a0b1778090f2e8c408dda4f83c35\",\"labels\":[],\"modified_at\":1725238636.641973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238624495\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238701.670496,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9999f46a955a0e9f9084655c2278aae\",\"labels\":[],\"modified_at\":1725238701.671689,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238682447\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239006.346545,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4ce3b7950ba257b7202c193ad300ec6\",\"labels\":[],\"modified_at\":1725239006.347468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Beanbag\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238993576\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239193.188985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f01bb92164b255a0efc6d56ad8e2d267\",\"labels\":[],\"modified_at\":1725239193.189985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off_motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239220.921769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7ab674921f77ca79b116b8ad3510f592\",\"labels\":[],\"modified_at\":1725239220.923107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725239208837\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725240282.042413,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7ca8c0f7712e5307b5d9763e9de9b94\",\"labels\":[],\"modified_at\":1725240282.04309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.352226,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45c2f5c4dc505611cb256120f1f2830\",\"labels\":[],\"modified_at\":1727942594.370094,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.395121,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"642124e3cca72e7af2215ef9a52ec5b8\",\"labels\":[],\"modified_at\":1727942594.403475,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.425326,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"784abe3673b46c36d82dd6392e364987\",\"labels\":[],\"modified_at\":1727942594.425962,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.45199,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"150bd1465c22a43804cecfd9a73b625d\",\"labels\":[],\"modified_at\":1727942594.452773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1728721845.869036,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b63b865295f97c1a420158b97b7759ea\",\"labels\":[],\"modified_at\":1728721845.869115,\"name\":null,\"options\":{},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeout_ack\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.793984,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385bc6fdb93d7ac940f95ec7929b93a2\",\"labels\":[],\"modified_at\":1729542987.794601,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.818634,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd8c93ee004038b3809d9bf5e9651e47\",\"labels\":[],\"modified_at\":1729542987.819224,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927412.116135,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"955ffcb77910a5ce5c785cbb4567a5f4\",\"labels\":[],\"modified_at\":1730927412.117253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927396308\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.917166,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"987472eb0c0a9d61f145fe1ffa7ec389\",\"labels\":[],\"modified_at\":1730927493.919085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.920247,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"252a7a535fed97b7201a3d818cbf6b41\",\"labels\":[],\"modified_at\":1730927493.923132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.925051,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.entry_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97c48c7149d9b2887c6c759a19330130\",\"labels\":[],\"modified_at\":1730927493.927034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.928963,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.entry_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500c84effc8332e2f1c41a3075838240\",\"labels\":[],\"modified_at\":1730927493.932234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:cb:b8_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.935595,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.entry_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743ad90a794f64c648bd1898865e94f4\",\"labels\":[],\"modified_at\":1730927493.936077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:cb:b8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927707.36645,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1265c862bfdaa5054cae39b5f86e369c\",\"labels\":[],\"modified_at\":1730927707.367325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"173092768715", + "offset_ms": 153 + }, + { + "direction": "recv", + "type": "text", + "payload": "2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927799.13572,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d209c365471b448fef5272375db2ff0\",\"labels\":[],\"modified_at\":1730927799.137491,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927783620\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.182084,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf28a6cb7c5941b7f5f4a22f00a9f0e\",\"labels\":[],\"modified_at\":1731010174.182936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.185823,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff2608f2319d6a14116e79184fb9de\",\"labels\":[],\"modified_at\":1731010174.186057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.188286,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02c6d610044ed99bb98012037e946b99\",\"labels\":[],\"modified_at\":1731010174.188925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Water Alarm Water temperature alarm status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.189509,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c63c08e0a24247681b3d434ba4fb34cb\",\"labels\":[],\"modified_at\":1731010174.19004,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"No data\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.190342,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abb7f974abebcb04c1b547a6286cded4\",\"labels\":[],\"modified_at\":1731010174.190851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Below low threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.191145,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f614798b9e419b24613abcca2ed35048\",\"labels\":[],\"modified_at\":1731010174.19163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Above high threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.764381,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac6c25ec61299c2cb06e3968752d2b33\",\"labels\":[],\"modified_at\":1732137151.765016,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.71.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.765454,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"470d94d96fdc410faa1a1d853ce54872\",\"labels\":[],\"modified_at\":1732137151.765996,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.71.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.766523,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bdd8a3d8d5649e3c59bcd0afe21a3233\",\"labels\":[],\"modified_at\":1732137151.766708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767048,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e664059fc7a8cd2a4c332b3dd7c088\",\"labels\":[],\"modified_at\":1732137151.767202,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767524,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167a34dc614f039f41fc040f39e15d2c\",\"labels\":[],\"modified_at\":1732137151.767682,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.76799,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b457d5cbaa8a6d30f5db0cfa9205e7c\",\"labels\":[],\"modified_at\":1732137151.768142,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768433,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"efb4c2b5944fd9687778e2300f221aba\",\"labels\":[],\"modified_at\":1732137151.76858,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.71.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768882,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e0206961390409df0866659ba3bde3c\",\"labels\":[],\"modified_at\":1732137151.769029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.71.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.769331,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45bfe6ad87c79146ddc2780321ecc45c\",\"labels\":[],\"modified_at\":1768937324.655714,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.71.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.770858,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7befa0f701f255251d4f0713e34362f\",\"labels\":[],\"modified_at\":1732137151.771513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.71.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.588866,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2668e06370022ffa63e0af58450c4deb\",\"labels\":[],\"modified_at\":1768937324.772972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1", + "offset_ms": 159 + }, + { + "direction": "recv", + "type": "text", + "payload": "}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.590101,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e406cccffc6c5b1a623fd47a73eba1f\",\"labels\":[],\"modified_at\":1732137162.590693,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.591473,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02301ae4db885a81128ada934ab4a086\",\"labels\":[],\"modified_at\":1732137162.592025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.592528,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6fee332c76665dc7ef1990beab6911\",\"labels\":[],\"modified_at\":1732137162.592694,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593141,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb96048cc18af78626c04d902a8e7007\",\"labels\":[],\"modified_at\":1732137162.593303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593752,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bded064f1e92e2734f097e5c6fc559b\",\"labels\":[],\"modified_at\":1732137162.593913,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.594349,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7628d05dcf62a79ba33c64966408e4a7\",\"labels\":[],\"modified_at\":1732137162.594936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.595438,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5f170a01f0cacbeb2fd47e3cedac5f\",\"labels\":[],\"modified_at\":1732137162.595608,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596071,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d11c36c8b1ae89a2329b8466196adb6\",\"labels\":[],\"modified_at\":1732137162.596235,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596681,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"322ec7947d8e42919a0133cd17e116f7\",\"labels\":[],\"modified_at\":1732137162.59686,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597312,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_minimum_reporting_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adf1bb1bfe2a4f11cadf90f298ff2d35\",\"labels\":[],\"modified_at\":1732137162.597473,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Minimum Reporting Frequency\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-172\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_battery_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0afe97af7c4e124df81a1ac9cc483560\",\"labels\":[],\"modified_at\":1732137162.598073,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-182\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.598509,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10efd918aa86083fadb425ff9a4a4a34\",\"labels\":[],\"modified_at\":1732137162.598687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-183\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.59912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3c5669678178150a506c354e6f1be9\",\"labels\":[],\"modified_at\":1732137162.599283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-184\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.599718,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_brightness_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913286fe33112a9c3d531a34472f5945\",\"labels\":[],\"modified_at\":1732137162.599878,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-185\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601005,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_multi_sensor_vibration_sensor_enable_or_disable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3db884502b02d5d6a290bdf2d41907c\",\"labels\":[],\"modified_at\":1732137162.601212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration sensor enable or disable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601721,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4f6c95db11d3ac17bca07d2264430a4\",\"labels\":[],\"modified_at\":1732137162.601885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602321,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e453c0781a8c76f1e73aefc41ad58342\",\"labels\":[],\"modified_at\":1732137162.602485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602937,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5581de38027d90f3ef0cb1cd2c41d2a0\",\"labels\":[],\"modified_at\":1732137162.603098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.60353,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_temperature_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2fedd7c6df14c4b5c04f34a712b7e8\",\"labels\":[],\"modified_at\":1732137162.603692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for temperature sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-173\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604137,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_humidity_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e70223c7a145435b2ed9e879cd97c40\",\"labels\":[],\"modified_at\":1732137162.604311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for humidity sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-174\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604784,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_light_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"126c174154d818c34882bf702cd2ecb1\",\"labels\":[],\"modified_at\":1732137162.604956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for light sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-175\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.605428,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f8387b33452ea29b9bf9b484030fe46\",\"labels\":[],\"modified_at\":1732137162.605656,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-201\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.606111,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e4b96482125c77b71a934b2d26f18e\",\"labels\":[],\"modified_at\":1732137162.607041,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-202\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.6076,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e78741347ca06e5ec1b6e8c3ba8b559\",\"labels\":[],\"modified_at\":1732137162.607783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-203\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.608276,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46015d5ffd1da337365d54035bbbec1f\",\"labels\":[],\"modified_at\":1732137162.608489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609037,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5515fb214b05e9d99121d850fdc2cc3e\",\"labels\":[],\"modified_at\":1732137162.609207,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609708,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36b46883ad9a46c08d9ace6a631f3ab0\",\"labels\":[],\"modified_at\":1732137162.609873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.610376,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e5ec6faa8b7d0368a1aaef25db69cfae\",\"labels\":[],\"modified_at\":1732137162.610934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.611673,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7eadc541b21bdc09a3ede440e16e781\",\"labels\":[],\"modified_at\":1732137162.612885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.61343,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2ee927581c1eeef7e93ff0d97ddee896\",\"labels\":[],\"modified_at\":1732137162.613993,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.614532,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dcdb2a7c64feec4cb475111ab74f4d8f\",\"labels\":[],\"modified_at\":1732137162.6151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.615626,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88ae53a601694ce99968bd1f2e333c08\",\"labels\":[],\"modified_at\":1732137162.61618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.616467,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0edb4b570f956fbd585e38c96895ee89\",\"labels\":[],\"modified_at\":1732137162.616941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.617512,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"813c7f2ffa0892c3422fa632fefc12fd\",\"labels\":[],\"modified_at\":1732137162.618824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.619386,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93dc4ae4941e37f57821eab3fd04fdcb\",\"labels\":[],\"modified_at\":1732137162.619911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.620392,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6557f3d6a9a2cf2d58f3637dab11b0fc\",\"labels\":[],\"modified_at\":1732137162.621174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.621782,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7728624fe2d08c453eb1f5570b13110\",\"labels\":[],\"modified_at\":1732137162.622362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.62405,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_multi_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e01d9271034ccc4742137810a44c7296\",\"labels\":[],\"modified_at\":1732137162.624683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.633871,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28458c3031c3f4c248b9a590649b56b8\",\"labels\":[],\"modified_at\":1752106041.646984,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 1 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_1_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.634984,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8233a76f8e5b57101fa68fa5d761e95d\",\"labels\":[],\"modified_at\":1752106041.647528,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 2 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_2_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.635932,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4306e274bbda0cdb3c63207a6f31f939\",\"labels\":[],\"modified_at\":1752106041.647924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_rain_delay_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.636864,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8cfc6b3d9aa316b1a16b51c6c90236c4\",\"labels\":[],\"modified_at\":1752106041.648321,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Paused\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_paused\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.637837,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_program_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d677537788a5eafcb8532c16cf717224\",\"labels\":[],\"modified_at\":1752106041.648738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_program_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.638843,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s01_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78da84e6aefcc386e0046bf1b665406b\",\"labels\":[],\"modified_at\":1752106041.649173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.640317,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef03c61878db30aef1069ae462af17\",\"labels\":[],\"modified_at\":1752106041.649602,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.641282,\"device_id\":\"b", + "offset_ms": 165 + }, + { + "direction": "recv", + "type": "text", + "payload": "0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s03_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e7f2050e9cf5b99317afc5bc8437b60b\",\"labels\":[],\"modified_at\":1752106041.649991,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.642249,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd1dcda93262483eb387ef6990169370\",\"labels\":[],\"modified_at\":1752106041.650391,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.643239,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s05_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabc42d8716a5866c0d562652bb54f56\",\"labels\":[],\"modified_at\":1752106041.650775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.644241,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s06_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4f5a122107cab3853f733992b28f8c9\",\"labels\":[],\"modified_at\":1752106041.651155,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.646097,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s07_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3293c0b56291ae6e9a7bd65e0abd60ab\",\"labels\":[],\"modified_at\":1752106041.65154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.647084,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s08_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44907512c87223c107c95f467afd32ac\",\"labels\":[],\"modified_at\":1752106041.651931,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.64834,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s01_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a38e3beb90e104dd21a41eb83801ef5\",\"labels\":[],\"modified_at\":1752106041.652574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S01 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.649353,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_lawn_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68796744a1de3fd9f2849c34c91293d8\",\"labels\":[],\"modified_at\":1752106041.653615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Lawn Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.650323,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s03_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7192a3ad6d844197c490a376e3f70b1\",\"labels\":[],\"modified_at\":1752106041.65404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S03 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.651977,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9199ba6acba78346f517315046715e7b\",\"labels\":[],\"modified_at\":1752106041.654442,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Flower Bed Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.652985,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s05_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ac557888704caa59ca96935fd70b6d\",\"labels\":[],\"modified_at\":1752106041.654835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S05 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.653945,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s06_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6edb59dd3e64c4913f7de4e938acd59\",\"labels\":[],\"modified_at\":1752106041.655236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S06 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.654928,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s07_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"43667b7d50dd98b035e656e0bab89356\",\"labels\":[],\"modified_at\":1752106041.655641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S07 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.656158,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s08_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf30ad107bbd19dba22c07d3614de624\",\"labels\":[],\"modified_at\":1752106041.656036,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S08 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.657793,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_interval_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab30ba1fa24ea82ab2abbc82c046d16f\",\"labels\":[],\"modified_at\":1752106041.656454,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Interval Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_interval_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.658844,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_starting_in_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70fc9278f25b33ebbc97bee258bc426\",\"labels\":[],\"modified_at\":1768937328.473047,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Starting In Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_starting_in_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.659895,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"532c0ab02f8bacd4922c9e8fb929b233\",\"labels\":[],\"modified_at\":1752106041.657319,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Count\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_count_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.660553,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82c9f077606745c02474ab5be55a620f\",\"labels\":[],\"modified_at\":1752106041.65765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Interval\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_interval_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.661207,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ff12afe9d9a6186ccedc30b97f98c5b\",\"labels\":[],\"modified_at\":1752106041.657982,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.662274,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start1_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5eaab58a3eaa4725ee1acc2c7d0af43\",\"labels\":[],\"modified_at\":1752106041.65843,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start1_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.663542,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start2_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"900d108248145e047c6222d5dab38a6d\",\"labels\":[],\"modified_at\":1752106041.658749,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start2_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.664261,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start3_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53547b2a17ba809162f4c80e4c95c494\",\"labels\":[],\"modified_at\":1752106041.659059,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start3_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.66517,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_restrictions\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98120ea7a8c6aec01a0b4c930f4d271a\",\"labels\":[],\"modified_at\":1752106041.659582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Restrictions\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_restrictions_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.666191,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86585bafecd310548350429db5de5ac4\",\"labels\":[],\"modified_at\":1752106041.659999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.667173,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_additional_start_time_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ecea61af97b2c0c60f95fe1aea7a1c\",\"labels\":[],\"modified_at\":1752106041.660415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Additional Start Time Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.668408,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_start_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c19fa2860614bd4a8f05e40abc011676\",\"labels\":[],\"modified_at\":1752106041.660824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670177,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start1_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41990b44f367572d2e3191a12b36cdcc\",\"labels\":[],\"modified_at\":1752106041.661229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start1_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670831,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start2_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd85f5a98d6ad86127c3b5823860fec6\",\"labels\":[],\"modified_at\":1752106041.661525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start2_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.671452,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start3_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a20cd58ad5a61fee98b1af89696b25\",\"labels\":[],\"modified_at\":1752106041.661818,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start3_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.672332,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_last_run\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dcb6bda0ee19761e85c6fade1412faef\",\"labels\":[],\"modified_at\":1752106041.662311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Last Run\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_last_run\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.673368,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5559a9931dd1e25341ea309e5a82f85\",\"labels\":[],\"modified_at\":1752106041.662722,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Stop Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_rdst\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.674302,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_water_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c8cf60018b734e890992bd9eed2ec34\",\"labels\":[],\"modified_at\":1752106041.663111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Water Level\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_water_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676033,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55cbcd1e26e5440341dfb0355bd8bcc7\",\"labels\":[],\"modified_at\":1752106041.663513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Flow Rate\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_flow_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676994,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_draw\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2fdebd9b4d3a941ed6738378fd82c4\",\"labels\":[],\"modified_at\":1752106041.663901,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Draw\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_current_draw\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.677946,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"004c2dddd6a671840404bde623b57bec\",\"labels\":[],\"modified_at\":1752106041.664278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_devt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.678559,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"928cbf681537aefdcec79f502a31c202\",\"labels\":[],\"modified_at\":1752106041.664568,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Pause End Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_pt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.679532,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s01_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7c0622cc402dd16d31691f5bbd346a0\",\"labels\":[],\"modified_at\":1752106041.664954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.680486,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_lawn_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec3d3107b963ae9e98697b474d274f97\",\"labels\":[],\"modified_at\":1752106041.665365,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.682227,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s03_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee3da72518ce48c980b2b30be13c8807\",\"labels\":[],\"modified_at\":1752106041.665741,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.683445,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_flower_bed_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e68cff1ef73136d91264bef3338e6b8e\",\"labels\":[],\"modified_at\":1752106041.66612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.684415,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s05_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3fa7d6a18fd72776a962c38ebab8505f\",\"labels\":[],\"modified_at\":1752106041.666497,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.685369,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s06_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0400d09413e1943988a75450678b1ebb\",\"labels\":[],\"modified_at\":1752106041.66687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.686365,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s07_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8eeb163f3069a24eb8b02be77dabfe38\",\"labels\":[],\"modified_at\":1752106041.667242,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.687354,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s08_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a67713de10858c8f5573df5bf7deff48\",\"labels\":[],\"modified_at\":1752106041.667621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.688636,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.opensprinkler_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a0dc8f5e507c1f6fde72f904788cdbb6\",\"labels\":[],\"modified_at\":1732137663.689179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"OpenSprinkler Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_controller_enabled\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.689659,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_program_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5814850390edeb9e2eeda752197bc5c\",\"labels\":[],\"modified_at\":1750061531.449132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.690656,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_monday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a2e95f50238ccb6e70e50e56b98b27\",\"labels\":[],\"modified_at\":1752106041.668769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Monday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_monday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691244,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_tuesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5359ae42aaef47628647352704d15ec6\",\"labels\":[],\"modified_at\":1752106041.669071,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Tuesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_tuesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691842,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_wednesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edd1e6010cbe67594ea1ee82924f6f8c\",\"labels\":[],\"modified_at\":1752106041.669369,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Wednesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_wednesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.692443,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_thursday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4472ffa505c8f15ca6ab865630355d4\",\"labels\":[],\"modified_at\":1752106041.669655,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Thursday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_thursday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693014,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_friday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1be9033a6ff2cb2f995d8ef74c0afa5b\",\"labels\":[],\"modified_at\":1752106041.669939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Friday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_friday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693609,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_saturday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4abfd9b07e0f49d65f187324b9feddd\",\"labels\":[],\"modified_at\":1752106041.670226,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Saturday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_saturday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.694193,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_sunday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4357c7a7797385e7b9355358ded32f94\",\"labels\":[],\"modified_at\":1752106041.670505,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Sunday", + "offset_ms": 172 + }, + { + "direction": "recv", + "type": "text", + "payload": " Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_sunday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.69484,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.front_program_use_weather\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5914f46ad2cfb68aad3c6706cb684a8\",\"labels\":[],\"modified_at\":1752106041.670809,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Use Weather\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_use_weather_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.696024,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s01_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee933341e59eab4e1de01dfb380d57d4\",\"labels\":[],\"modified_at\":1732137663.696604,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S01 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.697116,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_lawn_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27734f41473d59fab6ac03f37eb7bfb8\",\"labels\":[],\"modified_at\":1732137663.697653,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Lawn Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.698106,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s03_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cddda4b9abd4a2112b5d386fb355d349\",\"labels\":[],\"modified_at\":1732137663.698787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S03 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.699266,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aebefeb6ed4d1b726994cfd307f4cd2a\",\"labels\":[],\"modified_at\":1732137663.699922,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Flower Bed Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.700567,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s05_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1b9b1f74a2038ccf2d6ada0f37c6fa\",\"labels\":[],\"modified_at\":1732137663.701324,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S05 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.702531,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.", + "offset_ms": 179 + }, + { + "direction": "recv", + "type": "text", + "payload": "s06_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2dd24c218d32a94dd0335de195f7f2d2\",\"labels\":[],\"modified_at\":1732137663.70317,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S06 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.703647,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s07_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d911d53c2592a07306a7b6b3b3fa66\",\"labels\":[],\"modified_at\":1732137663.704181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S07 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.704672,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s08_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"35c35dbbf2e3f45e3f06fa1dbae6b749\",\"labels\":[],\"modified_at\":1732137663.705194,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S08 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.706649,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"text.front_program_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37e6efeffb3cda3c638bab8e88d2538f\",\"labels\":[],\"modified_at\":1752106041.673929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Name\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_text_program_name_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.709345,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"time.front_start_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3218db77bd10bc723c7584475171ab4f\",\"labels\":[],\"modified_at\":1752106041.675042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.71041,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start1_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd2cee6ac188f1157bc1dabe9135722f\",\"labels\":[],\"modified_at\":1752106041.67576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start1_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711008,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start2_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8099b78938edadefa49d3f10af5d3a33\",\"labels\":[],\"modified_at\":1752106041.67606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start2_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711572,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start3_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"960046c7225148a4e2e04959c16b02f6\",\"labels\":[],\"modified_at\":1752106041.676347,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start3_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.982321,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"176bdb7963a4d2e8e0993dd991c2d61a\",\"labels\":[],\"modified_at\":1732138416.983212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.73.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.983825,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3830b7b3aafeadc0f0a4a4cafdbba3c7\",\"labels\":[],\"modified_at\":1732138416.984423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.73.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.984956,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a40c07eeee574d0a58ea7e537b5dddb\",\"labels\":[],\"modified_at\":1732138416.985133,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.985534,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2445fa8e4bd61ebde86370bc8523e1\",\"labels\":[],\"modified_at\":1732138416.985692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986061,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f41c04d85d79bf9677d75b8c16c04b\",\"labels\":[],\"modified_at\":1732138416.986233,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986748,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"194631aec7814b1c0eeba1cf4e786d0a\",\"labels\":[],\"modified_at\":1732138416.986932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.98735,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae9b1ef37b45bab86290b6d49def769b\",\"labels\":[],\"modified_at\":1732138416.988081,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.73.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.988538,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98007b9b486441a51a5279bb7fed6b8a\",\"labels\":[],\"modified_at\":1732138416.988715,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.73.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.989091,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49dc7f599fdd1f2027fe2bcf95006dff\",\"labels\":[],\"modified_at\":1768937324.663851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.73.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.990462,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33557f07cdf75bc2412ad0a885c0bc44\",\"labels\":[],\"modified_at\":1732138416.991131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.73.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.790002,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72e8b62740080ea3f946f208f1fb7bc7\",\"labels\":[],\"modified_at\":1768937324.779845,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.791422,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d04acf192d2fd0fc6179ab20b4104f4\",\"labels\":[],\"modified_at\":1732138423.792057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.792664,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f328919b5fbd52d7e3554c431eaecda5\",\"labels\":[],\"modified_at\":1732138423.793293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.793874,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57f5ea17ee03c8aef502d38ef8bd6b1b\",\"labels\":[],\"modified_at\":1732138423.794042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.79457,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd876b6092259cb5ead6b986d88ee635\",\"labels\":[],\"modified_at\":1732138423.794748,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.795911,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555c9ad71f1f7fdd6ee1463b6969d21\",\"labels\":[],\"modified_at\":1732138423.796098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.796629,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec00430092b4eeab0664d84f21df0171\",\"labels\":[],\"modified_at\":1732138423.796797,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797307,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88dc5c6dce5ae4332a1d45a4f0cc4c99\",\"labels\":[],\"modified_at\":1732138423.797468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797983,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ac88bfe9cceaa214b06d93c173a4837\",\"labels\":[],\"modified_at\":1732138423.798146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.798681,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc6960dcb05013fd42b9c69458102c16\",\"labels\":[],\"modified_at\":1732138423.798846,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.799334,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07a1c78242bf060670017b91e7d94d35\",\"labels\":[],\"modified_at\":1732138423.799489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.800068,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"043056745e8987e49706de0b21d04793\",\"labels\":[],\"modified_at\":1732138423.800234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.804869,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"daf1f79fbd90cabfc5a34ad780956cdb\",\"labels\":[],\"modified_at\":1732138423.805095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.806501,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbb8694e79a2ad14cb64c8f8e5d47a2f\",\"labels\":[],\"modified_at\":1732138423.80718,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.807718,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7424d3a9e7da60ac2ba9d4adfd79a18\",\"labels\":[],\"modified_at\":1732138423.808298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.808844,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24c0c8ec26f7f4075cd8e45ffcde07a1\",\"labels\":[],\"modified_at\":1732138423.809401,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.809877,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22bf5cdc43c8ee4de64819afa890cc68\",\"labels\":[],\"modified_at\":1732138423.811783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.812418,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8312156799f26c4fd9c0c0e868d613df\",\"labels\":[],\"modified_at\":1732138423.81303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.81356,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cde146585342c60fa01d113994424977\",\"labels\":[],\"modified_at\":1732138423.814241,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.816756,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a15df092ba0c6a7154348a4898157ad4\",\"labels\":[],\"modified_at\":1732138423.817406,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.618014,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416b91acfddf3047384e7ee2ae08296c\",\"labels\":[],\"modified_at\":1732138684.618664,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.75.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.619114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22ca26c888e4f320444bfe76a2069291\",\"labels\":[],\"modified_at\":1732138684.619621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.75.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620099,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3617768155b9135fc6e5f44b7e21189c\",\"labels\":[],\"modified_at\":1732138684.620274,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620594,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"118bc1f4edbe3b8896b0d0a6751133e3\",\"labels\":[],\"modified_at\":1732138684.620752,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.621063,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c365245a707d6329e913801bd91ca5d1\",\"labels\":[],\"modified_at\":1732138684.621225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.62154,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75eb84dd5f8d9bc95ca286dc1eeca79d\",\"labels\":[],\"modified_at\":1732138684.621706,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"", + "offset_ms": 187 + }, + { + "direction": "recv", + "type": "text", + "payload": "Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622015,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2777138368a9abe7f9f042f0023f48b\",\"labels\":[],\"modified_at\":1732138684.622179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.75.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622502,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c57670c418667c196d39dca2483a5d14\",\"labels\":[],\"modified_at\":1732138684.622961,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.75.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.623544,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15d78da0a4398cd66194710995979ef2\",\"labels\":[],\"modified_at\":1768937324.668105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.75.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.624153,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b3ad094b6fb47d54160dc27a2402c7a\",\"labels\":[],\"modified_at\":1732138684.624744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.75.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.636665,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fa00abf3918f8fac60b707bed85cdd7\",\"labels\":[],\"modified_at\":1732138695.636933,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.637438,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa0f8a73745bfcdc301019929f9f395\",\"labels\":[],\"modified_at\":1732138695.637612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.63806,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4687608966a4d41618657f50e8d41a50\",\"labels\":[],\"modified_at\":1732138695.638228,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.638762,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfafac5c6126794a57742fe36400fea6\",\"labels\":[],\"modified_at\":1732138695.638934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.639408,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03f80773d857d3dacb7fd5e038bb1f31\",\"labels\":[],\"modified_at\":1732138695.639583,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640039,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a365309305395eecd9b2293a9b2ed220\",\"labels\":[],\"modified_at\":1732138695.640208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640663,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e34194de8abc885606521034b1889ed\",\"labels\":[],\"modified_at\":1732138695.640834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.641306,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_motion_untrigger_send_basic_cmd\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99cf610a23717a99dbfe052a0bb6ea34\",\"labels\":[],\"modified_at\":1775549231.59514,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ared\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.64198,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_configuration_param_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b0ce3efe64c82a980bac45f2c10a14\",\"labels\":[],\"modified_at\":1775549231.595476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Settings Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-254\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.642575,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df497c8d1113a36c54c4db878e0fca8b\",\"labels\":[],\"modified_at\":1732138695.642925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.643371,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbfd1827b608ec30e50a2c8d9ac1738a\",\"labels\":[],\"modified_at\":1732138695.6439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.644367,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"067ff38baebfeba542fc2d93fd6d846b\",\"labels\":[],\"modified_at\":1732138695.64489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.645399,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d4d2fb65ea95c82c89912955ce2d74f\",\"labels\":[],\"modified_at\":1732138695.645909,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.646344,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a746d156e0579cb6a0c282ec8423459d\",\"labels\":[],\"modified_at\":1732138695.646873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.647407,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afe52a71944a7bce54e82309066779eb\",\"labels\":[],\"modified_at\":1732138695.648124,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.648719,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ccfe4098bf64d024b3a4280d44249f06\",\"labels\":[],\"modified_at\":1732138695.648905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.649411,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e4dca10b749b4af9b227c82fb79d73f\",\"labels\":[],\"modified_at\":1732138695.649587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.650062,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ea778c5ee2223334224e979796972\",\"labels\":[],\"modified_at\":1732138695.650629,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.65114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e84349c9c3f7be88ffdb3b431a0ba7\",\"labels\":[],\"modified_at\":1732138695.652399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.653016,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"714c36211355e8c6eed8b0f405f1af18\",\"labels\":[],\"modified_at\":1732138695.653613,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.654109,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7baadd3ceacdd507c216212cb3b87068\",\"labels\":[],\"modified_at\":1732138695.654668,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.655381,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4c051cf51f0348ae219dc014e260222e\",\"labels\":[],\"modified_at\":1732138695.655966,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732139452.718891,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed7dbfad7f175f21a652c7d0d3330d8b\",\"labels\":[],\"modified_at\":1732139538.777695,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1732174703.971423,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_lights_left_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"924db9892cc5519731a5c110545b3061\",\"labels\":[],\"modified_at\":1732174703.972284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Lights Left On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1732174695099\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.375013,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b816b35414f8bc2d381fc987e434b35f\",\"labels\":[],\"modified_at\":1733163448.545247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Connection state\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_connection_state_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.41395,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_restart_required\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61f46e69a48027efacc7d58134f627a3\",\"labels\":[],\"modified_at\":1733163448.547781,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart required\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_required_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.45896,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bfd3f57c36e237bbb9ad6afb80870b6\",\"labels\":[],\"modified_at\":1733163448.551286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.504733,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba7340b4cbd21643896dea7f309921f9\",\"labels\":[],\"modified_at\":1733163448.643092,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Log level\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_log_level_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.548301,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25f4a31cb1ccecc4e9469f5ea9cc3e0e\",\"labels\":[],\"modified_at\":1733163448.646729,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.593799,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_coordinator_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b842f63a9b81e3a2af0ef251ecf7ab4\",\"labels\":[],\"modified_at\":1733163448.649525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Coordinator version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_coordinator_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.644285,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_network_map\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12df011646a6b17600d15ab9fa6fe99c\",\"labels\":[],\"modified_at\":1733163448.653364,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Network map\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_network_map_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.690207,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aca42208b299223d614f58e3feb2c840\",\"labels\":[],\"modified_at\":1733163448.656796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Permit join timeout\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_timeout_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.783081,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b33f74080c92f71e53d49d2fc60e406\",\"labels\":[],\"modified_at\":1733163448.659761,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.829562,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e381ec7dcd1341f5776bd0a2886f9209\",\"labels\":[],\"modified_at\":1733163448.662249,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.873645,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a31d7d3cbcf76b4365c2756f2418ca31\",\"labels\":[],\"modified_at\":1733163448.665131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action angle\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_angle_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.917858,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_device_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a754f3acf910cd43563ed2676eedb040\",\"labels\":[],\"modified_at\":1768937325.657919,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_device_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.961537,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_power_outage_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb5cc9dfece2a14128321a8c8ba0044c\",\"labels\":[],\"modified_at\":1733163448.672203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power outage count\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_power_outage_count_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.00603,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_from_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9624c92d6b8366ef9cd1804493185dab\",\"labels\":[],\"modified_at\":1733163448.674787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action from side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_from_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.049561,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac02738c9db3", + "offset_ms": 195 + }, + { + "direction": "recv", + "type": "text", + "payload": "275fac7690e531555c11\",\"labels\":[],\"modified_at\":1733163448.67793,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.093516,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_to_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c008909747cd28dd536a03d115d711a\",\"labels\":[],\"modified_at\":1733163448.680929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action to side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_to_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.137499,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0e64fef54c101ab96c4081bad5a2ad8\",\"labels\":[],\"modified_at\":1733163448.683803,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.225948,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a932bc8c951ba62827fe0f990e2702db\",\"labels\":[],\"modified_at\":1733163448.686366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.313491,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_desk_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a28d2af38fd6ac7279788810b8f4d7\",\"labels\":[],\"modified_at\":1733163448.688208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.405348,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_cabinet_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f0bb80add1fa704cc495207b3f5d194\",\"labels\":[],\"modified_at\":1733163448.691535,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.740788,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df49492914ec67f302e0b6a69c122293\",\"labels\":[],\"modified_at\":1733163448.695336,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Permit join\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.27003,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_desk_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e62b257bc1586c7d6f6c0d9757293a\",\"labels\":[],\"modified_at\":1733163448.698409,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.357407,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_cabinet_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81a443a3981f42bf8049cb72eb3726f2\",\"labels\":[],\"modified_at\":1733163448.70122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1733166139.84886,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_z2mqtt\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad1ef16f58ed42f31138cf882cbd1923\",\"labels\":[],\"modified_at\":1733166139.849744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Z2MQTT\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1733166130068\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733166143.681489,\"device_id\":\"c4e6de4e26e939f7d433bf6d0a56df00\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.desk_cube_last_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42f966c6395b8ea360e7aa399ca72b13\",\"labels\":[],\"modified_at\":1733166143.682204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"last side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"desk_cube-e600b772e2d38b5b159093786d5bf1b2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.273786,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.thermostat_temperature_display_units\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3f00ecf5048b3f9e64a704e2ca9d92e0\",\"labels\":[],\"modified_at\":1733470323.274554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Temperature Display Units\",\"platform\":\"homekit_controller\",\"translation_key\":\"temperature_display_units\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.275631,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.thermostat_current_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6a708b72d19d3425a4bffde4773acf9\",\"labels\":[],\"modified_at\":1733470323.276196,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Current Mode\",\"platform\":\"homekit_controller\",\"translation_key\":\"ecobee_mode\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.276884,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"02eb281ddab89f579541da3c48364480\",\"labels\":[],\"modified_at\":1768937330.226836,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Thermostat Current Temperature\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.277912,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_humidity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aada76d6b800aa198307edc8f2f94b49\",\"labels\":[],\"modified_at\":1733470323.278441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Current Humidity\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.279066,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a34e9a572df91bb7a2bea56b6c7befc\",\"labels\":[],\"modified_at\":1733470323.279596,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Motion\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_56\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.280059,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a53e234c9a95713683719a42f1f7d16\",\"labels\":[],\"modified_at\":1733470323.280586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Occupancy\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_57\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.281426,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1dc2c5f590596a957c5d442d276f9551\",\"labels\":[],\"modified_at\":1775463025.83871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.282857,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.thermostat_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea789899d09226775d0daa530027b9d\",\"labels\":[],\"modified_at\":1733470323.283385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_1_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.28388,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.thermostat_clear_hold\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f25cd194cab996c6b0d11611f99101c\",\"labels\":[],\"modified_at\":1733470323.28457,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Clear Hold\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_48\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.854459,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0990beda4adbced67f9da8fbf14a5734\",\"labels\":[],\"modified_at\":1733904292.858855,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.892119,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e84579ecf7f13526a23c78731d3755\",\"labels\":[],\"modified_at\":1733904292.895779,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":1736319447.525713,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b9ac173954a17489fd6438677e48e78\",\"labels\":[],\"modified_at\":1741148806.093313,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Compressor minimum temperature\",\"platform\":\"ecobee\",\"translation_key\":\"compressor_protection_min_temp\",\"unique_id\":\"511883021980_compressor_protection_min_temp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.905972,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f04cd994bf4a7ca806e873689f0a05\",\"labels\":[],\"modified_at\":1736320519.906751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.79.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.907344,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e78e8aa7ecee5b3adb88cf6760e660\",\"labels\":[],\"modified_at\":1736320519.907957,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.79.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.908601,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aed21f201e4e9e49dc6e2fbfa6b269f\",\"labels\":[],\"modified_at\":1736320519.908898,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909112,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11d59ab7cf13cb711f9f6aa4d904b40f\",\"labels\":[],\"modified_at\":1736320519.909248,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909421,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea3a75a361da66c42a17ab240ac6619\",\"labels\":[],\"modified_at\":1736320519.909546,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909714,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9098616b205b24cbad4a88c83997e963\",\"labels\":[],\"modified_at\":1736320519.909949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.910119,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519aa11c201477c7828a3bc98fd1133d\",\"labels\":[],\"modified_at\":1736320519.910246,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.79.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911034,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bec59707ccd7dc529a90b1f098e5463\",\"labels\":[],\"modified_at\":1736320519.911218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.79.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911435,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef05212c0e42c4bfe401b3c4a440be4b\",\"labels\":[],\"modified_at\":1768937324.673569,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.79.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911768,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e515cf0760d43f4a81b2b3979145422\",\"labels\":[],\"modified_at\":1736320519.912168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.79.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.889798,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03c6b2e96c8518f922c1f7976a43224f\",\"labels\":[],\"modified_at\":1736320523.890247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.890604,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cfadce8334aa142551bb0271cb3a332f\",\"labels\":[],\"modified_at\":1736320523.890983,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891298,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e97ff3d04362f3398435b9c09280c19\",\"labels\":[],\"modified_at\":1736320523.891644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891976,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1be6ea19b6705198c44062cd8c886913\",\"labels\":[],\"modified_at\":1736320523.892111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892381,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1163e30b6367ba70cdb0bbe818bd86a\",\"labels\":[],\"modified_at\":1736320523.89251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED I", + "offset_ms": 206 + }, + { + "direction": "recv", + "type": "text", + "payload": "ndicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892784,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003c87cfb9a0c7a08e1e6a9413bb72be\",\"labels\":[],\"modified_at\":1736320523.892915,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893181,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a74f8edd31d0d23fcb5d7911f5de558e\",\"labels\":[],\"modified_at\":1736320523.893314,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893609,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd4b36349b64e4afb0efbd8cae27ceb1\",\"labels\":[],\"modified_at\":1736320523.893743,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894017,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dce04321343b8f8650a1638e540c066\",\"labels\":[],\"modified_at\":1736320523.894147,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894415,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a26041ffe1d767c1eb6d43d5eaa1062\",\"labels\":[],\"modified_at\":1736320523.894549,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895246,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"335173b1290e32b28674d76b3139a7e3\",\"labels\":[],\"modified_at\":1736320523.895405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895685,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b023c61c1897b503e351ab61f1397b60\",\"labels\":[],\"modified_at\":1736320523.895824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896095,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18346fff64001fa0e036649a9ce026a3\",\"labels\":[],\"modified_at\":1736320523.896229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896493,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c84119a15d609af8e002b03a3113d945\",\"labels\":[],\"modified_at\":1736320523.896637,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896904,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be85935d305056837922385a2d2166d\",\"labels\":[],\"modified_at\":1736320523.897033,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897297,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba44272b6f19db495f0bad8e04150bdf\",\"labels\":[],\"modified_at\":1736320523.897427,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897689,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60c44e307fd48158ef5a870f6e1ea15f\",\"labels\":[],\"modified_at\":1736320523.897823,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898087,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"779e519eb982bf17eafbb4185d8a5538\",\"labels\":[],\"modified_at\":1736320523.898218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898501,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param017\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13eb4a7de3ff753f4f4551bb6b34c3fc\",\"labels\":[],\"modified_at\":1736320523.898633,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param017\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898906,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param018\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2aade9b24c3cf098837c05f198a84196\",\"labels\":[],\"modified_at\":1736320523.899034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param018\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.899325,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a75845967c301f447fdadd705ccd7bb\",\"labels\":[],\"modified_at\":1736320523.899681,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.900013,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cce3b69f3c06d161dec626b5790ce5b3\",\"labels\":[],\"modified_at\":1736320523.900352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.901702,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e73cbc35e18958125287a74471c3a7\",\"labels\":[],\"modified_at\":1736320523.902118,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c40ab8344787dc7d21e29d547af9168\",\"labels\":[],\"modified_at\":1736353596.37888,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"config_subentry_id\":null,\"created_at\":1736353647.022559,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9b5fcaa227f65f8d411267b0c87e17c\",\"labels\":[],\"modified_at\":1736353647.026856,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Garage Motion\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354201.335657,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9b4fba2f11f641562e2a0cf02f5193a8\",\"labels\":[],\"modified_at\":1736354201.33641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354191063\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354274.958347,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"830666f260932ede8c27eb30fa0f2acd\",\"labels\":[],\"modified_at\":1736354274.959061,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354261558\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356766.764731,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f39e4da6bae1a1fb17133e0994052d7\",\"labels\":[],\"modified_at\":1736356766.76768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"1e0e99c393cebaf6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.582007,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a426428dce7d3a5ad82a464d6c13626\",\"labels\":[],\"modified_at\":1736356803.582649,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.882889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"109baa4874d527c5dce0fa51e7ec766e\",\"labels\":[],\"modified_at\":1736356803.883446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.157783,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18486e2eea948c77d599307cb1afac40\",\"labels\":[],\"modified_at\":1736356804.158354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.504037,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8b32e5fb84db954de2baea306396bcdf\",\"labels\":[],\"modified_at\":1736356804.504525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.770611,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7076de51a9429320f8f79a3b02daee09\",\"labels\":[],\"modified_at\":1736356804.771166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.094326,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0957b1480c95f751131df14c11de93e7\",\"labels\":[],\"modified_at\":1736356805.094874,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.332161,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b9d7f3508915fa3d10cc3763c4c732b\",\"labels\":[],\"modified_at\":1736356805.332734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.632478,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"654a35e29ec254b14f7342b941c57ebc\",\"labels\":[],\"modified_at\":1736356805.905853,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.134424,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ab3ad53acb2fb31265c2beaf81a787\",\"labels\":[],\"modified_at\":1736356806.223628,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.408371,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4a6ac60b8a79e875715714e9d98b53\",\"labels\":[],\"modified_at\":1736356806.65203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.77282,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9a1414d4439efae40503ca6f2d0de1c1\",\"labels\":[],\"modified_at\":1736356806.918576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.0732,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad998071e0851fcdac692503e773cad\",\"labels\":[],\"modified_at\":1736356807.073755,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.47584,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d14678412ea3738987ba070e0d1dc47\",\"labels\":[],\"modified_at\":1736356807.476394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.789064,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b94f06998a4a37f7fa272ebb5d4a82\",\"labels\":[],\"modified_at\":1736356807.792482,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.131893,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3de7df881a6322e0971ccea176dddd43\",\"labels\":[],\"modified_at\":1736356808.132439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.44137,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0585654f850aa6c80809d8159b522c\",\"labels\":[],\"modified_at\":1736356808.441885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.789329,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"14f7490f06cca0ba2fd96f2482289589\",\"labels\":[],\"modified_at\":1736356808.789536,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.075127,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"157241e5f848a341290b22d44b2c6cc3\",\"labels\":[],\"modified_at\":1736356809.075701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.53918,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e11a13791aa5e28f584841a514467af6\",\"labels\":[],\"modified_at\":1736356809.539734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.885361,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b318f00270d6a9b45165c6e5a44f637\",\"labels\":[],\"modified_at\":1736356809.885939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.259692,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52087a4595d9da9fbde6eea04ad63196\",\"labels\":[],\"modified_at\":1736356810.260095,\"", + "offset_ms": 227 + }, + { + "direction": "recv", + "type": "text", + "payload": "name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.533183,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fee843fda76fc8d65a653091ced38e8\",\"labels\":[],\"modified_at\":1736356810.533737,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.955986,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11f9a4558ce5421169edbeb2e555d5cd\",\"labels\":[],\"modified_at\":1736356810.956558,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.034081,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be48034f51cdaff9ee7e90fe0fef9d98\",\"labels\":[],\"modified_at\":1772683905.232172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.297521,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0819605111bcbcd4f7e39d21c88a07\",\"labels\":[],\"modified_at\":1772683905.835153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.540434,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e47ff59093cdd8c4b107074e038dcb3c\",\"labels\":[],\"modified_at\":1736399063.500589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.909769,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46db01c2adedfbe43630a5f6dccc6a99\",\"labels\":[],\"modified_at\":1745524780.005163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359657.453126,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3c001f67d93fb5258ae48c47210beb2\",\"labels\":[],\"modified_at\":1736399064.263031,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.581695,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ead35b09a45c83eee2915b09e240cf5\",\"labels\":[],\"modified_at\":1736399064.531165,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.882863,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"297937f666f3e5a757b1165cbc567ea3\",\"labels\":[],\"modified_at\":1736399064.803276,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.137825,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6389ef9fa7957cc4e8fd6626ea88768\",\"labels\":[],\"modified_at\":1736399065.081707,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.363443,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bedtime_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7af1d7a08626154d89c6fe3bcff2049a\",\"labels\":[],\"modified_at\":1736359659.36398,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bedtime mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bedtime_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.625494,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4b1ce8d630d3c1139af9939d53abb39\",\"labels\":[],\"modified_at\":1736359659.626054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.876657,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2de0b22a75bc9020376fa995d4f55f\",\"labels\":[],\"modified_at\":1736359659.877219,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.132724,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27be5d92b8d529284e3b279099754ea2\",\"labels\":[],\"modified_at\":1736399067.294751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.376811,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0d40b3310f8c0e746ca68a5444b0d1b\",\"labels\":[],\"modified_at\":1736399068.107397,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.60476,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d8083b32c92d976e8df45388ba480189\",\"labels\":[],\"modified_at\":1736359660.605316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359661.793629,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adaa4c83bc9bca3d19a9af0ec81a8eea\",\"labels\":[],\"modified_at\":1736399795.169023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.177957,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53eb4bdb941f55dbbd581722fbf5fcfa\",\"labels\":[],\"modified_at\":1736359662.178469,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.645451,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01129317545bbe3d974404fc7b754d4f\",\"labels\":[],\"modified_at\":1736359662.64603,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359663.612969,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41d3cf71221566d53676a59927079525\",\"labels\":[],\"modified_at\":1736399795.946725,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.24639,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9dc6b7eb95805f4edcd634365fed345\",\"labels\":[],\"modified_at\":1736359664.246953,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.510519,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7cb0a33d907765f791a568845f3ca99\",\"labels\":[],\"modified_at\":1736359664.51107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359665.204889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23e948de201d1840aef0bcac3f026dcc\",\"labels\":[],\"modified_at\":1736359665.205434,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359666.440523,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5707e58d3dc6e2aac0394c2fcb3b7819\",\"labels\":[],\"modified_at\":1736359666.441115,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359667.195641,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"814ba5368dd8ce19d270c59f3aa70d95\",\"labels\":[],\"modified_at\":1736359667.196212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359668.184418,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d79100a0ce88a95bb3508f92917c50e\",\"labels\":[],\"modified_at\":1736399797.665211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359669.14242,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09a91b37c035dc8468fb33c46d22b688\",\"labels\":[],\"modified_at\":1736399798.122323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.04832,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d6892d2d211d5450673f97825289382\",\"labels\":[],\"modified_at\":1736399798.705635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.992047,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"013180467fa74f25bf8aeac4685c0bb6\",\"labels\":[],\"modified_at\":1736399799.392385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359671.938631,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"beb1135710edcf430ee9c09b403bb4f5\",\"labels\":[],\"modified_at\":1736399799.790352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359672.866807,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6230302d762bf3ab79d12409c1231bbf\",\"labels\":[],\"modified_at\":1736399800.787298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359673.78006,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8be95f5af00e6d22af4f2e5ac47c6fdf\",\"labels\":[],\"modified_at\":1736399801.429003,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359674.698165,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72b59c954d688b0c5d56dc7515ecb8fe\",\"labels\":[],\"modified_at\":1736399802.363037,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359675.62217,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42c8a56ab854162a1745cb4a09dbdb4f\",\"labels\":[],\"modified_at\":1736399803.362446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359676.543017,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e317baaf0f76275291f5c2d076ee5e5\",\"labels\":[],\"modified_at\":1736359676.543581,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359677.44848,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"273ecd3a847f25375673692d0e17e105\",\"labels\":[],\"modified_at\":1736399805.439232,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359678.422497,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40b84792dccc1ab0c45ddb0dd47ace3f\",\"labels\":[],\"modified_at\":1736359678.423076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359679.312512,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7048d27edebd7601ca231221f6b27f69\",\"labels\":[],\"modified_at\":1736399807.564816,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359680.283382,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1743057c6757d698d0d65799731be65b\",\"labels\":[],\"modified_at\":1736359680.283927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359681.140505,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_on_body_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b75d2c31d19e391f5d178240a6c0209e\",\"labels\":[],\"modified_at\":1736359681.141105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 On body sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_on_body\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.090116,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2dead3b819e75b6b5211443a5ac78f4\",\"labels\":[],\"modified_at\":1736359682.090675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.9708,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34c63b944355c9e51b84ba3f6b774b6e\",\"labels\":[],\"modified_at\":1736359682.971298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359683.958379,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a7bf80c63ca3bee1b4879fb6b1ba99d\",\"labels\":[],\"modified_at\":1736359683.958927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359684.857759,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47ce2137b53c5b8f6d94331b3e025002\",\"labels\":[],\"modified_at\":1763328460.580366,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359685.654766,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ef2b4cd3a27c1b0051ac47549a23b72\",\"labels\":[],\"modified_at\":1736359685.655329,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359686.705391,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0a92448dcdd542b9e3e8a75fe04559a9\",\"labels\":[],\"modified_at\":1736359686.705956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Internal storage\",\"", + "offset_ms": 234 + }, + { + "direction": "recv", + "type": "text", + "payload": "platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359687.625097,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ab731ae8b74fd38f20f4fb6c43506c5\",\"labels\":[],\"modified_at\":1736359687.625639,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359688.516154,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_theater_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"703096c37b80a7d5fa418e41d4f81c31\",\"labels\":[],\"modified_at\":1736359688.516736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Theater mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_theater_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359689.529591,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b843d7d77fd0e55c1b9dbc9bcbc183f\",\"labels\":[],\"modified_at\":1736359689.530093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.333626,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab5205e7d9e3858de62ea0bb4794194c\",\"labels\":[],\"modified_at\":1736359690.334183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.652265,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fad870f9abcfa3727367793912e2f758\",\"labels\":[],\"modified_at\":1736359690.652862,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359691.299905,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wet_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6912d4a233b925946eb92a607354856e\",\"labels\":[],\"modified_at\":1736359691.300455,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wet mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wet_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359692.209767,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_activity_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6c82536cb995ebbba982c2ab021ced8\",\"labels\":[],\"modified_at\":1736399825.35309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Activity state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_activity_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359693.154691,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39a8afb6f701ab75cfc7fdb255e13a6f\",\"labels\":[],\"modified_at\":1736359693.155251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_floors\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359694.058948,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ff694331b621b1f0fda4e48e8bbcc53\",\"labels\":[],\"modified_at\":1736399827.024194,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.003274,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_calories\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d9e973ac42cfc50c48e30ad90288748\",\"labels\":[],\"modified_at\":1736399827.952805,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily calories\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_calories\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.81776,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2e45bb02534ec3078c8e0eea4344ca\",\"labels\":[],\"modified_at\":1736359695.818316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.856213,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e71d567db688d94b4e0e0f224fb9ce28\",\"labels\":[],\"modified_at\":1736803158.868554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.887145,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20c1bb2e7c3adbd94bfdfbdf8b652b8d\",\"labels\":[],\"modified_at\":1736803158.895143,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.925194,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"139f6cd0dd468aa9019150651d43f434\",\"labels\":[],\"modified_at\":1736803158.934833,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.958586,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d27e6bddb02baaf8770ba59450229223\",\"labels\":[],\"modified_at\":1736803158.959123,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.000035,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adad2dae764b1b4c5e4f1b8615f7c6ec\",\"labels\":[],\"modified_at\":1736803159.000571,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.020193,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"130892cbc52a3a5d41acf63fc52264a7\",\"labels\":[],\"modified_at\":1736803159.045045,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.05282,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4df84fa332afe1a1ba6e2afbe3e0c538\",\"labels\":[],\"modified_at\":1736803159.053349,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1737067561.611876,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_sensor_2_sensor_state_co2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bddd6f808427ba2a97adca93c8768213\",\"labels\":[],\"modified_at\":1737067561.612126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sensor state (CO2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-CO2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1740257490.056992,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de2bdae5c394ce75a2e72d945fd67d78\",\"labels\":[],\"modified_at\":1740257490.057769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Solar ECU Unavailable\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1740257477923\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.753328,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.under_cabinet_lighting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47a17625819d6de9a9a5a9fcb068dfd3\",\"labels\":[],\"modified_at\":1742764374.448547,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_light_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.742879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.under_cabinet_lighting_effect\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f83446880146584e49ffe7ca9d992136\",\"labels\":[],\"modified_at\":1742764374.450385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Effect\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_effect_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.780879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbc2aaaed253d3bbe2c0ea5e8596772d\",\"labels\":[],\"modified_at\":1742764374.496804,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Do not disturb\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_switch_do_not_disturb_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.829072,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.under_cabinet_lighting_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb2a38c1e988902be72a7518cea08f79\",\"labels\":[],\"modified_at\":1742764374.541366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467771.203002,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ef0cd9a1858bc9149e47113717459b5\",\"labels\":[],\"modified_at\":1745467771.203562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.019608,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9411a9c653ef38ea742ed08dc2a31067\",\"labels\":[],\"modified_at\":1745467772.03278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.047222,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37f7acf271e127f4e49d357bb0c5bb68\",\"labels\":[],\"modified_at\":1745467772.060087,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.227616,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc0faadddf515e78993cb2525101a9e9\",\"labels\":[],\"modified_at\":1745467772.228166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.295831,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2710c8eb328c4a060bfab6e1a34674fb\",\"labels\":[],\"modified_at\":1745467772.313176,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.391191,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7cc10320bf0eac221b1bbe0e37984f\",\"labels\":[],\"modified_at\":1745467772.408751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1745524781.207297,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"545c407bdcb5d35ec63d78f7a8878b00\",\"labels\":[],\"modified_at\":1745524781.207876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1745542172.503223,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18e492ba2733085e4e9f4ff0a5428df0\",\"labels\":[],\"modified_at\":1745542172.50526,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CO2 Alarm unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-CO2 Alarm-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.46243,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"747f703192d22d8ec8759bc94a1fce76\",\"labels\":[],\"modified_at\":1748219109.463014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.640996,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5198dc56db91ba7df5b10c7a015e581\",\"labels\":[],\"modified_at\":1748219109.655051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.685402,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb41fd2f446a5f8881e816b46c3f8feb\",\"labels\":[],\"modified_at\":1748219109.685973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.721723,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3d0012049fbeda8166b02790dc37b92\",\"labels\":[],\"modified_at\":1748219109.722298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.757491,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eba82b80d5619332290deb4a3efb5c84\",\"labels\":[],\"modified_at\":1748219109.758093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.785413,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5e763389817f6ec085e23be56ee54f5\",\"labels\":[],\"modified_at\":1748219109.792204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWP", + "offset_ms": 242 + }, + { + "direction": "recv", + "type": "text", + "payload": "QBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.110811,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee83713b4ec50e5a22b0f247fa5bc1c5\",\"labels\":[],\"modified_at\":1749590887.112776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.113208,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa86888ae5a955cc2ca0fb3ce1559700\",\"labels\":[],\"modified_at\":1749590887.11367,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.114151,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_shower\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"244d25b21371ef06dfbe70c38a8e3a27\",\"labels\":[],\"modified_at\":1749590887.11467,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.11557,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_shower_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"197264aec52c5bb54e81ebf28f841d6d\",\"labels\":[],\"modified_at\":1749590887.115711,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:82:fb:6a_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.694619,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"217b95c6b680c1836cdf60eb9da2f503\",\"labels\":[],\"modified_at\":1749590895.696348,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.697451,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003565fb8b8be878769578dc74c69752\",\"labels\":[],\"modified_at\":1749590895.699001,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.701685,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.matter_bath_toilet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a965f5cf56792192cef7e0ab7b9a31a7\",\"labels\":[],\"modified_at\":1749590895.703552,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.708213,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.matter_bath_toilet_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84160aed320a4e66dd6c9ad44039bd9b\",\"labels\":[],\"modified_at\":1749590895.708736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:83:1f:53_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"config_subentry_id\":null,\"created_at\":1750061075.141771,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49204eb2a92de917a9e42ff6f8f588f5\",\"labels\":[],\"modified_at\":1775870416.949195,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Master Bath Lights \",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180319,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_param027\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ea8e9374eae954b3bbd8d18020ca120\",\"labels\":[],\"modified_at\":1752102847.180555,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param027\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180971,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_separate_inputs_from_outputs\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca290e9cdd8d4d5d6b3073329b06547b\",\"labels\":[],\"modified_at\":1775490675.663286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Input Trigger\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.1822,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fb5086cf8fcc21f5e28d90e0db54c78\",\"labels\":[],\"modified_at\":1775490675.663838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"config_subentry_id\":null,\"created_at\":1759378690.394779,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"calendar.maya_school\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cca23ca8717983fe71c89426ca56c7b5\",\"labels\":[],\"modified_at\":1759378690.395441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maya school\",\"platform\":\"local_calendar\",\"translation_key\":null,\"unique_id\":\"01K6HJ8M54G71Y4477XK05AGBG\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386477.277947,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4097cd598a3a06c6f0daff8cad6ca79\",\"labels\":[],\"modified_at\":1759386477.279521,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1759386477130\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386507.028808,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be669aa5658d128e8ffcd6168710677f\",\"labels\":[],\"modified_at\":1759386579.806063,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387437.349538,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4820d645ddc7e05d31da79d542bdfe\",\"labels\":[],\"modified_at\":1759387437.351339,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"band day 2\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387072.988787,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_button.band_day_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3dc6766f5367c3f345af29958d10bc\",\"labels\":[],\"modified_at\":1768937321.234765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"collection\":{\"hash\":\"1b24d0ddf479ed85340a79f72c595317\"},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day 3\",\"platform\":\"input_button\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498155.515729,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_phone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c3949e0a3c86ebd635f939b4da67b68\",\"labels\":[],\"modified_at\":1760976737.49654,\"name\":\"Adam Phone\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"51e12b25d85b4b1e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.63507,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b25ffeb9832412e4729bc9a3554e791\",\"labels\":[],\"modified_at\":1774279284.833829,\"name\":\"Adam Phone Battery level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.848698,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bceafcf813f3d0c7f5875af49aa7014c\",\"labels\":[],\"modified_at\":1772691190.431663,\"name\":\"Adam Phone Battery state\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.380282,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52a1a4199f6226c81e7a9e280bf8a5c2\",\"labels\":[],\"modified_at\":1772691194.336662,\"name\":\"Adam Phone Charger type\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.561785,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f78b5a31c1f1797cecc8021a4bc283c\",\"labels\":[],\"modified_at\":1763016724.667262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.150666,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"753010fef896a676a949100adf1a5df3\",\"labels\":[],\"modified_at\":1760976737.499635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.996611,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093bf4d5f49f15e5238231d70b093df3\",\"labels\":[],\"modified_at\":1760976737.502342,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.632604,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b21e81370aec744ff4cef9a8bf0ef00\",\"labels\":[],\"modified_at\":1760976737.502738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.837407,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7107aad5e9b8e1943301af2a059e93ea\",\"labels\":[],\"modified_at\":1760976737.503069,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.908791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47c1557ded81eebf8aa0a96ac63d2841\",\"labels\":[],\"modified_at\":1760976737.503394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.362775,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29de90a8bd56b781a47d398184b68cb6\",\"labels\":[],\"modified_at\":1760976737.503709,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.387797,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b09b3df0b3a9f47a8e6eb4bb0725a8d\",\"labels\":[],\"modified_at\":1761859609.313035,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.086212,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"06c5550926c6fdd6b5ff1b6d10511768\",\"labels\":[],\"modified_at\":1760976737.504334,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.677976,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e02d2deb740d7a31ec1ac86e66289584\",\"labels\":[],\"modified_at\":1760976737.504647,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.113948,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e6cfd871a0249cfa6fcfa5cb067c22a\",\"labels\":[],\"modified_at\":1760976737.504954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.052956,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23b032cf9074ee4d0ccd20a2c7b170a8\",\"labels\":[],\"modified_at\":1760976737.505278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.298484,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"511534407bbe94e987b4e6b18616dbd7\",\"labels\":[],\"modified_at\":1760976737.505582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.564591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"630126c44d79334d10daaac76b3e6da6\",\"labels\":[],\"modified_at\":1760976737.505883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.859128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54186ed87499f0363a7a795031ac8091\",\"labels\":[],\"modified_at\":1760976737.506183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.072203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c107fd5dd3a23152c737aeacfb93f12e\",\"labels\":[],\"modified_at\":1760976737.506487,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.114625,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fc30dd8af197aa5604097778df128b90\",\"labels\":[],\"modified_at\":1760976737.506796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.74326,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a99fecae7b35c0c91c2d87db9221d854\",\"labels\":[],\"modified_at\":1760976737.507", + "offset_ms": 249 + }, + { + "direction": "recv", + "type": "text", + "payload": "099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.11767,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa5f2c7ce053d4544cf8d6062e90490e\",\"labels\":[],\"modified_at\":1760976737.508044,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.804439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6473733425a0a0786d883979d5b4aa81\",\"labels\":[],\"modified_at\":1760976737.508353,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.173261,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_wi_fi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1794c62e4b88cb613114ae22f6763cc6\",\"labels\":[],\"modified_at\":1760976737.508622,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.044578,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42417c7948736cba9d2a5224ad710014\",\"labels\":[],\"modified_at\":1760976737.508885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.833075,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b941b110fe0ebe77e2578dbf0457db9a\",\"labels\":[],\"modified_at\":1760976737.509153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.523966,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"120365806cf1ad9034b62efe0f58c093\",\"labels\":[],\"modified_at\":1760976737.50941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.731496,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad43a289a78ae9decb7a8bb8636ec15b\",\"labels\":[],\"modified_at\":1760976737.509663,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.578065,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82b4fccab26e5f8d9dc5b863a430eabb\",\"labels\":[],\"modified_at\":1763016726.90644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.923363,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681210dd7cb2b664dfc7160e4b59f9e8\",\"labels\":[],\"modified_at\":1760976737.510166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.508973,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"76b86a4aaafcf69e892ab189d3a5a37d\",\"labels\":[],\"modified_at\":1760976737.51042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.354383,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1337823dd9fe63383689acfe28169998\",\"labels\":[],\"modified_at\":1763016726.688987,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.723152,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e043cb0b1e1d248cb65f41b026f07c34\",\"labels\":[],\"modified_at\":1760976737.510914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.143052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2be1edbc1804fca84d30e0ff2af37d3\",\"labels\":[],\"modified_at\":1763016727.38029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.53214,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f72f7f7a26dd97cc36f76faefadc3116\",\"labels\":[],\"modified_at\":1760976737.511404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.594056,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff782efae98210cfe14a22d3d01023bd\",\"labels\":[],\"modified_at\":1760976737.511651,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.047203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f003eadb014be21895e4c4dc182b09c1\",\"labels\":[],\"modified_at\":1760976737.511895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.846127,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9688273e8fc0f9d29c7fae09c089596d\",\"labels\":[],\"modified_at\":1760976737.512138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.422557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85a174f235fbda9b9cdd6ef97bdb64eb\",\"labels\":[],\"modified_at\":1760976737.512378,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.203052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8a9981a0cce9ee63b08edc8b74a776ca\",\"labels\":[],\"modified_at\":1760976737.512621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.726411,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ded137b29a2ac9791fc1f1d244796b0a\",\"labels\":[],\"modified_at\":1760976737.51286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.751762,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"750907f9a2ecaf511d6767527d52e002\",\"labels\":[],\"modified_at\":1760976737.513111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.94591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cd9c953d266dd30bc5eb3151a5f2f66\",\"labels\":[],\"modified_at\":1760976737.513705,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.654737,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ac1339b135ff5cb6054610e09599cd4b\",\"labels\":[],\"modified_at\":1760976737.513999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.100199,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6559562de9368b5176d4c2bab69341be\",\"labels\":[],\"modified_at\":1760976737.51426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.317375,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e5aa6887ffe1c9ba20be2f9dad865c9\",\"labels\":[],\"modified_at\":1760976737.514516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.522632,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2d58c1b05145799f6a0e942e418637b\",\"labels\":[],\"modified_at\":1760976737.514765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.816273,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff01611593ce914c8e55b99746ade7bb\",\"labels\":[],\"modified_at\":1760976737.515013,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.856176,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1df9caee459458f4261ba3769b30a2fd\",\"labels\":[],\"modified_at\":1760976737.515262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.027941,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84ef8a67d8861618e18ec8e2201925f9\",\"labels\":[],\"modified_at\":1760976737.515509,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.497115,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ef002fc4b535738730128cd41020e5dc\",\"labels\":[],\"modified_at\":1760976737.515764,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.248154,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b7742f63b3eca975967469453a345b\",\"labels\":[],\"modified_at\":1760976737.516015,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.542876,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d10a7204fe5e2ea0fa40d8ae5a3144b\",\"labels\":[],\"modified_at\":1760976737.516268,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.257567,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"685e196a4c4f6c3101615348fb51dd51\",\"labels\":[],\"modified_at\":1760976737.516516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.499288,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586179dae81f48674014b0857ed88ee4\",\"labels\":[],\"modified_at\":1760976737.516767,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.717817,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6034cd7356664dc063906e2f52a0a3\",\"labels\":[],\"modified_at\":1760976737.517018,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.94185,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"66165e96b66d1a023f8e8737fbe9e2d0\",\"labels\":[],\"modified_at\":1760976737.51728,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.528186,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ea8b6d6b10896ddbdf5ae9fafbbecc6\",\"labels\":[],\"modified_at\":1760976737.51753,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.252135,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385366fcc059b77a728168515f2586f2\",\"labels\":[],\"modified_at\":1760976737.517778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.461271,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f58c113ad08028f0af872124030c30f\",\"labels\":[],\"modified_at\":1760976737.518028,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498158.942049,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cba6a4bdd6a805551cc283b957b22e63\",\"labels\":[],\"modified_at\":1763016721.943079,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.192313,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2c38371850e50f3e5988540443f5c5d\",\"labels\":[],\"modified_at\":1760976737.51852,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.577028,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16f7fe2f79e1b1f0db02866ac85a4bc3\",\"labels\":[],\"modified_at\":1760976737.518771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.336206,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73631aa51e0e6a1d7794697379003876\",\"labels\":[],\"modified_at\":1760976737.519354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.260623,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"32245ba0b08e126f84726702cb6db8bc\",\"labels\":[],\"modified_at\":1761859609.314665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.171655,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0d32ff833fcd601cd32f482eb5f1c9a\",\"labels\":[],\"modified_at\":1760976737.519914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.382664,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7711c9412df10e8fe9452f68a7038e60\",\"labels\":[],\"modified_at\":1760976737.520171,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.610829,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a08d9ebbb81e0c3fc7a08d30d98e3b7", + "offset_ms": 256 + }, + { + "direction": "recv", + "type": "text", + "payload": "e\",\"labels\":[],\"modified_at\":1760976737.520425,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.121172,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2cc61e1c263d63262ab756c2a5e9d31\",\"labels\":[],\"modified_at\":1760976737.520676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.498003,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81e3fb1a860e34c3494dbee1d95fe70f\",\"labels\":[],\"modified_at\":1760976737.520924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.21988,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3af3544de87e7dbab445e7a8029afa34\",\"labels\":[],\"modified_at\":1760976737.52119,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.731054,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db1336da12c043c7c61d784c7a622187\",\"labels\":[],\"modified_at\":1760976737.521439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.428907,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"553383b37e8d644518a821ebf99f99b3\",\"labels\":[],\"modified_at\":1760976737.521685,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.943883,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23a5abddd967354312c03855e037976f\",\"labels\":[],\"modified_at\":1760976737.521932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.518682,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0be097c7eb3dbe6aef6a25e3a6cd8ef\",\"labels\":[],\"modified_at\":1760976737.522174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.180681,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e09414a784c4b8a03feca8292b47fc\",\"labels\":[],\"modified_at\":1760976737.522426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.937301,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bfcdb749179ca990270164a9c1aace4c\",\"labels\":[],\"modified_at\":1760976737.52267,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.759405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f329d40f3cb4c98261ecbcca9d730f7\",\"labels\":[],\"modified_at\":1760976737.522917,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.012128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f894e57866a8b946f69234a7c97291\",\"labels\":[],\"modified_at\":1760976737.523164,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.284899,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"148c211961e1b76470e79174b4283b73\",\"labels\":[],\"modified_at\":1760976737.52341,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.985246,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f71e7d4f62b65e5450706d56114cc93f\",\"labels\":[],\"modified_at\":1760976737.523665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.763524,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d835075c5dbbd4973e040149a3f7514\",\"labels\":[],\"modified_at\":1760976737.523911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.601118,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d62adbd002ce98615faf711cc7a26d5f\",\"labels\":[],\"modified_at\":1760976737.524157,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.141649,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663371403a63a19124a1b4abc6b27be8\",\"labels\":[],\"modified_at\":1760976737.524405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.336255,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"112988ca48584654f5650f5359c7e4bc\",\"labels\":[],\"modified_at\":1763017007.83862,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.582052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a877e0462d77e8dd3e37703c0c12842c\",\"labels\":[],\"modified_at\":1760976737.525423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.843111,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e19e322d38c79279c958e4aa96c1dddd\",\"labels\":[],\"modified_at\":1760976737.525683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.275509,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00aca62e34295f7facd401ad154fe8e6\",\"labels\":[],\"modified_at\":1760976737.525937,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.858586,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33498cbeacef2dcdc4f033a0b26838cd\",\"labels\":[],\"modified_at\":1760976737.526188,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.07771,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e6c658d666885b7bcae24ba94db552e\",\"labels\":[],\"modified_at\":1760976737.526437,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.856422,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"607fc15e13eb6e05972e82df9e2b66c3\",\"labels\":[],\"modified_at\":1763016727.1138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.70849,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73bb92c35f39f034be36798feb770698\",\"labels\":[],\"modified_at\":1760976737.526939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.916128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28017fee78f1ddd7f4142211e16c0d30\",\"labels\":[],\"modified_at\":1760976737.528024,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.157067,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff11b226bb853a90c464d79f8178ce33\",\"labels\":[],\"modified_at\":1760976737.528323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.366557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40dd3bb633abe1862d801f81b3ce8980\",\"labels\":[],\"modified_at\":1760976737.528584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.978133,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9fce7d56272a707de807cc72548ee17a\",\"labels\":[],\"modified_at\":1760976737.530283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.801608,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"401a043f2c726c93b7b23b4564a1f94a\",\"labels\":[],\"modified_at\":1760976737.53057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.02263,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28e13521bf85269ec4c9f0a082f0c6b7\",\"labels\":[],\"modified_at\":1760976737.530838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.345391,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b190136a43f7bcf64e68901f7d275935\",\"labels\":[],\"modified_at\":1760976737.531099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.594556,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"951499259e3906795a24cd53fc3d1249\",\"labels\":[],\"modified_at\":1760976737.531357,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.156068,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f6bc7f4a033172190b30075550a37521\",\"labels\":[],\"modified_at\":1760976737.531615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.285791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"404a79d1477c10408dde8e055ae80b2e\",\"labels\":[],\"modified_at\":1760976737.531871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.353564,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b1f9968e09762e9bda52a6df2fbd23c7\",\"labels\":[],\"modified_at\":1763016724.247126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.78676,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e40f6aa713fca29f4bd8a635509859c\",\"labels\":[],\"modified_at\":1760976737.532386,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.7486,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df9290d342500fe2636c79ddbc9952bd\",\"labels\":[],\"modified_at\":1760976737.53264,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.96248,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d61cf3fe32f5fe3b39fa7ec9dae68b7\",\"labels\":[],\"modified_at\":1760976737.532893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.23677,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9aa7c0a93561eb0c9c492db8575a1989\",\"labels\":[],\"modified_at\":1760976737.53315,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.443444,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e929af2da1a8fd0c0c9e2eb613c88c3f\",\"labels\":[],\"modified_at\":1760976737.533399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.176575,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b2353cba1cfc2ba0270b144f2043de0\",\"labels\":[],\"modified_at\":1760976737.533645,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.397439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1af3533513a0c5338f0e1f7900eaf9e5\",\"labels\":[],\"modified_at\":1760976737.533893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.507945,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18af8f2d02f6418723e32a510e19391c\",\"labels\":[],\"modified_at\":1760976737.534144,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.906106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"144ae42445c05a952df5ef29aa014a17\",\"labels\":[],\"modified_at\":1760976737.534396,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.18106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62bfd57e3cb228991c9b903d59e6587f\",\"labels\":[],\"modified_at\":1760976737.534646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.176689,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c294c624ab78af85b8acb03e41009e22\",\"labels\":[],\"modified_at\":1760976737.534894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.73368,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b20652958edaaf0ef0042d2a97318da\",\"labels\":[],\"modified_at\":1760976737.535255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.515405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f69443e387af0b10bf4cffad511cab3e\",\"labels\":[],\"modified_at\":1760976737.535554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.963861,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"57e733b28e1a7f745cd42b1588ea7b92\",\"labels\":[],\"modified_at\":1760976737.535819,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.383975,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3757ce7c4b5a7037d34b233e1626b5bb\",\"labels\":[],\"modified_at\":1760976737.536076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.520076,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_bssi", + "offset_ms": 263 + }, + { + "direction": "recv", + "type": "text", + "payload": "d\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d093158049a91d9ec6342c460f7697d\",\"labels\":[],\"modified_at\":1760976737.536331,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.290619,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b54445aea1c6b5a23c7a7f8756d331f\",\"labels\":[],\"modified_at\":1760976737.536584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.432903,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41dc6b0212fa61d780912d275265cd1a\",\"labels\":[],\"modified_at\":1760976737.536834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.76291,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49e886aeaca51ef663020c9d6adedd4d\",\"labels\":[],\"modified_at\":1760976737.537084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.966045,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"97423ae7ee25d6b9c6138c20f803937d\",\"labels\":[],\"modified_at\":1760976737.537345,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.640943,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"641af75b3fbe0762c553b05543247e0a\",\"labels\":[],\"modified_at\":1760976737.537592,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.578752,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f98be744eca04298b701b1d066cf33f2\",\"labels\":[],\"modified_at\":1761584275.553227,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.584734,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"38be44c9b9441e8136de779aff02c4d4\",\"labels\":[],\"modified_at\":1761584275.555476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.625112,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eaaa8aa99a75156fd029e017b2345aa3\",\"labels\":[],\"modified_at\":1761584275.60354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.675625,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70710798be185d2ee29eb867eb9f8222\",\"labels\":[],\"modified_at\":1761584275.644775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.796301,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param019\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5c6e0fb47a0136310e04a22d88fc83\",\"labels\":[],\"modified_at\":1761667162.796517,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param019\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.797016,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_param020\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e23bda23aa0ac99b0116586ea0a1b92\",\"labels\":[],\"modified_at\":1761667162.797168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param020\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1761667201.291363,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87fb7ada2339f2039551943482ae1358\",\"labels\":[],\"modified_at\":1761667201.292122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1761667192807\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c2862a4df8f6bd691cf5d04a6dfd54c\",\"labels\":[],\"modified_at\":1761690295.874343,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Headphones connected\",\"platform\":\"roku\",\"translation_key\":\"headphones_connected\",\"unique_id\":\"YJ002K604601_headphones_connected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7cd833409d36d7f019fd3e2c56a3099f\",\"labels\":[],\"modified_at\":1761690295.875222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports AirPlay\",\"platform\":\"roku\",\"translation_key\":\"supports_airplay\",\"unique_id\":\"YJ002K604601_supports_airplay\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a220cc398a638aa2eab462c5dc09595\",\"labels\":[],\"modified_at\":1768937324.483172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports Ethernet\",\"platform\":\"roku\",\"translation_key\":\"supports_ethernet\",\"unique_id\":\"YJ002K604601_supports_ethernet\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6165850622ccf0780a12cb93f99fbe6b\",\"labels\":[],\"modified_at\":1761690295.876894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports find remote\",\"platform\":\"roku\",\"translation_key\":\"supports_find_remote\",\"unique_id\":\"YJ002K604601_supports_find_remote\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d7e470b926897e7baf7da15c69c1a5f\",\"labels\":[],\"modified_at\":1772591841.640657,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3921d505142fc5a908c983dbda85e39\",\"labels\":[],\"modified_at\":1761690295.882215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.living_room_tv_application\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be671b5fc39f53da44534bf656ccfcbc\",\"labels\":[],\"modified_at\":1774121824.587607,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Application\",\"platform\":\"roku\",\"translation_key\":\"application\",\"unique_id\":\"YJ002K604601_application\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b34030d711baecbca2bd7babbb9523f4\",\"labels\":[],\"modified_at\":1761690295.884134,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app\",\"platform\":\"roku\",\"translation_key\":\"active_app\",\"unique_id\":\"YJ002K604601_active_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6a7cd59919db06d42748a1849f35440\",\"labels\":[],\"modified_at\":1761690295.885026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app ID\",\"platform\":\"roku\",\"translation_key\":\"active_app_id\",\"unique_id\":\"YJ002K604601_active_app_id\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1762452953.450373,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"353b8458de409f30f3da7f59dd2279ae\",\"labels\":[],\"modified_at\":1762452953.451146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room TV - Off - Idle\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1762452936157\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.79738,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4bc33ac1bdf05a5a4ad0efe2cf243cd\",\"labels\":[],\"modified_at\":1766477279.797958,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.80.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.798349,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a14d2d0b96e1d99308488b35cfe32d6b\",\"labels\":[],\"modified_at\":1766477279.798784,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.80.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799203,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"acd5e1535a0b58f433b138c0b6faf421\",\"labels\":[],\"modified_at\":1766477279.799355,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799642,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"378e7086f5619183bd617e93465aa802\",\"labels\":[],\"modified_at\":1766477279.799778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800052,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d59fdf37e7ce07ae033e5e4a7871a74\",\"labels\":[],\"modified_at\":1766477279.80019,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800465,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"042c7a9cd428a17c8fedf3be0152a3be\",\"labels\":[],\"modified_at\":1766477279.800606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800883,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f68eb2507739535d9913773ab943d15f\",\"labels\":[],\"modified_at\":1766477279.801023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.80.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.80138,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3369734c52812a3a3ee4bbe2560f1ad\",\"labels\":[],\"modified_at\":1766477279.801562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.80.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.801858,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd7ddf313a54743de6d1f72a3d7bd312\",\"labels\":[],\"modified_at\":1768937324.809754,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.80.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.802282,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62306b73556be6a658a2970154edf24b\",\"labels\":[],\"modified_at\":1766477279.803236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.80.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.228835,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce76270335388122109676234797a801\",\"labels\":[],\"modified_at\":1766477296.229428,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.229892,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21621c315a84182b4f410308413f7b21\",\"labels\":[],\"modified_at\":1768937324.853995,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.23085,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75446919eaeef4477c5765e479030bd7\",\"labels\":[],\"modified_at\":1768937324.85453,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.231761,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2adf7a33a0ac224ec14b279aa8347cdf\",\"labels\":[],\"modified_at\":1766477296.232285,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.232869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"352a62902d4625293870ccad5a0e8ce7\",\"labels\":[],\"modified_at\":1768937324.855306,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.233759,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"959edfed6f06b47aa8cfffad60cb3b27\",\"labels\":[],\"modified_at\":1768937324.855699,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}", + "offset_ms": 270 + }, + { + "direction": "recv", + "type": "text", + "payload": "},\"original_name\":\"Reset accumulated values\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.234957,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e94b9747cdafaf5de7e0065d9bea1787\",\"labels\":[],\"modified_at\":1766477296.235117,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.235534,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d032c73c25b557c150eb9a1554ab27a8\",\"labels\":[],\"modified_at\":1766477296.235674,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236042,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b282d98fd058c4a3fc14cd5cab2ed0d\",\"labels\":[],\"modified_at\":1769099101.051939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_energy_kwh_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03aba463e32ff9cd002a085bc096c2a7\",\"labels\":[],\"modified_at\":1766477296.236667,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy (kWh) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_current_a_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44ed91985e8e2345c6d85aa23ca1ebcc\",\"labels\":[],\"modified_at\":1769099101.052448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current (A) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-35\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237544,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_voltage_v_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8c9afc6dd91370538afa4d09be302d2\",\"labels\":[],\"modified_at\":1769099101.052763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage (V) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238041,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_overload_protection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24702ae99561a23fa90891c83b007f12\",\"labels\":[],\"modified_at\":1766477296.238175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Overload Protection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238538,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a643dcd0c18ea735dc117372cbd9c4\",\"labels\":[],\"modified_at\":1766477296.238676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9278543cbfa4150cf96b9825a399dce\",\"labels\":[],\"modified_at\":1766477296.239179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a20c9254c9e99e639df912c45870f78\",\"labels\":[],\"modified_at\":1766477296.239678,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24004,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9f5c165e12ba64506d0eaf24e58fd09\",\"labels\":[],\"modified_at\":1766477296.240905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241404,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a8223d52922cf9b4adff20414916eee\",\"labels\":[],\"modified_at\":1766477296.241556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241944,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39ecfec962692eccc82d3081e479f8b4\",\"labels\":[],\"modified_at\":1766477296.242085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242445,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"91b749f9293951042533d2401e898b94\",\"labels\":[],\"modified_at\":1766477296.24258,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242942,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e391e07c8a08dd2a25df2be663bcfbac\",\"labels\":[],\"modified_at\":1766477296.243077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243424,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3c85d30cdac3aafebede8607197ce65\",\"labels\":[],\"modified_at\":1766477296.243556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243913,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dacd0709ac8eb1359a94e7710f78784\",\"labels\":[],\"modified_at\":1766477296.244051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244403,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b054386465dab5e8e5b9b8d7c18d91df\",\"labels\":[],\"modified_at\":1766477296.244534,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244894,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f902120e1bceb78e61c17590fe38269\",\"labels\":[],\"modified_at\":1766477296.245029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245392,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fad06e4d9f3d509906b6338e4b79a65\",\"labels\":[],\"modified_at\":1766477296.245527,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245884,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68d921eab0fa608d5f6c2dadd993dccd\",\"labels\":[],\"modified_at\":1766477296.246023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.246994,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b090c9d937ff7066c525cc564347a594\",\"labels\":[],\"modified_at\":1766477296.247152,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24754,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2b9a5eb299f5a41546cecb74eb4db\",\"labels\":[],\"modified_at\":1766477296.24768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248038,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ead661391dda43c8a9cff95e08d325f9\",\"labels\":[],\"modified_at\":1766477296.248173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f79cf7061a486a5938ef84ca4f41ca3f\",\"labels\":[],\"modified_at\":1766477296.248675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da59ba2e721740da07c9e1fce8eeb446\",\"labels\":[],\"modified_at\":1766477296.249177,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b311235ba306b94712f179b47a13304\",\"labels\":[],\"modified_at\":1766477296.24968,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.250039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eed8930162c1f50fb3efa88ed014a90\",\"labels\":[],\"modified_at\":1766477296.250175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25053,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"943fe31b185242de7233f509c6714ad4\",\"labels\":[],\"modified_at\":1766477296.250661,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251018,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e41a3fe1c2e739c5c0b08c01ba04964\",\"labels\":[],\"modified_at\":1766477296.251151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.2515,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f339b2e6b6df648e6ca92d60bf56623\",\"labels\":[],\"modified_at\":1766477296.251636,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251984,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19bb03a5b1ae0e40e13d9da02ae88aa0\",\"labels\":[],\"modified_at\":1766477296.253395,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.253836,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97b7a04a80a5cdf61867e56d866b6dce\",\"labels\":[],\"modified_at\":1766477296.253989,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.254358,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f60a5f4e92244effdf0936a193c2e55\",\"labels\":[],\"modified_at\":1766477296.2545,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25486,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eb52f03fe8467f94f87c777a7a350c0\",\"labels\":[],\"modified_at\":1766477296.254997,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255351,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_usb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cc335594f81afccba401289b6b502d8\",\"labels\":[],\"modified_at\":1768937324.860358,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (USB)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-34\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255867,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cc3f8a76c39d2050f2ca01c684f502d\",\"labels\":[],\"modified_at\":1766477296.256325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Over-load status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.256729,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45740620b4805cce189bb1ae036fcd9b\",\"labels\":[],\"modified_at\":1766477296.257184,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Over-load detected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.257687,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04246652716b229857e01efec2e38e67\",\"labels\":[],\"modified_at\":1766477296.257835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25825,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63039bbbd456696f096140397e346135\",\"labels\":[],\"modified_at\":1766477296.258392,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.259279,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63ad70871975f5f5d34c36a3bc238c67\",\"labels\":[],\"modified_at\":1766477296.259764,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.260212,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c3075512fe6a8b1b0fcb12082a49d76\",\"labels\":[],\"modified_at\":1768937324.86197,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.261175,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"568c6e02c40f5c3a555cdd0db313a4de\",\"labels\":[],\"modified_at\":1768937324.862516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262093,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b395a875cae5455761476ff388705320\",\"labels\":[],\"modified_at\":1768937324.862985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262992,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f06ff5e731abcb200fdf4ce8c56d7a8b\",\"labels\":[],\"modified_at\":1768937324.863363,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.263832,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37ae354122a69445674d2c8a74c662e3\",\"labels\":[],\"modified_at\":1766477296.264255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.265295,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2531dc116e28190045ae5672d09ebe3\",\"labels\":[],\"modified_at\":1768937324.866356,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.266195,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6f6c69f0ddef207889934c80289ca86\",\"labels\":[],\"modified_at\":1766477296.26662,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267047,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc336050e207d78bd1ba0f3bba28051a\",\"labels\":[],\"modified_at\":1768937324.867025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267979,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe9d9f695586d322624d93d749bbcc61\",\"labels\":[],\"modified_at\":1768937324.867472,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.26889,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"01988ea7826bbd8f6ed128469da20098\",\"labels\":[],\"modified_at\":1766477296.269415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.270015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf8ef299aa298fd3248a48bac27ac029\",\"labels\":[],\"modified_at\":1768937324.868225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.271554,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c97f", + "offset_ms": 278 + }, + { + "direction": "recv", + "type": "text", + "payload": "990f08dbf8bfb2e36f79dcf8ce3f\",\"labels\":[],\"modified_at\":1768937324.868598,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.272394,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a2d1328c988166cd19fcc662a187aa9\",\"labels\":[],\"modified_at\":1766477296.272806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-4-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.273243,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50a06ac0b5cc38dd737642d4c89a7b51\",\"labels\":[],\"modified_at\":1768937324.869253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.274164,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d375f897f48b0c3979382b79f793ce7c\",\"labels\":[],\"modified_at\":1768937324.869703,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.275064,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66472225aa97981e6655a6197be3821e\",\"labels\":[],\"modified_at\":1766477296.275574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.276183,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaaeda5a465e1272738851dfaca0bb89\",\"labels\":[],\"modified_at\":1768937324.870776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.278333,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0e4675689b5404d93f71ebfc1d7379f\",\"labels\":[],\"modified_at\":1768937324.871166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.279172,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7093c72b49a8f2d940f6b823759f028\",\"labels\":[],\"modified_at\":1766477296.279589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-5-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.280015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da6ce7565775e6386bc5449a208859de\",\"labels\":[],\"modified_at\":1768937324.871832,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.28095,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0ebf85251bc2805df5a1617f98725cf\",\"labels\":[],\"modified_at\":1768937324.872271,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.281873,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416e2d0423d1f41bd4b56b6bd81b964f\",\"labels\":[],\"modified_at\":1766477296.282883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.283571,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee94a4c4b5043f4b3107f935049eba10\",\"labels\":[],\"modified_at\":1768937324.873009,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.284479,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1f1ce22f894ebe0933234d04a843de8\",\"labels\":[],\"modified_at\":1768937324.873387,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.285287,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c0cacfb741929580682337f02a692ff3\",\"labels\":[],\"modified_at\":1766477296.285701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-6-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286074,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"537517b1a5530389a93a15939111bc6d\",\"labels\":[],\"modified_at\":1768937324.873956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-6-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2db9999532c1e7a9ed05488f029cf7f\",\"labels\":[],\"modified_at\":1766477296.287284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-7-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.287657,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e343a71bdbc71812276c9427c7be85b\",\"labels\":[],\"modified_at\":1768937324.874499,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-7-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.289939,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa5a18f80f779019ca3f23d010909f4d\",\"labels\":[],\"modified_at\":1766477296.290448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477441.695525,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd09b25c9105ef44432c19688ac32e1\",\"labels\":[],\"modified_at\":1768937324.865485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477542.697583,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"faa614fa04d30ee895cd1ff09546164d\",\"labels\":[],\"modified_at\":1768937324.865972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":1768937323.145127,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17e0ae17cdd955a63df94aadb4a81bca\",\"labels\":[],\"modified_at\":1768937323.145187,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46291,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_avg_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7600251cc55099e6789858d8dd0c6b54\",\"labels\":[],\"modified_at\":1768937324.462981,\"name\":null,\"options\":{},\"original_name\":\"Avg. signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.463148,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99723fdd7485a7d6bb927d5bc468a2a9\",\"labels\":[],\"modified_at\":1768937324.463195,\"name\":null,\"options\":{},\"original_name\":\"Signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46361,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.zwave_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b8620184feb8e076a3dcbc4862fa35d\",\"labels\":[],\"modified_at\":1768937352.32353,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.686858,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd5c271fa69e1cb2e08837126e390603\",\"labels\":[],\"modified_at\":1768957339.60269,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.690717,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"06894aa51ff0e9d62478d9bfb5d6b7d1\",\"labels\":[],\"modified_at\":1769108140.491853,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.691308,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632aed480ee30ce82ac8ba8afd55e91f\",\"labels\":[],\"modified_at\":1769108140.492738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.71521,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eab179038325dced95da0495d530c83\",\"labels\":[],\"modified_at\":1768937352.324438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.715894,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69ac603ee53e2fa3e583a9e7e61979e5\",\"labels\":[],\"modified_at\":1768937352.324557,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.776916,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"944905c91677260a69d3c4fb169af92f\",\"labels\":[],\"modified_at\":1768937352.324779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.785768,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"141eddff457c88321aa49743e5165cb7\",\"labels\":[],\"modified_at\":1775491285.628223,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1768937325.683515,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"803942d09c418a98aae2af768bde2657\",\"labels\":[],\"modified_at\":1768974704.217654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":1768937332.413279,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_preset_position\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79c985bf4b12ca603756fd8c2f4d00fe\",\"labels\":[],\"modified_at\":1768937357.407137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Preset Position\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_preset_position\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.683464,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18d7f0c9095f29d981bfa5129a5c8719\",\"labels\":[],\"modified_at\":1768937355.683876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684339,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23798e61c080b6b8bb9292d41b753ebd\",\"labels\":[],\"modified_at\":1768937355.684708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684947,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0506bfac83008cc2d1ce31972a6f2785\",\"labels\":[],\"modified_at\":1768937355.685312,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.685556,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4b56bbe1e3393cda2a02b5958aa3772\",\"labels\":[],\"modified_at\":1768937355.685892,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.68613,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f334207a3706ffc4bdea3fcc21b27f0\",\"labels\":[],\"modified_at\":1768937355.68646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f91be395aa637b853783d80af21df6ea\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88f797601578a44b7f18fe2d310f5c8f\",\"labels\":[],\"modified_at\":1768937820.170123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:26:9F-light-front_porch_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf", + "offset_ms": 287 + }, + { + "direction": "recv", + "type": "text", + "payload": "7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.729653,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_external_switch_multiple_click_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"911f689ea83e4f559f934622cbfaf55e\",\"labels\":[],\"modified_at\":1769099083.729723,\"name\":null,\"options\":{},\"original_name\":\"External Switch: Multiple Click Detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.743385,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34c37d47d0530bffe97567dab6f0a423\",\"labels\":[],\"modified_at\":1769099083.743449,\"name\":null,\"options\":{},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.058963,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c34673f93ef0696b560de0710c886316\",\"labels\":[],\"modified_at\":1769326461.249458,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061192,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34a76e058ab3f8062606e039bb6f7d75\",\"labels\":[],\"modified_at\":1769326461.349576,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061905,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"327d27c3b2d11d6b5ed0a7c67feae89c\",\"labels\":[],\"modified_at\":1769326461.949935,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [A] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.476924,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.overseerr_last_media_event\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1241c0fd94296f38dd4beef033a35d11\",\"labels\":[],\"modified_at\":1769188672.47763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last media event\",\"platform\":\"overseerr\",\"translation_key\":\"last_media_event\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-media\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.478287,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bbb89d6744aa52101d6b2d634dd3a3d2\",\"labels\":[],\"modified_at\":1769188672.478886,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total requests\",\"platform\":\"overseerr\",\"translation_key\":\"total_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.479308,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_movie_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25b77947e4e5901105419056fabf10a0\",\"labels\":[],\"modified_at\":1769188672.479959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Movie requests\",\"platform\":\"overseerr\",\"translation_key\":\"movie_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-movie_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.480365,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_tv_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d94898a7d080d06b0f08ca6451625f7\",\"labels\":[],\"modified_at\":1769188672.480955,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TV requests\",\"platform\":\"overseerr\",\"translation_key\":\"tv_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-tv_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.481447,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_pending_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e190d80632de506998d2cef0552efc3\",\"labels\":[],\"modified_at\":1769188672.482418,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pending requests\",\"platform\":\"overseerr\",\"translation_key\":\"pending_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-pending_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.482777,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_declined_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fc5b3ab324f29fd3454426a63274bc4\",\"labels\":[],\"modified_at\":1769188672.483266,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Declined requests\",\"platform\":\"overseerr\",\"translation_key\":\"declined_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-declined_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.483584,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_processing_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6304a3cd9a5400d32e011d1a277523a3\",\"labels\":[],\"modified_at\":1769188672.484082,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Processing requests\",\"platform\":\"overseerr\",\"translation_key\":\"processing_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-processing_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.484437,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_available_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f9e7f08d9c31ca040fa2066e660551\",\"labels\":[],\"modified_at\":1769188672.484959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Available requests\",\"platform\":\"overseerr\",\"translation_key\":\"available_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-available_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.485331,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00735f8a4a910a0d1254f132ba93de9a\",\"labels\":[],\"modified_at\":1769188672.485849,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total issues\",\"platform\":\"overseerr\",\"translation_key\":\"total_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.486201,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_open_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8ccc6de99805f93f168264e67c712ca\",\"labels\":[],\"modified_at\":1769188672.486713,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open issues\",\"platform\":\"overseerr\",\"translation_key\":\"open_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-open_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487069,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_closed_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc5f4929fb61b84f1593ac32c2e1396e\",\"labels\":[],\"modified_at\":1769188672.487587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed issues\",\"platform\":\"overseerr\",\"translation_key\":\"closed_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-closed_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487953,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_video_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c23a9db4525e8ccd6821507bbce056d\",\"labels\":[],\"modified_at\":1769188672.488474,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Video issues\",\"platform\":\"overseerr\",\"translation_key\":\"video_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-video_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.488825,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_audio_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1677624b1402c112c6e4345588afb313\",\"labels\":[],\"modified_at\":1769188672.489362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Audio issues\",\"platform\":\"overseerr\",\"translation_key\":\"audio_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-audio_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.489714,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c90b1860175195d2a23fccb791504ca0\",\"labels\":[],\"modified_at\":1769188672.490236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Subtitle issues\",\"platform\":\"overseerr\",\"translation_key\":\"subtitle_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-subtitle_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912183.185244,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34a32d14426d3e169ae057627439d98d\",\"labels\":[],\"modified_at\":1771912183.186014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - Off - Timeout\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912170361\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912395.891354,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"773273d151b8c8d49b92ee8627d586d2\",\"labels\":[],\"modified_at\":1771912395.892381,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - On - Door Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912391140\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.625986,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b07a6abab79d073c5be007066b3a3b6d\",\"labels\":[],\"modified_at\":1774116424.626947,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bed Occupied Stable\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bed_occupied_stable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.627238,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6fda5463b7f7691786174b39cbc043\",\"labels\":[],\"modified_at\":1774116424.627924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bedroom Motion Confirmed\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bedroom_motion_confirmed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.957554,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3e5033899feeede780f2808f7b73e24\",\"labels\":[],\"modified_at\":1774116432.958181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.958454,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_nap_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b706a2024115adbf2d36028c6713abcf\",\"labels\":[],\"modified_at\":1774116432.958992,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Nap Detection\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.14926,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4563dd8ceda742b1447360a08afd99e7\",\"labels\":[],\"modified_at\":1774138030.911495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149593,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2d62fcd0d6717798722ba043bce9d40\",\"labels\":[],\"modified_at\":1774138030.911857,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149824,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"806b34a0f2af42d04d3883b58f48a6ef\",\"labels\":[],\"modified_at\":1774138030.912047,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"58122b4c7d81745a9de83d7435a88559\",\"labels\":[],\"modified_at\":1774138030.912215,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150246,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46650fb68d9b63404a046c228467c62c\",\"labels\":[],\"modified_at\":1774138030.912379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150448,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8b8c08c11a816b5e91c5d45b883066e\",\"labels\":[],\"modified_at\":1774138030.912537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150653,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a94089b7222280376a7dad9ef1bf2a92\",\"labels\":[],\"modified_at\":1774138030.912696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152103,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa674acc6fb02b01c66b3433930e2d01\",\"labels\":[],\"modified_at\":1774138030.91286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152289,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5a7edad01fc39a518660614518bcdf2\",\"labels\":[],\"modified_at\":1774138030.913011,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.154985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d16f049693b501d63ea5473129d3198e\",\"labels\":[],\"modified_at\":1774138030.9132,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1pct\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.155394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bffe32a5b8efb97c7c5e604c2bc2abc4\",\"labels\":[],\"modified_at\":1774138030.913358,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_halloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.156076,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54146ec2dbaad8902fd311d6c18d996b\",\"labels\":[],\"modified_at\":1774138030.913521,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.15684,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d740742a1b722377a0897440fd402bbe\",\"labels\":[],\"modified_at\":1774138030.913681,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a62870971ca19efe980ffc144f1a1899\",\"labels\":[],\"modified_at\":1774138030.913831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157231,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"949278d55db1a4d8246fa35f91e617f2\",\"labels\":[],\"modified_at\":1774138030.913979,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Day\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157424,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"276ef5e2cd3663a6236c81c36f446fc6\",\"labels\":[],\"modified_at\":1774138030.914128,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Night\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_night\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157587,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a84f593ccf99ee4dedf54fd732754e2c\",\"labels\":[],\"modified_at\":1774138030.914274,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774138612.949732,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mushroom_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d59320285d90702b2c855475ee95639e\",\"labels\":[],\"modified_at\":1774138612.95", + "offset_ms": 295 + }, + { + "direction": "recv", + "type": "text", + "payload": "0796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mushroom update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774139555.128573,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mushroom_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c33c28bb04498effba938ec97b5b805\",\"labels\":[],\"modified_at\":1774139555.128638,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140343.854706,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mini_graph_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56350d9930148e8fd5d61e880540724\",\"labels\":[],\"modified_at\":1774140343.855222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"mini-graph-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140477.398217,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mini_graph_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d58d70df50c79d3213bbf8236a5fe6ce\",\"labels\":[],\"modified_at\":1774140477.398278,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.352598,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681707778436ce05e7199951846ef14d\",\"labels\":[],\"modified_at\":1775489223.761484,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.421699,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c98623c4f1d03a6794ba466def6392\",\"labels\":[],\"modified_at\":1775489223.761621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.690469,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30c8f6f016a9a07d3072df92bf9c837f\",\"labels\":[],\"modified_at\":1775489223.761751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.769537,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fec7537b3f51428841c6f12821476333\",\"labels\":[],\"modified_at\":1775489223.761895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.155983,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4f68f200753e31f0a21132e2ff02e3c\",\"labels\":[],\"modified_at\":1775489223.762023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.222085,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf10bec5854978fe997fc5eb6d1db426\",\"labels\":[],\"modified_at\":1775489223.76215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354869.951525,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dbb9d05d05fcd2ca67c6fd8472bab9eb\",\"labels\":[],\"modified_at\":1775489223.762284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354870.020436,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd61a8fe509fc46135e34167d34e5b3\",\"labels\":[],\"modified_at\":1775489223.762414,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355638.331143,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5144d05444588d3e7a500ac509fae21e\",\"labels\":[],\"modified_at\":1775489223.762539,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355657.972878,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a3162680c956e4ed166e74ca65dbf31\",\"labels\":[],\"modified_at\":1775489223.762673,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356334.664723,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73fe68c3f5230ab53809f13454c7f7ce\",\"labels\":[],\"modified_at\":1775489223.762806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.604859,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f0456298a746305de2207d41a214c7\",\"labels\":[],\"modified_at\":1775489223.76293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.686933,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9e93e6a89fec209b2154e4b4aa5c0\",\"labels\":[],\"modified_at\":1775489223.763054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.039186,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3725b439d15a4d1e0e0b8ef16c5bcec8\",\"labels\":[],\"modified_at\":1775489223.763189,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.114222,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09f3eb747f5823fe21b96763355a9fd3\",\"labels\":[],\"modified_at\":1775489223.763316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.671129,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4cb866d53da98bac0fdd3d9a50958c1\",\"labels\":[],\"modified_at\":1775489223.763449,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.73551,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bdb1093192bc6e83a24ef3ef98ef251a\",\"labels\":[],\"modified_at\":1775489223.763579,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.683881,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"17948118ea0453a21060b9ac3c3bd35f\",\"labels\":[],\"modified_at\":1775489223.763821,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.752892,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2bf26cdc24ddb324070b32bf95efb\",\"labels\":[],\"modified_at\":1775489223.763949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.611255,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2de2190bdb6019e1ebaf8f9f6db56d92\",\"labels\":[],\"modified_at\":1775489269.20277,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reset total energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_reset_total_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.720667,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2b188397cf5cf91ade7924d39597fc\",\"labels\":[],\"modified_at\":1775489254.288937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn off\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_off_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.725676,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ba3493529496e8be49faa472f4272\",\"labels\":[],\"modified_at\":1775489254.289157,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn on\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_on_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.730362,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817a29630544a8935b5b5208cfad3a6a\",\"labels\":[],\"modified_at\":1775491843.189477,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power rise threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_rise_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.735072,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb512790cefd801f44d3170bcbe18fb3\",\"labels\":[],\"modified_at\":1775491843.201122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power drop threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_drop_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.782524,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f1e618efc7019719ba1c008909ae61b\",\"labels\":[],\"modified_at\":1775489269.203071,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power-on behavior\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_on_behavior_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.808614,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a65df0e6618f2527a49b04cb44ddc8d\",\"labels\":[],\"modified_at\":1775586383.664326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.810039,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6da142d344b25e493d4e7150811898a9\",\"labels\":[],\"modified_at\":1775489269.20327,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":1},\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.81576,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6fd914af279d2e8f766c6a3ff2de023\",\"labels\":[],\"modified_at\":1775489269.203513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_humidity_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.817887,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_pressure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd3458814c78abb0afee054f005cdd78\",\"labels\":[],\"modified_at\":1775489308.697985,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Atmospheric pressure\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_pressure_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.819624,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b51cd3241371b7561f77450e43672efb\",\"labels\":[],\"modified_at\":1775492079.877324,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.821311,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89221a788e97735b88a9981fc28d3fbe\",\"labels\":[],\"modified_at\":1775489227.821354,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.822693,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_power\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0950382cdf5c1ae4e598bc5443a02839\",\"labels\":[],\"modified_at\":1775520590.696024,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.825626,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d9bb9d1c71c5dd2c20a45dc1b6dea2c\",\"labels\":[],\"modified_at\":1775491830.269932,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.828464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07990395421c102974cefa27b6a9b997\",\"labels\":[],\"modified_at\":1775489254.291151,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Frequency\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_ac_frequency_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.830508,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_power_factor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7fffd049106dfd91742c2374ec66011a\",\"labels\":[],\"modified_at\":1775489227.830555,\"name\":null,\"options\":{},\"original_name\":\"Power factor\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_factor_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.832056,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b1f2d89a6fa56eaa6ebd7a325233c5b\",\"labels\":[],\"modified_at\":1775520597.935816,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_current_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.833866,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1dec75cbe9a7ba93bf0f0846e5fe5fac\",\"labels\":[],\"modified_at\":1775525154.098723,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.836162,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbdff817ee00883d0aa353adead094b5\",\"labels\":[],\"modified_at\":1775489227.83621,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.84296,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1de84ba2dcb17a277ea97a987f467d07\",\"labels\":[],\"modified_at\":1775489269.203705,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.844464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3be8da09eeb8e0acc452fa4a9ba78a5\",\"labels\":[],\"modified_at\":1775489269.203885,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Metering only mode\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_metering_only_mode_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.850014,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcee0811885c8854563443ba4dced1ab\",\"labels\":[],\"modified_at\":1775489306.418611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1775549231.594472,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_vibra", + "offset_ms": 303 + }, + { + "direction": "recv", + "type": "text", + "payload": "tion_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9db7f91c5b54278bf3f7a80f5df91bc\",\"labels\":[],\"modified_at\":1775549231.594723,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.825542,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5077add4bf45e912a2ef646bae511f14\",\"labels\":[],\"modified_at\":1775678362.82721,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.827502,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f3761580a85a1bd3953bddb2c989d35\",\"labels\":[],\"modified_at\":1775678362.828154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000004\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.828418,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be7a1d87aaf721c4188bf8bec50329f4\",\"labels\":[],\"modified_at\":1775678362.828943,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000005\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.37481,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167b598bb2635889c041d73857d27990\",\"labels\":[],\"modified_at\":1775868913.129506,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.376546,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa1b588575b52fe468f5b0b654084236\",\"labels\":[],\"modified_at\":1775868913.130469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.613679,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00cfdcc6fd718b086b498d183ec763fe\",\"labels\":[],\"modified_at\":1775868913.131303,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.615726,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb552019b26731f2c51b5b208e46821\",\"labels\":[],\"modified_at\":1775875660.872463,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.618016,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a715ee29ebb812ad53ff3962471973c\",\"labels\":[],\"modified_at\":1775868886.618058,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.61896,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fed74cd33f82ba6c78036a9cebbf06\",\"labels\":[],\"modified_at\":1775868913.133053,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62005,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6aa5184211eb3c2d8ccd38a3b494e66f\",\"labels\":[],\"modified_at\":1775872197.350263,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62157,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62526651242478435d1e767d473d0b01\",\"labels\":[],\"modified_at\":1775868886.621614,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.622608,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c40a87b4581f5eae3d7a6360360a4fc\",\"labels\":[],\"modified_at\":1775868913.13455,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.624775,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d40ea24dbd15c204e20d4041d24cd2d0\",\"labels\":[],\"modified_at\":1775868886.624821,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.640178,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_fed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"339abf0c4de7f4ba8ac9610f75299234\",\"labels\":[],\"modified_at\":1775868913.135283,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.641542,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.tracker_one\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4dde6447448035238f372ce06801427\",\"labels\":[],\"modified_at\":1775868913.136075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.643148,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_sink_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2195ff58fb96b2adfde3932a8dba49a5\",\"labels\":[],\"modified_at\":1775868913.136902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775869869.03551,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apexcharts_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59310574b32edd03da9449e2fc1b7504\",\"labels\":[],\"modified_at\":1775869869.036084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"apexcharts-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870068.253425,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.track_tracker_one_log_press\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"251e799623f0dc9e26c3a81c1bcc0e30\",\"labels\":[],\"modified_at\":1775870068.254211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TRACK - Tracker One - Log Press\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775869806572\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870401.81351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.fish_fed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86abac3ce035a999bd58f59520b2f4f0\",\"labels\":[],\"modified_at\":1775870444.348953,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Fish Fed\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"fish_fed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870404.195975,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.tracker_one_presses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"563381785d898580a4ec98b5d47f8241\",\"labels\":[],\"modified_at\":1775870428.194489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tracker One Presses\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"tracker_one_presses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775870404.57426,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apexcharts_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3c39d6ccf8398fd21217517712467e\",\"labels\":[],\"modified_at\":1775870404.574316,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485157,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15bd4e2db4610819856a0a96d8fb46ac\",\"labels\":[],\"modified_at\":1775870556.016822,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Fish Fed - Latch On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485897,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_fish_fed_reset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb491690a44f98c51901d58d37cdd2d8\",\"labels\":[],\"modified_at\":1775890800.094108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Fish Fed - Reset\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211862\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"config_subentry_id\":null,\"created_at\":1775959350.075729,\"device_id\":\"bd61b07f6c18d67ffd4150ebf11743fa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18f6e46b7275812f380f65c45ab68432\",\"labels\":[],\"modified_at\":1775959350.076865,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Car in Garage\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"44:17:93:1B:60:94-binary_sensor-car_in_garage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067514.535912,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52f365b0d3680334baa51a6a1268693d\",\"labels\":[],\"modified_at\":1776067514.537586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067515.336196,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ba17144d4b28c18b1610c9e6524f080\",\"labels\":[],\"modified_at\":1776067515.337787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"}]}", + "offset_ms": 313 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_remove_entity_registry_entry.json b/cassettes/test_entity_registry/test_remove_entity_registry_entry.json new file mode 100644 index 00000000..a907dce8 --- /dev/null +++ b/cassettes/test_entity_registry/test_remove_entity_registry_entry.json @@ -0,0 +1,445 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:59.789218+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"name\": \"smoke_registry_remove_test\", \"id\": 2, \"type\": \"input_boolean/create\"}", + "offset_ms": 12 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"id\":\"smoke_registry_remove_test_14\",\"name\":\"smoke_registry_remove_test\"}}", + "offset_ms": 22 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"input_boolean.smoke_registry_remove_test\", \"id\": 3, \"type\": \"config/entity_registry/remove\"}", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 30 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 4, \"type\": \"config/entity_registry/list\"}", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.updater\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48544df94cdd8858d51e4825d887b87f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Updater\",\"platform\":\"updater\",\"translation_key\":null,\"unique_id\":\"updater\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.adam\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af3cc6ab1d311d80445a2911bab8a736\",\"labels\":[],\"modified_at\":1774112250.228571,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"collection\":{\"hash\":\"8ea23eafe65450db9d5d7917f1e1808a\"}},\"original_name\":\"Adam\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"adam\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"52fc2b39306eecd553aa2d1275b23f13\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.logan_s_landing\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc17bdf0b19aac327302b5ed8e37842\",\"labels\":[],\"modified_at\":1776067736.245874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Logan's Landing\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"home\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.remote_ui\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"662f53bf96ef56470f84c30f01b8db1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Remote UI\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-remote-ui-connectivity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.jenni\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"867ce61cfc7ab736b355b85c14411b09\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"jenni\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1566df05da78124d095f06fd3478d69d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Front Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015141627\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ff73de8af671e02bdb687bc221a551\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Back Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015238936\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stair_chandelier\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73856bdb53725526e8e63e078c9ebebe\",\"labels\":[],\"modified_at\":1775870416.949593,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.stair_chandelier\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a4c91300d5c0eebf9260967a60a018\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_routine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70c959e47b0e9e5e4b826c5900cad954\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Routine\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629617283234\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9bd88b769429a941a9478debe90a70a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785091384\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.wake_up_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f995f568522466041f6955cdbcc536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Wake Up Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"wake_up_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c348fbb7c91293d0d89150a1e883d05c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785279492\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f204a6e1edd3b3c13d9dc6e48613dd20\",\"labels\":[],\"modified_at\":1741730439.823744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Cat Bathroom Door Closed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950849970\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b4711ee4a97eb0c7c20e508d9b5c2afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950974058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2cc79375b1f971d1a5e8e393733e821\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631951014424\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8e2a310dc06849858f204cad33666aa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952292117\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37007cf65958ceae04ddd495d3be6771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952347170\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6221addad0ec6c1d678b405921c56c42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952450891\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_lamps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ead5a9e4369bbe20f36cdc5cdbb169bf\",\"labels\":[],\"modified_at\":1775870416.945327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.living_room_lamps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05c094b96331a2e72fa623591306c435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb5b70bdb5e625b89f9c05075b86919\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Occupancy\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-occupancy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d2c826662df9e49d3b4c59696b2198d\",\"labels\":[],\"modified_at\":1728721845.856414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":\"ecobee\",\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3bc3484981e75dcef88140475f41ad\",\"labels\":[],\"modified_at\":1768937324.405202,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"289469882a9d4c390942a2c28d21e837\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73aca607e21724f9c52d8d593ec4d76a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7ebb8f03146939f38815de610add87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895391373\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3381c206b02ec2b698ffba1019a5e8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Kids Room Motion White\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895431041\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_off_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54fa204f71e05ab0e55d9f4409aa6ac2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off Motion\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895565944\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":\"user\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_motion_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b122a6403b1e6102b774c5f91d37a109\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Door Motion Alarm\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b041853caeba17cf928939638155c248\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Human\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_human\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0247c03858e81ac316c24dbea6f0bd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Button Pressed\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_button_pressed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_invite\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b490d78c9b4cbaafadf0c893b801a05c\",\"labels\":[],\"modified_at\":1730406829.425846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Invite\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_invite\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_door_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bcca1ae5fefcacfd0ef6dcb4d8b7b11d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Door Status\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_door_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0f14d3b72d1f98e8ed47fbecd5b419\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Call No Answered\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_call_no_answered\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_infrared\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e21d212136e8f6167e23615634933ebf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Infrared\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_infrared\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_main\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dc52219ced77a446fe360690a4cc784a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Main\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Main\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28587a1f49ec36f599f8f42020999c28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d86893f808d91f26b6859f432eac7d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Red Alert\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"red_alert\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0c880ea25f8f95f5f4149b3b3dbde52a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Illuminate\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c375ec26f63adaba2a3600d0884e4", + "offset_ms": 48 + }, + { + "direction": "recv", + "type": "text", + "payload": "6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Show Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"show_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212fbb3cd5dfca24ca5dfee46fa297da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Kids Room\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_kids_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"abf611beb1cf6771f05cea144108c5a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.kid_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0296bfaeadf38a3c2c643aa0fa317ffc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kid Dance Party\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"kid_dance_party\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ad4a44c058301709a2c85029eb3a928\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633315499530\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72c0da4ff910be4448a82584819265d5\",\"labels\":[],\"modified_at\":1758172744.684397,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633316964978\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33ec4ea4e5c89927fda1517f3c16fbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317039614\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30cd2b7857a2400001b3c24d6828ffcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317101093\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_kids_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ac91a924370b63b79e242b921321b50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Kids Dance Party\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317161375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb22ada93ef655ba18e9b9e9168627e4\",\"labels\":[],\"modified_at\":1758172743.683117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317518311\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf072fca0aaa7e3cb0d7edf9000ec1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633318458266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39ea7e6d5efb9cb8e90240ca9498b48d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633321371244\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_living_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a338e143092fc0aac6088733d8f992\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Living Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633323598789\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64928aa007ddb8ca5083b35e7f8ccd60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Red Alert\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633329926454\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1412ca1484c26fc0f1b15b903c39c979\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b549da1714cb046914a04ae5f9df208\",\"labels\":[],\"modified_at\":1768937324.521669,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:0F:FC-light-front_porch_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f1a54ce97cc4d298e3ebede755c053\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f32cf07f4683f55bcab89798695a46\",\"labels\":[],\"modified_at\":1768937324.493498,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:23:60-light-front_porch_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4473c2dbc00d6320702cda169c7a91c8\",\"labels\":[],\"modified_at\":1775870416.945947,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Porch Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.front_porch_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c474f9af1ecc77455a800c66b4682d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cf5e19c579425ff2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb03e342c2822bb15c887a38425c17d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1637480683670\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea302a8d7dd8f0aad892f4ab3a0129ed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - On - Dusk\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606004641\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b408a1694e51a832ebd0110266ae9b95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606124541\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_restore\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67d608cf2a32ab837f3f638603121f6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Restore\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606172266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c47fb544830a808c164453e004ccaa80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Off - After Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606436231\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2911270340373d6692ced07821d91a\",\"labels\":[],\"modified_at\":1775870416.946362,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.master_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_ceiling_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1a9fe62dd87298be3e20bf76dc5ede2\",\"labels\":[],\"modified_at\":1775870416.947281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_ceiling_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f184a5dcee5c41d074c34bcf6f0788a\",\"labels\":[],\"modified_at\":1775870416.947891,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Office Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_master\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23f3071c3353df3f910d738281ccebf0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Master\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_master\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec4945d179a66d50aeda49d07fd8d1d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights Off\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edc8c107b4d7bdde4ea4ea619fbb029a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639120832058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"712ed0c3c619a6f18ead981897ff48cf\",\"labels\":[],\"modified_at\":1745898587.722042,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639715090770\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d82e452611e452407b78b0ef3b5ca41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.jenni_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a3c8889231a5bf5d75dea1ab9619b42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"jenni_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_close_garage_door_leave\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22831cf5534857f869f81216a62334ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Close Garage Door - Leave\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639718580516\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"524e32ae2138f47b68e69030d244bbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Open Garage Door - Arrive\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639724678294\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_security_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"066e17ebc66789db48cf2e304ed5379d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Security Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_security_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3002756754c22bdc89b0046fb4d2cbb8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85dcc97f2bb788c39ebc5175f6c653dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub_2\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.nap_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"944bf3860f83ebc3f9fab66742d581b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Nap Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"nap_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae5f17c250b517908480297107e4f37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false", + "offset_ms": 48 + }, + { + "direction": "recv", + "type": "text", + "payload": "},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641177479575\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb7ed0ee5f58ab9e7d2801bfdfee8fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188755198\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a1917bd219066d9a31dddd40526ac3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188941984\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.adult_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1fbc8990624c59d6baebd252a9927d20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Adult Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"adult_bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7dda3951af520ed7aa14de0528021459\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641190435073\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"143a15957bf22bdb04ac5c7772a2ce51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Door Open 10 Min\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641191518035\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time_persistent\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ebdc4128b00a85d18f09c1a3f4df0da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time Persistent\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time_persistent\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7e1d8b9bd1cf3e328c05b5577a8cd13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641192891526\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2af5d760ba8ab63f823839e9455f953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b578d45bd122395c5de1934f8f46e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Away\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225378269\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_home\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a8af2ebb3869fa92d132d3d3d00ac804\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Home\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225411475\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51ccecfcf007db71262f1935420252e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Large Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d1ebd3722f10011fa664fec57ed37472\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Small Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"471dfdb1b7068471e0e1fcfea1e471ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225671056\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e582eb57efe5d94969905cf1bff8f81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225729228\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"651aa5c71d4b4b596f4a13407ce60767\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226072324\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cdb6f8074feda911c7b4db1a1e0478e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226100136\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b91da8b1552452b28294bcc304b4f8bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pause Master Bedroom Lights\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"pause_master_bedroom_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"timer.garage_door_closed_recently\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"90320387b4e4ec3a3c7cbd84dbc5ad90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Garage Door Closed Recently\",\"platform\":\"timer\",\"translation_key\":null,\"unique_id\":\"garage_door_closed_recently\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_nap_time_over\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f25dc80c5eb3444609b559695bcff2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Nap Time Over\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1643176701270\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_disarming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"889c9705fedda7305ea5fc7107f5a56e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Disarming\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_disarming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_ring_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01c245ad5b42f3410ceadf17493c617d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Ring Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_ring_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_smart_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d98b2a6e9c31c4c5aebe6deef37adab3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2e11abfde42f19a5057b1b585c72c3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1652512982739\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e04623ca1cdd79fb8087c8cadfc8a27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"468809c6fd06ce648ffd4890de5cc742\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4f4ac0f275a156c8d2384faebbeb939\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandalier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6571da15bd6e6aaf28760a38252de8f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stairs_chandalier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b323727cf823f62522377f2dd6b67c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1124603e90858bd2a7c8eeaa4ef0c908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91edb81063054b8b29e5bc0aee5ca722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a55fd0624053c3fc70a102047121f57f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68111fcc2532b27a80ba3cc01980d288\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0fe65477af3a205470a1ccced0b63d2a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42f50125299f3927c531c18b669aaa60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"261cda58fa35c9826e2e8a9e46548ff6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4bbd43bfe7fd1687e3f9474bf5306d86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48c6d2458f235bc19dff653c6f3bfbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"134f2a9c097befabd5c7d358e36a7a6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3dfacb9c1a377c0cc5390b71bd2955e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16ffd02c1f172e132bc50ed2bf793eaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8487a8d303943a19ac5668fa6c21f68b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73d67204eb476a06333ef8f4adfe5ef7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24288404b3c7dd6c44ff56181d1124e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"864b5cd1631ecb4437a6a0a50c7257e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"722bcebdf2dd4b683a717d50365989dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2caeff606e9499afc9924c3338e29c0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Large Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_christmas\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e869294cbe465647705bafc2c47d8477\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Christmas\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_christmas\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85e9eb0070a496e7fa87eba9e56abbd3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0989c392a71f038b4ce8fe25569ac13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37cbb875f4dfc9ba34dd3b3e17930562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a1e6bfae1dfa193385ec058c31f2fb9d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Small Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e487877af8428842b8d8007616674a62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aa3800e7a126f118ae9b7666deaa2314\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56cd7bf3d052edfdad8981918cd6267\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fddd2acbdfde2f3570dba13d43190b0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6a231953d122e3658bdd77cdcd797f16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24022be80cfdf60a4115c7bad5b035ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec52255713718153f0196eae444e4fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89ea19ac476812b23f5fa073e720b4a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eef0de05d0aa24da9c82355406167041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7940e0e30fc1e1fcc4c9b7a48565002\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_fade_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663c860aed914fba5858948be314cbe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights ", + "offset_ms": 49 + }, + { + "direction": "recv", + "type": "text", + "payload": "White Fade On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_fade_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6be2f831d75032a3ad7b684508d65e16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.notify_phones_about_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ece1f2275efa510e2dd20151a04ed9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Notify Phones About Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"notify_phones_about_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_meeting\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"372e3957cccc5cb8619ea55b6ad0795b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Meeting\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_meeting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"754734721fc9477df34eeb036bb991bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f7c8ae1fc9b54bf0123181ee762641\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dead_zwave_devices\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ca6ff31d8ab85a686150917f46387b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Dead ZWave Devices\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"dead_zwave_devices\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f63024643aed08b3bfac6124ecf6ad55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Detected Activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59f0788b350cff3ed3e4c80681032694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11670cf20ba415249941c61df360a87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6349ef75a1840deb307830662b0981ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4516a2d3d10614f0276006803376821c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9a1de4c001b65b023873dc67b2e1aeb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e26c607d067a78c441b7f9cc75dba4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f9b0a9b9747f274c8ec2c4049f13188\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2591a8696175650360ecb04c34ebde3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Standby Bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c29b2793fa42375476a4961a9cb9f3c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4c4aa34addf089c6e0d44c3dbb69fd8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Ringer Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b402edad0d1f3609fe2ea219651b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Audio Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabac057a1daed31e37304dddb21888c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d033", + "offset_ms": 50 + }, + { + "direction": "recv", + "type": "text", + "payload": "80fb776af8c689f558f3d81ec56c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mic Muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c849b40230913371f3ae86450152296\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb4b92f25deb1c26c4d3a75796804cd6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Music Active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63c6ddd0e2c380c423406f865ab4466b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aece69b417cbd569b31f9e3f03cbaa5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"08d4816026b16e5765055bcb256faaaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"167a38f51480e27d6f32ea9bd21cffe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b36dc595459a5eb7754d1bd53f679d9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fa664a57085896e92fe622bcfad9ffd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level System\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4947061539f7e448c220cbbe3d9791ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79866ed9f3d374f668978f602c522936\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"754c6b6be3ff40167959413eee71a769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bf324078f46e09e10914ddd9ad39ea18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f2ae98f237b3a3c18efcfb76a44309\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Is Charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d588b0f08c94af014bcad08dfd9c82bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Charger Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af35ad533bc818679f6142f0fba98ae9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4eeb5c4fc5a9c4740e441917048cb56c\",\"labels\":[],\"modified_at\":1768937323.674991,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 6 Battery Temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e620a9902d2503fadcb5049f62bd3a\",\"labels\":[],\"modified_at\":1768937323.675654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 6 Battery Power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0bea36868dc2852f26e606cb5585978b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7c392d0e5b5805c04c01a8de1d19c6a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f5694e88652fbe7b4aea3571cd3ad68e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 BLE Transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0c86f94983c08b0aee46a117de5db3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Do Not Disturb Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4925d0a68fae8a6820872b19a33e5e86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Work Profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6e361c77027c92ca103f02ee555a17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Geocoded Location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"61959a38850d543f21bb0e1569e0ede8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e12b5bf1dc6312d8adfe9566a8cddbc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4213bef8495768305cd59cdf35ca4b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e97bb579088e5ea424b616dd154aa791\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f66c0118c076670fb52aaffa7ba1997\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Used App\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2f9ae155ba2acb94d2e58ff2481cd0dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4984eeb61df82c1962b1568de93ae1e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Update Trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c379a58d167afdca3215f4bdad404860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Light Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed4aca22759c17dad01d4267be06c9c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093eab6b381d30ac54b915f31a1ffe6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Update Interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5b1fcf09cfe62058415e538ad489578\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e7c731edc371565fad28bffa63f26fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data Roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3345b994bae95f98a977b05251d2c18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"36a81e770148fbf8c3501c4034d8b519\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"393daf81b19a2e000076de43a50e0d5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a86d523635b1107073a00863ea200833\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Link Speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf293b8e7370ea8c4cede0e10f834424\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5dcf1e1bbef07ef59ddfe608cbc0132d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aea0472231ddd7b05ac99a683af7c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Signal Strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"660adb553e2a9af427c52f135747f7f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Public IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"176bca32b338d93754f9c7be44fa07f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Network Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0285447de022be2a252f35fa4ad7fd5d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Next Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586470a0e2dff113e76d335d791c7cd8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4359e632b04270993df87c3fe628cf32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Removed Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c9addd802bcc76b59bad7b47f376a6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Active Notification Count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"422e2b7d93661fb5bf555757d9aff815\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Media Session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4816202ee229e1793e3f4118768d562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Phone State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6c47cf4f550f86dd82efbe37e4d94c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"978bf765161185ef6cfd1d543281d100\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3da6d97d96132bbaf358275ffac29b85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c969863cd8081060eb057eea1b261e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Doze Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"859d0df2447518ce6d43471eeb66ff04\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Power Save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ada0b3b5277c155272a320fdb3d308e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Pressure Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbfa1364f9833d410ae76130415c30f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Proximity Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a8b1e9e42181e7f2598315ecbfcd15c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Steps Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2dfe5cda59186cdf2870eb4805567d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Internal Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ed6c593bbd2acc4ff1fff9f30bd8655f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 External Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_time_zon", + "offset_ms": 51 + }, + { + "direction": "recv", + "type": "text", + "payload": "e\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"60436b2e4c4506cbf65bbe328d971eb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Time Zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a2fadec84d4c8c45bb51cb557092dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c088aa9a3a0892284a692665a13625e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4a8a05e4ae43df88bc2ba18d31bc976\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db3a97e3ec912", + "offset_ms": 52 + }, + { + "direction": "recv", + "type": "text", + "payload": "bb7ef3afb01868c097b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5a96bfeab8ef33995d19d1c286975ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f0f857a8968c9cf06c05d1eb7ed8e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"599fa49165ca52cdaa308a9291244c32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69bbcb02486b22633b2e78f73ed39657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"zone.school\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df94776e25d1b4c511664437c6d8cd8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"School\",\"platform\":\"zone\",\"translation_key\":null,\"unique_id\":\"school\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec6368556983ccd7323a40edadf2e38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Beacon Monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2160869c0d0023d5de9f7280cff177e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Accent Color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9f2220a04f3d0be4796b6fee9d9b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Screen Brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98521848d3efe121dc305c63a3ae9482\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_hallloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd0dc4211c81c4003e1b7c52010f64b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea4b856a58974c9350f0dc8531733eb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e7b49dcd25a0e17a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"752981de05fcf25b9881f49201d2d259\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e583b4572c572a970b8e4f79740d1d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84d1e072ec6a946787dd954f39def970\",\"labels\":[],\"modified_at\":1733904291.14561,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f441123d912ddae3e6d32aa9719fa8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd925eb2c0373b46333f9982693cc539\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8add6e050c44b030b775c0900d7d955b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca4da0e5938f0ad9b79786aebfc94261\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6da88d50b1815e413cb3c18effddca46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b9ee129cb84e064e54f6b6f2a68bfd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b56def15f41aad4941106a5a95a55bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7427f7c8df98d3cbaba16fb1cbf5f27e\",\"labels\":[],\"modified_at\":1769764244.706022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d92a1c422ab0a536d81c42d8ae646da5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ca15e3b72854b67b5f6bd20861d12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6c4b3a155edb068cee9c57e4b9114bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2600df00617c34fd4a6f7085fa9ad2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9d033d4f9202f91a6b56293e16399cc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d704b74e9a8a5a2a3bbabbc7aceac39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fba7cd65763c03f75099ea4f8f2df62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4048c62fc405ce5317c7353ddecc8db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44607a13e9e0906a7b252b2367029b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ffff734debf22a5da1f04227ed7ce61\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7851ce9b8b45d02c259b100099695bcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e75244fd4d702e9e24eed421f19f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80553ce4ab17b8e3a3c8a0e9f2333369\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df84eb0485292a8dd0738dd75af58ea6\",\"labels\":[],\"modified_at\":1772660779.072245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"962b89bb2e91c9e72416f05984d53a0e\",\"labels\":[],\"modified_at\":1751875652.892459,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a32c673dec6f143954907e9d833d05c1\",\"labels\":[],\"modified_at\":1751875652.921495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d73b8b9674d497ee18d5fc04803bfaae\",\"labels\":[],\"modified_at\":1769764245.433226,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc442861fb551a6a06c1f1789d3a8d47\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8176790314abc637bb78fce1af28dd95\",\"labels\":[],\"modified_at\":1768937323.679914,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"°C\"},\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 7 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5b470b4aa7c1d7e469ff00bf06256925\",\"labels\":[],\"modified_at\":1769764245.566513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 7 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cfe1476f76e9b5e40c2665623a580dcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c501a24867cf1e75b62a7d084fe6153b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"241a1502ecaf8436b468ad0986728e9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"976abf783a6596bb6e4ad93e5eef6ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aafd4d0f25e0058e7691e4b900fd888d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9432ea9dde7daf", + "offset_ms": 53 + }, + { + "direction": "recv", + "type": "text", + "payload": "b7f04fa0fb66caf0d4\",\"labels\":[],\"modified_at\":1733904292.9764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9742771b1ceab90f1b14f82fe2f991\",\"labels\":[],\"modified_at\":1769764246.412117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9140026578f8696f95b3a23e7b4b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2eb9199ce7a259686aa22ed1201bcd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aefcada6f1ae5cd573ecafaed1f82cc9\",\"labels\":[],\"modified_at\":1726775504.304137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"327a9df8b4a560f9869c8a795aa427d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b8aa5d978c603d98ee826e002c5a51f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1935dba47b0942142c6137d75189c165\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b24892dd730b588b3ef58a9c5f6433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"683870d1b12dbfbe9958d3bbbd483be2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05628de07b292547de3074d0fecb63c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b52583e588d331b5489ad61d42d1b894\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea6754e922d43ed5faefd1c37aff673\",\"labels\":[],\"modified_at\":1726996801.234221,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67a5374ec1ce04d4b1fc7f504a5f5ceb\",\"labels\":[],\"modified_at\":1726775486.464706,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9989c20892e290c5f68ba8011da7480\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ac9c525c7baa10637bfa0bfcf5221a8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d33788e0c059d59c257f087a1473354\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6858fb1bfe673ad16c733d32e0e2eea5\",\"labels\":[],\"modified_at\":1736454087.142562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f8ecd430a0259a766ff87dd14850905\",\"labels\":[],\"modified_at\":1736454087.172581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ede90797f1d7ac76694a6f43d9bc8c45\",\"labels\":[],\"modified_at\":1736454087.212097,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"baa0e4cb851227a8feaf9d6df17e9fe3\",\"labels\":[],\"modified_at\":1736454087.244039,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212276650f0469c6b78f1aa1555eb08e\",\"labels\":[],\"modified_at\":1736454087.284983,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2c26aa9370eb6b26b415452c8aa37fa", + "offset_ms": 55 + }, + { + "direction": "recv", + "type": "text", + "payload": "6\",\"labels\":[],\"modified_at\":1736454087.322599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5559192d4b1724258755211fd6c0eb2d\",\"labels\":[],\"modified_at\":1736454087.355909,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f2f1af76340c415aee598869f15f6b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ba5e415bd21554388b021818724eebb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49817327a16217538f7b5d10768914e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f382990d6af13a6f0f40861b861e446a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"acbdc6c80e798bd40e688481d54f3dfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b15ae82de7ad1a7193e870c8a928e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c39f19cdbc833df680ac7b7aeae2a1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"343e97cbda69dad188ebbf6b8c98cbbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95999d30a8740282d4530ca4dcc83763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8dc6554bf62986c588c250443bbd9a30\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501fe56c13dba2403f8e9f6305853d85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45103882a134b44b710984e492b782d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89602f6616e58d5fe6968e27e9de7f75\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f509ed5dc970c87935cd8abb4447cbdf\",\"labels\":[],\"modified_at\":1768937323.68247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Pixel 7 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce994d74c8d3dacc5f2b3f3ad1c4c862\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b81c76adf96efe95f486bca48df59198\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea6b5d6c0a7555063714d5e8fb0966b9\",\"labels\":[],\"modified_at\":1726996802.141611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e86041c03757821fbe478098482d762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f7c6db6916cfc8884490f24662d6d6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"179461930c9335bff09691616b8a316c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d7bf3b13d2aa43a53bff5d32eb3b6a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b76e1c633c646f74498a1b4022d4aabd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ccd80680e8a746bace2ed530127ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"51f7f20cb4853fc0b780e3f12cf45927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:c4:36_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f0afd1ec6dd2925c7d3aa877f10716\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:a3:c8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab1ff41ba82a1e9a081c62b4a4e05baa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lamp_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc50d543f3d0de8dce6f30e83abaa051\",\"labels\":[],\"modified_at\":1768937324.522894,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_lamp_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:33:BF-light-office_lamp_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74f90347b451e99fe4564a5f9034b2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04350d1332ac239890df047ed24bd6ec\",\"labels\":[],\"modified_at\":1775870416.948326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Dining Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.dining_room_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_base_station_power_switch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd59869adefb3c2668706287d79ad134\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"VR Base Station Power Switch\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"switch.vr_base_stations\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"554456bc549d0c50d8ad023679b633b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn Off VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"974317cf2fdad27a6ff88ffdfe415537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn On VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067739.720447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94b349a8c075517a154253fb630c014c\",\"labels\":[],\"modified_at\":1775360982.274551,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f55335bb75f173f6fd401e50a1e6ebb\",\"labels\":[],\"modified_at\":1775360982.275026,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8424b92182bb8b52c940680327e1b956\",\"labels\":[],\"modified_at\":1775360982.275471,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86c88fab85fb335a99f5bbc40d5f6157\",\"labels\":[],\"modified_at\":1775360982.275902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00578db2e0fd380276579a29772a6ad2\",\"labels\":[],\"modified_at\":1775360982.276323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"091e225f048950d7bc9b58b427089acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d4ccd77c43917949c6f8998592f6d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72f6d099f1b60f2bef38928d26cd8c1b\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Lights Motion Off\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1681343760386\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.scaredy_cat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"875026434592cfe2277e6b60284b69ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Scaredy Cat\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"scaredy_cat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d709cb65d0bf72bdd756ad8e1f4ed26e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1c060ca1926ddc648dccc6a4ed79a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Scaredy Cat Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1685999337743\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0468ec0ea3a7c492de483fe1e2a6f3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bc61ccd7457d16d4521b75efa4de5263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"090f0966fdfe9202896f95e917094db9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"", + "offset_ms": 57 + }, + { + "direction": "recv", + "type": "text", + "payload": "options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33efabd658a938a3c84616668b943ad1\",\"labels\":[],\"modified_at\":1728721845.865992,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zw", + "offset_ms": 59 + }, + { + "direction": "recv", + "type": "text", + "payload": "ave_controller_successful_messages_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b46c1986a992590e543ab83dcc22be\",\"labels\":[],\"modified_at\":1728721845.86621,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47716215f6c1e4e0c958a2bd847d04b7\",\"labels\":[],\"modified_at\":1728721845.866372,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c0f16bdb9a7af253322e7f2c68037a1\",\"labels\":[],\"modified_at\":1728721845.866525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_not_accepted\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32047f8c6fedd304c0195365947e01c5\",\"labels\":[],\"modified_at\":1728721845.866674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages not accepted\",\"platform\":\"zwave_js\",\"translation_key\":\"nak\",\"unique_id\":\"4182894947.1.statistics_nak\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_collisions\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8508325f21df882e069374d85c2412c\",\"labels\":[],\"modified_at\":1728721845.866818,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Collisions\",\"platform\":\"zwave_js\",\"translation_key\":\"can\",\"unique_id\":\"4182894947.1.statistics_can\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5d1890f3771adcfbc650417995884fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeoutACK\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67397fab6dfc1efeb76db69e09cd2518\",\"labels\":[],\"modified_at\":1728721845.866966,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.1.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_callbacks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cb0ec827d35594d68324c943295da67\",\"labels\":[],\"modified_at\":1728721845.867108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out callbacks\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_callback\",\"unique_id\":\"4182894947.1.statistics_timeout_callback\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"682c4418ccc9d59ab4766feb2876d337\",\"labels\":[],\"modified_at\":1768937324.461784,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79be22754c52e9d3ba249c79d09b8c3d\",\"labels\":[],\"modified_at\":1768937324.462018,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b9e078797343e12caf9f44a0b0f5b23\",\"labels\":[],\"modified_at\":1768937324.462198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96bd4450ea3aa2dc0fefa5cdcca29ec6\",\"labels\":[],\"modified_at\":1768937324.462371,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d30b0a3a5acb331ecf9bd7faecf3c553\",\"labels\":[],\"modified_at\":1768937324.462545,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67ff38d870a2330331c2b8ce6d626c9d\",\"labels\":[],\"modified_at\":1768937324.462722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f177b710b34d34badf49d64727b08927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.4.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a73d8ed5443f8307691ac47b75cb6513\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.5.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad589416f84ee0a4bae7247f7101e698\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.6.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08fbadd4e068fb26c4d98b53f492e322\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.13.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb6e3d9400e10748fbb5b95f4d2c14df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.14.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9657d799395ad95f249170d72f4515ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.16.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be10ca3bcb5bc1051a357c059873eeb5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.17.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e9cf7a82a0f823c8cd07af1e9828c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.18.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a463e1a6b3777f832e1c78e3c725c8a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.20.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d13a24ca75cc9b0a0413f9f7c0f7c5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.24.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48d8ac6919beb5fd1f7b6715fbe12b43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.25.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f233496fe9a9cdb2df78bff33a2b836f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.26.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d6f8217dc1118036bf98bcd10f4133\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.28.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80029cb154657f9d9c91b39ba1e31549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.29.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46570cdf00c69acca5931fa450785a9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.30.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35b093dc4c64641b23021740e8cd27a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.36.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a65fc8863f070a02d939d1b8306a2d8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.37.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53ee574e53ebda2b8e3f989a3ba13fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.38.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30654040cc3e65801967d3b7cb69b1df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.39.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"544683dd8a7cc50d1bd208a73f4e3307\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.40.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ebe35465fe37aac78f69ed1222d264c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.66.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab0c922ac84db0b313a9c93dc22c6ee1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.4.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8385c6cfa7f0c4997be41b6a49a4b8de\",\"labels\":[],\"modified_at\":1728721845.982674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e386cb6e210fc89df0fab411faf5afd4\",\"labels\":[],\"modified_at\":1728721845.982907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9c808db283e54ab2446bab6fb1cc994\",\"labels\":[],\"modified_at\":1728721845.983117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba1e80a8483cdfc2899d23b81aed739c\",\"labels\":[],\"modified_at\":1728721845.983281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f42d47a34b6f9e3f87ae053978ee85\",\"labels\":[],\"modified_at\":1728721845.983435,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.4.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9be484fd8a2b1135e0eb46e741acd273\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.4.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"693765a84e9f3e3dcad716f4eeec22eb\",\"labels\":[],\"modified_at\":1768937324.528833,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.4.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"012352a68babdcf20b6cf95f876e926f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.5.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f672471b5c978420e5f1dba57dc4733\",\"labels\":[],\"modified_at\":1728721846.000478,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c4b943d6fb6f596b29d6d977e0e46f3\",\"labels\":[],\"modified_at\":1728721846.000702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9873f4f992eed491065ac7a2f339a7bc\",\"labels\":[],\"modified_at\":1728721846.000876,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69032bd476a7b17eade17059e08180a4\",\"labels\":[],\"modified_at\":1728721846.001035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb63ebe968c8197ed6fd472701949976\",\"labels\":[],\"modified_at\":1728721846.001179,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.5.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69dbe60b2c6ede995a5e608d08544cf1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.5.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46b8ead388ec6b9bbd189354e8d592ac\",\"labels\":[],\"modified_at\":1768937324.530131,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.5.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4cda4cccf1bf41fafadcd00681b40751\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.6.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3", + "offset_ms": 61 + }, + { + "direction": "recv", + "type": "text", + "payload": "da25ea5b1606150ef66a9080137bdcf\",\"labels\":[],\"modified_at\":1728721846.008122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69e11426422fa9379fb37cc8b90b0100\",\"labels\":[],\"modified_at\":1728721846.008333,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6068bcf6b64da799f454a39f75d219d\",\"labels\":[],\"modified_at\":1728721846.008489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e19fe563fa9afb307a1d1ec0af6a47\",\"labels\":[],\"modified_at\":1728721846.008639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7c137d08211c63fc135d56ad8079b20\",\"labels\":[],\"modified_at\":1728721846.008782,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.6.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632b4444df9edd83dc36ddefc3105924\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.6.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b89faa5aa8c37389c327d33c0bed5f5e\",\"labels\":[],\"modified_at\":1768937324.535509,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.6.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c48a9484b52fe684114f779a2fb5404\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.13.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4c6df2834c4defdd486be1e9a612c07\",\"labels\":[],\"modified_at\":1728721846.026245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"511e3b988f5150cf206ecff8b0a48afe\",\"labels\":[],\"modified_at\":1728721846.026539,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e77fec708cbd9dafd349afe5a826a6f\",\"labels\":[],\"modified_at\":1728721846.026691,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d788a6b3695255083009f04d3dbf84a0\",\"labels\":[],\"modified_at\":1728721846.026831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bf7f721885b7646b04081641fc9b9d8\",\"labels\":[],\"modified_at\":1728721846.02697,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.13.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4461e4c669a848b9ef3223240813573e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.13.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"308b0682ae88de559074a6de7c53834e\",\"labels\":[],\"modified_at\":1768937324.541059,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.13.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_room_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"705c92b125e5de1380f3c18794369bf2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.14.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6521456f61c04ec8fe7b1e5b097d37\",\"labels\":[],\"modified_at\":1728721846.034872,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00c3b60e2e3cec4899e63d54e900e047\",\"labels\":[],\"modified_at\":1728721846.035075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec9cb65a35afed1951ae88b782595f5\",\"labels\":[],\"modified_at\":1728721846.035255,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"231a387ade3bdaa4a66853272db8b0ea\",\"labels\":[],\"modified_at\":1728721846.035404,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb1ecee5163bce8480c0fd35a09c6769\",\"labels\":[],\"modified_at\":1728721846.035575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.14.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"85069e58b15d22ef66a4bd97c6129f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.14.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c8fb660cd92b5d242ab5d679ccd7b33\",\"labels\":[],\"modified_at\":1768937324.546124,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.14.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c336a49feefaaa0e9faa1a38535c422\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.16.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d93c331bf5198470ef4ce4f524c52272\",\"labels\":[],\"modified_at\":1728721846.042608,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e863df09902ad83c56a2841cb51f576\",\"labels\":[],\"modified_at\":1728721846.042868,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_", + "offset_ms": 63 + }, + { + "direction": "recv", + "type": "text", + "payload": "tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"798ee7f183a63fe89f1e942c636b3bf9\",\"labels\":[],\"modified_at\":1728721846.043022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42ae2ffc8bde328a61b8ae4373aa5eb9\",\"labels\":[],\"modified_at\":1728721846.043158,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ea12c6f7d52404e2147b808e1242b41\",\"labels\":[],\"modified_at\":1728721846.043281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.16.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7ce0933d67d34e56e76dd1709593328b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.16.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dca82438215fb7fafede9cce49acda\",\"labels\":[],\"modified_at\":1768937324.551074,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.16.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"304e4ebde63c0b6724afd5e92cd59f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.17.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cdf393e8f27ba0fa618069c16022a026\",\"labels\":[],\"modified_at\":1728721846.051416,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40c570bea89d10e15145cb64ee1f7ab9\",\"labels\":[],\"modified_at\":1728721846.051615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b2edd3fbab7394bab0c14cbe7637c5\",\"labels\":[],\"modified_at\":1728721846.051761,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4353c6bd553ecb2277ca7b997c50c85f\",\"labels\":[],\"modified_at\":1728721846.051897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83be3dae9ec35473d348b3c5133411d5\",\"labels\":[],\"modified_at\":1728721846.052036,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.17.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3adf44d744835c998ccc919bce886ec9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.17.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7e70ca5aba67a4a230b2722299052e\",\"labels\":[],\"modified_at\":1768937324.557331,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.17.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a07cf5d4224ba6239a13744c18dd235\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.18.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7caa0248d8ee1076f41ddb3cc2c89f8e\",\"labels\":[],\"modified_at\":1728721846.057035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001bf6da6163b4586b7f7d920b182c3\",\"labels\":[],\"modified_at\":1728721846.057227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"407a6b9aee48fb0bb041de319bdc8731\",\"labels\":[],\"modified_at\":1728721846.057394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"474a984405d6ad3fa524af6f21852079\",\"labels\":[],\"modified_at\":1728721846.057527,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc3da0f80245bad1dd0b080c05f60ce\",\"labels\":[],\"modified_at\":1728721846.057654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.18.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"338d555606471bf4656042ddeac2dd42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.18.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"debf128d126cc42f9d9678a177a3d7ce\",\"labels\":[],\"modified_at\":1768937324.561345,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.18.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da1541fbce94275ba5cbca676f2702f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.20.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e4917ca0de8cb75740c3cf980a2b1f\",\"labels\":[],\"modified_at\":1728721846.06327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bac1b4c13d182d12c16822efc7415f3c\",\"labels\":[],\"modified_at\":1728721846.063447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04070ea7d7a035faa87209770e527115\",\"labels\":[],\"modified_at\":1728721846.063587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e29111b9581f147ea8a636aa9ca50c\",\"labels\":[],\"modified_at\":1728721846.063714,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77c23d9ce3ce745eab3994897b4c2d7b\",\"labels\":[],\"modified_at\":1728721846.063839,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.20.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9831210a5f148ffec0c960a3cef41eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.20.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ad24989273058ab1e0afede3384b0f9\",\"labels\":[],\"modified_at\":1768937324.565645,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.20.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52d9aa715f3b1cefbfb68ebd33ff9b74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.24.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05d8bcc97db99a59b495eb3c76a683c2\",\"labels\":[],\"modified_at\":1728721846.070907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe6722a9cc2ab68e12b30784f31b1428\",\"labels\":[],\"modified_at\":1728721846.071086,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2bb1f0bb2a2687cc1a615a13447f6c3\",\"labels\":[],\"modified_at\":1728721846.071316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c2e48f0bdf3f152646733a2065a7869\",\"labels\":[],\"modified_at\":1728721846.071476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8793d6ce94921703ff9d4ef6d283102\",\"labels\":[],\"modified_at\":1728721846.071605,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.24.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b971039f576f806395a3bfe630bed910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.24.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3ba969b6fccae3a10caf0bd81dacb57\",\"labels\":[],\"modified_at\":1768937324.570316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.24.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e199fcdf8a82e3cd5b2aaee7e98b3ed3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.25.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d118bd28fcac0c0e418c5fa26c908ae\",\"labels\":[],\"modified_at\":1728721846.079745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d036715c2c04cea631fb5ef537052fe8\",\"labels\":[],\"modified_at\":1728721846.079932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57325db8a7fb10afd15751aa94309c1c\",\"labels\":[],\"modified_at\":1728721846.080103,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0b56df69f1ed80a097a437a7234a8e9\",\"labels\":[],\"modified_at\":1728721846.080229,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887eef5e7ba55d9e0936e56bc66c567e\",\"labels\":[],\"modified_at\":1728721846.080355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.25.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afc9d72e408779d20b34dc1f01ad3536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.25.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcda026ec929142ce3cbfa14747dfaf4\",\"labels\":[],\"modified_at\":1768937324.576948,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.25.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1583858de49ba4c0a4b4ff2ee0c29d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.26.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f5033b58cce7dc54c076c8d180392f0\",\"labels\":[],\"modified_at\":1728721846.088895,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43147453f1b24bccb5c5f5e5e62f7068\",\"labels\":[],\"modified_at\":1728721846.089144,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4387dbeacfa284722783b317dacae2b\",\"labels\":[],\"modified_at\":1728721846.089304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d1c22a4b346df44287e85024006f90\",\"labels\":[],\"modified_at\":1728721846.08945,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"535c8d77519ba41280c4a64ec64bcb51\",\"labels\":[],\"modified_at\":1728721846.089582,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.26.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b08f4bb01195276c704b25cdd96196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.26.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b0af79a6c4a5379175d0900063ac555\",\"labels\":[],\"modified_at\":1768937324.583385,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.26.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abc77ab50d0d3573e9e10357e6b4092b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.28.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8cd26d45d0e80aab853b7d479f30848\",\"labels\":[],\"modified_at\":1728721846.098327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f324aa672663f6a659ee494545522e\",\"labels\":[],\"modified_at\":1728721846.098537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37fb21bcbda4df8298f567ba2d598434\",\"labels\":[],\"modified_at\":1728721846.098676,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c00a5c5168ae3d928deb75654328af4\",\"labels\":[],\"modified_at\":1728721846.098803,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8c544aed3196548a02205a35243f93\",\"labels\":[],\"modified_at\":1728721846.098936,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.28.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab6a89acdc4cc754d27d035797994522\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.28.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf69f70d0", + "offset_ms": 64 + }, + { + "direction": "recv", + "type": "text", + "payload": "6538e49a0517a65e09e86d0\",\"labels\":[],\"modified_at\":1768937324.589758,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.28.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a77e2f997e7096c9b763729289da0222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.29.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"570afd43cc017753eead4837bedc9bc8\",\"labels\":[],\"modified_at\":1728721846.105962,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa61e5c4f5406900003bcd53d7ea9d8d\",\"labels\":[],\"modified_at\":1728721846.106143,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1d9e9b71984b9ff29afff4c6bdc040d\",\"labels\":[],\"modified_at\":1728721846.106288,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a19383165b4ccf9d801c9c7f26f50ff1\",\"labels\":[],\"modified_at\":1728721846.106452,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3becb6b0af1994c2005db257d3c08b6c\",\"labels\":[],\"modified_at\":1728721846.106636,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.29.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19e1560eba677195d70fe919a6144950\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.29.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef43746b3d59b9ebed78786a6a0dfe9f\",\"labels\":[],\"modified_at\":1768937324.595077,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.29.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfb0c54c7cf85ab1e4adc409f895e19b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.30.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1fdfa3a2d14760b9475ad822051c5428\",\"labels\":[],\"modified_at\":1728721846.113654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e4b1a6e975cf9b1d9994e5c0fc96fe8\",\"labels\":[],\"modified_at\":1728721846.113904,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2940e9491fc8082f8a7566fd97155363\",\"labels\":[],\"modified_at\":1728721846.11411,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912541a2fa4cda4138a5d43e32b01c9b\",\"labels\":[],\"modified_at\":1728721846.114314,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09a2c2e79f06f78cac686eb78b5a0983\",\"labels\":[],\"modified_at\":1728721846.114484,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.30.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8184bb20bb3ac0aad8c150c92d9b60ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.30.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"595b480ffb15cb31f87e003a704469b6\",\"labels\":[],\"modified_at\":1768937324.600438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.30.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02636c3d8887bce10db55744cf1fb300\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.36.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3659d233ee1194e78d575c8259c79d75\",\"labels\":[],\"modified_at\":1728721846.119874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ab37c037a538751cc745fc318c53375\",\"labels\":[],\"modified_at\":1728721846.120105,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ebf0493baaeefaaf3727add303ef097\",\"labels\":[],\"modified_at\":1728721846.120293,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7aa05f5e8e60454c434e760f09ba7d0\",\"labels\":[],\"modified_at\":1728721846.120469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad7f8e9a7534ce6f62dea3787f34512\",\"labels\":[],\"modified_at\":1728721846.120604,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.36.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817b83fa9b3b611ef9148d3a1c7b9458\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.36.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"207b9f016771de3f0791a50db497c513\",\"labels\":[],\"modified_at\":1768937324.604321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.36.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32ed05ddcea53a4e1ab8ffe90200bb11\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.37.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fe4ae53649255d1e27d0064fd803ab9\",\"labels\":[],\"modified_at\":1728721846.126048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08e5d0574d23b7feab02b70f64bcaf5\",\"labels\":[],\"modified_at\":1728721846.126233,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e3ac4ad5973a9fc59e74f034b3f8a9d\",\"labels\":[],\"modified_at\":1728721846.126379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f451b1f3ff73499f3efa7843ba1fda53\",\"labels\":[],\"modified_at\":1728721846.126518,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a513a0bfadb8e062eb3d5ca06378ee1\",\"labels\":[],\"modified_at\":1728721846.126652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.37.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb48677e23288d884f9c18b559952cff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.37.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d2e87e3ea7659f4c1ec2f9581b248ab\",\"labels\":[],\"modified_at\":1768937324.608389,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.37.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5565c442b090e06c8f7eb6342f92e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.38.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6184498ceaf1572ecb710a88977504a\",\"labels\":[],\"modified_at\":1728721846.135332,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f8631a758d2f4b056f007426987b5d3\",\"labels\":[],\"modified_at\":1728721846.135525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8186ffa61a7c07f827a82f6ed999ef4b\",\"labels\":[],\"modified_at\":1728721846.135673,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4e9a80844eb2d564dc68cf1827019af\",\"labels\":[],\"modified_at\":1728721846.135808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0205fe39e1a0a4578c09918f54f68fb7\",\"labels\":[],\"modified_at\":1728721846.135937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.38.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a43cd34777a3876325239f0c80882549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.38.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cddfcbe8d05af4ead30b2c9a732e8d97\",\"labels\":[],\"modified_at\":1768937324.614863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.38.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa7663cdf3be9fb9aa633722f02fe95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.39.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"185eb8e01e811aa96f1055db2eba082f\",\"labels\":[],\"modified_at\":1728721846.146856,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7507b2bae3374108dd49ab35772c96e8\",\"labels\":[],\"modified_at\":1728721846.147069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11720db84f8dac252640168c91fae5b5\",\"labels\":[],\"modified_at\":1728721846.147219,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2415ed4c820427b452628be0746dcb0\",\"labels\":[],\"modified_at\":1728721846.147361,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"605baca0427b42514da2eaf78807a67f\",\"labels\":[],\"modified_at\":1728721846.1475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.39.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d2b90ddc8284b68e378215f59d0f6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.39.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f93c038fdf85ec4247f1559f1b415\",\"labels\":[],\"modified_at\":1768937324.622387,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.39.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5999ecfd025c3cc7800a4a89aa08edfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.40.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"917be806129eacb471d1ee0d0509698a\",\"labels\":[],\"modified_at\":1728721846.155502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94e074b915ef0ae11677a926f8f4e3d1\",\"labels\":[],\"modified_at\":1728721846.155744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84a23599661784c7f5dd79065fe6bc72\",\"labels\":[],\"modified_at\":1728721846.155897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e6d217bcbe4d21e0ac74a35882afd3d\",\"labels\":[],\"modified_at\":1728721846.156027,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d101cc55ce6cddcf624e76cbd806cc2\",\"labels\":[],\"modified_at\":1728721846.156151,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.40.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e96d40f2a5ff985cc298963049a9848c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.40.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a4374928a53f5685eb1db6dd22fa3d\",\"labels\":[],\"modified_at\":1768937324.628793,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.40.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db458cfaf86d76636a7d2bf0895309de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.66.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5270f9954244bb65705d47f9136e1aa2\",\"labels\":[],\"modified_at\":1728721846.230051,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82399c66db015194b4f3e070808696a1\",\"labels\":[],\"modified_at\":1728721846.230244,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471598b270ecac776090a8d2c01bda06\",\"labels\":[],\"modified_at\":1728721846.23039", + "offset_ms": 66 + }, + { + "direction": "recv", + "type": "text", + "payload": "6,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae71812be09a23822eafc01198f60890\",\"labels\":[],\"modified_at\":1728721846.230531,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e76593d32bda68336de64e105ec8f0cb\",\"labels\":[],\"modified_at\":1728721846.230667,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.66.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98d943f3a15d678a077164e12b0b6f8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.66.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"162a16ffb4efe6d9bec61e35df2cef00\",\"labels\":[],\"modified_at\":1768937324.632659,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.66.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db32b0a9239e3164b238a78d332fcc09\",\"labels\":[],\"modified_at\":1728721846.270694,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c11d0e40cda08b41a09ae52d89dd462\",\"labels\":[],\"modified_at\":1728721846.271147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmLevel\"", + "offset_ms": 68 + }, + { + "direction": "recv", + "type": "text", + "payload": "},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20a58486d4ac94d1c4627100475635e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a37d873a73a470f8610b1d170620e9c8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c53aead1aed9f2d07387815e701ea7cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd37a59131eebc3d3efb87e3b9a180fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb13b83675e38a3d6fea9f88a7fd514c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d95d516b1ca9219bf2fca27f7f2908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b844ef9e2e6426121768a751759fe087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd47e78959ada5340c2f57306fa58db0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c37787e174ef03e1765d9bef617982bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60ead9b3b7d23ce46d5d7e26d8940d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d51696e440645ca3f4b8529e028f971d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"237fa206e122aa41369fa1c33d8d0a8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77483a0a861c0237c93f510811bd0c72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22e6ae4f8004df116af0e2b635af2c29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2648ad9b3ede6e6a150d9efb636b049c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2d88cfc6df1889a40731747606245be\",\"labels\":[],\"modified_at\":1728721846.274493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdea929adacbc2d74c59d113df4e814e\",\"labels\":[],\"modified_at\":1728721846.274952,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcabb74ebe7fa1ef4dfc174b377e74be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"139db407d0314d892e9399e794a94160\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9717997085ccceefc242700248840be7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e249ef83acfce3deefa5a3a95e68bbd\",\"labels\":[],\"modified_at\":1768937324.702562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f52e426d962ba92d279ea46fb81cfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a516cccd0dfde572f7ffe400ccc573ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69cc3fc9e5decb87fd544bd9c59b2d6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28b1032c218c390994d8cf969ce895d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02d8d11b76cfc3587daeee2a51de2670\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2abee3d97931b898d557d8b57204b5b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de10b3dccbd140d07b82ee3cbe00869a\",\"labels\":[],\"modified_at\":1728721846.285949,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"285d1906223aa890187af6f521ac5aa6\",\"labels\":[],\"modified_at\":1728721846.286414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9768e0fe86fe22a99d2bd1e6fa4a50a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad5520faefe19b4022eb20391dffd559\",\"labels\":[],\"modified_at\":1768937324.709538,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5816a5b2d76cec6a8f87bce0e5613c69\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66c6daf5be1551275842e31ca471799e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b103e540c009d00db923ae148d2ad3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3070f845f294440ea467f871f4e9758d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffe6be3b9f35cddc7519f62786d0eb4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b43884450e42b01a842b6373fab6954c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ff72dd6844c777f6523a15e4e86c4938\",\"labels\":[],\"modified_at\":1728721846.290665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a530ee6f5837210fe17a7eb90140108\",\"labels\":[],\"modified_at\":1728721846.291104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fbc10825a215ccf77771ac04d53a720\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0af0ae3d27d1b34515317f6f40dee262\",\"labels\":[],\"modified_at\":1728721846.294166,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74bdfa251036d94a97f241789a25b689\",\"labels\":[],\"modified_at\":1728721846.2946,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e698758cc618d42a7e6118d812ecf07d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2216fe6d827ae6564c3f5b55619314e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93cbf85dbce888c01dcd21f2d1c99370\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"183772562af3d9507f5f27c5b0ba0f38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c6433560756c9431e1df77c42b6d28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f6a57de7a98d6ac7b2e945d771fddb1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78debeb2eab74d07e95f30c8b4852e4a\",\"labels\":[],\"modified_at\":1768937324.729745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e70bb4917587f9b8a1d3bd96cadd5cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817943eab67fd9798445262f476064a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ca751c70c4d7fedf4bf8070434d7e6d\",\"labels\":[],\"modified_at\":1728721846.301652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44d8898092357555eefe4ecad44dee1f\",\"labels\":[],\"modified_at\":1728721846.302076,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf7330eb6dadaa91ec87c23ee00ae26a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c56e9d8fcf2d8ec59e77e00072f24838\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4446cf0c58d47c700287c9c21432bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffd7dbad382df41d7195eccfe18810d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security ", + "offset_ms": 70 + }, + { + "direction": "recv", + "type": "text", + "payload": "Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e0906e8e3e7e8461a822528b1cc2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43b135c801d45745f3cf05c1bf20284d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a58405b84ac4e8dcaf4e760967791caf\",\"labels\":[],\"modified_at\":1768937324.733974,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f994629b2715d3c8dcf982027a8a780d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"762c0ea162380dc2056fd5704a2719ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7eaab4a2744c4902a408c6debc79cf37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d848e0323383acb9c5ddc423cbfd950a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"908ab6e73ada2695a0b1c8d01e975190\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d2852c957d65076fae9aa19748c9d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aeb0433e0d87026a6fbd8afc78aae33f\",\"labels\":[],\"modified_at\":1728721846.306497,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f989704f396de0f609d4b0351f2c0f9\",\"labels\":[],\"modified_at\":1728721846.306925,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a737baa4dc868142fb3dadc46322ab27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e14f8fb1c155d58e6f6f00768c1fbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"defadd1bbcba92ba76af88f17a4b6948\",\"labels\":[],\"modified_at\":1728721846.310189,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0014deb8f599a19a01599b67b85ba0cd\",\"labels\":[],\"modified_at\":1728721846.310607,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"904cf14860d4bd4c39b88c6ffc505eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2a2c87ca142a9691153c08e98c9484\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb608eabbcb86e1939bbfd47af08077\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1cc16282de895c102c625666255dd1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9654b1744b3eff83e9fe67c5f490209\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e48cf8e1095ef4f80ad4c5a40bfeedaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b5e2609b44518d7b650ed31366f9844\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"846632f2affb52790f552049838b285e\",\"labels\":[],\"modified_at\":1728721846.313113,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc5b74a375f77f6146ac469f4317556c\",\"labels\":[],\"modified_at\":1728721846.313655,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e31ea48aa516d44a0e74bd58e0bce5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2657140005056de27f2fd24f0f8c406e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f53dddb446efd5b75c2c104009de5a9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56a286889a09b67cb4f3da4901dcbaa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c06542330d8cd6459f5a6d000a45daad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17949bbabe2791d81f4839fe3e9110fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"523a483aa227e0b389baa33d916a600b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99761b8c80b75889a0e4d4e1e8d894ca\",\"labels\":[],\"modified_at\":1728721846.318031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d64a13fcd28fd09e1e1e8eb2cd8fa56\",\"labels\":[],\"modified_at\":1728721846.318493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70a2a1679ee20d747ff2a3a413f1e105\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f235f0b2abe04b471ec5b5e5dee4a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bc89c05c4c94a30db7238452914e215\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98571f78a667d1495fe0cf9836c9472c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e1e09dde3dbf7a35f9cd2d43962adf7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52c7ca7b64871829a52196f9006ab15f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8203802817bf1ad148be4fa89c851d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2584fd64a2409ee7a09a132954035e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98b7c7cf21f957af7621433d77abcb1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"beed0d43ff1aeede01dfb858e8c5970b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"921320ca502d44f294ef98cf28935e13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f3f60bb56320ae0aafa2079eb81f15e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d821dccb30962b1463ccc94505f53052\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e964cccf2a7ab8f0eb0eb913f676f05f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c84d95a9ef4cc438fc83d1cdbebba33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12ae7f7b84f0b2f02972e196ce9a93f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e42e6ff5ff57f588c006928612396ab9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d486aec5330d75337491301294bb4435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"346c374272b05752ac5fc931704ab571\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e36b9133e1d28872231dea0fb93528d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37d17dc9e2421530e61ab1fa54776f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9496b4f3a9d78224c587705a5efdbff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc277f4c90c74fb8271cce66304ddca1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"", + "offset_ms": 72 + }, + { + "direction": "recv", + "type": "text", + "payload": "b666349984f09005c3ea218b605990dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf1377a4d496a97ca0468993f9d02d34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b237c13f8ff2d948207447d610bf79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7e258cdb97757b5d1dcb2cfcb1ca601\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd811627fcc5a2efe088ba85498824a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a034873b733f7302c12f77357cb7d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a06a139b75a0038df888efc160b6d718\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f342fffebdbb3961b6c7cb1483bdea7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fbd66619e5a006f253944775dbbe19", + "offset_ms": 78 + }, + { + "direction": "recv", + "type": "text", + "payload": "e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe112a32c778fc5e1a85b57ddc7caee2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"269d59ba2afbf01a89976e87a7aa1210\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fdd6e83c70df50995811a7b4e2a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"461339479072e6cfa6a97b02f9607e66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4359424baa64e986b59fa41d415ab1a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc8aa0c17996ff85c861eaf8d5b0cf84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21eabeec28b1aaccd01363d19dfa11ba\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb5accdf9f56c10d895bd732f109ea3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d7d60da7940314cd626bd834af5e727\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"388577ab65bace3f26ee0ac8154104c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b33e66f09619f185899bf4fd71502c5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"531f0295e3afb7186a34bc84e036e106\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb697eb52f8e49d6847614e6c87ec81f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6c5c1713703f37c2d0c9dc58ab71d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa66284a36aad4743c9457b43009c3d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2dbebd1dffc9b31aa00702afca47fa85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"742d317e9b1b93196a64e738fe81c3e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_tamper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5694abb63a3d7d0f1fef64ca7ced652\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Tamper)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Tamper\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11e92860f380e2aed665f5bfbbcc4c5e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Motion)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7db329966d8fcaf7bf8f2a1a041f7972\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b27167efcf1befafb40ba35f59517cd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48fa14c557be3", + "offset_ms": 90 + }, + { + "direction": "recv", + "type": "text", + "payload": "aac0f57468322f7eb26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb55ba8a855d25dd7428036e0cd0558e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ade08beb8063bcea7d4994e3339ae993\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b9cdda5ff0c3b9cc4a989febec670ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8a2920baf84268bd89b048d09e651e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d8ce0431cacc919f6654e0d26866a2ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05eff5902e0611fb8f7bebfb06af26cc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"576780787e0d9a68a0bf4ca262fd2e15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c83da5113e06a426ab49e391daa6f61b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2219269962fa6d6e19aeb17527475e5a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5588863a4b18d8b348a74149bba2221\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec633310e97c80c59c6315eddbaffb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"95ba1e0f0980a5e81a9ef637b5ba7137\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e1a41099b9e58ae2ac48892f7d7a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_sensor_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a191ceeb0e05a37927f92d920b7e346\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e06c6e040bcfbfa49d9e4e0f15ae549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fa47306024f7160e82fb2166d71503a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44754edc6ab7eab6babc1a133ecdb743\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68a3fe093a4715fbb03c1f6ddbfd4315\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e025e5d17b85cc5f449e4d48ae663657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"130711c5025aa11d4938873aa2b2ef5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a640b780d8eed0ce27f6b553fb0cabe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f692df4d0a05b8ad1192c699fed5eda5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6353d49e24aa16d649ccc114e076", + "offset_ms": 92 + }, + { + "direction": "recv", + "type": "text", + "payload": "84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc6a70fe7c7b6f1cbf485e3b2b3e6be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a088a5d0f5d09b2c15852d0c0e787b7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"964462020e6e73b0b0169f5a61eeb044\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22fb495535a4ebd7554ace311e87e8ab\",\"labels\":[],\"modified_at\":1768937324.754808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f062bd2af5cfe5046c59f564790afee9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47e5be29e488997e90937e83b9da396f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b7c79a5c504e2f3eef63f7237af33d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1562e743cda38cd488936d23e22b58f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99afb89d564e6c8b5f415c28ce8491b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4292496fbf98923806f65951145caf42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62c38c853703ab58d017fdffcfa06a03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35ac42b0024d325caa77eefbb92fd9b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5127f16f1631b5877cf467e2d58c1c7c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"55c1d4c91d596bd4191f48a726f50433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7407cd1518c4dcebc6ef6c5d8e7da423\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6415881cf9e2c0b61be6abfa112e5cf4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2725a94f79899b5a4970b5c4d3b9e418\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4704baadf1151fcb1af4eb70c654e09e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30ee61c6ac77872bef422f8ab9ac933a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0732e5ee938297a9f5b973ed48b06d3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24e11985867ee122b198a79d40d53bed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e0ad69f430a72ac40230febd6dcff06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73efe848e7f6628deb3e86f815638a6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e11e57268a63a858310fd24ac8994a26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3929bbaa3f8cd13a3aeef2e57952959\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42e94a93f2db059304acaaf69c17af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d643c40ce27169788c2810ecad316e60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_on_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"90198efa0dea712c09f423bc7fab9741\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: On Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_off_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21c9e490e8efe764f099f91b18f22c7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: Off Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_battery_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf3a65f5e9b1fbef950e3e779e92faab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bd57910353ffae53801fd8a4f1b5f0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"454f88037ba03f08b83dccfd939ddb4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b426c8fffa9d853c719d4ff70196f3e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6824baa7a41d44d33603b4c760879101\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f0b56e360639ff5daf69a28f3036e79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.office_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eafd82385841281bfe024783dda13491\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ce75698c6edf211b8ff2e161520b411\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b98a93997b7667b4711d2831983de8a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5734672a2c09d8f0f6f0e233752b945\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99e3d86cf2c0a6fc7015cbfe7d79a060\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc9e480f72433ef3b4ddfe4a5d6dfa3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bba437e48b66a4689e26bf8b75377b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5bd8a6289b290db5a819a7507404574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c540b165eb0ed98e6dcef5b988de2c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f131df2fc89b340d5ea5d8f7553075a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0b6740cab7d3dc04b516dde24dc616\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b37302459fe4a8e950d1cebd8a395e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e103d6684aeb59d2b23569b207ba4b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1360a0cf141f9ddedb50eac50ed00ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ac8de408549fc851b81f2ffacfb1b1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bathroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db63a6e036511328bd6ece0876ee562a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2b981534f8171df4c6da3f420af24f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.cat_bathroom_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"583b41419d24459b2457700e28653e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912457da9847cd4c455444e5e3f4b02b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d9f921b3ad910d1de65af1ca97cf54e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.large_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe738ced38fd9513231370dfbd42e0b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.small_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e39d012d9fc6092736ecec03677116f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_motion_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6db261bcc15334e1bd64fd2fa62f1cf8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f46c5e88175f5336c08f0ab4b7580be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5544ef469f053ffa8759c7294efa6ea2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4a34eaf48d2c692542296f0e8a7e5d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3c7cf072f2a8ee7bd8b5d3a2cd179fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46ea4278b577244adfc", + "offset_ms": 95 + }, + { + "direction": "recv", + "type": "text", + "payload": "842379d0aef1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b396ff111d07c8a2336ffb8b9f73e25\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6128229fb9f940def07e9c96cf14fc6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1274c94252cb99885059e3bc453f9d55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bc4bd805d7619c9a1b04076c931616c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2984b5f884cac4f2c289443dc2062126\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff64a4970c47dd1e208dc6113f29e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2e22fcbf052b73b858a5895ddce0eac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2e19645094c9d18821b943096dbfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e205c1906cbc3351074944002bdd1128\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b64991bc065b8ccdcbbc057f446b1995\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c14062b8523902321eadf7b3b974257\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dbdb7cecb5c85ea349569e68c3b5db5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fb06bb52f2e78831d67c9bf81a0d07b\",\"labels\":[],\"modified_at\":1728721846.268738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7a0060798e93dae0faef390c32c1c1f\",\"labels\":[],\"modified_at\":1728721846.269198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bda4ab6b68f9cf6d154e58d087f0dfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"876da9cde9c3be1845863f537752d364\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c034573ffd52e5a3d3bda9ba303df881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04c854aaf4c81f1a2d429a4a710b960a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c51654eb9bcb7b8bde5f10aa2a6ac2b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37b229da70e600b50c4da7fdd12d386e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.back_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad8b88418744a70fe17230e705c04e4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2d44675bc66f37477a1df4661470f7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e093e8f61c9dde686aec60b62b160f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d1ca4fe6518f80345d12cdb048bca05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f5e73212ea9ec168cfe8f89cc5ecc5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"619631e25ad31c44d797b3373abc0121\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"41c5da359bd07253c5906ea3d1d5c9bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69ab1adac8e2d678e29ca7cfc3663b5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d18f196a4578f9f03c18c42a349f4942\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"828bed1781d3ed491bb52194aa5f52c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb03e8f944a74a8d6f22cacb69a179e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ceea1e88fa6359162498d39710e76608\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32c94f61cfaa021fec2a7c42c0187dcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f35b908065d262cbc20ce40e77913ec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6e4fba44f0f1074fdb8f59a099f984\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"698ef67888799c78702f6e5993f9b043\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0141219b641271db80532f3e4c208a8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6945bdd9b5c1286839ec2feda660167\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13524b9ae17c60833721f597a438923b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bff288f871c8d3234915db1df3aecac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_room_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0120415d97c3741ccebf80955941d0f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b225c98bbae007535c42703d08744762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c4ddfb2b2ea1632b65135e6b4696b1", + "offset_ms": 97 + }, + { + "direction": "recv", + "type": "text", + "payload": "a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"400140978e8261edd5986a6631c65408\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef58559c864967045bec692f21ffc889\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93b1acb4134dc4868cc73ba3a2b2719d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee02aeef4ca9d0bfbaa379d5510c5af2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08b5fb9ce8c93a2fdba273d6e9e2bc1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b3e485ee289f8b2389d5d8586ac10af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"295c55ea37ede32f5d0542f2084a8fdf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"af540de79c1a76846557cb5422a2440e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80c1b96899d7ba609ce43f5d3808e905\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e9642d047ce619369c413e6338734b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee3f22dd95d9b04f3bec4b329181605\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5263aec80e35c0827a946676a4aca38a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab751aacbd342317bd0a72094ab1e3d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"205523a60b2f2cb5043d22106d05b771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_room_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c71d1dd5aac2f57ef4e5d93a800dc49d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.back_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23eefb89f7598b1b12ddeb6aa9fa790b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54bb5483d9b560378be5ed481d8c6f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e010955d7518d31854c9e4aab3f27196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db9bfa3b546ed6770a643c10cd880ff1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7df987a19ef8c7183f8bc12db92dedf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9010dbccfdc1900b1f762399bfbfb817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3f2828ba1b43661dcea26810294801f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd7149d9366d9601a3da20992991bc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-", + "offset_ms": 99 + }, + { + "direction": "recv", + "type": "text", + "payload": "7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1033ca0a8c4bb87068b0b0ce5045202\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4b736f4e34f5b44cc71a6c173a28bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9d0afdbaee1c21cb97bf8ead789fd05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b7501814ada140ebbc75cba95bd508c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c14c404b2807aad042575bd543388bdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e509fce7fd82a687c5380cabdb85304\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f77247ea5f57e1024e9a33057575058\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e8e9d058603365d951ca1000c07f04f9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3b1909b7eb73dc73e68f2db669bacd1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc97dc24ca8dbf5b4cd695ec9f18062\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e458d225d20e0d47500ef79aacc1fe7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d1eff5533638de7fbabbea2304821f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dd61553487e0f10f1c0046b93c7421c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44fa78eab4837b85fd7e18b97b690646\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7fb980b446c6bba6e7fca57e53537b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"834c2fb0c37edbf7b9b7cf32759d7793\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17cf457e684ec08236fb7454df043269\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7cae94a92bf02857f8185574b9b2275\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dee0b93328e4119a8c1edde7101029e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbb5600871de8d1cf42b880a544aab10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce87e6ae3b11ea4e45fed434c0633010\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc5b08b6a1940f42619bd2cbaf4a6cac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7612f009094e943b1e129312251b6db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c69bb67dd0462ed5dd00def8ad53220e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1655d96ffffc5c9f04e400af601b4047\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2c82f032d22bc8734679d92ea0de83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12b3ea55e15328ea4d540058ed33d507\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74ce228c87059e06b84516671ac20763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a341d131322622995e0a4dcc4c2fb896\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6e47f1cc69120985b15d8613036a9bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b496ac89474549c88080fae26ab63448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d02dae110c56c726715e529953d922be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8220ab6bb0cc1fc23c6858361deeb46c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9c73a2a70d12be24ecb2bcaf74c1eb9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26e03526e28cfbb18f893ebcc3dfc0c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98a1532b78d15322829fff6448682702\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee8d5a14a38130a77623414ce6ee4fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bee0b4d100f784a89f713cf59ae7eda8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fceb8d7e9aae08b848cb5dc97b345c3d\",\"labels\":[],\"modified_at\":1768937324.720737,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6e6ad930ee7d37c2aeec57f725e8dbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77913513918309cf18ebe9a75f1af7bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9925ebcc60e4395ed603afbf5a139a72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.stairs_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"64ef85094caeca25ae98fa076d8c6ab2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.right_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63eb7490ebbdb77e4e07c750649c0110\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa8df4191c90e2069a0650185f007b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe3864550a3efb648fe327037ea10625\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8522f9d656d4ee8d60c972ef318b12e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"381daefc1183f93859612b03573ac4e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6dad265890c82659855a7c138b8ff20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2143f3dff81f749104e0882d5274088b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ba145ce3192c0052224a1909e8bfed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5cad207f07383af83050f38c418d4f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10ece451d2f337805ce9472f298d5025\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f40809067c9ee7888788e40620862448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b230d1dbc4c26ac2bd56e50bef6b57e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bceed13702f89123dd582c5438326a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba603234d4704fa0d097770442b26637\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9b570d6459263411f32ba20823378e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"540f56f2db42ef17ea074b6d12c6a8d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b882b539f37696ac5b0d72346094808\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e335a2340c99f5c831c30988019f4291\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1496ff3411098998299e6b70a8a6ac8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3e68f4e23f1a8c2db67c33fb020b7ad\",\"labels\":[],\"modified_at\":1768937324.724768,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57ec7dd098b7d22f35ef2adb35070c44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"580b0c98b0af40ef97ebe8526b5dd762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_identify\"", + "offset_ms": 101 + }, + { + "direction": "recv", + "type": "text", + "payload": ",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc7acfeb1f1383b3f1193746d7effa9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ffd52e582ef700cc04806eef2286427\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f104dff69eb4b8929dca5770b0071c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca88deb31ee64fe9db769663ff3ca08\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28846a193465e0feaf80158a9d92cd87\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df83d525d06cd5c6cb8935d53899ecb6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8aa35ed55a01305e566d54d73c674a13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4efd6b7a05ab072f70351db23b242817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96372675cb474b8a3a33403573ccd041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19d3b1945550830c400d18eec7936d10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"768825fc5893ae8c1a68cee71f34d430\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f0f3f4d2f6f41f46a7fc5883c19f7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f779f56acb8df9a45c5e26e1d34aaf94\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e88349529a6577002d4572cdcfa7ad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4113ed3a769b963fd4a00ddd0932f173\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc9935b81c48df8d37aee1e17845afbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05286428dda0b418578fa164c2ec2f41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7993ea69eaa97bcabc92f958925362ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9bb313fae31e282e00d2a262c1be84e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a33f6dc15ebeb5c65a8da89a90da3c76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eacc493fd250cbccb936a793286c7939\",\"labels\":[],\"modified_at\":1768937324.728547,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eddfdec1717ef07c1a822b3f1c6d417c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bbc32f88ebae70bf8372daf6ea6f84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"824e2082cd5cfa0b434b927daf025f91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f0851ad45568021e7ae5eab17e2673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"797330642b50fd7cc717526490b5cd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81aa7a7763b626a16c33da9baf51a380\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08710d667a90994008b9c2e51f4bbf49\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c7586cb4377fac8037833b67b9b555e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bff0a946287e8e81b4791204fb0c4b6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c91612079311a00400f01a0e5906a212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ba6d0c2e53883635ee9ac22d8e850f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede8b905bcee1104ef3416e5edadc25a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1ec16e8db40ca002ed689cad642b9f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05f81c05fdfc78fd9a4f8f4a1c8b8640\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53e8b9304e649c2f34dd0959606500ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b036c6bc350aaed23e9f86bc06cbd2c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a3739602f92462bbeac62fddc838fbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471c0a1606542b0d7f960c1d2922d7bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce49f041cf870cffd3f0df35ebb0b76c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048378228b0fc98e250dd66ec6ac6ad9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5e40022e450e73c4b5ab1198e302462\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d78bb4acc54d779836cde9c8c6a2f8f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79490028fdf09eeafcc7a7e0ad2d160f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f1ed32bba3d33dd34695c661fa72adc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51e3619b9800abefc65f0b522124c7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a1866797815d855c958561d455ffd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f0626cca53d88f5dcf005b18180e9305\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea487f330dfbaf833ebf624ed9896db3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.kitchen_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a635928a8b31bab1a27474ac2f6a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56e02b860edbebacfde760983dc798f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e605e68d92150816bc124ec684b725f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ff656e62d6fe3600aa3adbc8fb526a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec53255b3eaeab829b0d155c429e1d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a08806049e02892d2f6a3d53113f1db8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f3c6699a41458e7aec2b1989f540a80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0933863db47ac364ff1d232f8b46e9f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63481afc3a760089087eca73a0f651d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8957d79e5cb80b0c1a20820dc97b0a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a60f74fb0f1301397480c82b1d54ed5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b504e536735dfabc28835d2876bbb23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fbeb6d2c5a857c79c70e7bb0561fad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fc4e4d47d9a676285c15a975e1d3c36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97f291f24fbe5a30e18bb12dce1a6676\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d21bfd9435eda404f287c3abbad94d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0444d51382f134ceeb06a73d4f3a1cce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting B", + "offset_ms": 104 + }, + { + "direction": "recv", + "type": "text", + "payload": "ehavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c05a4adf47ff0104122a9e4dbf7fadd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4aeaa7e71c122a5d88a3b1882ad8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b17374a4c0dcb067542fc6a74220221\",\"labels\":[],\"modified_at\":1768937324.749696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15c2353076b1bc70f96467ea60e93883\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_local_programming\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b8266fddd3dd1a3fc9c9044bd7f7d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Programming\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18011a3dcbe5a7f5c93c03f151658078\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2e6dbe9ad453568e0826d771078d367\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b381daedd22399332d0c2", + "offset_ms": 107 + }, + { + "direction": "recv", + "type": "text", + "payload": "3beca269986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.jenni_office_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1db1d985f5d174ebf175d27b918704de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e96da560109bfc549eb175d77df5239\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b773d9a25d7bd00ebb8c9b90fcfbd8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5deaf7bef811b681c4e8b76c77d2db39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a8dfa6c8c5decf4c4be882afc702163\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef6eb92baab404af7fd61ba41069d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e5b7d53a4b2adf058011f65f0e4ac19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c184dbdd6ad17f8784d17e874aa0d0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"967915145f0ef87b05cf3ec61ff92c4d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e7d97417712b18fdd39510f53345f54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9e05ed0d78214c146c191a7915fc2af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5524e4843b13f72a0b8d3c36529cecbd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"462517ea07b522dda3d29a5d77358b07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97bfc53818e1e5d2b0c76cd8c7ca68f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad2f5c181c586e3bc45dbfd170cc8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a205de2be1537a999eb4d266b7086c40\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da5602526297ba1f96d40f0e7ecc0f5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e10162dc3c84afe280c5a18dd51e9b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc24c82d16bd17b6b68e0b2f6f3f4ea6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001f6b44d64baa1ab159b150b478007\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e80550caccd4b20ad35acf4ca40d92e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6b3bb5ca29c4ba1a5f51a07c342319\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d442915fe41090821ed760f0fccea89e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae41e29abd52b9682303ac5e2c41635\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7de9997e9e1a3ef46e7bef4deb0a659\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0f95b7e389e44036f819bfaa12835a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9b9926bc3aead0f4952441c76387ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.front_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e18e30d8c73b2b7d8f56d6d8a72444c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5da04a067a75da78e01daf28eba1cebc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef81d350ae0a3120308f207a382754b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c93b8d9c39bfb59bb63bc28a67369b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c4bd8ae88880be45a949ba732dc061b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50561c8d822c3b26d448cccf525cd1b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b49703ed535bcef72a83f0289633087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bdd2faee34bb34a5f744a8881cbcc68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e5c2c80d8e6863d72a81c9dfe05218\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93d5ca265b8193cdc3e97680c6db647f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d95b3c17713874a2a9d757e5515f9a0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eff4988dfe92e73c693e77473291a68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aac4d6311ff78700b94194d61356c75c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4448f7a424cac4aa39698e8890b4d84c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adeeb59701ce2173bd76622bf5fc040a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8102a65d592a4a456c8cda46f495d8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High ", + "offset_ms": 110 + }, + { + "direction": "recv", + "type": "text", + "payload": "Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ff20be2fc93225ec08b44330ce05f90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e23cb4f3bd96aff481106795ea4ac53c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c38948afd63807d9bea536058af2f4\",\"labels\":[],\"modified_at\":1728721846.364993,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dd9482ca71561ce5ec70dbb6aea6b3\",\"labels\":[],\"modified_at\":1728721846.365587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d299d44ce26d096fc59656441c155e91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ccf12162192b1db183d5e658ca8d5ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048c4c8a57e47dc7142d8ea6fa196a6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7984cbb544e0ef6af868a938894a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e58a5f4844984223a08cc57a1e2b5f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1eee0f58b4efc0fafbd2a40a8e11ed43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcd7f656cc785bc98cbe8849648c0967\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0bed885a5d924aba589b2583d05fd15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb6de87313ec6de004fa95b00aa6f927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d361feb6237b762704e0461d6fa7d83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b012aac779c2d71e28c4010032f7bcb0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8381ddf293ea7f56e0b6dc25d7a2f0de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ee4d83b710c21b6d1294eba54624b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eedec08306572ee3292cda66ec9bad50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ad3a714fdec28accbdd4c4e7de89a29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4db29e68a9831d8b83fbc34af4098986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b6a0c3b3f6f37b85e7d467dfca44c1ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea03c7aa1a8f7ee7ccad99b3c9ff4d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d565a0520b9f6299ef5cdcbeabfcda4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15cb859569c08f27db39dd118e8e87dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8507c90d370cbd16116be434d5246222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6474656dc92c4ffc2d68061062d4bd44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2ffa582700b450ce0892f6635734eef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dbad0e6f48a425781d17739f8795734\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6871d61691047f5f5f8a2003ab06bc35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2bf28252f61cd3cae9f59c22db2e929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status\",\"platform\":\"zwave_js\",\"translation_key\":\"controller_status\",\"unique_id\":\"4182894947.1.controller_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b6f1921f63105e65d33f275bbb06769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e2878_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.adam_desk_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7b32509cfd8e8b57f2135f982e8d34d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.adam_desk_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"744a5b039fbf04b72c13f42cb57c30a2\",\"labels\":[],\"modified_at\":1736355683.891054,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e2878_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4409a3f2be06b369227045d72f072caa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e2878_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b40a7ba376de7ec1f911de7228cc76f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e2878_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a23c6bc5a4861c4f54a86066cf26e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e2878_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e29a3d1eab9e6e7b39d4981814c1c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e2878_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9743c6abc46883a073a15fe1d32450b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e2878_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e52b7a6ef89176f6d30ae8b3bd7604\",\"labels\":[],\"modified_at\":1768937324.880394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e2878_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08d27aac87ed1eef797f4f56dbf0e5ef\",\"labels\":[],\"modified_at\":1768937324.881003,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e2878_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d396a6bef670fc54d085c5d175f16a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e2878_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e1f6a989fe00bcf10daa6fbdffd74c8\",\"labels\":[],\"modified_at\":1768937324.881525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e2878_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6852f43897d8fc7e5b971354177bc7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e2878_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2dd7622b83b59be4b859d62aae5fcfa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e2878_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"246aa304d51aacbe8c81d224279f1b60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e2878_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e787a2f31cb2b020e5a02ccecdb5194e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e2878_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c038f834fbc5de4047db5d693de5520f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e2878_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e318495a5de2c0ad46f0d9fcc212a1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e2878_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61cefcdb814557288d2f15616147ffe2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e2878_", + "offset_ms": 113 + }, + { + "direction": "recv", + "type": "text", + "payload": "ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a25d33a371e9d37b9e359fb3ab60102\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e2878_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"985029c1c4a205b9050eb47bfcb58278\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e2878_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88d63901ab44f88f1b109674d78fbe6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e2878_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da4ffaa9bcb00cf00f6048f46031c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e2878_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"596f907cc32b91ddcfc55730d567ad23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a1dc1ed378fd6ca5ea8531b3a2b0290\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"463d4f8bcc15b05ea1ac493576708a05\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48456beebaa2358ea71c3fdc9cf7ea53\",\"labels\":[],\"modified_at\":1768937324.522171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:08:8B-light-office_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"93c6c6544539cf899bad569ce9440560\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"260f603c708075690f0a0dc262c440cc\",\"labels\":[],\"modified_at\":1768937324.521066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:1A:86-light-office_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d4f33c22b2f134128499d170a9f81a2e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4316012718b14810c7ed8651d3e040ad\",\"labels\":[],\"modified_at\":1768937324.523393,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:05:0C-light-office_light_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c2328f12915a88e139203759aa099d80\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c58a3dcff1651522f7a004fa77854cf\",\"labels\":[],\"modified_at\":1768937324.525846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:07:3D-light-office_light_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fd4b4a826ba1ce85b11c2a14483964f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b81fb595012241623d52d08e29f7834\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c3957d10bb011bb12b3e6c41b598191\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd09a74fbce16b1ab27aa2b8ce22df44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26ef71b3733fe8af29953704041e8b92\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8f82b3e8f2771f0ab24c9839a858b0d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc545b29708c4c982c585913d9fa6f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e20e8_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bed_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63092158204e47a86900ac1d94b85d76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bed_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"765ce6a13ad4d227fd7d1df51c057076\",\"labels\":[],\"modified_at\":1736357560.669652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e20e8_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae1c3396e8bd72eb45ffd91d3d440d7e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e20e8_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887f889588a56f03619560b36016847b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e20e8_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd63c27148c664154b448d68dab14850\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e20e8_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c120e6c6942aca4361e8d3482d529b13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e20e8_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80be9a2f4eb93931f72869f82ee1a25d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e20e8_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b348375076eb71644edfa2d3a1a3fe5\",\"labels\":[],\"modified_at\":1768937324.888442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e20e8_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"14e92db25cdfa8cefc51b2e1ccc83517\",\"labels\":[],\"modified_at\":1775500964.404141,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e20e8_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f90598e2bc0b94fba4961f07483be83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e20e8_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2dc11642030b46b55567615c6b50cb5\",\"labels\":[],\"modified_at\":1775500964.40468,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e20e8_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a5a22be58f4439bfb5957f1b1ccdd5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e20e8_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab698dbf37373681bc08bbff54a7537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e20e8_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c22ea2a613d675a1479eb45f1993f33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e20e8_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b80991556b6a76854ca712e3dfc7496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e20e8_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed1e6c2b75bdc80fbfffad3c6cdb0aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e20e8_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99a6c55ed1a3ec824f83cd8b9306930c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e20e8_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66a0bbe3b51a4c4457e91b25d434b43f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e20e8_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a74556a0d4547c7c831b8f1e4753759\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e20e8_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7820433bb9beed63af31d3821944f306\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e20e8_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd7061bcac8bbe254b1298b5e4a41c1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e20e8_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1040da8c80ca7bbdcbed89aafe909b35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e20e8_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f6ee68ac821fe83edcd517dd51b7fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bed_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b80f0761cf4c725fabc1df8de30f0f4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bed Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bed_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d1ff20197a688334ed61ae0ef24610b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698022261893\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"375e166e0cda4a49184ddc7a3baaa4fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698131438659\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1516392955dea9d5c3987f65e1a21ae5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f262f6cf884c0de68c44d465232ef2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b77573023fd0e45cbd803efb780ad2c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3302b58f4523b9775deccc77aa05bf99\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a5224c58b24307c45e10299f3348cee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aacbb82d04534e5b5b389236a4c0f63b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0bd108d5e399f94d25c3", + "offset_ms": 116 + }, + { + "direction": "recv", + "type": "text", + "payload": "8981e1fa74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"717eec56b8ef81c8619737a303b154b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ced631fd54d05c61c0e74631e41c81e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7494f61b328a3fda8a55ab7a5fdf222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2e84cbdbcc51e4f48baf7214e76d722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71648192af447198dd4f8300ccc532e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ea641a89e1d849c3373b2c337c3a66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc0ff81ebe53c633db166a1af91cfaf5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e763fb2e22c28f390add28e636c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30be942857ce762791d50422aa7504d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"65a42c0fb4d243662d5cac0c4dd55944\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2abe6c30c0dfc40abca673632cc24f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b4dc28ae7f2524ca27c1706b5f16c88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f7707b0eabb9773200603b8bb1b32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20890daf170f69687407391661d973ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e0f4e90a3faba0db0361d78e006929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a82370728b30adefa3817e4cd46987b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79efb54b9582819a0637c7c994db3c02\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d5643409303cb984fe3b1510f5253f2\",\"labels\":[],\"modified_at\":1758660536.913726,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2c1ffa1fefe471a1db8c7975915cab\",\"labels\":[],\"modified_at\":1758660536.914575,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7f93fb1fc2ce5a89138f056d261f6c\",\"labels\":[],\"modified_at\":1758660536.915203,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ffc5c7999492de07a6ac08ddfbd6cd7\",\"labels\":[],\"modified_at\":1758660536.915773,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94f4819071ac098d75745bf9217ebafe\",\"labels\":[],\"modified_at\":1758660536.916339,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"762e6d3ba10d31145566124175888acb\",\"labels\":[],\"modified_at\":1758660536.916906,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b99d149c424b019412d5967bf59e2b03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8664760514c651576ea096f12a1f392\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1eff1ca3d5d08ce4e23061d9208cdf6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cf765d081c1063cc980327cd4b896b2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a7:98_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"250a48d09c2d5e25299e39b9a7a31a0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3f5c4f6251c9e5d461d24460a10568f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"810731b1b401be39f6e86bf0db1694e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aaabb95ae0d93dc3cb445aa90193ade\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:6d:d8:6c_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500bedb57e5c713e97640f8346c53669\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30a484b77d3b1466b9fbd3f5347769e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede974f57b59c7ba6453e2b9713b1b63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"408ef0bacefad7f762354332eb3df58d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:40:f0_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58e0d06d601277431a4397c287295dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b90fcb72d686e7f16f444e550870f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"562d26b904b539814c5ad4460facd881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82cfe763a98e9bf75c35410890e39def\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:e4:6e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"affe0aa48114f479c924abd9c9d5ae4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad9ecd3f5664ecafb765d2a1b1c52651\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16d12c6b79c955c505c8ecd86eaa19be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_4_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"298bf015afa9856b33dc43e85563138f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:ca:59_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5387707cbd7934a7f17ad2bfc2edaac6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd375e9778adf92ad651ebdbc6a2a4b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ccd49fabdd295c62319e1e568a8bb00\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_5_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4097f2af48e3dd76fdb6f8d500af3e93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:fc:44_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9a", + "offset_ms": 119 + }, + { + "direction": "recv", + "type": "text", + "payload": "c185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26b67877c9a2b2cb3a8215b88a6bf42d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d92c178e01c229bef991c42a015295c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"947a6a6c9d9b978f8a32ba22a2b3852a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_6_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1453d3b4b1b9be768f4db7b8b7ba4f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:56:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4db62557803ea897de2e45c2dbdcbb3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c25ec789c92b4385836706e4644e878\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"168cb748cc49f12a335dd8dfe3dcdc07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca28d3e1aaa9e4f900aa7ca1ca3f9aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:b5:89_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d255bd26c49c0b8316f7e69de655ab0f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"stt.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b596632825fe1076787e2e00a1d029d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-speech-to-text\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"tts.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2927fa130f0baaf124411cfe176ebead\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-text-to-speech\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e19a53d8400b62c1b8986a02b5b5b0a\",\"labels\":[],\"modified_at\":1728721845.983581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.4.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2df5dbf8c580bcacc36d1c0bda2dce\",\"labels\":[],\"modified_at\":1728721846.001319,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.5.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2992a8bf82bdea8f5b4f3edf59345\",\"labels\":[],\"modified_at\":1728721846.008929,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.6.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d534d2f4ef518b830eb886757e17e71\",\"labels\":[],\"modified_at\":1728721846.027127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.13.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"701f561124e85d69fe250c6f5ccddbc1\",\"labels\":[],\"modified_at\":1728721846.035759,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.14.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b8ba7d5ac2d0d7b15ded3b394797bb\",\"labels\":[],\"modified_at\":1728721846.043408,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.16.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"703ae656d9dc0a91ed9349e574913af1\",\"labels\":[],\"modified_at\":1728721846.052172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.17.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f933c2cb7825c0c98616a1cd0baf665\",\"labels\":[],\"modified_at\":1728721846.057779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.18.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b467e6ece5165bf28ef33e1806d567c\",\"labels\":[],\"modified_at\":1728721846.063963,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.20.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4deacb3773ea5ede7d53b9b0c4cc1b98\",\"labels\":[],\"modified_at\":1728721846.071734,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.24.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"907ff6d2edd7e5fe5373d1f1409792f2\",\"labels\":[],\"modified_at\":1728721846.080476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.25.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"862115a3de075173eb494c7860ed31df\",\"labels\":[],\"modified_at\":1728721846.089722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.26.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b423d803ad851f36a74255a889186bb\",\"labels\":[],\"modified_at\":1728721846.099062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.28.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47516de4224b0eef5c0d003c0513060d\",\"labels\":[],\"modified_at\":1728721846.1068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.29.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6f7dbe7caae310dd09d478d46a3028\",\"labels\":[],\"modified_at\":1728721846.114612,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.30.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6278dc427336c377caa1e58c30ff092\",\"labels\":[],\"modified_at\":1728721846.120738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.36.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f72a7429de924578f7b9c3fb6d781a7\",\"labels\":[],\"modified_at\":1728721846.126794,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.37.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4411a0bf4d7bb1ed0f6f11343dfcd199\",\"labels\":[],\"modified_at\":1728721846.136087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.38.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b6bd22bb44d0c9f184f996e2ae77d69\",\"labels\":[],\"modified_at\":1728721846.14763,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.39.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a26fddcd069cceb68a34e3461a6e0a03\",\"labels\":[],\"modified_at\":1728721846.156271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.40.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe7380af04fc4c2d01ce456a97f9ef8\",\"labels\":[],\"modified_at\":1728721846.230796,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.66.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e62d502703a6419c34e8edd95c486814\",\"labels\":[],\"modified_at\":1725239521.486838,\"name\":\"Dining Room FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7bb8fbf51788176cdb83547a004935fd\",\"labels\":[],\"modified_at\":1725239521.488668,\"name\":\"Dining Room FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"643d73eb1fbe0ddfcaa75370f3c8389e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a43b45ea88de4d9219e8d2841b42ea4e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3298e1c38a53b3c870fed75d6968c07\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f041b32270f9966ec39f26bc7e960f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46581f02785bb70fdee35529c92d263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6bffd588d27f8aad7cc650604b61c2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c74bfa7715f144957d804f646c4799bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights On White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25c3d5677fdc630832ee84427cd99536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902139116\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cbcd941a74a5a7396aad84ed9fc7dabf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902226266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3f98937a77978b4644ecd2e3b22e8c7d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.leks_lamp\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7fc3837a77f3b273d02c5bb1bf0170f\",\"labels\":[],\"modified_at\":17689373", + "offset_ms": 122 + }, + { + "direction": "recv", + "type": "text", + "payload": "24.523879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"leks_lamp\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:E8-light-leks_lamp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c89435003eea4c6873d070c3c97fe473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3d27d28caa96a13c6ea25d0171638780\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1da40bd512b39f99dd627edb13c06403\",\"labels\":[],\"modified_at\":1768937324.524838,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:68-light-front_porch_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d054016a6b2f868c331522d5f2a024c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a43e095361249391c95d346bead29de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d6e9bd72ac413f4c9765807a7a8829e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d43bf2ed96db238ff6d5a3d55b74102c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5cfc016d624d22f58b972535e2c588e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:4c:4e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab8095363203057cbe0b359e78a434fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08f36a4038ba7e9ed484f4e40550a93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e32158757eb5aba850a4d85abb2be672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43eb4d024a7ef32436fc15eda451e656\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:92:15_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ddded55b837de9c9ba5d6b539445a14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4dc39ab3f597be7b5698f6d43b17afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4a3dfc05ea5897c3f4ca6d122a9e755\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d66b459d9b3468bce28a13faf238f788\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a1:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66bd7310f75118cb61fe4439c1b2dbaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e4f14bcbc3db07c23bde15014153663\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08167d99b04cd3119c18bc3a2a03dc54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78908f51b09bf8868105eeca61df8b51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:50:fc_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c312f3943f53f013a1698197beec7d9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be1582024ad1873d0529a0f5b617a21e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce297c2ac2bc5a14ebb49b8600041d2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0f550f0c1c6f6cdd1f2308b2e154000\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:d4:63_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de8b6bdb93fd71244574b16898e15903\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0197af3b4e34cdf7ec9a96ce8415728f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bd54501fcc95714cad1dcc1cd31f4a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"148c8043f4ec331449594ce281de74dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:9b:c1_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40777cf802aff4a5b6ed5e3d5c0883f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c03f2a67067cb61528fa31b6ad9b94dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33c056e4fecb95c459544ce4bd40bc90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8810cf2748e6123026bb56d1577b6b14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ba7328fddb154e27b647e31c8da72fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05c1a4ad242b4000e29be97d7bd1c3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"27cf5f296894b7daac381bf03d05ed66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"469441c2849c8da30a2a3175c2bd6d6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5a2de0bde5a2e1cfb2116303d6f5be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13c83850a4f8bfbe494ca9f383a652d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e979bf5003d332a9115b787a3d2dd2b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe12fde8dd7a18b5da9350bfc48afae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53fccaec9ce8f17e7d03d9dc4c33cc19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e27853184c40850e3134ef8116e8673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb7eeef067360dbb615665e6de5054b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0a5aed8a599743541e88238fe0839cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e632ddf5ed06b6df996980dcd58537b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.68.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2be995612da3708ee3aeabf4ad49d8da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.68.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47608e4f8a0b2cedbf2cfff1d12cb4d6\",\"labels\":[],\"modified_at\":1728721846.246357,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"538ed7a8af31562cd0d7c19f8a64c8e0\",\"labels\":[],\"modified_at\":1728721846.246572,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5fe7e5df6a5ce5a5694b4ef947580b6d\",\"labels\":[],\"modified_at\":1728721846.246723,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bbab6b72b677a179c8bc1228ec0fa29\",\"labels\":[],\"modified_at\":1728721846.246866,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f6ab96f4e24907de", + "offset_ms": 125 + }, + { + "direction": "recv", + "type": "text", + "payload": "75d4f673141590\",\"labels\":[],\"modified_at\":1728721846.247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.68.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"830fd955b0b9dd786b18a7cee2c59bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.68.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee2102e9596641854623dacdf86a7c10\",\"labels\":[],\"modified_at\":1768937324.645237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.68.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab9f2342cbb08659c90acff506df3b8\",\"labels\":[],\"modified_at\":1728721846.247129,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.68.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b57a46d4c309703d4a6c50351952ca1f\",\"labels\":[],\"modified_at\":1768937324.765615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c4d6945336b15e0bba9b9345eea008b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"430cb36836ea27ca6cc4cce37605dad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519b5afe350cad9e05b31596d69a6e8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d050ee7382f25f72284e5cbadeff8d0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f44484b3ec3f6e65dc64ca21de50c405\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86bdfd735092c7fc659929e894fbc672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fdf886269a2fde49bd57cc2cbbd7fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"587df372365d29ba4d904980f49162ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c7888f5a2bca7dba8bd7f8db8e02292\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b273f3e4da902102c22068005d31362\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4923aba2eedfab503063be97268d349\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83882c656fefd0303211e999c22a2765\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17b020ebb60e265e372186ff5dec78fa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a821ce10588a5f5c21dca0d5a1caf1ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c2caa9b84384312cc3ee01843fcba18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df2245766365111ead8a1797d4aa1628\",\"labels\":[],\"modified_at\":1728721846.369908,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b21dcb9411ff471644d3bf7cc1f88d5\",\"labels\":[],\"modified_at\":1728721846.370379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b2a820515542e566358f93aea435a81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1598869d84f6256ea9af4669c9f1b726\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.upstairs_hallway_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2672687dfc897fee1ea56b169bb7c5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2119dc1ccc97edeb6e783ce5f0f7ad88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f562bfb09408687492fae4843c9aa192\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad9ecfe03131cd3738d0a0ce1ffc37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aab59415957dbb20b62b5aedb141e753\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e50482b2832b1c9478fd4d009eb8216e\",\"labels\":[],\"modified_at\":1737489134.76617,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966121423\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.night_tv_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2320f4922c41ae3049550a876bddadb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night TV Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"night_tv_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ae4f862e8267f53ba0ec595a391bd85\",\"labels\":[],\"modified_at\":", + "offset_ms": 129 + }, + { + "direction": "recv", + "type": "text", + "payload": "1737489109.545107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966772353\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ce35a8be192434170cdc92d71e7ef8\",\"labels\":[],\"modified_at\":1737489123.678107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966888905\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a445cca6a8488132b472a230b330f318\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d07c497e4fb52fab5ac3b5d5dd718797\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41418b9d9c10e3c186e587bc21a21d95\",\"labels\":[],\"modified_at\":1725239498.826997,\"name\":\"Master Bedroom FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2995f0a20e4c3a95dc980037bc879f\",\"labels\":[],\"modified_at\":1725239498.828766,\"name\":\"Master Bedroom FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:bed\",\"id\":\"95df3f7dcf7e25696d4211430a78abd8\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"03dc995e582e7761e1a9f056d9a752d2\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"45e20dec6491a8436efbbf62938683e1\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom Not Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87bee964e12f4f43e8a77ca865687cf5\",\"labels\":[],\"modified_at\":1725149744.14575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709059722839\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b94ad5130258af70f3e44df53f10b5a\",\"labels\":[],\"modified_at\":1725239534.482943,\"name\":\"Master Bath FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69e5ff06047fee172494a676c9595b1b\",\"labels\":[],\"modified_at\":1725239534.484731,\"name\":\"Master Bath FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5bccd1e7de01b713e1b365a5823ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2080a737e85dba8c1c13d14ca844aa8f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49f9688732c5429b62c5cf2c39f5ebdd\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Presence\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"435b08e125fd43d1e5d67ed0d123fb6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709189535560\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_play_area_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"face7a647c70a0aef8bcc7901e21d7e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Play Area Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1710749651371\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_area_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09ad60b2d7e23af2bc93b52cb0ab7e50\",\"labels\":[],\"modified_at\":1775870416.948704,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Area Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_area_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.left_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1c843ff67b3c61ea82140a73d5ad090\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Left Upstairs Hallway Lights\",\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3cfa9649d5b814c5dff763cd6b76d9f\",\"labels\":[],\"modified_at\":1726995223.727702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b1734fd1032a711e2680a994926fa7d\",\"labels\":[],\"modified_at\":1726995223.730126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fea3aafb794c254c9981d05e2e69067\",\"labels\":[],\"modified_at\":1726995223.732286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f336d4a0a9c91ae0de81eb73b5e182\",\"labels\":[],\"modified_at\":1726995223.734449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f526bff502fe80b455c4e763a3a3db97\",\"labels\":[],\"modified_at\":1726995223.737066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43050533225ce62a16ed7cd33bd9e2d7\",\"labels\":[],\"modified_at\":1726995223.739279,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39cbc62a9910f6be46f1f17a716b402a\",\"labels\":[],\"modified_at\":1726995223.741579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e63", + "offset_ms": 132 + }, + { + "direction": "recv", + "type": "text", + "payload": "76da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913acb2bc62696d8db53f8508f1e1270\",\"labels\":[],\"modified_at\":1726995223.743703,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdb198312585d22902b2185c35214cfb\",\"labels\":[],\"modified_at\":1726995223.746068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a70affbb4ed972f8daec3166aa396f50\",\"labels\":[],\"modified_at\":1726995223.748907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"254c8b3136732d3bc8a34d91b8673ef8\",\"labels\":[],\"modified_at\":1726995223.751225,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e8694cb975a4e0c029556b1ba338d81\",\"labels\":[],\"modified_at\":1726995223.753406,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e0f89e58dac6a89d1cf0c76e956fc2\",\"labels\":[],\"modified_at\":1726995223.755504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"051e2e640e4c3291b09d55d3687c1471\",\"labels\":[],\"modified_at\":1726995223.757082,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f517ec7ef72b04193123c414c8c3f735\",\"labels\":[],\"modified_at\":1726995223.758519,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c26cf28b3b3dc9a6bf25c27fa43aae86\",\"labels\":[],\"modified_at\":1726995223.759977,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"971283eea4ef6a48d36d89350283bcec\",\"labels\":[],\"modified_at\":1726995223.761297,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9c3ea47b54daf6eb45abb3b17ad3724\",\"labels\":[],\"modified_at\":1726995223.780765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c44b3196aad16deed838f7a23fdb4098\",\"labels\":[],\"modified_at\":1726995223.783536,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5133e25e8f01dddbb6746b990b08f5ab\",\"labels\":[],\"modified_at\":1726995223.784321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9909d6d28676cc7831e49bde2470a7c8\",\"labels\":[],\"modified_at\":1726995223.785069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8482199ceba01d96d231e5f3a9dd368c\",\"labels\":[],\"modified_at\":1726995223.785825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23ee7b10cef9e4662e75be22310cefc2\",\"labels\":[],\"modified_at\":1726995223.78661,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd7c6e19c030f7196a8c11ba4b23fc41\",\"labels\":[],\"modified_at\":1726995223.787367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51d01dd8e96eb9b04bf64f2a2decc90\",\"labels\":[],\"modified_at\":1726995223.788115,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"", + "offset_ms": 136 + }, + { + "direction": "recv", + "type": "text", + "payload": "fd490e9ecc4785dca9e2c059f36deffc\",\"labels\":[],\"modified_at\":1726995223.788879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7a4924a9ed506f1a7eb6ee0c5cbd0b8\",\"labels\":[],\"modified_at\":1726995223.789713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1a65aba3769dcf7d73471f08ee7487e\",\"labels\":[],\"modified_at\":1726995223.79048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9c01253348f061043bbdb1f1507a49c\",\"labels\":[],\"modified_at\":1726995223.791252,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d489d218083ad29b42fc36fef922cc13\",\"labels\":[],\"modified_at\":1726995223.792031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67713a70d56c5297ff28330a8713287b\",\"labels\":[],\"modified_at\":1726995223.79278,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9b7724b86925b6394800d7c6891b28f\",\"labels\":[],\"modified_at\":1726995223.793535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49962449d9f171c587ef0081e1cc465e\",\"labels\":[],\"modified_at\":1726995223.794287,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f4a5682eb43905036502e20f0d7cdf2\",\"labels\":[],\"modified_at\":1726995223.79504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4df9269002f04292ea5a51edd4f8c6\",\"labels\":[],\"modified_at\":1726995223.79579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dd1fa6fe3de99351f0c2e5b83f26c15\",\"labels\":[],\"modified_at\":1726995223.796556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69b62987fd5a78948f6cfdc65527fe6\",\"labels\":[],\"modified_at\":1726995223.811631,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"178c13bf6bbbb8549bf450a4b37821e5\",\"labels\":[],\"modified_at\":1726995223.81238,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60db789ceb739a57754a71f6a6341c62\",\"labels\":[],\"modified_at\":1726995223.815043,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaac7be99d399d761408d7db5905d168\",\"labels\":[],\"modified_at\":1726995223.815764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15733449911ed88087bdb00ce20a0bdf\",\"labels\":[],\"modified_at\":1726995223.816558,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"429e1e416e644ac2e44b56eef5823108\",\"labels\":[],\"modified_at\":1726995223.817315,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08656fa710c862cb6e1223682c8c5dc3\",\"labels\":[],\"modified_at\":1726995223.818008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1df54d5c58a731bbfab080b1a87906b6\",\"labels\":[],\"modified_at\":1726995223.818713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc787e9c0359d3254b83bd29ba368af\",\"labels\":[],\"modified_at\":1726995223.819405,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7d473447060f92cff978b9a385e9e68\",\"labels\":[],\"modified_at\":1726995223.820087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"055386324f02620a24c7ac18946b8bf3\",\"labels\":[],\"modified_at\":1726995223.820745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"76b3a961774fe3c039a138cfd39bb5b4\",\"labels\":[],\"modified_at\":1726995223.821464,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1d47fcf2e0a7f8584fd0e2f3c7df26\",\"labels\":[],\"modified_at\":1726995223.822171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6664341496258104260c74c65e71e362\",\"labels\":[],\"modified_at\":1726995223.822825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb8d289562757807719ada54917fd1b\",\"labels\":[],\"modified_at\":1726995223.823475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f21ff74ba7e2a3ef0d9c35584ff6eff1\",\"labels\":[],\"modified_at\":1726995223.824163,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5d811edc4036d76580e45069c0c9d4a\",\"labels\":[],\"modified_at\":1726995223.824852,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1dabea2c9416bad06dd40deacf241ca\",\"labels\":[],\"modified_at\":1726995223.825603,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49200ecce06beddd4ae77d277f4e14ff\",\"labels\":[],\"modified_at\":1726995223.82625,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd926acee83d1a62199e77a8dfb0aa05\",\"labels\":[],\"modified_at\":1726995223.826914,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5fd1ebd4c46c2508f368824f8e8152\",\"labels\":[],\"modified_at\":1726995223.828388,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2f8d02c9a7424a0357cba3b49eaebb\",\"labels\":[],\"modified_at\":1726995223.829147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_current_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2393f3fae020b53ab99954ca957c3a89\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Current Power\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_current_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_today_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d7106ff82fcb4a141f250d27a389e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Today Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_today_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_lifetime_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"96d9d3cb20150a5d688099ee3d59ebcd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Lifetime Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_lifetime_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1f5897cc45878de2eb2c5a5f1dff53bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad685a605a9e3440bda5246f75285600\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_online_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a1ff8defd768f741f55d65e9a7f1d5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"687378e33ac65e5d1c22ce92420ebe2f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a7c5493056d56a29653e33999a7ea9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d95ca2a85ce23754796fb7dfc047a34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18bc901d7dfcde1fde8bd62fae8a5113\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca63b9ad9d43371a52ac3613c109af07\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e07bc3bcceaeb880e71ed355f609b238\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd7571675990539e04f4f8a77406c490\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"211dbb3a7c69779aecea73e41f9c6473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"498fc8386aa58186c1fe7da679696211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e1ed71597a80a21a1881c86b442e6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3babf3437ebf12fd772a1aa54f4ab6f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e09f448a85712812e396a7f9cc1d393\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f9e1810e5a0c6896a04a053cc67f82a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f93e1a44de3fc2012749ef93295ddd9f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c20dea6e1ee110ac5ced5123e4947d32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"026a47e3e1d3993dc0ba1ad3c7446bf2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63dc709ee9f548ea607f688f93cf3234\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a06c4b37c7f1e33fe923bbd3149d2211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52154fde2fa3736366353ce80d9143fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5655856d7f5e8bd562dd95b8b8552212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7839750c868429f82ea60be31065090b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"345ca71bd27275be777e84858b01aeca\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f2714bb3fe47257fb7d75ed619377c", + "offset_ms": 140 + }, + { + "direction": "recv", + "type": "text", + "payload": "4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca87da2f07b93a7514c465435b42fc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11ff9bdd285d12419a16b1c4046b164d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501f530e38c0a5ffb668116d0338b7e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79635f34cc537787519a607cef9c2b54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04f5ba7c71b00f927719dd6d1f76a24e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22a79eb3bd15b816fbd2353b874fb8c2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4e289027532937da275a2afe8a1e54b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c889610feda4c5d2919574a4a4b2e9fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6767893333bd2dd2faae401b17f6287\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9719fafdbf800c3e41c1247e9ddec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"709f79ac43c1de05cd9b92356daa783f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bbde1b266563b56db9b76c48b5e4c802\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cea749b7d0157bda9c8b3b8da7d0c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ddd7cef675562790ac794cf05db84eb7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3c559183ae7d9c9e8da0b9e9b52d2c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"361a1fc2a89ff20381d82750957d8e6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"99764c4bfbb97e8902e9a2ffbd269940\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6dd91fa0dddc72d17c5e9bc5febcb1bc\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d0458b6571acce21bda18fa4ed91f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"967c6fffba2e2da7a3df57bd136547a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"089c111078e7402a6d5d28aa89648473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d4c2fa1d9b5d9f01caeaceef8fa3b38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"456f0dd0f5c3770d056cc3764dc13d64\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77885fc4334d3e5779eaa71dac27688f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d0917ede83bd0ea1b545fb27ae2a4ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a36bcb574711bfe4e239bc12d85c031d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ccaf61f0c36aa89e2cc6b95d91fb0471\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05811a50db6dd93844c0b196d39d2acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"383a71bc0095d7e93746e6ea4f917198\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62cebac91c63149058b957314fb161b4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f283b802affc5a6ca5f1c7fc5de091\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee406fe27a3eec7c0c329ac2825c475a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"168791062da8f11816f49242dac4076e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"31ea3d07718bab198b5b9fc6af1dad97\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"305d5bd7a5ce07000c053958fcd55f12\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8835ef4f2b23d870d8155e9d6d5601\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fdd8ffe94c60d06b945af26a4352cb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"140d724fb5d154e0c3e6baab9f1b2c8a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"45d3fcce547a5c666959dfc27b70823c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"869b21114a648290559184a15408ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e821ed6d71bb8f39e7b129afe3af4d9d\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00d279b67b2610254703b2f54f7c19fb\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70fd486013d17ba726e8011eb3a73a3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d40dc815657ac375ec8fc97364d0587d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42be692b3321a3c3b636ca3c45f84b83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e32b957382e291736c3509dfdfd9aa4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"03f49ee636edc9301e014dade638cb4e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3846da42a87cde40ac6aea0bfc100b05\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"223c68438e658441b8a74c18d7440baf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c161128d74cde1b9df0a", + "offset_ms": 145 + }, + { + "direction": "recv", + "type": "text", + "payload": "c526abe9a06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7b1a0a10460e1b2b3ede2e562a703f5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adc4e9307e5f4586c50c9b3d85f66b27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33f66484a0035b233ab171ed3b696fa6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"592ca6e323759a3be3e15662afff9297\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"893b80ec5dd05fb72fd00141fb518e32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d688d2d1bf1a31622070b2fb094c4cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4e72cd5d23acb39a4f9bc63cd0a21b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"da85884355ff3f4994596e259973be64\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2f84c45e7569a132689cdd9ed95b065\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a1f3186ff560113bb369dd97d7817da\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3db09b81e63e277131f85a8131a8025d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0b16c038d6c97b603911b86046cd25af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4eff38935461680017f59921787a34f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d18af827376be02cc0d3a1b6f9e01ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98977f8e3432f6e1ff5ebc307b85bf5c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4561d19a5716fbe7e1234f629b30767a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e9a028e3c404f0497df004b9975faad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f02043ae6d3212ba58eff7b1f7747496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1712170208fdab217e72e9ccd1bfd12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22e1a76aaf68da0ffb5403b0d2e2e274\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70909c374becd6dd73c82b4ff632b3c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0eae697b783ebba9efdb307f5ac8880a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c413014864a571a604089ceeb62ed55a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39450e87b48a58faf8da5a7a85133642\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5b1e2afd4751933180abf85fc4807f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a967fc1ae03d7238ecea72c0a0ee0d6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbe669bd0773be004f53e90bcb0df11a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56cddc0e777db2dbcc227171ce9f8054\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79b07b22b2ee648f66881c503ff3745d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d58f33bac449e9831ab4e1e98bc8409\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3859824896da3b25243af7a06a9ac8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39adcc1e155986621cc39a150c750070\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56317bf1aeaba04d33f714030392e692\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25113df24a5179f21d9e43126c27f58c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"466f741572070700ef6306949735069e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b12a0cd54325f7f91fee567870e913f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74e4b4ca3efba5d75a1727aa21c083fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"569cc4587b3157e2f58acd98ad72443d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74526ec1a4f846d0ddfaef484bc13493\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4203eae9736a10d438a8ee366d836774\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f8eb498aa41b793797942795f06c310e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Using Cached Data\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_data_from_cache\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_restart\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2bd4ab12752eaaa02b11c84a1e3290b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Restart\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_restart_ecu\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_query_device\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0ca0562ffcb02644dafae6227b475d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Query Device\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_query_device\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0a21329364115517cea604476281c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_inverters_online\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_003\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c5d8e19b2f7ef7dad358b83e242a65d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 003\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_confirm_configuration_change\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d25ae85a81c5a18a3965894f77da168e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator: Confirm Configuration Change\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e465c51bf88dbc32a6785a7b6dad1f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71fd02485d1c3201235dfebb5dcfe3b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e703e04564a595e11b85dc51d5afdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc9b9913efd0c2f8819a21443737e28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449a3a66c448b698823d287dee56c864\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_on_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"553ae2641fa529953c7c9c90ea018e2c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09447a340f5a951b315041b5dc38910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_scene_control_remote_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4108e95bdb9ab52a683d50b3c1eeb35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control: Remote 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed_dimmer_and_group_3_and_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96fb107556a5754998e6d4d86ade7860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed (Dimmer and Group 3 and 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24813797e3fe66e246880f75f276e964\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 IPv6 addresses\",\"platform\":\"mobile_app", + "offset_ms": 149 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea0442a91f3c09d591f5ddfd39b6057b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0152622d192ee621b119886a52d711d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7d94a13fb61185a29df32572fff71f7\",\"labels\":[],\"modified_at\":1758660536.917488,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80eeb792b9601da317217fe3bdc1d46c\",\"labels\":[],\"modified_at\":1758660536.917716,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2068d0dc53aa2c783a1b70575e6d7755\",\"labels\":[],\"modified_at\":1758660536.917878,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d71e0683e8fa779d02db54bf283e7f92\",\"labels\":[],\"modified_at\":1758660536.91804,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1b34b38e43714428e109ed8d1c945\",\"labels\":[],\"modified_at\":1758660536.918202,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f895402c9d8d3bbe9eacb657e5a92be\",\"labels\":[],\"modified_at\":1758660536.918462,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.total_inverter_watts\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb73b03eeb9a43d362378e6ef0a89fb7\",\"labels\":[],\"modified_at\":1768937322.85093,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Total_Inverter_Watts\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"43febd2c80fd35383b1796826e76aad9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"notify.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de018507a30e449b6455fef4fe0fedc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980_notify_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ffbd90ab3bdee9a04e0e066a46c2d94\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eebcb05ee23fa77b122afde9ce221d20\",\"labels\":[],\"modified_at\":1768937324.525363,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:6F-light-mariah_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1dd305fbfb47d33a89aa39aa5305aa6c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bec4f47de87f948d86a066bb2ab2c70\",\"labels\":[],\"modified_at\":1768937324.526369,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:32:24-light-mariah_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a815fe83e1ed7dc52f51fbdcc13b71\",\"labels\":[],\"modified_at\":1726995223.830482,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e558dddb1abc1eeeaedc81b16c01f9e9\",\"labels\":[],\"modified_at\":1726995223.838912,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56d69a23bcd42abf56831b1b71694eb0\",\"labels\":[],\"modified_at\":1726995223.777968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"581ec35adc2c957a76a2c7fd60ef8633\",\"labels\":[],\"modified_at\":1726995223.807272,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e52835bcd7056629b1f1a99e20075585\",\"labels\":[],\"modified_at\":1726995223.837479,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47538b6ae63e2feeba44c44fae84ffa1\",\"labels\":[],\"modified_at\":1726995223.776542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2833708ebf6506c52dd79313ad59d26d\",\"labels\":[],\"modified_at\":1726995223.805802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1602432411104b1ff4945fed97b8e1a\",\"labels\":[],\"modified_at\":1726995223.763548,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c02d2d704d9242c0fbbed6a12f6213d\",\"labels\":[],\"modified_at\":1726995223.798062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d105430a04958aac57cef96114b7c07\",\"labels\":[],\"modified_at\":1726995223.831134,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9eae8ff171be93ebed91308be8af407\",\"labels\":[],\"modified_at\":1726995223.838195,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d811fdd8bfa49dab565b28ada1eac2ba\",\"labels\":[],\"modified_at\":1726995223.829815,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a920c156a1c4ac8ed2c8c7e1167e51\",\"labels\":[],\"modified_at\":1726995223.762419,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b11670409d6bdf9aacdf2aa240b77fda\",\"labels\":[],\"modified_at\":1726995223.797323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4aba70109c330d3dbe361ef2f93ae3b\",\"labels\":[],\"modified_at\":1726995223.765802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a56194f193842b6926637417fbce5d3\",\"labels\":[],\"modified_at\":1726995223.831809,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3566ef3b27ff4ad879bf2679940865a\",\"labels\":[],\"modified_at\":1726995223.7996,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9344a735c3f7b30f4f067902c5e8699e\",\"labels\":[],\"modified_at\":1726995223.842465,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d473f6cd0d1bd253b226a132ea261d92\",\"labels\":[],\"modified_at\":1726995223.810927,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa0f97c72bd513df9f4ae63f90bcde63\",\"labels\":[],\"modified_at\":1726995223.843171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555d62f0d7d846827fea1966f7a795f\",\"labels\":[],\"modified_at\":1726995223.782285,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b738544dccea104b025e9d0e05eb0a0\",\"labels\":[],\"modified_at\":1726995223.843932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3279a9c16bede20195a82db3a2d5ac6\",\"labels\":[],\"modified_at\":1726995223.813127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"edf1ee16bcab171c1c577c63ab97f10c\",\"labels\":[],\"modified_at\":1726995223.813846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d546166876e4b211dd195567284dc59\",\"labels\":[],\"modified_at\":1726995223.781575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"083bdec6d96d2f404c70507685f3dd3e\",\"labels\":[],\"modified_at\":1726995223.84177,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dca79ad23d502629a88f7013fa68932\",\"labels\":[],\"modified_at\":1726995223.810227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16aa1de89eab7ad3ed129eb4cc0ac3c6\",\"labels\":[],\"modified_at\":1726995223.771136,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e4964ba1e71db161a6472592eb9e740\",\"labels\":[],\"modified_at\":1726995223.80033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8570560d08e0567d3efebba878cdb6ab\",\"labels\":[],\"modified_at\":1726995223.832485,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4aebf740e9f7b9bd6c98c37d306197a6\",\"labels\":[],\"modified_at\":1726995223.778671,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fe20c2ae51", + "offset_ms": 153 + }, + { + "direction": "recv", + "type": "text", + "payload": "615b00769343092fafd6a\",\"labels\":[],\"modified_at\":1726995223.807968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"068e413358fd64469c9a6e6f35b42a3d\",\"labels\":[],\"modified_at\":1726995223.839642,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aed56680f8f167daeb016cde5c2ba644\",\"labels\":[],\"modified_at\":1726995223.84033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fc85df1d90cebda5ab8b19c32436ae0\",\"labels\":[],\"modified_at\":1726995223.779376,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"021a49ce92e7476a582236b73b6e3535\",\"labels\":[],\"modified_at\":1726995223.802855,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6a40eac34dc70bf8dc5def5b0073fa\",\"labels\":[],\"modified_at\":1726995223.772679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c553fc274e111c629dd000aeec4c2b7\",\"labels\":[],\"modified_at\":1726995223.802104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df570e55b17fd5b868f21fdaaa452f90\",\"labels\":[],\"modified_at\":1726995223.83469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8e13752690827fa5e282140c5762e8\",\"labels\":[],\"modified_at\":1726995223.773442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b20b811f7244af9d9b23c2761c84b693\",\"labels\":[],\"modified_at\":1726995223.833935,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a5afa9a0787a0de471b3ee2c02657c1\",\"labels\":[],\"modified_at\":1726995223.808684,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8732cb4c313abb97189c10f0054108\",\"labels\":[],\"modified_at\":1726995223.775718,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed76a423a40fae6a4f24c824afc7805\",\"labels\":[],\"modified_at\":1726995223.833237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60203a103ce1b8ad003b1909fb4295b3\",\"labels\":[],\"modified_at\":1726995223.841088,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75a7375b9fceab8ece8c8d79beec2075\",\"labels\":[],\"modified_at\":1726995223.78008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d4429655a28d7c4d11c8ac748d6ec40\",\"labels\":[],\"modified_at\":1726995223.836044,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09fe4444cdc9cd9c1cb1d6365af990f\",\"labels\":[],\"modified_at\":1726995223.774958,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd10e1850ddc2620520d0c61a8bd97c6\",\"labels\":[],\"modified_at\":1726995223.804328,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4251e01f23bc9625e8a30bf7203a470a\",\"labels\":[],\"modified_at\":1726995223.835367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743fe98bbc2fed1b1af8b35cf2fb0ec9\",\"labels\":[],\"modified_at\":1726995223.774193,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6269259dcc0345571feab5284d7d09b9\",\"labels\":[],\"modified_at\":1726995223.803587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"524dd66763944a8be56ef44aa306ce9c\",\"labels\":[],\"modified_at\":1726995223.809514,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81b1a35be54fea6be3a192e4c82541f8\",\"labels\":[],\"modified_at\":1726995223.801083,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63bbd707bde7aeba07b3b5ecf5b7fa17\",\"labels\":[],\"modified_at\":1726995223.77192,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45170e964613947df7b4c57ebc0acd48\",\"labels\":[],\"modified_at\":1726995223.805066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8207f151f883386419a3a7979d3e5a37\",\"labels\":[],\"modified_at\":1726995223.83675,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e1e9be0c3cae58fefc0f6b8691e7327\",\"labels\":[],\"modified_at\":1726995223.764679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a81c4266cbdb0d23e04e4ae57619dceb\",\"labels\":[],\"modified_at\":1726995223.777271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6adb060e525a0b02802e9e8b6afa176\",\"labels\":[],\"modified_at\":1726995223.798783,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e88cf00ff5ffb15ab94f37a9aba66c0\",\"labels\":[],\"modified_at\":1726995223.806537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ede71d69993e45389dde366b477559a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.zwave_controller_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ada086edb92a8f505bced7c2559caac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8115e52cb16c7a28f096995d2b3b67e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f44e4ed83c8b09e72ec4ffd1df79953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f359fcdc3ab75ebc7bfb58acf0fe25e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46e839f2f5b0c124ad2a0b5c355967fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7b78974ef1f75948f492f64fd4859ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f780def514df1d90ed58dc922b80c574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.69.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_controller_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96d8fc5c5e35a76c655c9b71b67ef899\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.69.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a133bfa2a01f055c0c8d1bd38418a9\",\"labels\":[],\"modified_at\":1728721846.252105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e3e85a4be70951809ca9f5dfe3e4f27\",\"labels\":[],\"modified_at\":1728721846.252322,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6422ed2bc95eec7c77e8299c3132dd3b\",\"labels\":[],\"modified_at\":1728721846.252479,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e3039be25344df3c303f10d2af506\",\"labels\":[],\"modified_at\":1728721846.252618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"493c98ca3f5d28add9b1e76d9ea0fd2a\",\"labels\":[],\"modified_at\":1728721846.252884,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.69.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e9c3189a4b2c3bc9beaba32e4f6d17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.69.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba107fafd299fefa29cb886864a6b6ff\",\"labels\":[],\"modified_at\":1768937324.649113,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.69.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e97d839fc36f285ba34c95e0aedfb525\",\"labels\":[],\"modified_at\":1728721846.253026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.69.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_controller\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a09ee2d6dae31c200ed543531a11a022\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_status_after_power_fai", + "offset_ms": 158 + }, + { + "direction": "recv", + "type": "text", + "payload": "lure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1aa247cfe4361de79507e8ccf24a9abd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf005657afa97b1d708b15d9ce67af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c16c9234ee62e39da6d416bd74c4bf36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9964c19a9f2c7334e16ed21f53a3b47f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89981bfb5fb0a71346ba5c4a7fd7f436\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4bee7cdfbbbb6c2df376f6acbc9f8e0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a4d1c9f055f635a8a634822ce0443b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6dc9f7340d74772ba42c3d47103bc06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57972bc34dc5d7e963a491a8f73724f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a2e8fc6466088be70d409688c666748\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f693ad03c26b3259e108bc893124dc78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf35e53c8dc9a7f47de20aa646f2a06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a5ec9e8137600e298bee781d72b83af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"284a0c5a0e4fbb0bcfedfc117d6d0cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae04ca93744aa073da36ab542919ff8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"049d7e26a1fd2ebae088bd47e33c28c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f3c6220aeebafd0398bd96fade2132\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be4b4db30be6b69c892b44b359c6b20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80d8ed745bc23622d5388e9075693bb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"306db4629c8a60e5464dd368235e8317\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c04dfad2dc4762af4bb76906a45d36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b439907fac4276ebd5799a625ec1ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb5b5d71754b964eebf3dabae76e6cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_dc_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b6fdcf38fa8ab2b6dee499c7d18e08f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.garage_controller_basic_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f54c77989f4d5e8568905b09f0c46f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"949433e099fb4164e0fafef364d9d3be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.large_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage-variant\",\"id\":\"7103f21d0a7b132c69440a9d6979648a\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Large Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.small_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage\",\"id\":\"efa8ffc287061c04b28a05e2d6789429\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Small Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_back_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"200b3bc82d4792b83862ab4c8cbb5d60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Back Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836786749\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_front_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25b6b2f05b818b741e6862688a763aff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Front Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836943690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x17\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c29cfef30f97af820f587cd0d380f6d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x17\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x87\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4dc3db0b7fb0e8835ad90f9649d49ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x87\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x87\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_water_valve_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b60d57c74b8a0fc026da3c5efe1ca529\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Water Valve unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Water Valve-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.neck_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b16d267f43e86640e991f613d652ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Neck Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"neck_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.migraine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e0cd7c0a5bad5564b84ba8e22f577d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Migraine\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"migraine\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.back\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a96f0af191e7ef39888e595237fc79d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Back\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"back\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.water_intake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81a9b155d2aa5e2ce0c7cb5dca44c82c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Water Intake\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"water_intake\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b24234ca56ac77e9c79f6e353a9de91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"648e83e3c8bf58cd2e4eff867c7f26fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc3f2404fff79b6deefc2d10c7d221fa\",\"labels\":[],\"modified_at\":1724358474.764135,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.mariah_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45abb940e65545be9eba91e9c7c27266\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:14:0f_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.joint_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78f692acbb46a9d5516120af473ee045\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Joint Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"joint_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de63e43f6a93586a800fa07684f40d6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724140995216\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b26a6c2d503838f2bd69b2b4425daae8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141048676\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68e5beb6d9c92149ac9c90cd78e98694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141102872\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.thermostat_aux_heat_only\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10172ebe8ddeadf985bb596b028dcae9\",\"labels\":[],\"modified_at\":1732123640.2771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Auxiliary heat only\",\"platform\":\"ecobee\",\"translation_key\":\"aux_heat_only\",\"unique_id\":\"511883021980_aux_heat_only\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":1724358474.76478,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.mariah_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4fed1642c4e2312aef35b63ec334976a\",\"labels\":[],\"modified_at\":1724358481.090975,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:14:0f_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543171,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_start_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20a9befee49729b0b2137b2abfa3f2da\",\"labels\":[],\"modified_at\":1724358911.543261,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric start date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_start_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543599,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_end_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65d71d7e1d0a884417f030f39de51b62\",\"labels\":[],\"modified_at\":1724358911.543669,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric end date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_end_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.98836,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.ha_floorplan_your_imagination_just_became_the_new_limit_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3784e07efac13a5e30236d87aea4fec0", + "offset_ms": 162 + }, + { + "direction": "recv", + "type": "text", + "payload": "\",\"labels\":[],\"modified_at\":1724359451.989217,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.989902,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.dahua_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e20245435d618d476b342520dc05bde5\",\"labels\":[],\"modified_at\":1724359451.989949,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990389,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.emporia_vue_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33d53b6ba7f741c6d34066bffe189297\",\"labels\":[],\"modified_at\":1724359451.990431,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990856,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.average_sensor_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83923fd4d6f02182318adda6b96afc53\",\"labels\":[],\"modified_at\":1724359451.990901,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991326,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.lovelace_home_feed_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30d80177caf3df3331d797d783c5539a\",\"labels\":[],\"modified_at\":1724359451.991374,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991795,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.smartthinq_lge_sensors_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cd6da87bfe167df17bccc9b0bc3f160\",\"labels\":[],\"modified_at\":1724359451.991841,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.99502,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.fold_entity_row_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d2c850e540e1848f6d18f94e1d33df8\",\"labels\":[],\"modified_at\":1724359451.995069,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995516,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.card_tools_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa13dab5ed75447d38ec11bb05b39148\",\"labels\":[],\"modified_at\":1724359451.995558,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995977,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apsystems_ecu_r_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6355ba3eab69573857aa3095dfe8bb29\",\"labels\":[],\"modified_at\":1724359451.996022,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996442,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.hacs_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee6b6e287f399d2a0f069f2f3630f9de\",\"labels\":[],\"modified_at\":1724359451.996483,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996903,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.number_box_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4973abd138f62d11c94d23869d4332c6\",\"labels\":[],\"modified_at\":1724359451.996945,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997365,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.layout_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f6016a8e966604387a938ca589078bb\",\"labels\":[],\"modified_at\":1724359451.997407,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997831,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.opensprinkler_integration_for_home_assistant_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b81d07934da5c7e0354b8fcffd03768d\",\"labels\":[],\"modified_at\":1724359451.997883,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.998293,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.auto_entities_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7eaa56b622d4a80a22c66036a4e7bff\",\"labels\":[],\"modified_at\":1724359451.998341,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.000211,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"057af5b48646a036f034fd05c24730ac\",\"labels\":[],\"modified_at\":1728248033.394848,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00067,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.dahua_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39b3a5e25ed21ff451dd821e74135856\",\"labels\":[],\"modified_at\":1728765061.996176,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dahua update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00105,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.emporia_vue_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e29e7a00297a5a491404aa12c42c1323\",\"labels\":[],\"modified_at\":1726802997.261126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Emporia Vue update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001406,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.average_sensor_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"10b897f9ab5ff47d44ed99b8cad96a01\",\"labels\":[],\"modified_at\":1728269633.52911,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Average Sensor update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001753,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.lovelace_home_feed_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"692a965a89752f7152ac33da536bbed1\",\"labels\":[],\"modified_at\":1774138612.944037,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lovelace Home Feed Card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.0021,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3cb7c37711861e8a4f3c5450350f13c1\",\"labels\":[],\"modified_at\":1728226433.446449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SmartThinQ LGE Sensors update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.002442,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fold_entity_row_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f07711c04f71f779880758ee4fd3ca0\",\"labels\":[],\"modified_at\":1750126348.796186,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"fold-entity-row update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003037,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.card_tools_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8857ce93625614d4a532e41e988a77ca\",\"labels\":[],\"modified_at\":1774138612.945999,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"card-tools update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003384,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apsystems_ecu_r_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eb5eead0182826b4bd85b3cbbc8b855d\",\"labels\":[],\"modified_at\":1741914692.185678,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"APSystems ECU-R update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003737,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.hacs_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b4d63ea37ba5c94123db67da9a7b4a\",\"labels\":[],\"modified_at\":1725474380.986863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"HACS update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004085,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.number_box_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf9428ea6400cb62210ef5a817aa3f4\",\"labels\":[],\"modified_at\":1774138612.947972,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Number Box update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004425,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.layout_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9814393596a8063e564904eea508d5\",\"labels\":[],\"modified_at\":1724359470.337507,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"layout-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004773,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64aa16e9bfa85282bdb6b21e1f285a0c\",\"labels\":[],\"modified_at\":1728377633.939246,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler integration for Home Assistant update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.005134,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.auto_entities_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c1b0f1673df40ae25aff2e19e9bdb999\",\"labels\":[],\"modified_at\":1746450676.644499,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"auto-entities update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.878711,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d782eae7ac9b06c199b0499afff0d330\",\"labels\":[],\"modified_at\":1725237298.640764,\"name\":\"Living Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.880189,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a40c8c00fa4561861b93cac2ae12162\",\"labels\":[],\"modified_at\":1725237298.642678,\"name\":\"Living Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.620171,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95350dcc7aab2e2b8ad42eff96a3bbe9\",\"labels\":[],\"modified_at\":1725239509.709835,\"name\":\"Office FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.621822,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"457ea4d9622eaa89f01768b2d3cb13b7\",\"labels\":[],\"modified_at\":1725239509.711619,\"name\":\"Office FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9119d30965efa939f043665b8f522c7\",\"labels\":[],\"modified_at\":1725122973.950769,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d74e8506dabac922300249b97a64fd92\",\"labels\":[],\"modified_at\":1725122989.160884,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f75ee8a8e6a0e889e600b497c966f4be\",\"labels\":[],\"modified_at\":1725123000.642922,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.881487,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"", + "offset_ms": 167 + }, + { + "direction": "recv", + "type": "text", + "payload": "binary_sensor.living_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a80cd1fd55b60d92e924c5d0a86b57bf\",\"labels\":[],\"modified_at\":1725123140.792999,\"name\":\"Living Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.62291,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65796cc5504c6f97911d5984b7697240\",\"labels\":[],\"modified_at\":1725123172.764679,\"name\":\"Office Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.623792,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4870514fbeca2b830d674880c226e4b1\",\"labels\":[],\"modified_at\":1725123300.434383,\"name\":\"Adam Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.625331,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ae3bf2a8005788c86e4ed1db0e26deba\",\"labels\":[],\"modified_at\":1725123348.631538,\"name\":\"Leksi Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.626608,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"92cd99596879bed65510157a3e4440b8\",\"labels\":[],\"modified_at\":1725123370.960249,\"name\":\"Mariah Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.882516,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_couch_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df55257bb93d1c4d83ab27bb28cc7088\",\"labels\":[],\"modified_at\":1725128801.063257,\"name\":\"Small Couch Occupied\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.884521,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.main_couch_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d5054b087303392f4b4c1afa3087c65f\",\"labels\":[],\"modified_at\":1725211786.993681,\"name\":\"Main Couch Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.885552,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.massage_chair_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6166b7fcdd2cb9ddf567fd2ef3444519\",\"labels\":[],\"modified_at\":1725216435.355422,\"name\":\"Massage Chair Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.041669,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.mariah_room_fp2_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05362f331bbb95c88b007da2281c2835\",\"labels\":[],\"modified_at\":1725237352.484952,\"name\":\"Mariah Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.047465,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"572e2d9b32244570b0d0b314a4c0b609\",\"labels\":[],\"modified_at\":1725237352.487786,\"name\":\"Mariah Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.051823,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5970db3a2e7b0259e89db44e4cfa579\",\"labels\":[],\"modified_at\":1725237416.812842,\"name\":\"Mariah Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.055599,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff08f0de11c1b85bc8cd0d449bc0c733\",\"labels\":[],\"modified_at\":1725237437.467906,\"name\":\"Mariah Room Bean Bag\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.059074,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6bfab91f865d492c15136b5c01e3ea3\",\"labels\":[],\"modified_at\":1725237447.998816,\"name\":\"Mariah Room Bed\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2696\"},{\"area_id\":\"mariah_bedroom\",\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237505.317515,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"scene.mariah_in_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fb3c6924d403f71d58b0bb0dabf3c01\",\"labels\":[],\"modified_at\":1725237505.338758,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Mariah In Bed\",\"platform\":\"homeassistant\",\"translation_key\":null,\"unique_id\":\"1725237502868\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237787.837052,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_purple\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"624dd2844883b69d29ed148095cfedd4\",\"labels\":[],\"modified_at\":1725237787.837879,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Purple\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_purple\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237915.884351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d456942a6323ea80effd232373cc5b99\",\"labels\":[],\"modified_at\":1725237915.885773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238041.890769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"75cf52bb1c878e6bff34b625af14e080\",\"labels\":[],\"modified_at\":1725238103.797624,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up_initial\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238636.640793,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3b6a0b1778090f2e8c408dda4f83c35\",\"labels\":[],\"modified_at\":1725238636.641973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238624495\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238701.670496,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9999f46a955a0e9f9084655c2278aae\",\"labels\":[],\"modified_at\":1725238701.671689,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238682447\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239006.346545,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4ce3b7950ba257b7202c193ad300ec6\",\"labels\":[],\"modified_at\":1725239006.347468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Beanbag\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238993576\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239193.188985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f01bb92164b255a0efc6d56ad8e2d267\",\"labels\":[],\"modified_at\":1725239193.189985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off_motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239220.921769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7ab674921f77ca79b116b8ad3510f592\",\"labels\":[],\"modified_at\":1725239220.923107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725239208837\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725240282.042413,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7ca8c0f7712e5307b5d9763e9de9b94\",\"labels\":[],\"modified_at\":1725240282.04309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.352226,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45c2f5c4dc505611cb256120f1f2830\",\"labels\":[],\"modified_at\":1727942594.370094,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.395121,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"642124e3cca72e7af2215ef9a52ec5b8\",\"labels\":[],\"modified_at\":1727942594.403475,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.425326,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"784abe3673b46c36d82dd6392e364987\",\"labels\":[],\"modified_at\":1727942594.425962,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.45199,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"150bd1465c22a43804cecfd9a73b625d\",\"labels\":[],\"modified_at\":1727942594.452773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1728721845.869036,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b63b865295f97c1a420158b97b7759ea\",\"labels\":[],\"modified_at\":1728721845.869115,\"name\":null,\"options\":{},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeout_ack\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.793984,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385bc6fdb93d7ac940f95ec7929b93a2\",\"labels\":[],\"modified_at\":1729542987.794601,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.818634,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd8c93ee004038b3809d9bf5e9651e47\",\"labels\":[],\"modified_at\":1729542987.819224,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927412.116135,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"955ffcb77910a5ce5c785cbb4567a5f4\",\"labels\":[],\"modified_at\":1730927412.117253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927396308\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.917166,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"987472eb0c0a9d61f145fe1ffa7ec389\",\"labels\":[],\"modified_at\":1730927493.919085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.920247,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"252a7a535fed97b7201a3d818cbf6b41\",\"labels\":[],\"modified_at\":1730927493.923132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.925051,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.entry_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97c48c7149d9b2887c6c759a19330130\",\"labels\":[],\"modified_at\":1730927493.927034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.928963,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.entry_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500c84effc8332e2f1c41a3075838240\",\"labels\":[],\"modified_at\":1730927493.932234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:cb:b8_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.935595,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.entry_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743ad90a794f64c648bd1898865e94f4\",\"labels\":[],\"modified_at\":1730927493.936077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:cb:b8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927707.36645,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1265c862bfdaa5054cae39b5f86e369c\",\"labels\":[],\"modified_at\":1730927707.367325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927687152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":173092779", + "offset_ms": 175 + }, + { + "direction": "recv", + "type": "text", + "payload": "9.13572,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d209c365471b448fef5272375db2ff0\",\"labels\":[],\"modified_at\":1730927799.137491,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927783620\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.182084,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf28a6cb7c5941b7f5f4a22f00a9f0e\",\"labels\":[],\"modified_at\":1731010174.182936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.185823,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff2608f2319d6a14116e79184fb9de\",\"labels\":[],\"modified_at\":1731010174.186057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.188286,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02c6d610044ed99bb98012037e946b99\",\"labels\":[],\"modified_at\":1731010174.188925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Water Alarm Water temperature alarm status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.189509,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c63c08e0a24247681b3d434ba4fb34cb\",\"labels\":[],\"modified_at\":1731010174.19004,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"No data\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.190342,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abb7f974abebcb04c1b547a6286cded4\",\"labels\":[],\"modified_at\":1731010174.190851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Below low threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.191145,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f614798b9e419b24613abcca2ed35048\",\"labels\":[],\"modified_at\":1731010174.19163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Above high threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.764381,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac6c25ec61299c2cb06e3968752d2b33\",\"labels\":[],\"modified_at\":1732137151.765016,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.71.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.765454,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"470d94d96fdc410faa1a1d853ce54872\",\"labels\":[],\"modified_at\":1732137151.765996,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.71.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.766523,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bdd8a3d8d5649e3c59bcd0afe21a3233\",\"labels\":[],\"modified_at\":1732137151.766708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767048,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e664059fc7a8cd2a4c332b3dd7c088\",\"labels\":[],\"modified_at\":1732137151.767202,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767524,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167a34dc614f039f41fc040f39e15d2c\",\"labels\":[],\"modified_at\":1732137151.767682,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.76799,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b457d5cbaa8a6d30f5db0cfa9205e7c\",\"labels\":[],\"modified_at\":1732137151.768142,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768433,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"efb4c2b5944fd9687778e2300f221aba\",\"labels\":[],\"modified_at\":1732137151.76858,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.71.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768882,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e0206961390409df0866659ba3bde3c\",\"labels\":[],\"modified_at\":1732137151.769029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.71.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.769331,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45bfe6ad87c79146ddc2780321ecc45c\",\"labels\":[],\"modified_at\":1768937324.655714,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.71.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.770858,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7befa0f701f255251d4f0713e34362f\",\"labels\":[],\"modified_at\":1732137151.771513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.71.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.588866,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2668e06370022ffa63e0af58450c4deb\",\"labels\":[],\"modified_at\":1768937324.772972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.590101,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e406cccffc6c5b1a623fd47a73eba1f\",\"labels\":[],\"modified_at\":1732137162.590693,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.591473,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02301ae4db885a81128ada934ab4a086\",\"labels\":[],\"modified_at\":1732137162.592025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.592528,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6fee332c76665dc7ef1990beab6911\",\"labels\":[],\"modified_at\":1732137162.592694,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593141,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb96048cc18af78626c04d902a8e7007\",\"labels\":[],\"modified_at\":1732137162.593303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593752,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bded064f1e92e2734f097e5c6fc559b\",\"labels\":[],\"modified_at\":1732137162.593913,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.594349,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7628d05dcf62a79ba33c64966408e4a7\",\"labels\":[],\"modified_at\":1732137162.594936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.595438,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5f170a01f0cacbeb2fd47e3cedac5f\",\"labels\":[],\"modified_at\":1732137162.595608,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596071,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d11c36c8b1ae89a2329b8466196adb6\",\"labels\":[],\"modified_at\":1732137162.596235,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596681,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"322ec7947d8e42919a0133cd17e116f7\",\"labels\":[],\"modified_at\":1732137162.59686,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597312,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_minimum_reporting_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adf1bb1bfe2a4f11cadf90f298ff2d35\",\"labels\":[],\"modified_at\":1732137162.597473,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Minimum Reporting Frequency\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-172\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_battery_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0afe97af7c4e124df81a1ac9cc483560\",\"labels\":[],\"modified_at\":1732137162.598073,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-182\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.598509,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10efd918aa86083fadb425ff9a4a4a34\",\"labels\":[],\"modified_at\":1732137162.598687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-183\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.59912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3c5669678178150a506c354e6f1be9\",\"labels\":[],\"modified_at\":1732137162.599283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-184\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.599718,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_brightness_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913286fe33112a9c3d531a34472f5945\",\"labels\":[],\"modified_at\":1732137162.599878,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-185\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601005,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_multi_sensor_vibration_sensor_enable_or_disable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3db884502b02d5d6a290bdf2d41907c\",\"labels\":[],\"modified_at\":1732137162.601212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration sensor enable or disable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601721,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4f6c95db11d3ac17bca07d2264430a4\",\"labels\":[],\"modified_at\":1732137162.601885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602321,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e453c0781a8c76f1e73aefc41ad58342\",\"labels\":[],\"modified_at\":1732137162.602485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602937,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5581de38027d90f3ef0cb1cd2c41d2a0\",\"labels\":[],\"modified_at\":1732137162.603098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.60353,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_temperature_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2fedd7c6df14c4b5c04f34a712b7e8\",\"labels\":[],\"modified_at\":1732137162.603692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for temperature sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-173\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604137,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_humidity_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e70223c7a145435b2ed9e879cd97c40\",\"labels\":[],\"modified_at\":1732137162.604311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for humidity sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-174\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604784,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_light_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"126c174154d818c34882bf702cd2ecb1\",\"labels\":[],\"modified_at\":1732137162.604956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for light sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-175\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.605428,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f8387b33452ea29b9bf9b484030fe46\",\"labels\":[],\"modified_at\":1732137162.605656,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-201\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.606111,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e4b96482125c77b71a934b2d26f18e\",\"labels\":[],\"modified_at\":1732137162.607041,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-202\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.6076,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e78741347ca06e5ec1b6e8c3ba8b559\",\"labels\":[],\"modified_at\":1732137162.607783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-203\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.608276,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46015d5ffd1da337365d54035bbbec1f\",\"labels\":[],\"modified_at\":1732137162.608489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609037,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5515fb214b05e9d99121d850fdc2cc3e\",\"labels\":[],\"modified_at\":1732137162.609207,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609708,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36b46883ad9a46c08d9ace6a631f3ab0\",\"labels\":[],\"modified_at\":1732137162.609873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.610376,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_c", + "offset_ms": 182 + }, + { + "direction": "recv", + "type": "text", + "payload": "ategory\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e5ec6faa8b7d0368a1aaef25db69cfae\",\"labels\":[],\"modified_at\":1732137162.610934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.611673,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7eadc541b21bdc09a3ede440e16e781\",\"labels\":[],\"modified_at\":1732137162.612885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.61343,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2ee927581c1eeef7e93ff0d97ddee896\",\"labels\":[],\"modified_at\":1732137162.613993,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.614532,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dcdb2a7c64feec4cb475111ab74f4d8f\",\"labels\":[],\"modified_at\":1732137162.6151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.615626,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88ae53a601694ce99968bd1f2e333c08\",\"labels\":[],\"modified_at\":1732137162.61618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.616467,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0edb4b570f956fbd585e38c96895ee89\",\"labels\":[],\"modified_at\":1732137162.616941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.617512,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"813c7f2ffa0892c3422fa632fefc12fd\",\"labels\":[],\"modified_at\":1732137162.618824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.619386,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93dc4ae4941e37f57821eab3fd04fdcb\",\"labels\":[],\"modified_at\":1732137162.619911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.620392,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6557f3d6a9a2cf2d58f3637dab11b0fc\",\"labels\":[],\"modified_at\":1732137162.621174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.621782,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7728624fe2d08c453eb1f5570b13110\",\"labels\":[],\"modified_at\":1732137162.622362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.62405,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_multi_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e01d9271034ccc4742137810a44c7296\",\"labels\":[],\"modified_at\":1732137162.624683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.633871,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28458c3031c3f4c248b9a590649b56b8\",\"labels\":[],\"modified_at\":1752106041.646984,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 1 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_1_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.634984,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8233a76f8e5b57101fa68fa5d761e95d\",\"labels\":[],\"modified_at\":1752106041.647528,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 2 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_2_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.635932,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4306e274bbda0cdb3c63207a6f31f939\",\"labels\":[],\"modified_at\":1752106041.647924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_rain_delay_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.636864,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8cfc6b3d9aa316b1a16b51c6c90236c4\",\"labels\":[],\"modified_at\":1752106041.648321,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Paused\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_paused\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.637837,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_program_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d677537788a5eafcb8532c16cf717224\",\"labels\":[],\"modified_at\":1752106041.648738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_program_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.638843,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s01_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78da84e6aefcc386e0046bf1b665406b\",\"labels\":[],\"modified_at\":1752106041.649173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.640317,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef03c61878db30aef1069ae462af17\",\"labels\":[],\"modified_at\":1752106041.649602,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.641282,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s03_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e7f2050e9cf5b99317afc5bc8437b60b\",\"labels\":[],\"modified_at\":1752106041.649991,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.642249,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd1dcda93262483eb387ef6990169370\",\"labels\":[],\"modified_at\":1752106041.650391,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.643239,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s05_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabc42d8716a5866c0d562652bb54f56\",\"labels\":[],\"modified_at\":1752106041.650775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.644241,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s06_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4f5a122107cab3853f733992b28f8c9\",\"labels\":[],\"modified_at\":1752106041.651155,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.646097,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s07_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3293c0b56291ae6e9a7bd65e0abd60ab\",\"labels\":[],\"modified_at\":1752106041.65154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.647084,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s08_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44907512c87223c107c95f467afd32ac\",\"labels\":[],\"modified_at\":1752106041.651931,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.64834,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s01_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a38e3beb90e104dd21a41eb83801ef5\",\"labels\":[],\"modified_at\":1752106041.652574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S01 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.649353,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_lawn_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68796744a1de3fd9f2849c34c91293d8\",\"labels\":[],\"modified_at\":1752106041.653615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Lawn Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.650323,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s03_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7192a3ad6d844197c490a376e3f70b1\",\"labels\":[],\"modified_at\":1752106041.65404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S03 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.651977,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9199ba6acba78346f517315046715e7b\",\"labels\":[],\"modified_at\":1752106041.654442,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Flower Bed Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.652985,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s05_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ac557888704caa59ca96935fd70b6d\",\"labels\":[],\"modified_at\":1752106041.654835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S05 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.653945,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s06_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6edb59dd3e64c4913f7de4e938acd59\",\"labels\":[],\"modified_at\":1752106041.655236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S06 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.654928,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s07_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"43667b7d50dd98b035e656e0bab89356\",\"labels\":[],\"modified_at\":1752106041.655641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S07 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.656158,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s08_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf30ad107bbd19dba22c07d3614de624\",\"labels\":[],\"modified_at\":1752106041.656036,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S08 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.657793,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_interval_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab30ba1fa24ea82ab2abbc82c046d16f\",\"labels\":[],\"modified_at\":1752106041.656454,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Interval Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_interval_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.658844,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_starting_in_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70fc9278f25b33ebbc97bee258bc426\",\"labels\":[],\"modified_at\":1768937328.473047,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Starting In Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_starting_in_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.659895,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"532c0ab02f8bacd4922c9e8fb929b233\",\"labels\":[],\"modified_at\":1752106041.657319,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Count\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_count_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.660553,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82c9f077606745c02474ab5be55a620f\",\"labels\":[],\"modified_at\":1752106041.65765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Interval\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_interval_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.661207,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ff12afe9d9a6186ccedc30b97f98c5b\",\"labels\":[],\"modified_at\":1752106041.657982,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.662274,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start1_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5eaab58a3eaa4725ee1acc2c7d0af43\",\"labels\":[],\"modified_at\":1752106041.65843,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start1_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.663542,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start2_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"900d108248145e047c6222d5dab38a6d\",\"labels\":[],\"modified_at\":1752106041.658749,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start2_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.664261,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start3_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53547b2a17ba809162f4c80e4c95c494\",\"labels\":[],\"modified_at\":1752106041.659059,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start3_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.66517,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_restrictions\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98120ea7a8c6aec01a0b4c930f4d271a\",\"labels\":[],\"modified_at\":1752106041.659582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Restrictions\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_restrictions_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.666191,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86585bafecd310548350429db5de5ac4\",\"labels\":[],\"modified_at\":1752106041.659999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.667173,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_additional_start_time_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ecea61af97b2c0c60f95fe1aea7a1c\",\"labels\":[],\"modified_at\":1752106041.660415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Additional Start Time Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.668408,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_start_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c19fa2860614bd4a8f05e40abc011676\",\"labels\":[],\"modified_at\":1752106041.660824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670177,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start1_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41990b44f367572d2e3191a12b36cdcc\",\"labels\":[],\"modified_at\":1752106041.661229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start1_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670831,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start2_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd85f5a98d6ad86127c3b5823860fec6\",\"labels\":[],\"modified_at\":1752106041.661525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start2_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.671452,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start3_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a20cd58ad5a61fee98b1af89696b25\",\"labels\":[],\"modified_at\":1752106041.661818,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start3_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.672332,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_last_run\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dcb6bda0ee19761e85c6fade1412faef\",\"labels\":[],\"modified_at\":1752106041.662311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Last", + "offset_ms": 189 + }, + { + "direction": "recv", + "type": "text", + "payload": " Run\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_last_run\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.673368,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5559a9931dd1e25341ea309e5a82f85\",\"labels\":[],\"modified_at\":1752106041.662722,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Stop Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_rdst\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.674302,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_water_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c8cf60018b734e890992bd9eed2ec34\",\"labels\":[],\"modified_at\":1752106041.663111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Water Level\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_water_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676033,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55cbcd1e26e5440341dfb0355bd8bcc7\",\"labels\":[],\"modified_at\":1752106041.663513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Flow Rate\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_flow_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676994,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_draw\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2fdebd9b4d3a941ed6738378fd82c4\",\"labels\":[],\"modified_at\":1752106041.663901,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Draw\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_current_draw\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.677946,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"004c2dddd6a671840404bde623b57bec\",\"labels\":[],\"modified_at\":1752106041.664278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_devt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.678559,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"928cbf681537aefdcec79f502a31c202\",\"labels\":[],\"modified_at\":1752106041.664568,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Pause End Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_pt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.679532,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s01_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7c0622cc402dd16d31691f5bbd346a0\",\"labels\":[],\"modified_at\":1752106041.664954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.680486,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_lawn_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec3d3107b963ae9e98697b474d274f97\",\"labels\":[],\"modified_at\":1752106041.665365,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.682227,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s03_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee3da72518ce48c980b2b30be13c8807\",\"labels\":[],\"modified_at\":1752106041.665741,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.683445,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_flower_bed_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e68cff1ef73136d91264bef3338e6b8e\",\"labels\":[],\"modified_at\":1752106041.66612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.684415,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s05_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3fa7d6a18fd72776a962c38ebab8505f\",\"labels\":[],\"modified_at\":1752106041.666497,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.685369,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s06_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0400d09413e1943988a75450678b1ebb\",\"labels\":[],\"modified_at\":1752106041.66687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.686365,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s07_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8eeb163f3069a24eb8b02be77dabfe38\",\"labels\":[],\"modified_at\":1752106041.667242,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.687354,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s08_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a67713de10858c8f5573df5bf7deff48\",\"labels\":[],\"modified_at\":1752106041.667621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.688636,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.opensprinkler_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a0dc8f5e507c1f6fde72f904788cdbb6\",\"labels\":[],\"modified_at\":1732137663.689179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"OpenSprinkler Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_controller_enabled\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.689659,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_program_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5814850390edeb9e2eeda752197bc5c\",\"labels\":[],\"modified_at\":1750061531.449132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.690656,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_monday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a2e95f50238ccb6e70e50e56b98b27\",\"labels\":[],\"modified_at\":1752106041.668769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Monday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_monday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691244,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_tuesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5359ae42aaef47628647352704d15ec6\",\"labels\":[],\"modified_at\":1752106041.669071,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Tuesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_tuesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691842,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_wednesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edd1e6010cbe67594ea1ee82924f6f8c\",\"labels\":[],\"modified_at\":1752106041.669369,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Wednesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_wednesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.692443,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_thursday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4472ffa505c8f15ca6ab865630355d4\",\"labels\":[],\"modified_at\":1752106041.669655,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Thursday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_thursday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693014,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_friday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1be9033a6ff2cb2f995d8ef74c0afa5b\",\"labels\":[],\"modified_at\":1752106041.669939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Friday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_friday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693609,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_saturday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4abfd9b07e0f49d65f187324b9feddd\",\"labels\":[],\"modified_at\":1752106041.670226,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Saturday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_saturday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.694193,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_sunday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4357c7a7797385e7b9355358ded32f94\",\"labels\":[],\"modified_at\":1752106041.670505,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Sunday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_sunday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.69484,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.front_program_use_weather\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5914f46ad2cfb68aad3c6706cb684a8\",\"labels\":[],\"modified_at\":1752106041.670809,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Use Weather\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_use_weather_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.696024,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s01_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee933341e59eab4e1de01dfb380d57d4\",\"labels\":[],\"modified_at\":1732137663.696604,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S01 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.697116,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_lawn_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27734f41473d59fab6ac03f37eb7bfb8\",\"labels\":[],\"modified_at\":1732137663.697653,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Lawn Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.698106,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s03_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cddda4b9abd4a2112b5d386fb355d349\",\"labels\":[],\"modified_at\":1732137663.698787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S03 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.699266,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aebefeb6ed4d1b726994cfd307f4cd2a\",\"labels\":[],\"modified_at\":1732137663.699922,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Flower Bed Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.700567,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s05_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1b9b1f74a2038ccf2d6ada0f37c6fa\",\"labels\":[],\"modified_at\":1732137663.701324,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S05 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.702531,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s06_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2dd24c218d32a94dd0335de195f7f2d2\",\"labels\":[],\"modified_at\":1732137663.70317,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S06 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.703647,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s07_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d911d53c2592a07306a7b6b3b3fa66\",\"labels\":[],\"modified_at\":1732137663.704181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S07 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.704672,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s08_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"35c35dbbf2e3f45e3f06fa1dbae6b749\",\"labels\":[],\"modified_at\":1732137663.705194,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S08 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.706649,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"text.front_program_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37e6efeffb3cda3c638bab8e88d2538f\",\"labels\":[],\"modified_at\":1752106041.673929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Name\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_text_program_name_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.709345,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"time.front_start_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3218db77bd10bc723c7584475171ab4f\",\"labels\":[],\"modified_at\":1752106041.675042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.71041,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start1_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd2cee6ac188f1157bc1dabe9135722f\",\"labels\":[],\"modified_at\":1752106041.67576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start1_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711008,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start2_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8099b78938edadefa49d3f10af5d3a33\",\"labels\":[],\"modified_at\":1752106041.67606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start2_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711572,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start3_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"960046c7225148a4e2e04959c16b02f6\",\"labels\":[],\"modified_at\":1752106041.676347,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start3_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.982321,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"176bdb7963a4d2e8e0993dd991c2d61a\",\"labels\":[],\"modified_at\":1732138416.983212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.73.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.983825,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3830b7b3aafeadc0f0a4a4cafdbba3c7\",\"labels\":[],\"modified_at\":1732138416.984423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.73.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.984956,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a40c07eeee574d0a58ea7e537b5dddb\",\"labels\":[],\"modified_at\":1732138416.985133,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.985534,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2445fa8e4bd61ebde86370bc8523e1\",\"labels\":[],\"modified_at\":1732138416.985692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986061,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f41c04d85d79bf9677d75b8c16c04b\",\"labels\":[],\"modified_at\":1732138416.986233,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986748,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"194631aec7814b1c0eeba1cf4e786d0a\",\"labels\":[],\"modified_at\":1732138416.986932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.98735,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae9b1ef37b45bab86290b6d49def769b\",\"labels\":[],\"modified_at\":1732138416.988081,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.73.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.988538,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98007b9b486441a51a5279bb7fed6b8a\",\"labels\":[],\"modified_at\":1732138416.988715,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.73.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.989091,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49dc7f599fdd1f2027fe2bcf95006dff\",\"labels\":[],\"modified_at\":1768937324.663851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.73.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.990462,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33557f07cdf75bc2412ad0a885c0bc44\",\"labels\":[],\"modified_at\":1732138416.991131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.73.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.790002,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72e8b62740080ea3f946f208f1fb7bc7\",\"labels\":[],\"modified_at\":1768937324.779845,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true", + "offset_ms": 197 + }, + { + "direction": "recv", + "type": "text", + "payload": "},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.791422,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d04acf192d2fd0fc6179ab20b4104f4\",\"labels\":[],\"modified_at\":1732138423.792057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.792664,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f328919b5fbd52d7e3554c431eaecda5\",\"labels\":[],\"modified_at\":1732138423.793293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.793874,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57f5ea17ee03c8aef502d38ef8bd6b1b\",\"labels\":[],\"modified_at\":1732138423.794042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.79457,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd876b6092259cb5ead6b986d88ee635\",\"labels\":[],\"modified_at\":1732138423.794748,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.795911,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555c9ad71f1f7fdd6ee1463b6969d21\",\"labels\":[],\"modified_at\":1732138423.796098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.796629,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec00430092b4eeab0664d84f21df0171\",\"labels\":[],\"modified_at\":1732138423.796797,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797307,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88dc5c6dce5ae4332a1d45a4f0cc4c99\",\"labels\":[],\"modified_at\":1732138423.797468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797983,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ac88bfe9cceaa214b06d93c173a4837\",\"labels\":[],\"modified_at\":1732138423.798146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.798681,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc6960dcb05013fd42b9c69458102c16\",\"labels\":[],\"modified_at\":1732138423.798846,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.799334,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07a1c78242bf060670017b91e7d94d35\",\"labels\":[],\"modified_at\":1732138423.799489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.800068,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"043056745e8987e49706de0b21d04793\",\"labels\":[],\"modified_at\":1732138423.8", + "offset_ms": 204 + }, + { + "direction": "recv", + "type": "text", + "payload": "00234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.804869,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"daf1f79fbd90cabfc5a34ad780956cdb\",\"labels\":[],\"modified_at\":1732138423.805095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.806501,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbb8694e79a2ad14cb64c8f8e5d47a2f\",\"labels\":[],\"modified_at\":1732138423.80718,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.807718,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7424d3a9e7da60ac2ba9d4adfd79a18\",\"labels\":[],\"modified_at\":1732138423.808298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.808844,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24c0c8ec26f7f4075cd8e45ffcde07a1\",\"labels\":[],\"modified_at\":1732138423.809401,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.809877,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22bf5cdc43c8ee4de64819afa890cc68\",\"labels\":[],\"modified_at\":1732138423.811783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.812418,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8312156799f26c4fd9c0c0e868d613df\",\"labels\":[],\"modified_at\":1732138423.81303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.81356,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cde146585342c60fa01d113994424977\",\"labels\":[],\"modified_at\":1732138423.814241,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.816756,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a15df092ba0c6a7154348a4898157ad4\",\"labels\":[],\"modified_at\":1732138423.817406,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.618014,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416b91acfddf3047384e7ee2ae08296c\",\"labels\":[],\"modified_at\":1732138684.618664,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.75.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.619114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22ca26c888e4f320444bfe76a2069291\",\"labels\":[],\"modified_at\":1732138684.619621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.75.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620099,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3617768155b9135fc6e5f44b7e21189c\",\"labels\":[],\"modified_at\":1732138684.620274,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620594,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"118bc1f4edbe3b8896b0d0a6751133e3\",\"labels\":[],\"modified_at\":1732138684.620752,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.621063,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c365245a707d6329e913801bd91ca5d1\",\"labels\":[],\"modified_at\":1732138684.621225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.62154,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75eb84dd5f8d9bc95ca286dc1eeca79d\",\"labels\":[],\"modified_at\":1732138684.621706,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622015,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2777138368a9abe7f9f042f0023f48b\",\"labels\":[],\"modified_at\":1732138684.622179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.75.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622502,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c57670c418667c196d39dca2483a5d14\",\"labels\":[],\"modified_at\":1732138684.622961,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.75.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.623544,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15d78da0a4398cd66194710995979ef2\",\"labels\":[],\"modified_at\":1768937324.668105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.75.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.624153,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b3ad094b6fb47d54160dc27a2402c7a\",\"labels\":[],\"modified_at\":1732138684.624744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.75.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.636665,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fa00abf3918f8fac60b707bed85cdd7\",\"labels\":[],\"modified_at\":1732138695.636933,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.637438,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa0f8a73745bfcdc301019929f9f395\",\"labels\":[],\"modified_at\":1732138695.637612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.63806,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4687608966a4d41618657f50e8d41a50\",\"labels\":[],\"modified_at\":1732138695.638228,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.638762,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfafac5c6126794a57742fe36400fea6\",\"labels\":[],\"modified_at\":1732138695.638934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.639408,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03f80773d857d3dacb7fd5e038bb1f31\",\"labels\":[],\"modified_at\":1732138695.639583,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640039,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a365309305395eecd9b2293a9b2ed220\",\"labels\":[],\"modified_at\":1732138695.640208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640663,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e34194de8abc885606521034b1889ed\",\"labels\":[],\"modified_at\":1732138695.640834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.641306,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_motion_untrigger_send_basic_cmd\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99cf610a23717a99dbfe052a0bb6ea34\",\"labels\":[],\"modified_at\":1775549231.59514,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ared\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.64198,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_configuration_param_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b0ce3efe64c82a980bac45f2c10a14\",\"labels\":[],\"modified_at\":1775549231.595476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Settings Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-254\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.642575,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df497c8d1113a36c54c4db878e0fca8b\",\"labels\":[],\"modified_at\":1732138695.642925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.643371,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbfd1827b608ec30e50a2c8d9ac1738a\",\"labels\":[],\"modified_at\":1732138695.6439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.644367,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"067ff38baebfeba542fc2d93fd6d846b\",\"labels\":[],\"modified_at\":1732138695.64489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.645399,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d4d2fb65ea95c82c89912955ce2d74f\",\"labels\":[],\"modified_at\":1732138695.645909,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.646344,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a746d156e0579cb6a0c282ec8423459d\",\"labels\":[],\"modified_at\":1732138695.646873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.647407,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afe52a71944a7bce54e82309066779eb\",\"labels\":[],\"modified_at\":1732138695.648124,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.648719,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ccfe4098bf64d024b3a4280d44249f06\",\"labels\":[],\"modified_at\":1732138695.648905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.649411,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e4dca10b749b4af9b227c82fb79d73f\",\"labels\":[],\"modified_at\":1732138695.649587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.650062,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ea778c5ee2223334224e979796972\",\"labels\":[],\"modified_at\":1732138695.650629,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.65114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e84349c9c3f7be88ffdb3b431a0ba7\",\"labels\":[],\"modified_at\":1732138695.652399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.653016,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"714c36211355e8c6eed8b0f405f1af18\",\"labels\":[],\"modified_at\":1732138695.653613,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.654109,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7baadd3ceacdd507c216212cb3b87068\",\"labels\":[],\"modified_at\":1732138695.654668,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.655381,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4c051cf51f0348ae219dc014e260222e\",\"labels\":[],\"modified_at\":1732138695.655966,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732139452.718891,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed7dbfad7f175f21a652c7d0d3330d8b\",\"labels\":[],\"modified_at\":1732139538.777695,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1732174703.971423,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_lights_left_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"924db9892cc5519731a5c110545b3061\",\"labels\":[],\"modified_at\":1732174703.972284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Lights Left On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1732174695099\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.375013,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b816b35414f8bc2d381fc987e434b35f\",\"labels\":[],\"modified_at\":1733163448.545247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Connection ", + "offset_ms": 211 + }, + { + "direction": "recv", + "type": "text", + "payload": "state\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_connection_state_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.41395,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_restart_required\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61f46e69a48027efacc7d58134f627a3\",\"labels\":[],\"modified_at\":1733163448.547781,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart required\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_required_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.45896,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bfd3f57c36e237bbb9ad6afb80870b6\",\"labels\":[],\"modified_at\":1733163448.551286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.504733,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba7340b4cbd21643896dea7f309921f9\",\"labels\":[],\"modified_at\":1733163448.643092,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Log level\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_log_level_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.548301,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25f4a31cb1ccecc4e9469f5ea9cc3e0e\",\"labels\":[],\"modified_at\":1733163448.646729,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.593799,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_coordinator_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b842f63a9b81e3a2af0ef251ecf7ab4\",\"labels\":[],\"modified_at\":1733163448.649525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Coordinator version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_coordinator_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.644285,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_network_map\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12df011646a6b17600d15ab9fa6fe99c\",\"labels\":[],\"modified_at\":1733163448.653364,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Network map\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_network_map_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.690207,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aca42208b299223d614f58e3feb2c840\",\"labels\":[],\"modified_at\":1733163448.656796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Permit join timeout\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_timeout_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.783081,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b33f74080c92f71e53d49d2fc60e406\",\"labels\":[],\"modified_at\":1733163448.659761,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.829562,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e381ec7dcd1341f5776bd0a2886f9209\",\"labels\":[],\"modified_at\":1733163448.662249,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.873645,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a31d7d3cbcf76b4365c2756f2418ca31\",\"labels\":[],\"modified_at\":1733163448.665131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action angle\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_angle_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.917858,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_device_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a754f3acf910cd43563ed2676eedb040\",\"labels\":[],\"modified_at\":1768937325.657919,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_device_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.961537,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_power_outage_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb5cc9dfece2a14128321a8c8ba0044c\",\"labels\":[],\"modified_at\":1733163448.672203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power outage count\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_power_outage_count_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.00603,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_from_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9624c92d6b8366ef9cd1804493185dab\",\"labels\":[],\"modified_at\":1733163448.674787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action from side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_from_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.049561,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac02738c9db3275fac7690e531555c11\",\"labels\":[],\"modified_at\":1733163448.67793,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.093516,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_to_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c008909747cd28dd536a03d115d711a\",\"labels\":[],\"modified_at\":1733163448.680929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action to side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_to_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.137499,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0e64fef54c101ab96c4081bad5a2ad8\",\"labels\":[],\"modified_at\":1733163448.683803,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.225948,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a932bc8c951ba62827fe0f990e2702db\",\"labels\":[],\"modified_at\":1733163448.686366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.313491,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_desk_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a28d2af38fd6ac7279788810b8f4d7\",\"labels\":[],\"modified_at\":1733163448.688208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.405348,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_cabinet_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f0bb80add1fa704cc495207b3f5d194\",\"labels\":[],\"modified_at\":1733163448.691535,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.740788,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df49492914ec67f302e0b6a69c122293\",\"labels\":[],\"modified_at\":1733163448.695336,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Permit join\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.27003,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_desk_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e62b257bc1586c7d6f6c0d9757293a\",\"labels\":[],\"modified_at\":1733163448.698409,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.357407,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_cabinet_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81a443a3981f42bf8049cb72eb3726f2\",\"labels\":[],\"modified_at\":1733163448.70122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1733166139.84886,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_z2mqtt\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad1ef16f58ed42f31138cf882cbd1923\",\"labels\":[],\"modified_at\":1733166139.849744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Z2MQTT\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1733166130068\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733166143.681489,\"device_id\":\"c4e6de4e26e939f7d433bf6d0a56df00\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.desk_cube_last_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42f966c6395b8ea360e7aa399ca72b13\",\"labels\":[],\"modified_at\":1733166143.682204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"last side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"desk_cube-e600b772e2d38b5b159093786d5bf1b2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.273786,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.thermostat_temperature_display_units\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3f00ecf5048b3f9e64a704e2ca9d92e0\",\"labels\":[],\"modified_at\":1733470323.274554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Temperature Display Units\",\"platform\":\"homekit_controller\",\"translation_key\":\"temperature_display_units\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.275631,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.thermostat_current_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6a708b72d19d3425a4bffde4773acf9\",\"labels\":[],\"modified_at\":1733470323.276196,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Current Mode\",\"platform\":\"homekit_controller\",\"translation_key\":\"ecobee_mode\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.276884,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"02eb281ddab89f579541da3c48364480\",\"labels\":[],\"modified_at\":1768937330.226836,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Thermostat Current Temperature\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.277912,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_humidity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aada76d6b800aa198307edc8f2f94b49\",\"labels\":[],\"modified_at\":1733470323.278441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Current Humidity\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.279066,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a34e9a572df91bb7a2bea56b6c7befc\",\"labels\":[],\"modified_at\":1733470323.279596,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Motion\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_56\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.280059,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a53e234c9a95713683719a42f1f7d16\",\"labels\":[],\"modified_at\":1733470323.280586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Occupancy\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_57\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.281426,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1dc2c5f590596a957c5d442d276f9551\",\"labels\":[],\"modified_at\":1775463025.83871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.282857,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.thermostat_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea789899d09226775d0daa530027b9d\",\"labels\":[],\"modified_at\":1733470323.283385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_1_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.28388,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.thermostat_clear_hold\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f25cd194cab996c6b0d11611f99101c\",\"labels\":[],\"modified_at\":1733470323.28457,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Clear Hold\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_48\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.854459,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0990beda4adbced67f9da8fbf14a5734\",\"labels\":[],\"modified_at\":1733904292.858855,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.892119,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e84579ecf7f13526a23c78731d3755\",\"labels\":[],\"modified_at\":1733904292.895779,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":1736319447.525713,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b9ac173954a17489fd6438677e48e78\",\"labels\":[],\"modified_at\":1741148806.093313,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Compressor minimum temperature\",\"platform\":\"ecobee\",\"translation_key\":\"compressor_protection_min_temp\",\"unique_id\":\"511883021980_compressor_protection_min_temp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.905972,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f04cd994bf4a7ca806e873689f0a0", + "offset_ms": 218 + }, + { + "direction": "recv", + "type": "text", + "payload": "5\",\"labels\":[],\"modified_at\":1736320519.906751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.79.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.907344,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e78e8aa7ecee5b3adb88cf6760e660\",\"labels\":[],\"modified_at\":1736320519.907957,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.79.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.908601,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aed21f201e4e9e49dc6e2fbfa6b269f\",\"labels\":[],\"modified_at\":1736320519.908898,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909112,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11d59ab7cf13cb711f9f6aa4d904b40f\",\"labels\":[],\"modified_at\":1736320519.909248,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909421,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea3a75a361da66c42a17ab240ac6619\",\"labels\":[],\"modified_at\":1736320519.909546,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909714,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9098616b205b24cbad4a88c83997e963\",\"labels\":[],\"modified_at\":1736320519.909949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.910119,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519aa11c201477c7828a3bc98fd1133d\",\"labels\":[],\"modified_at\":1736320519.910246,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.79.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911034,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bec59707ccd7dc529a90b1f098e5463\",\"labels\":[],\"modified_at\":1736320519.911218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.79.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911435,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef05212c0e42c4bfe401b3c4a440be4b\",\"labels\":[],\"modified_at\":1768937324.673569,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.79.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911768,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e515cf0760d43f4a81b2b3979145422\",\"labels\":[],\"modified_at\":1736320519.912168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.79.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.889798,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03c6b2e96c8518f922c1f7976a43224f\",\"labels\":[],\"modified_at\":1736320523.890247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.890604,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cfadce8334aa142551bb0271cb3a332f\",\"labels\":[],\"modified_at\":1736320523.890983,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891298,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e97ff3d04362f3398435b9c09280c19\",\"labels\":[],\"modified_at\":1736320523.891644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891976,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1be6ea19b6705198c44062cd8c886913\",\"labels\":[],\"modified_at\":1736320523.892111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892381,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1163e30b6367ba70cdb0bbe818bd86a\",\"labels\":[],\"modified_at\":1736320523.89251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892784,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003c87cfb9a0c7a08e1e6a9413bb72be\",\"labels\":[],\"modified_at\":1736320523.892915,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893181,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a74f8edd31d0d23fcb5d7911f5de558e\",\"labels\":[],\"modified_at\":1736320523.893314,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893609,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd4b36349b64e4afb0efbd8cae27ceb1\",\"labels\":[],\"modified_at\":1736320523.893743,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894017,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dce04321343b8f8650a1638e540c066\",\"labels\":[],\"modified_at\":1736320523.894147,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894415,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a26041ffe1d767c1eb6d43d5eaa1062\",\"labels\":[],\"modified_at\":1736320523.894549,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895246,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"335173b1290e32b28674d76b3139a7e3\",\"labels\":[],\"modified_at\":1736320523.895405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895685,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b023c61c1897b503e351ab61f1397b60\",\"labels\":[],\"modified_at\":1736320523.895824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896095,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18346fff64001fa0e036649a9ce026a3\",\"labels\":[],\"modified_at\":1736320523.896229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896493,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c84119a15d609af8e002b03a3113d945\",\"labels\":[],\"modified_at\":1736320523.896637,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896904,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be85935d305056837922385a2d2166d\",\"labels\":[],\"modified_at\":1736320523.897033,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897297,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba44272b6f19db495f0bad8e04150bdf\",\"labels\":[],\"modified_at\":1736320523.897427,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897689,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60c44e307fd48158ef5a870f6e1ea15f\",\"labels\":[],\"modified_at\":1736320523.897823,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898087,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"779e519eb982bf17eafbb4185d8a5538\",\"labels\":[],\"modified_at\":1736320523.898218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898501,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param017\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13eb4a7de3ff753f4f4551bb6b34c3fc\",\"labels\":[],\"modified_at\":1736320523.898633,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param017\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898906,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param018\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2aade9b24c3cf098837c05f198a84196\",\"labels\":[],\"modified_at\":1736320523.899034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param018\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.899325,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a75845967c301f447fdadd705ccd7bb\",\"labels\":[],\"modified_at\":1736320523.899681,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.900013,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cce3b69f3c06d161dec626b5790ce5b3\",\"labels\":[],\"modified_at\":1736320523.900352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.901702,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e73cbc35e18958125287a74471c3a7\",\"labels\":[],\"modified_at\":1736320523.902118,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c40ab8344787dc7d21e29d547af9168\",\"labels\":[],\"modified_at\":1736353596.37888,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"config_subentry_id\":null,\"created_at\":1736353647.022559,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9b5fcaa227f65f8d411267b0c87e17c\",\"labels\":[],\"modified_at\":1736353647.026856,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Garage Motion\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354201.335657,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9b4fba2f11f641562e2a0cf02f5193a8\",\"labels\":[],\"modified_at\":1736354201.33641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354191063\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354274.958347,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"830666f260932ede8c27eb30fa0f2acd\",\"labels\":[],\"modified_at\":1736354274.959061,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354261558\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356766.764731,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f39e4da6bae1a1fb17133e0994052d7\",\"labels\":[],\"modified_at\":1736356766.76768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"1e0e99c393cebaf6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.582007,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a426428dce7d3a5ad82a464d6c13626\",\"labels\":[],\"modified_at\":1736356803.582649,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.882889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"109baa4874d527c5dce0fa51e7ec766e\",\"labels\":[],\"modified_at\":1736356803.883446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.157783,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18486e2eea948c77d599307cb1afac40\",\"labels\":[],\"modified_at\":1736356804.158354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.504037,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8b32e5fb84db954de2baea306396bcdf\",\"labels\":[],\"modified_at\":1736356804.504525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.770611,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7076de51a9429320f8f79a3b02daee09\",\"labels\":[],\"modified_at\":1736356804.771166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.09", + "offset_ms": 225 + }, + { + "direction": "recv", + "type": "text", + "payload": "4326,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0957b1480c95f751131df14c11de93e7\",\"labels\":[],\"modified_at\":1736356805.094874,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.332161,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b9d7f3508915fa3d10cc3763c4c732b\",\"labels\":[],\"modified_at\":1736356805.332734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.632478,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"654a35e29ec254b14f7342b941c57ebc\",\"labels\":[],\"modified_at\":1736356805.905853,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.134424,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ab3ad53acb2fb31265c2beaf81a787\",\"labels\":[],\"modified_at\":1736356806.223628,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.408371,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4a6ac60b8a79e875715714e9d98b53\",\"labels\":[],\"modified_at\":1736356806.65203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.77282,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9a1414d4439efae40503ca6f2d0de1c1\",\"labels\":[],\"modified_at\":1736356806.918576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.0732,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad998071e0851fcdac692503e773cad\",\"labels\":[],\"modified_at\":1736356807.073755,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.47584,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d14678412ea3738987ba070e0d1dc47\",\"labels\":[],\"modified_at\":1736356807.476394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.789064,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b94f06998a4a37f7fa272ebb5d4a82\",\"labels\":[],\"modified_at\":1736356807.792482,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.131893,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3de7df881a6322e0971ccea176dddd43\",\"labels\":[],\"modified_at\":1736356808.132439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.44137,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0585654f850aa6c80809d8159b522c\",\"labels\":[],\"modified_at\":1736356808.441885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.789329,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"14f7490f06cca0ba2fd96f2482289589\",\"labels\":[],\"modified_at\":1736356808.789536,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.075127,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"157241e5f848a341290b22d44b2c6cc3\",\"labels\":[],\"modified_at\":1736356809.075701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.53918,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e11a13791aa5e28f584841a514467af6\",\"labels\":[],\"modified_at\":1736356809.539734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.885361,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b318f00270d6a9b45165c6e5a44f637\",\"labels\":[],\"modified_at\":1736356809.885939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.259692,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52087a4595d9da9fbde6eea04ad63196\",\"labels\":[],\"modified_at\":1736356810.260095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.533183,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fee843fda76fc8d65a653091ced38e8\",\"labels\":[],\"modified_at\":1736356810.533737,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.955986,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11f9a4558ce5421169edbeb2e555d5cd\",\"labels\":[],\"modified_at\":1736356810.956558,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.034081,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be48034f51cdaff9ee7e90fe0fef9d98\",\"labels\":[],\"modified_at\":1772683905.232172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.297521,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0819605111bcbcd4f7e39d21c88a07\",\"labels\":[],\"modified_at\":1772683905.835153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.540434,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e47ff59093cdd8c4b107074e038dcb3c\",\"labels\":[],\"modified_at\":1736399063.500589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.909769,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46db01c2adedfbe43630a5f6dccc6a99\",\"labels\":[],\"modified_at\":1745524780.005163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359657.453126,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3c001f67d93fb5258ae48c47210beb2\",\"labels\":[],\"modified_at\":1736399064.263031,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.581695,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ead35b09a45c83eee2915b09e240cf5\",\"labels\":[],\"modified_at\":1736399064.531165,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.882863,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"297937f666f3e5a757b1165cbc567ea3\",\"labels\":[],\"modified_at\":1736399064.803276,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.137825,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6389ef9fa7957cc4e8fd6626ea88768\",\"labels\":[],\"modified_at\":1736399065.081707,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.363443,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bedtime_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7af1d7a08626154d89c6fe3bcff2049a\",\"labels\":[],\"modified_at\":1736359659.36398,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bedtime mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bedtime_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.625494,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4b1ce8d630d3c1139af9939d53abb39\",\"labels\":[],\"modified_at\":1736359659.626054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.876657,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2de0b22a75bc9020376fa995d4f55f\",\"labels\":[],\"modified_at\":1736359659.877219,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.132724,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27be5d92b8d529284e3b279099754ea2\",\"labels\":[],\"modified_at\":1736399067.294751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.376811,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0d40b3310f8c0e746ca68a5444b0d1b\",\"labels\":[],\"modified_at\":1736399068.107397,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.60476,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d8083b32c92d976e8df45388ba480189\",\"labels\":[],\"modified_at\":1736359660.605316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359661.793629,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adaa4c83bc9bca3d19a9af0ec81a8eea\",\"labels\":[],\"modified_at\":1736399795.169023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.177957,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53eb4bdb941f55dbbd581722fbf5fcfa\",\"labels\":[],\"modified_at\":1736359662.178469,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.645451,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01129317545bbe3d974404fc7b754d4f\",\"labels\":[],\"modified_at\":1736359662.64603,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359663.612969,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41d3cf71221566d53676a59927079525\",\"labels\":[],\"modified_at\":1736399795.946725,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.24639,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9dc6b7eb95805f4edcd634365fed345\",\"labels\":[],\"modified_at\":1736359664.246953,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.510519,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7cb0a33d907765f791a568845f3ca99\",\"labels\":[],\"modified_at\":1736359664.51107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359665.204889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23e948de201d1840aef0bcac3f026dcc\",\"labels\":[],\"modified_at\":1736359665.205434,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359666.440523,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5707e58d3dc6e2aac0394c2fcb3b7819\",\"labels\":[],\"modified_at\":1736359666.441115,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359667.195641,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"814ba5368dd8ce19d270c59f3aa70d95\",\"labels\":[],\"modified_at\":1736359667.196212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359668.184418,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d79100a0ce88a95bb3508f92917c50e\",\"labels\":[],\"modified_at\":1736399797.665211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359669.14242,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09a91b37c035dc8468fb33c46d22b688\",\"labels\":[],\"modified_at\":1736399798.122323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.04832,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d6892d2d211d5450673f97825289382\",\"labels\":[],\"modified_at\":1736399798.705635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.992047,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"013180467fa74f25bf8aeac4685c0bb6\",\"labels\":[],\"modified_at\":1736399799.392385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359671.938631,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"beb1135710edcf430ee9c09b403bb4f5\",\"labels\":[],\"modified_at\":1736399799.790352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359672.866807,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6230302d762bf3ab79d12409c1231bbf\",\"labels\":[],\"modified_at\":1736399800.787298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359673.78006,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wifi_state\"", + "offset_ms": 232 + }, + { + "direction": "recv", + "type": "text", + "payload": ",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8be95f5af00e6d22af4f2e5ac47c6fdf\",\"labels\":[],\"modified_at\":1736399801.429003,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359674.698165,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72b59c954d688b0c5d56dc7515ecb8fe\",\"labels\":[],\"modified_at\":1736399802.363037,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359675.62217,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42c8a56ab854162a1745cb4a09dbdb4f\",\"labels\":[],\"modified_at\":1736399803.362446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359676.543017,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e317baaf0f76275291f5c2d076ee5e5\",\"labels\":[],\"modified_at\":1736359676.543581,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359677.44848,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"273ecd3a847f25375673692d0e17e105\",\"labels\":[],\"modified_at\":1736399805.439232,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359678.422497,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40b84792dccc1ab0c45ddb0dd47ace3f\",\"labels\":[],\"modified_at\":1736359678.423076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359679.312512,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7048d27edebd7601ca231221f6b27f69\",\"labels\":[],\"modified_at\":1736399807.564816,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359680.283382,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1743057c6757d698d0d65799731be65b\",\"labels\":[],\"modified_at\":1736359680.283927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359681.140505,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_on_body_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b75d2c31d19e391f5d178240a6c0209e\",\"labels\":[],\"modified_at\":1736359681.141105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 On body sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_on_body\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.090116,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2dead3b819e75b6b5211443a5ac78f4\",\"labels\":[],\"modified_at\":1736359682.090675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.9708,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34c63b944355c9e51b84ba3f6b774b6e\",\"labels\":[],\"modified_at\":1736359682.971298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359683.958379,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a7bf80c63ca3bee1b4879fb6b1ba99d\",\"labels\":[],\"modified_at\":1736359683.958927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359684.857759,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47ce2137b53c5b8f6d94331b3e025002\",\"labels\":[],\"modified_at\":1763328460.580366,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359685.654766,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ef2b4cd3a27c1b0051ac47549a23b72\",\"labels\":[],\"modified_at\":1736359685.655329,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359686.705391,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0a92448dcdd542b9e3e8a75fe04559a9\",\"labels\":[],\"modified_at\":1736359686.705956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359687.625097,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ab731ae8b74fd38f20f4fb6c43506c5\",\"labels\":[],\"modified_at\":1736359687.625639,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359688.516154,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_theater_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"703096c37b80a7d5fa418e41d4f81c31\",\"labels\":[],\"modified_at\":1736359688.516736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Theater mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_theater_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359689.529591,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b843d7d77fd0e55c1b9dbc9bcbc183f\",\"labels\":[],\"modified_at\":1736359689.530093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.333626,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab5205e7d9e3858de62ea0bb4794194c\",\"labels\":[],\"modified_at\":1736359690.334183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.652265,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fad870f9abcfa3727367793912e2f758\",\"labels\":[],\"modified_at\":1736359690.652862,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359691.299905,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wet_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6912d4a233b925946eb92a607354856e\",\"labels\":[],\"modified_at\":1736359691.300455,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wet mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wet_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359692.209767,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_activity_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6c82536cb995ebbba982c2ab021ced8\",\"labels\":[],\"modified_at\":1736399825.35309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Activity state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_activity_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359693.154691,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39a8afb6f701ab75cfc7fdb255e13a6f\",\"labels\":[],\"modified_at\":1736359693.155251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_floors\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359694.058948,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ff694331b621b1f0fda4e48e8bbcc53\",\"labels\":[],\"modified_at\":1736399827.024194,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.003274,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_calories\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d9e973ac42cfc50c48e30ad90288748\",\"labels\":[],\"modified_at\":1736399827.952805,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily calories\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_calories\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.81776,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2e45bb02534ec3078c8e0eea4344ca\",\"labels\":[],\"modified_at\":1736359695.818316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.856213,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e71d567db688d94b4e0e0f224fb9ce28\",\"labels\":[],\"modified_at\":1736803158.868554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.887145,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20c1bb2e7c3adbd94bfdfbdf8b652b8d\",\"labels\":[],\"modified_at\":1736803158.895143,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.925194,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"139f6cd0dd468aa9019150651d43f434\",\"labels\":[],\"modified_at\":1736803158.934833,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.958586,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d27e6bddb02baaf8770ba59450229223\",\"labels\":[],\"modified_at\":1736803158.959123,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.000035,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adad2dae764b1b4c5e4f1b8615f7c6ec\",\"labels\":[],\"modified_at\":1736803159.000571,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.020193,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"130892cbc52a3a5d41acf63fc52264a7\",\"labels\":[],\"modified_at\":1736803159.045045,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.05282,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4df84fa332afe1a1ba6e2afbe3e0c538\",\"labels\":[],\"modified_at\":1736803159.053349,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1737067561.611876,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_sensor_2_sensor_state_co2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bddd6f808427ba2a97adca93c8768213\",\"labels\":[],\"modified_at\":1737067561.612126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sensor state (CO2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-CO2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1740257490.056992,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de2bdae5c394ce75a2e72d945fd67d78\",\"labels\":[],\"modified_at\":1740257490.057769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Solar ECU Unavailable\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1740257477923\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.753328,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.under_cabinet_lighting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47a17625819d6de9a9a5a9fcb068dfd3\",\"labels\":[],\"modified_at\":1742764374.448547,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_light_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.742879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.under_cabinet_lighting_effect\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f83446880146584e49ffe7ca9d992136\",\"labels\":[],\"modified_at\":1742764374.450385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Effect\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_effect_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.780879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbc2aaaed253d3bbe2c0ea5e8596772d\",\"labels\":[],\"modified_at\":1742764374.496804,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Do not disturb\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_switch_do_not_disturb_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.829072,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.under_cabinet_lighting_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb2a38c1e988902be72a7518cea08f79\",\"labels\":[],\"modified_at\":1742764374.541366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467771.203002,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ef0cd9a1858bc9149e47113717459b5\",\"labels\":[],\"modified_at\":1745467771.203562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.019608,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"", + "offset_ms": 240 + }, + { + "direction": "recv", + "type": "text", + "payload": "9411a9c653ef38ea742ed08dc2a31067\",\"labels\":[],\"modified_at\":1745467772.03278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.047222,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37f7acf271e127f4e49d357bb0c5bb68\",\"labels\":[],\"modified_at\":1745467772.060087,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.227616,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc0faadddf515e78993cb2525101a9e9\",\"labels\":[],\"modified_at\":1745467772.228166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.295831,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2710c8eb328c4a060bfab6e1a34674fb\",\"labels\":[],\"modified_at\":1745467772.313176,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.391191,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7cc10320bf0eac221b1bbe0e37984f\",\"labels\":[],\"modified_at\":1745467772.408751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1745524781.207297,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"545c407bdcb5d35ec63d78f7a8878b00\",\"labels\":[],\"modified_at\":1745524781.207876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1745542172.503223,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18e492ba2733085e4e9f4ff0a5428df0\",\"labels\":[],\"modified_at\":1745542172.50526,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CO2 Alarm unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-CO2 Alarm-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.46243,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"747f703192d22d8ec8759bc94a1fce76\",\"labels\":[],\"modified_at\":1748219109.463014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.640996,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5198dc56db91ba7df5b10c7a015e581\",\"labels\":[],\"modified_at\":1748219109.655051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.685402,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb41fd2f446a5f8881e816b46c3f8feb\",\"labels\":[],\"modified_at\":1748219109.685973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.721723,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3d0012049fbeda8166b02790dc37b92\",\"labels\":[],\"modified_at\":1748219109.722298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.757491,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eba82b80d5619332290deb4a3efb5c84\",\"labels\":[],\"modified_at\":1748219109.758093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.785413,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5e763389817f6ec085e23be56ee54f5\",\"labels\":[],\"modified_at\":1748219109.792204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.110811,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee83713b4ec50e5a22b0f247fa5bc1c5\",\"labels\":[],\"modified_at\":1749590887.112776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.113208,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa86888ae5a955cc2ca0fb3ce1559700\",\"labels\":[],\"modified_at\":1749590887.11367,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.114151,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_shower\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"244d25b21371ef06dfbe70c38a8e3a27\",\"labels\":[],\"modified_at\":1749590887.11467,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.11557,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_shower_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"197264aec52c5bb54e81ebf28f841d6d\",\"labels\":[],\"modified_at\":1749590887.115711,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:82:fb:6a_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.694619,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"217b95c6b680c1836cdf60eb9da2f503\",\"labels\":[],\"modified_at\":1749590895.696348,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.697451,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003565fb8b8be878769578dc74c69752\",\"labels\":[],\"modified_at\":1749590895.699001,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.701685,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.matter_bath_toilet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a965f5cf56792192cef7e0ab7b9a31a7\",\"labels\":[],\"modified_at\":1749590895.703552,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.708213,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.matter_bath_toilet_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84160aed320a4e66dd6c9ad44039bd9b\",\"labels\":[],\"modified_at\":1749590895.708736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:83:1f:53_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"config_subentry_id\":null,\"created_at\":1750061075.141771,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49204eb2a92de917a9e42ff6f8f588f5\",\"labels\":[],\"modified_at\":1775870416.949195,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Master Bath Lights \",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180319,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_param027\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ea8e9374eae954b3bbd8d18020ca120\",\"labels\":[],\"modified_at\":1752102847.180555,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param027\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180971,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_separate_inputs_from_outputs\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca290e9cdd8d4d5d6b3073329b06547b\",\"labels\":[],\"modified_at\":1775490675.663286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Input Trigger\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.1822,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fb5086cf8fcc21f5e28d90e0db54c78\",\"labels\":[],\"modified_at\":1775490675.663838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"config_subentry_id\":null,\"created_at\":1759378690.394779,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"calendar.maya_school\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cca23ca8717983fe71c89426ca56c7b5\",\"labels\":[],\"modified_at\":1759378690.395441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maya school\",\"platform\":\"local_calendar\",\"translation_key\":null,\"unique_id\":\"01K6HJ8M54G71Y4477XK05AGBG\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386477.277947,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4097cd598a3a06c6f0daff8cad6ca79\",\"labels\":[],\"modified_at\":1759386477.279521,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1759386477130\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386507.028808,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be669aa5658d128e8ffcd6168710677f\",\"labels\":[],\"modified_at\":1759386579.806063,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387437.349538,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4820d645ddc7e05d31da79d542bdfe\",\"labels\":[],\"modified_at\":1759387437.351339,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"band day 2\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387072.988787,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_button.band_day_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3dc6766f5367c3f345af29958d10bc\",\"labels\":[],\"modified_at\":1768937321.234765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"collection\":{\"hash\":\"1b24d0ddf479ed85340a79f72c595317\"},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day 3\",\"platform\":\"input_button\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498155.515729,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_phone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c3949e0a3c86ebd635f939b4da67b68\",\"labels\":[],\"modified_at\":1760976737.49654,\"name\":\"Adam Phone\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"51e12b25d85b4b1e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.63507,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b25ffeb9832412e4729bc9a3554e791\",\"labels\":[],\"modified_at\":1774279284.833829,\"name\":\"Adam Phone Battery level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.848698,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bceafcf813f3d0c7f5875af49aa7014c\",\"labels\":[],\"modified_at\":1772691190.431663,\"name\":\"Adam Phone Battery state\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.380282,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52a1a4199f6226c81e7a9e280bf8a5c2\",\"labels\":[],\"modified_at\":1772691194.336662,\"name\":\"Adam Phone Charger type\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.561785,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f78b5a31c1f1797cecc8021a4bc283c\",\"labels\":[],\"modified_at\":1763016724.667262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.150666,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"753010fef896a676a949100adf1a5df3\",\"labels\":[],\"modified_at\":1760976737.499635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.996611,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_bluetooth_", + "offset_ms": 247 + }, + { + "direction": "recv", + "type": "text", + "payload": "state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093bf4d5f49f15e5238231d70b093df3\",\"labels\":[],\"modified_at\":1760976737.502342,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.632604,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b21e81370aec744ff4cef9a8bf0ef00\",\"labels\":[],\"modified_at\":1760976737.502738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.837407,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7107aad5e9b8e1943301af2a059e93ea\",\"labels\":[],\"modified_at\":1760976737.503069,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.908791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47c1557ded81eebf8aa0a96ac63d2841\",\"labels\":[],\"modified_at\":1760976737.503394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.362775,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29de90a8bd56b781a47d398184b68cb6\",\"labels\":[],\"modified_at\":1760976737.503709,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.387797,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b09b3df0b3a9f47a8e6eb4bb0725a8d\",\"labels\":[],\"modified_at\":1761859609.313035,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.086212,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"06c5550926c6fdd6b5ff1b6d10511768\",\"labels\":[],\"modified_at\":1760976737.504334,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.677976,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e02d2deb740d7a31ec1ac86e66289584\",\"labels\":[],\"modified_at\":1760976737.504647,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.113948,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e6cfd871a0249cfa6fcfa5cb067c22a\",\"labels\":[],\"modified_at\":1760976737.504954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.052956,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23b032cf9074ee4d0ccd20a2c7b170a8\",\"labels\":[],\"modified_at\":1760976737.505278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.298484,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"511534407bbe94e987b4e6b18616dbd7\",\"labels\":[],\"modified_at\":1760976737.505582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.564591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"630126c44d79334d10daaac76b3e6da6\",\"labels\":[],\"modified_at\":1760976737.505883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.859128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54186ed87499f0363a7a795031ac8091\",\"labels\":[],\"modified_at\":1760976737.506183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.072203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c107fd5dd3a23152c737aeacfb93f12e\",\"labels\":[],\"modified_at\":1760976737.506487,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.114625,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fc30dd8af197aa5604097778df128b90\",\"labels\":[],\"modified_at\":1760976737.506796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.74326,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a99fecae7b35c0c91c2d87db9221d854\",\"labels\":[],\"modified_at\":1760976737.507099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.11767,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa5f2c7ce053d4544cf8d6062e90490e\",\"labels\":[],\"modified_at\":1760976737.508044,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.804439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6473733425a0a0786d883979d5b4aa81\",\"labels\":[],\"modified_at\":1760976737.508353,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.173261,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_wi_fi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1794c62e4b88cb613114ae22f6763cc6\",\"labels\":[],\"modified_at\":1760976737.508622,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.044578,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42417c7948736cba9d2a5224ad710014\",\"labels\":[],\"modified_at\":1760976737.508885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.833075,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b941b110fe0ebe77e2578dbf0457db9a\",\"labels\":[],\"modified_at\":1760976737.509153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.523966,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"120365806cf1ad9034b62efe0f58c093\",\"labels\":[],\"modified_at\":1760976737.50941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.731496,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad43a289a78ae9decb7a8bb8636ec15b\",\"labels\":[],\"modified_at\":1760976737.509663,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.578065,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82b4fccab26e5f8d9dc5b863a430eabb\",\"labels\":[],\"modified_at\":1763016726.90644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.923363,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681210dd7cb2b664dfc7160e4b59f9e8\",\"labels\":[],\"modified_at\":1760976737.510166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.508973,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"76b86a4aaafcf69e892ab189d3a5a37d\",\"labels\":[],\"modified_at\":1760976737.51042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.354383,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1337823dd9fe63383689acfe28169998\",\"labels\":[],\"modified_at\":1763016726.688987,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.723152,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e043cb0b1e1d248cb65f41b026f07c34\",\"labels\":[],\"modified_at\":1760976737.510914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.143052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2be1edbc1804fca84d30e0ff2af37d3\",\"labels\":[],\"modified_at\":1763016727.38029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.53214,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f72f7f7a26dd97cc36f76faefadc3116\",\"labels\":[],\"modified_at\":1760976737.511404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.594056,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff782efae98210cfe14a22d3d01023bd\",\"labels\":[],\"modified_at\":1760976737.511651,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.047203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f003eadb014be21895e4c4dc182b09c1\",\"labels\":[],\"modified_at\":1760976737.511895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.846127,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9688273e8fc0f9d29c7fae09c089596d\",\"labels\":[],\"modified_at\":1760976737.512138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.422557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85a174f235fbda9b9cdd6ef97bdb64eb\",\"labels\":[],\"modified_at\":1760976737.512378,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.203052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8a9981a0cce9ee63b08edc8b74a776ca\",\"labels\":[],\"modified_at\":1760976737.512621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.726411,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ded137b29a2ac9791fc1f1d244796b0a\",\"labels\":[],\"modified_at\":1760976737.51286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.751762,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"750907f9a2ecaf511d6767527d52e002\",\"labels\":[],\"modified_at\":1760976737.513111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.94591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cd9c953d266dd30bc5eb3151a5f2f66\",\"labels\":[],\"modified_at\":1760976737.513705,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.654737,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ac1339b135ff5cb6054610e09599cd4b\",\"labels\":[],\"modified_at\":1760976737.513999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.100199,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6559562de9368b5176d4c2bab69341be\",\"labels\":[],\"modified_at\":1760976737.51426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.317375,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e5aa6887ffe1c9ba20be2f9dad865c9\",\"labels\":[],\"modified_at\":1760976737.514516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.522632,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2d58c1b05145799f6a0e942e418637b\",\"labels\":[],\"modified_at\":1760976737.514765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.816273,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff01611593ce914c8e55b99746ade7bb\",\"labels\":[],\"modified_at\":1760976737.515013,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.856176,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1df9caee459458f4261ba3769b30a2fd\",\"labels\":[],\"modified_at\":1760976737.515262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.027941,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84ef8a67d8861618e18ec8e2201925f9\",\"labels\":[],\"modified_at\":1760976737.515509,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.497115,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ef002fc4b535738730128cd41020e5dc\",\"labels\":[],\"modified_at\":1760976737.515764,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.248154,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b7742f63b3eca975967469453a345b\",\"labels\":[],\"modified_at\":1760976737.516015,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.542876,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d10a7204fe5e2ea0fa40d8ae5a3144b\",\"labels\":[],\"modified_at\":1760976737.516268,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.257567,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"685e196a4c4f6c3101615348fb51dd5", + "offset_ms": 256 + }, + { + "direction": "recv", + "type": "text", + "payload": "1\",\"labels\":[],\"modified_at\":1760976737.516516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.499288,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586179dae81f48674014b0857ed88ee4\",\"labels\":[],\"modified_at\":1760976737.516767,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.717817,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6034cd7356664dc063906e2f52a0a3\",\"labels\":[],\"modified_at\":1760976737.517018,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.94185,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"66165e96b66d1a023f8e8737fbe9e2d0\",\"labels\":[],\"modified_at\":1760976737.51728,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.528186,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ea8b6d6b10896ddbdf5ae9fafbbecc6\",\"labels\":[],\"modified_at\":1760976737.51753,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.252135,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385366fcc059b77a728168515f2586f2\",\"labels\":[],\"modified_at\":1760976737.517778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.461271,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f58c113ad08028f0af872124030c30f\",\"labels\":[],\"modified_at\":1760976737.518028,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498158.942049,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cba6a4bdd6a805551cc283b957b22e63\",\"labels\":[],\"modified_at\":1763016721.943079,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.192313,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2c38371850e50f3e5988540443f5c5d\",\"labels\":[],\"modified_at\":1760976737.51852,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.577028,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16f7fe2f79e1b1f0db02866ac85a4bc3\",\"labels\":[],\"modified_at\":1760976737.518771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.336206,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73631aa51e0e6a1d7794697379003876\",\"labels\":[],\"modified_at\":1760976737.519354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.260623,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"32245ba0b08e126f84726702cb6db8bc\",\"labels\":[],\"modified_at\":1761859609.314665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.171655,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0d32ff833fcd601cd32f482eb5f1c9a\",\"labels\":[],\"modified_at\":1760976737.519914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.382664,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7711c9412df10e8fe9452f68a7038e60\",\"labels\":[],\"modified_at\":1760976737.520171,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.610829,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a08d9ebbb81e0c3fc7a08d30d98e3b7e\",\"labels\":[],\"modified_at\":1760976737.520425,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.121172,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2cc61e1c263d63262ab756c2a5e9d31\",\"labels\":[],\"modified_at\":1760976737.520676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.498003,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81e3fb1a860e34c3494dbee1d95fe70f\",\"labels\":[],\"modified_at\":1760976737.520924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.21988,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3af3544de87e7dbab445e7a8029afa34\",\"labels\":[],\"modified_at\":1760976737.52119,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.731054,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db1336da12c043c7c61d784c7a622187\",\"labels\":[],\"modified_at\":1760976737.521439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.428907,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"553383b37e8d644518a821ebf99f99b3\",\"labels\":[],\"modified_at\":1760976737.521685,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.943883,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23a5abddd967354312c03855e037976f\",\"labels\":[],\"modified_at\":1760976737.521932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.518682,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0be097c7eb3dbe6aef6a25e3a6cd8ef\",\"labels\":[],\"modified_at\":1760976737.522174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.180681,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e09414a784c4b8a03feca8292b47fc\",\"labels\":[],\"modified_at\":1760976737.522426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.937301,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bfcdb749179ca990270164a9c1aace4c\",\"labels\":[],\"modified_at\":1760976737.52267,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.759405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f329d40f3cb4c98261ecbcca9d730f7\",\"labels\":[],\"modified_at\":1760976737.522917,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.012128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f894e57866a8b946f69234a7c97291\",\"labels\":[],\"modified_at\":1760976737.523164,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.284899,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"148c211961e1b76470e79174b4283b73\",\"labels\":[],\"modified_at\":1760976737.52341,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.985246,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f71e7d4f62b65e5450706d56114cc93f\",\"labels\":[],\"modified_at\":1760976737.523665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.763524,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d835075c5dbbd4973e040149a3f7514\",\"labels\":[],\"modified_at\":1760976737.523911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.601118,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d62adbd002ce98615faf711cc7a26d5f\",\"labels\":[],\"modified_at\":1760976737.524157,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.141649,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663371403a63a19124a1b4abc6b27be8\",\"labels\":[],\"modified_at\":1760976737.524405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.336255,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"112988ca48584654f5650f5359c7e4bc\",\"labels\":[],\"modified_at\":1763017007.83862,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.582052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a877e0462d77e8dd3e37703c0c12842c\",\"labels\":[],\"modified_at\":1760976737.525423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.843111,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e19e322d38c79279c958e4aa96c1dddd\",\"labels\":[],\"modified_at\":1760976737.525683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.275509,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00aca62e34295f7facd401ad154fe8e6\",\"labels\":[],\"modified_at\":1760976737.525937,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.858586,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33498cbeacef2dcdc4f033a0b26838cd\",\"labels\":[],\"modified_at\":1760976737.526188,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.07771,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e6c658d666885b7bcae24ba94db552e\",\"labels\":[],\"modified_at\":1760976737.526437,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.856422,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"607fc15e13eb6e05972e82df9e2b66c3\",\"labels\":[],\"modified_at\":1763016727.1138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.70849,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73bb92c35f39f034be36798feb770698\",\"labels\":[],\"modified_at\":1760976737.526939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.916128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28017fee78f1ddd7f4142211e16c0d30\",\"labels\":[],\"modified_at\":1760976737.528024,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.157067,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff11b226bb853a90c464d79f8178ce33\",\"labels\":[],\"modified_at\":1760976737.528323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.366557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40dd3bb633abe1862d801f81b3ce8980\",\"labels\":[],\"modified_at\":1760976737.528584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.978133,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9fce7d56272a707de807cc72548ee17a\",\"labels\":[],\"modified_at\":1760976737.530283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.801608,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"401a043f2c726c93b7b23b4564a1f94a\",\"labels\":[],\"modified_at\":1760976737.53057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.02263,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28e13521bf85269ec4c9f0a082f0c6b7\",\"labels\":[],\"modified_at\":1760976737.530838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.345391,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b190136a43f7bcf64e68901f7d275935\",\"labels\":[],\"modified_at\":1760976737.531099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.594556,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"951499259e3906795a24cd53fc3d1249\",\"labels\":[],\"modified_at\":1760976737.531357,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.156068,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f6bc7f4a033172190b30075550a37521\",\"labels\":[],\"modified_at\":1760976737.531615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.285791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"404a79d1477c10408dde8e055ae80b2e\",\"labels\":[],\"modified_at\":1760976737.531871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_sleep_", + "offset_ms": 271 + }, + { + "direction": "recv", + "type": "text", + "payload": "duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.353564,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b1f9968e09762e9bda52a6df2fbd23c7\",\"labels\":[],\"modified_at\":1763016724.247126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.78676,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e40f6aa713fca29f4bd8a635509859c\",\"labels\":[],\"modified_at\":1760976737.532386,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.7486,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df9290d342500fe2636c79ddbc9952bd\",\"labels\":[],\"modified_at\":1760976737.53264,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.96248,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d61cf3fe32f5fe3b39fa7ec9dae68b7\",\"labels\":[],\"modified_at\":1760976737.532893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.23677,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9aa7c0a93561eb0c9c492db8575a1989\",\"labels\":[],\"modified_at\":1760976737.53315,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.443444,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e929af2da1a8fd0c0c9e2eb613c88c3f\",\"labels\":[],\"modified_at\":1760976737.533399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.176575,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b2353cba1cfc2ba0270b144f2043de0\",\"labels\":[],\"modified_at\":1760976737.533645,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.397439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1af3533513a0c5338f0e1f7900eaf9e5\",\"labels\":[],\"modified_at\":1760976737.533893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.507945,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18af8f2d02f6418723e32a510e19391c\",\"labels\":[],\"modified_at\":1760976737.534144,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.906106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"144ae42445c05a952df5ef29aa014a17\",\"labels\":[],\"modified_at\":1760976737.534396,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.18106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62bfd57e3cb228991c9b903d59e6587f\",\"labels\":[],\"modified_at\":1760976737.534646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.176689,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c294c624ab78af85b8acb03e41009e22\",\"labels\":[],\"modified_at\":1760976737.534894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.73368,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b20652958edaaf0ef0042d2a97318da\",\"labels\":[],\"modified_at\":1760976737.535255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.515405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f69443e387af0b10bf4cffad511cab3e\",\"labels\":[],\"modified_at\":1760976737.535554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.963861,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"57e733b28e1a7f745cd42b1588ea7b92\",\"labels\":[],\"modified_at\":1760976737.535819,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.383975,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3757ce7c4b5a7037d34b233e1626b5bb\",\"labels\":[],\"modified_at\":1760976737.536076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.520076,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d093158049a91d9ec6342c460f7697d\",\"labels\":[],\"modified_at\":1760976737.536331,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.290619,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b54445aea1c6b5a23c7a7f8756d331f\",\"labels\":[],\"modified_at\":1760976737.536584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.432903,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41dc6b0212fa61d780912d275265cd1a\",\"labels\":[],\"modified_at\":1760976737.536834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.76291,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49e886aeaca51ef663020c9d6adedd4d\",\"labels\":[],\"modified_at\":1760976737.537084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.966045,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"97423ae7ee25d6b9c6138c20f803937d\",\"labels\":[],\"modified_at\":1760976737.537345,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.640943,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"641af75b3fbe0762c553b05543247e0a\",\"labels\":[],\"modified_at\":1760976737.537592,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.578752,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f98be744eca04298b701b1d066cf33f2\",\"labels\":[],\"modified_at\":1761584275.553227,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.584734,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"38be44c9b9441e8136de779aff02c4d4\",\"labels\":[],\"modified_at\":1761584275.555476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.625112,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eaaa8aa99a75156fd029e017b2345aa3\",\"labels\":[],\"modified_at\":1761584275.60354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.675625,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70710798be185d2ee29eb867eb9f8222\",\"labels\":[],\"modified_at\":1761584275.644775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.796301,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param019\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5c6e0fb47a0136310e04a22d88fc83\",\"labels\":[],\"modified_at\":1761667162.796517,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param019\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.797016,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_param020\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e23bda23aa0ac99b0116586ea0a1b92\",\"labels\":[],\"modified_at\":1761667162.797168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param020\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1761667201.291363,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87fb7ada2339f2039551943482ae1358\",\"labels\":[],\"modified_at\":1761667201.292122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1761667192807\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c2862a4df8f6bd691cf5d04a6dfd54c\",\"labels\":[],\"modified_at\":1761690295.874343,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Headphones connected\",\"platform\":\"roku\",\"translation_key\":\"headphones_connected\",\"unique_id\":\"YJ002K604601_headphones_connected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7cd833409d36d7f019fd3e2c56a3099f\",\"labels\":[],\"modified_at\":1761690295.875222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports AirPlay\",\"platform\":\"roku\",\"translation_key\":\"supports_airplay\",\"unique_id\":\"YJ002K604601_supports_airplay\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a220cc398a638aa2eab462c5dc09595\",\"labels\":[],\"modified_at\":1768937324.483172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports Ethernet\",\"platform\":\"roku\",\"translation_key\":\"supports_ethernet\",\"unique_id\":\"YJ002K604601_supports_ethernet\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6165850622ccf0780a12cb93f99fbe6b\",\"labels\":[],\"modified_at\":1761690295.876894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports find remote\",\"platform\":\"roku\",\"translation_key\":\"supports_find_remote\",\"unique_id\":\"YJ002K604601_supports_find_remote\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d7e470b926897e7baf7da15c69c1a5f\",\"labels\":[],\"modified_at\":1772591841.640657,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3921d505142fc5a908c983dbda85e39\",\"labels\":[],\"modified_at\":1761690295.882215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.living_room_tv_application\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be671b5fc39f53da44534bf656ccfcbc\",\"labels\":[],\"modified_at\":1774121824.587607,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Application\",\"platform\":\"roku\",\"translation_key\":\"application\",\"unique_id\":\"YJ002K604601_application\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b34030d711baecbca2bd7babbb9523f4\",\"labels\":[],\"modified_at\":1761690295.884134,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app\",\"platform\":\"roku\",\"translation_key\":\"active_app\",\"unique_id\":\"YJ002K604601_active_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6a7cd59919db06d42748a1849f35440\",\"labels\":[],\"modified_at\":1761690295.885026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app ID\",\"platform\":\"roku\",\"translation_key\":\"active_app_id\",\"unique_id\":\"YJ002K604601_active_app_id\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1762452953.450373,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"353b8458de409f30f3da7f59dd2279ae\",\"labels\":[],\"modified_at\":1762452953.451146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room TV - Off - Idle\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1762452936157\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.79738,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4bc33ac1bdf05a5a4ad0efe2cf243cd\",\"labels\":[],\"modified_at\":1766477279.797958,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.80.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.798349,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a14d2d0b96e1d99308488b35cfe32d6b\",\"labels\":[],\"modified_at\":1766477279.798784,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"", + "offset_ms": 281 + }, + { + "direction": "recv", + "type": "text", + "payload": "ping\",\"unique_id\":\"4182894947.80.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799203,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"acd5e1535a0b58f433b138c0b6faf421\",\"labels\":[],\"modified_at\":1766477279.799355,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799642,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"378e7086f5619183bd617e93465aa802\",\"labels\":[],\"modified_at\":1766477279.799778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800052,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d59fdf37e7ce07ae033e5e4a7871a74\",\"labels\":[],\"modified_at\":1766477279.80019,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800465,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"042c7a9cd428a17c8fedf3be0152a3be\",\"labels\":[],\"modified_at\":1766477279.800606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800883,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f68eb2507739535d9913773ab943d15f\",\"labels\":[],\"modified_at\":1766477279.801023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.80.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.80138,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3369734c52812a3a3ee4bbe2560f1ad\",\"labels\":[],\"modified_at\":1766477279.801562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.80.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.801858,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd7ddf313a54743de6d1f72a3d7bd312\",\"labels\":[],\"modified_at\":1768937324.809754,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.80.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.802282,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62306b73556be6a658a2970154edf24b\",\"labels\":[],\"modified_at\":1766477279.803236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.80.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.228835,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce76270335388122109676234797a801\",\"labels\":[],\"modified_at\":1766477296.229428,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.229892,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21621c315a84182b4f410308413f7b21\",\"labels\":[],\"modified_at\":1768937324.853995,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.23085,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75446919eaeef4477c5765e479030bd7\",\"labels\":[],\"modified_at\":1768937324.85453,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.231761,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2adf7a33a0ac224ec14b279aa8347cdf\",\"labels\":[],\"modified_at\":1766477296.232285,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.232869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"352a62902d4625293870ccad5a0e8ce7\",\"labels\":[],\"modified_at\":1768937324.855306,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.233759,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"959edfed6f06b47aa8cfffad60cb3b27\",\"labels\":[],\"modified_at\":1768937324.855699,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.234957,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e94b9747cdafaf5de7e0065d9bea1787\",\"labels\":[],\"modified_at\":1766477296.235117,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.235534,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d032c73c25b557c150eb9a1554ab27a8\",\"labels\":[],\"modified_at\":1766477296.235674,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236042,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b282d98fd058c4a3fc14cd5cab2ed0d\",\"labels\":[],\"modified_at\":1769099101.051939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_energy_kwh_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03aba463e32ff9cd002a085bc096c2a7\",\"labels\":[],\"modified_at\":1766477296.236667,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy (kWh) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_current_a_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44ed91985e8e2345c6d85aa23ca1ebcc\",\"labels\":[],\"modified_at\":1769099101.052448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current (A) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-35\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237544,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_voltage_v_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8c9afc6dd91370538afa4d09be302d2\",\"labels\":[],\"modified_at\":1769099101.052763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage (V) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238041,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_overload_protection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24702ae99561a23fa90891c83b007f12\",\"labels\":[],\"modified_at\":1766477296.238175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Overload Protection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238538,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a643dcd0c18ea735dc117372cbd9c4\",\"labels\":[],\"modified_at\":1766477296.238676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9278543cbfa4150cf96b9825a399dce\",\"labels\":[],\"modified_at\":1766477296.239179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a20c9254c9e99e639df912c45870f78\",\"labels\":[],\"modified_at\":1766477296.239678,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24004,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9f5c165e12ba64506d0eaf24e58fd09\",\"labels\":[],\"modified_at\":1766477296.240905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241404,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a8223d52922cf9b4adff20414916eee\",\"labels\":[],\"modified_at\":1766477296.241556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241944,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39ecfec962692eccc82d3081e479f8b4\",\"labels\":[],\"modified_at\":1766477296.242085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242445,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"91b749f9293951042533d2401e898b94\",\"labels\":[],\"modified_at\":1766477296.24258,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242942,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e391e07c8a08dd2a25df2be663bcfbac\",\"labels\":[],\"modified_at\":1766477296.243077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243424,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3c85d30cdac3aafebede8607197ce65\",\"labels\":[],\"modified_at\":1766477296.243556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243913,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dacd0709ac8eb1359a94e7710f78784\",\"labels\":[],\"modified_at\":1766477296.244051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244403,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b054386465dab5e8e5b9b8d7c18d91df\",\"labels\":[],\"modified_at\":1766477296.244534,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244894,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f902120e1bceb78e61c17590fe38269\",\"labels\":[],\"modified_at\":1766477296.245029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245392,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fad06e4d9f3d509906b6338e4b79a65\",\"labels\":[],\"modified_at\":1766477296.245527,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245884,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68d921eab0fa608d5f6c2dadd993dccd\",\"labels\":[],\"modified_at\":1766477296.246023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.246994,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b090c9d937ff7066c525cc564347a594\",\"labels\":[],\"modified_at\":1766477296.247152,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24754,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2b9a5eb299f5a41546cecb74eb4db\",\"labels\":[],\"modified_at\":1766477296.24768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248038,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ead661391dda43c8a9cff95e08d325f9\",\"labels\":[],\"modified_at\":1766477296.248173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f79cf7061a486a5938ef84ca4f41ca3f\",\"labels\":[],\"modified_at\":1766477296.248675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da59ba2e721740da07c9e1fce8eeb446\",\"labels\":[],\"modified_at\":1766477296.249177,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b311235ba306b94712f179b47a13304\",\"labels\":[],\"modified_at\":1766477296.24968,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.250039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eed8930162c1f50fb3efa88ed014a90\",\"labels\":[],\"modified_at\":1766477296.250175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25053,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"943fe31b185242de7233f509c6714ad4\",\"labels\":[],\"modified_at\":1766477296.250661,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251018,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e41a3fe1c2e739c5c0b08c01ba04964\",\"labels\":[],\"modified_at\":1766477296.251151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.2515,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f339b2e6b6df648e6ca92d60bf56623\",\"labels\":[],\"modified_at\":1766477296.251636,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251984,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19bb03a5b1ae0e40e13d9da02ae88aa0\",\"labels\":[],\"modified_at\":1766477296.253395,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.253836,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97b7a04a80a5cdf61867e56d866b6dce\",\"labels\":[],\"modified_at\":1766477296.253989,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.254358,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f60a5f4e92244effdf0936a193c2e55\",\"labels\":[],\"modified_at\":1766477296.2545,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25486,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eb52f03fe8467f94f87c777a7a350c0\",\"labels\":[],\"modified_at\":1766477296.254997,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255351,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_usb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cc335594f81afccba401289b6b502d8\",\"labels\":[],\"modified_at\":1768937324.860358,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (USB)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-34\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255867,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cc3f8a76c3", + "offset_ms": 290 + }, + { + "direction": "recv", + "type": "text", + "payload": "9d2050f2ca01c684f502d\",\"labels\":[],\"modified_at\":1766477296.256325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Over-load status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.256729,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45740620b4805cce189bb1ae036fcd9b\",\"labels\":[],\"modified_at\":1766477296.257184,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Over-load detected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.257687,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04246652716b229857e01efec2e38e67\",\"labels\":[],\"modified_at\":1766477296.257835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25825,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63039bbbd456696f096140397e346135\",\"labels\":[],\"modified_at\":1766477296.258392,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.259279,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63ad70871975f5f5d34c36a3bc238c67\",\"labels\":[],\"modified_at\":1766477296.259764,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.260212,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c3075512fe6a8b1b0fcb12082a49d76\",\"labels\":[],\"modified_at\":1768937324.86197,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.261175,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"568c6e02c40f5c3a555cdd0db313a4de\",\"labels\":[],\"modified_at\":1768937324.862516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262093,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b395a875cae5455761476ff388705320\",\"labels\":[],\"modified_at\":1768937324.862985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262992,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f06ff5e731abcb200fdf4ce8c56d7a8b\",\"labels\":[],\"modified_at\":1768937324.863363,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.263832,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37ae354122a69445674d2c8a74c662e3\",\"labels\":[],\"modified_at\":1766477296.264255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.265295,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2531dc116e28190045ae5672d09ebe3\",\"labels\":[],\"modified_at\":1768937324.866356,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.266195,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6f6c69f0ddef207889934c80289ca86\",\"labels\":[],\"modified_at\":1766477296.26662,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267047,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc336050e207d78bd1ba0f3bba28051a\",\"labels\":[],\"modified_at\":1768937324.867025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267979,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe9d9f695586d322624d93d749bbcc61\",\"labels\":[],\"modified_at\":1768937324.867472,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.26889,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"01988ea7826bbd8f6ed128469da20098\",\"labels\":[],\"modified_at\":1766477296.269415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.270015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf8ef299aa298fd3248a48bac27ac029\",\"labels\":[],\"modified_at\":1768937324.868225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.271554,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c97f990f08dbf8bfb2e36f79dcf8ce3f\",\"labels\":[],\"modified_at\":1768937324.868598,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.272394,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a2d1328c988166cd19fcc662a187aa9\",\"labels\":[],\"modified_at\":1766477296.272806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-4-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.273243,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50a06ac0b5cc38dd737642d4c89a7b51\",\"labels\":[],\"modified_at\":1768937324.869253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.274164,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d375f897f48b0c3979382b79f793ce7c\",\"labels\":[],\"modified_at\":1768937324.869703,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.275064,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66472225aa97981e6655a6197be3821e\",\"labels\":[],\"modified_at\":1766477296.275574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.276183,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaaeda5a465e1272738851dfaca0bb89\",\"labels\":[],\"modified_at\":1768937324.870776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.278333,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0e4675689b5404d93f71ebfc1d7379f\",\"labels\":[],\"modified_at\":1768937324.871166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.279172,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7093c72b49a8f2d940f6b823759f028\",\"labels\":[],\"modified_at\":1766477296.279589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-5-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.280015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da6ce7565775e6386bc5449a208859de\",\"labels\":[],\"modified_at\":1768937324.871832,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.28095,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0ebf85251bc2805df5a1617f98725cf\",\"labels\":[],\"modified_at\":1768937324.872271,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.281873,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416e2d0423d1f41bd4b56b6bd81b964f\",\"labels\":[],\"modified_at\":1766477296.282883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.283571,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee94a4c4b5043f4b3107f935049eba10\",\"labels\":[],\"modified_at\":1768937324.873009,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.284479,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1f1ce22f894ebe0933234d04a843de8\",\"labels\":[],\"modified_at\":1768937324.873387,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.285287,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c0cacfb741929580682337f02a692ff3\",\"labels\":[],\"modified_at\":1766477296.285701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-6-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286074,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"537517b1a5530389a93a15939111bc6d\",\"labels\":[],\"modified_at\":1768937324.873956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-6-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2db9999532c1e7a9ed05488f029cf7f\",\"labels\":[],\"modified_at\":1766477296.287284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-7-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.287657,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e343a71bdbc71812276c9427c7be85b\",\"labels\":[],\"modified_at\":1768937324.874499,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-7-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.289939,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa5a18f80f779019ca3f23d010909f4d\",\"labels\":[],\"modified_at\":1766477296.290448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477441.695525,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd09b25c9105ef44432c19688ac32e1\",\"labels\":[],\"modified_at\":1768937324.865485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477542.697583,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"faa614fa04d30ee895cd1ff09546164d\",\"labels\":[],\"modified_at\":1768937324.865972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":1768937323.145127,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17e0ae17cdd955a63df94aadb4a81bca\",\"labels\":[],\"modified_at\":1768937323.145187,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46291,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_avg_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7600251cc55099e6789858d8dd0c6b54\",\"labels\":[],\"modified_at\":1768937324.462981,\"name\":null,\"options\":{},\"original_name\":\"Avg. signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.463148,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99723fdd7485a7d6bb927d5bc468a2a9\",\"labels\":[],\"modified_at\":1768937324.463195,\"name\":null,\"options\":{},\"original_name\":\"Signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46361,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.zwave_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b8620184feb8e076a3dcbc4862fa35d\",\"labels\":[],\"modified_at\":1768937352.32353,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.686858,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd5c271fa69e1cb2e08837126e390603\",\"labels\":[],\"modified_at\":1768957339.60269,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.690717,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"06894aa51ff0e9d62478d9bfb5d6b7d1\",\"labels\":[],\"modified_at\":1769108140.491853,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.691308,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632aed480ee30ce82ac8ba8afd55e91f\",\"labels\":[],\"modified_at\":1769108140.492738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.71521,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eab179038325dced95da0495d530c83\",\"labels\":[],\"modified_at\":1768937352.324438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.715894,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69ac603ee53e2fa3e583a9e7e61979e5\",\"labels\":[],\"modified_at\":1768937352.324557,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.776916,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"944905c91677260a69d3c4fb169af92f\",\"labels\":[],\"modified_at\":1768937352.324779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-P", + "offset_ms": 298 + }, + { + "direction": "recv", + "type": "text", + "payload": "ower Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.785768,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"141eddff457c88321aa49743e5165cb7\",\"labels\":[],\"modified_at\":1775491285.628223,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1768937325.683515,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"803942d09c418a98aae2af768bde2657\",\"labels\":[],\"modified_at\":1768974704.217654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":1768937332.413279,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_preset_position\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79c985bf4b12ca603756fd8c2f4d00fe\",\"labels\":[],\"modified_at\":1768937357.407137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Preset Position\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_preset_position\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.683464,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18d7f0c9095f29d981bfa5129a5c8719\",\"labels\":[],\"modified_at\":1768937355.683876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684339,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23798e61c080b6b8bb9292d41b753ebd\",\"labels\":[],\"modified_at\":1768937355.684708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684947,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0506bfac83008cc2d1ce31972a6f2785\",\"labels\":[],\"modified_at\":1768937355.685312,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.685556,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4b56bbe1e3393cda2a02b5958aa3772\",\"labels\":[],\"modified_at\":1768937355.685892,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.68613,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f334207a3706ffc4bdea3fcc21b27f0\",\"labels\":[],\"modified_at\":1768937355.68646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f91be395aa637b853783d80af21df6ea\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88f797601578a44b7f18fe2d310f5c8f\",\"labels\":[],\"modified_at\":1768937820.170123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:26:9F-light-front_porch_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.729653,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_external_switch_multiple_click_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"911f689ea83e4f559f934622cbfaf55e\",\"labels\":[],\"modified_at\":1769099083.729723,\"name\":null,\"options\":{},\"original_name\":\"External Switch: Multiple Click Detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.743385,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34c37d47d0530bffe97567dab6f0a423\",\"labels\":[],\"modified_at\":1769099083.743449,\"name\":null,\"options\":{},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.058963,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c34673f93ef0696b560de0710c886316\",\"labels\":[],\"modified_at\":1769326461.249458,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061192,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34a76e058ab3f8062606e039bb6f7d75\",\"labels\":[],\"modified_at\":1769326461.349576,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061905,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"327d27c3b2d11d6b5ed0a7c67feae89c\",\"labels\":[],\"modified_at\":1769326461.949935,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [A] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.476924,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.overseerr_last_media_event\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1241c0fd94296f38dd4beef033a35d11\",\"labels\":[],\"modified_at\":1769188672.47763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last media event\",\"platform\":\"overseerr\",\"translation_key\":\"last_media_event\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-media\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.478287,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bbb89d6744aa52101d6b2d634dd3a3d2\",\"labels\":[],\"modified_at\":1769188672.478886,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total requests\",\"platform\":\"overseerr\",\"translation_key\":\"total_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.479308,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_movie_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25b77947e4e5901105419056fabf10a0\",\"labels\":[],\"modified_at\":1769188672.479959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Movie requests\",\"platform\":\"overseerr\",\"translation_key\":\"movie_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-movie_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.480365,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_tv_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d94898a7d080d06b0f08ca6451625f7\",\"labels\":[],\"modified_at\":1769188672.480955,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TV requests\",\"platform\":\"overseerr\",\"translation_key\":\"tv_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-tv_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.481447,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_pending_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e190d80632de506998d2cef0552efc3\",\"labels\":[],\"modified_at\":1769188672.482418,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pending requests\",\"platform\":\"overseerr\",\"translation_key\":\"pending_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-pending_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.482777,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_declined_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fc5b3ab324f29fd3454426a63274bc4\",\"labels\":[],\"modified_at\":1769188672.483266,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Declined requests\",\"platform\":\"overseerr\",\"translation_key\":\"declined_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-declined_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.483584,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_processing_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6304a3cd9a5400d32e011d1a277523a3\",\"labels\":[],\"modified_at\":1769188672.484082,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Processing requests\",\"platform\":\"overseerr\",\"translation_key\":\"processing_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-processing_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.484437,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_available_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f9e7f08d9c31ca040fa2066e660551\",\"labels\":[],\"modified_at\":1769188672.484959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Available requests\",\"platform\":\"overseerr\",\"translation_key\":\"available_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-available_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.485331,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00735f8a4a910a0d1254f132ba93de9a\",\"labels\":[],\"modified_at\":1769188672.485849,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total issues\",\"platform\":\"overseerr\",\"translation_key\":\"total_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.486201,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_open_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8ccc6de99805f93f168264e67c712ca\",\"labels\":[],\"modified_at\":1769188672.486713,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open issues\",\"platform\":\"overseerr\",\"translation_key\":\"open_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-open_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487069,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_closed_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc5f4929fb61b84f1593ac32c2e1396e\",\"labels\":[],\"modified_at\":1769188672.487587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed issues\",\"platform\":\"overseerr\",\"translation_key\":\"closed_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-closed_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487953,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_video_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c23a9db4525e8ccd6821507bbce056d\",\"labels\":[],\"modified_at\":1769188672.488474,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Video issues\",\"platform\":\"overseerr\",\"translation_key\":\"video_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-video_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.488825,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_audio_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1677624b1402c112c6e4345588afb313\",\"labels\":[],\"modified_at\":1769188672.489362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Audio issues\",\"platform\":\"overseerr\",\"translation_key\":\"audio_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-audio_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.489714,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c90b1860175195d2a23fccb791504ca0\",\"labels\":[],\"modified_at\":1769188672.490236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Subtitle issues\",\"platform\":\"overseerr\",\"translation_key\":\"subtitle_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-subtitle_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912183.185244,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34a32d14426d3e169ae057627439d98d\",\"labels\":[],\"modified_at\":1771912183.186014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - Off - Timeout\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912170361\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912395.891354,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"773273d151b8c8d49b92ee8627d586d2\",\"labels\":[],\"modified_at\":1771912395.892381,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - On - Door Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912391140\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.625986,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b07a6abab79d073c5be007066b3a3b6d\",\"labels\":[],\"modified_at\":1774116424.626947,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bed Occupied Stable\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bed_occupied_stable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.627238,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6fda5463b7f7691786174b39cbc043\",\"labels\":[],\"modified_at\":1774116424.627924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bedroom Motion Confirmed\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bedroom_motion_confirmed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.957554,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3e5033899feeede780f2808f7b73e24\",\"labels\":[],\"modified_at\":1774116432.958181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.958454,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_nap_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b706a2024115adbf2d36028c6713abcf\",\"labels\":[],\"modified_at\":1774116432.958992,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Nap Detection\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.14926,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4563dd8ceda742b1447360a08afd99e7\",\"labels\":[],\"modified_at\":1774138030.911495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149593,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2d62fcd0d6717798722ba043bce9d40\",\"labels\":[],\"modified_at\":1774138030.911857,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door", + "offset_ms": 307 + }, + { + "direction": "recv", + "type": "text", + "payload": "\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149824,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"806b34a0f2af42d04d3883b58f48a6ef\",\"labels\":[],\"modified_at\":1774138030.912047,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"58122b4c7d81745a9de83d7435a88559\",\"labels\":[],\"modified_at\":1774138030.912215,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150246,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46650fb68d9b63404a046c228467c62c\",\"labels\":[],\"modified_at\":1774138030.912379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150448,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8b8c08c11a816b5e91c5d45b883066e\",\"labels\":[],\"modified_at\":1774138030.912537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150653,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a94089b7222280376a7dad9ef1bf2a92\",\"labels\":[],\"modified_at\":1774138030.912696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152103,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa674acc6fb02b01c66b3433930e2d01\",\"labels\":[],\"modified_at\":1774138030.91286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152289,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5a7edad01fc39a518660614518bcdf2\",\"labels\":[],\"modified_at\":1774138030.913011,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.154985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d16f049693b501d63ea5473129d3198e\",\"labels\":[],\"modified_at\":1774138030.9132,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1pct\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.155394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bffe32a5b8efb97c7c5e604c2bc2abc4\",\"labels\":[],\"modified_at\":1774138030.913358,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_halloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.156076,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54146ec2dbaad8902fd311d6c18d996b\",\"labels\":[],\"modified_at\":1774138030.913521,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.15684,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d740742a1b722377a0897440fd402bbe\",\"labels\":[],\"modified_at\":1774138030.913681,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a62870971ca19efe980ffc144f1a1899\",\"labels\":[],\"modified_at\":1774138030.913831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157231,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"949278d55db1a4d8246fa35f91e617f2\",\"labels\":[],\"modified_at\":1774138030.913979,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Day\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157424,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"276ef5e2cd3663a6236c81c36f446fc6\",\"labels\":[],\"modified_at\":1774138030.914128,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Night\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_night\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157587,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a84f593ccf99ee4dedf54fd732754e2c\",\"labels\":[],\"modified_at\":1774138030.914274,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774138612.949732,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mushroom_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d59320285d90702b2c855475ee95639e\",\"labels\":[],\"modified_at\":1774138612.950796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mushroom update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774139555.128573,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mushroom_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c33c28bb04498effba938ec97b5b805\",\"labels\":[],\"modified_at\":1774139555.128638,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140343.854706,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mini_graph_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56350d9930148e8fd5d61e880540724\",\"labels\":[],\"modified_at\":1774140343.855222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"mini-graph-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140477.398217,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mini_graph_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d58d70df50c79d3213bbf8236a5fe6ce\",\"labels\":[],\"modified_at\":1774140477.398278,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.352598,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681707778436ce05e7199951846ef14d\",\"labels\":[],\"modified_at\":1775489223.761484,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.421699,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c98623c4f1d03a6794ba466def6392\",\"labels\":[],\"modified_at\":1775489223.761621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.690469,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30c8f6f016a9a07d3072df92bf9c837f\",\"labels\":[],\"modified_at\":1775489223.761751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.769537,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fec7537b3f51428841c6f12821476333\",\"labels\":[],\"modified_at\":1775489223.761895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.155983,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4f68f200753e31f0a21132e2ff02e3c\",\"labels\":[],\"modified_at\":1775489223.762023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.222085,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf10bec5854978fe997fc5eb6d1db426\",\"labels\":[],\"modified_at\":1775489223.76215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354869.951525,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dbb9d05d05fcd2ca67c6fd8472bab9eb\",\"labels\":[],\"modified_at\":1775489223.762284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354870.020436,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd61a8fe509fc46135e34167d34e5b3\",\"labels\":[],\"modified_at\":1775489223.762414,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355638.331143,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5144d05444588d3e7a500ac509fae21e\",\"labels\":[],\"modified_at\":1775489223.762539,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355657.972878,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a3162680c956e4ed166e74ca65dbf31\",\"labels\":[],\"modified_at\":1775489223.762673,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356334.664723,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73fe68c3f5230ab53809f13454c7f7ce\",\"labels\":[],\"modified_at\":1775489223.762806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.604859,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f0456298a746305de2207d41a214c7\",\"labels\":[],\"modified_at\":1775489223.76293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.686933,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9e93e6a89fec209b2154e4b4aa5c0\",\"labels\":[],\"modified_at\":1775489223.763054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.039186,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3725b439d15a4d1e0e0b8ef16c5bcec8\",\"labels\":[],\"modified_at\":1775489223.763189,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.114222,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09f3eb747f5823fe21b96763355a9fd3\",\"labels\":[],\"modified_at\":1775489223.763316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.671129,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4cb866d53da98bac0fdd3d9a50958c1\",\"labels\":[],\"modified_at\":1775489223.763449,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.73551,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bdb1093192bc6e83a24ef3ef98ef251a\",\"labels\":[],\"modified_at\":1775489223.763579,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.683881,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"17948118ea0453a21060b9ac3c3bd35f\",\"labels\":[],\"modified_at\":1775489223.763821,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.752892,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2bf26cdc24ddb324070b32bf95efb\",\"labels\":[],\"modified_at\":1775489223.763949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.611255,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2de2190bdb6019e1ebaf8f9f6db56d92\",\"labels\":[],\"modified_at\":1775489269.20277,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reset total energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_reset_total_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.720667,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2b188397cf5cf91ade7924d39597fc\",\"labels\":[],\"modified_at\":1775489254.288937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn off\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_off_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.725676,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ba3493529496e8be49faa472f4272\",\"labels\":[],\"modified_at\":1775489254.289157,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn on\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_on_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.730362,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817a29630544a8935b5b5208cfad3a6a\",\"labels\":[],\"modified_at\":1775491843.189477,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power rise threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_rise_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.735072,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb512790cefd801f44d3170bcbe18fb3\",\"labels\":[],\"modified_at\":1775491843.201122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power drop threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_drop_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.782524,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f1e618efc7019719ba1c008909ae61b\",\"labels\":[],\"modified_at\":1775489269.203071,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power-on behavior\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_on_behavior_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.808614,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a65df0e6618f2527a49b04cb44ddc8d\",\"labels\":[],\"modified_at\":1775586383.664326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.810039,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6da142d344b25e493d4e7150811898a9\",\"labels\":[],\"modified_at\":1775489269.20327,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":1},\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.81576,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6fd914af279d2e8f766", + "offset_ms": 315 + }, + { + "direction": "recv", + "type": "text", + "payload": "c6a3ff2de023\",\"labels\":[],\"modified_at\":1775489269.203513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_humidity_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.817887,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_pressure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd3458814c78abb0afee054f005cdd78\",\"labels\":[],\"modified_at\":1775489308.697985,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Atmospheric pressure\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_pressure_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.819624,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b51cd3241371b7561f77450e43672efb\",\"labels\":[],\"modified_at\":1775492079.877324,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.821311,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89221a788e97735b88a9981fc28d3fbe\",\"labels\":[],\"modified_at\":1775489227.821354,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.822693,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_power\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0950382cdf5c1ae4e598bc5443a02839\",\"labels\":[],\"modified_at\":1775520590.696024,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.825626,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d9bb9d1c71c5dd2c20a45dc1b6dea2c\",\"labels\":[],\"modified_at\":1775491830.269932,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.828464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07990395421c102974cefa27b6a9b997\",\"labels\":[],\"modified_at\":1775489254.291151,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Frequency\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_ac_frequency_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.830508,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_power_factor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7fffd049106dfd91742c2374ec66011a\",\"labels\":[],\"modified_at\":1775489227.830555,\"name\":null,\"options\":{},\"original_name\":\"Power factor\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_factor_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.832056,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b1f2d89a6fa56eaa6ebd7a325233c5b\",\"labels\":[],\"modified_at\":1775520597.935816,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_current_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.833866,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1dec75cbe9a7ba93bf0f0846e5fe5fac\",\"labels\":[],\"modified_at\":1775525154.098723,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.836162,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbdff817ee00883d0aa353adead094b5\",\"labels\":[],\"modified_at\":1775489227.83621,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.84296,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1de84ba2dcb17a277ea97a987f467d07\",\"labels\":[],\"modified_at\":1775489269.203705,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.844464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3be8da09eeb8e0acc452fa4a9ba78a5\",\"labels\":[],\"modified_at\":1775489269.203885,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Metering only mode\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_metering_only_mode_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.850014,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcee0811885c8854563443ba4dced1ab\",\"labels\":[],\"modified_at\":1775489306.418611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1775549231.594472,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_vibration_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9db7f91c5b54278bf3f7a80f5df91bc\",\"labels\":[],\"modified_at\":1775549231.594723,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.825542,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5077add4bf45e912a2ef646bae511f14\",\"labels\":[],\"modified_at\":1775678362.82721,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.827502,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f3761580a85a1bd3953bddb2c989d35\",\"labels\":[],\"modified_at\":1775678362.828154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000004\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.828418,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be7a1d87aaf721c4188bf8bec50329f4\",\"labels\":[],\"modified_at\":1775678362.828943,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000005\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.37481,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167b598bb2635889c041d73857d27990\",\"labels\":[],\"modified_at\":1775868913.129506,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.376546,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa1b588575b52fe468f5b0b654084236\",\"labels\":[],\"modified_at\":1775868913.130469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.613679,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00cfdcc6fd718b086b498d183ec763fe\",\"labels\":[],\"modified_at\":1775868913.131303,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.615726,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb552019b26731f2c51b5b208e46821\",\"labels\":[],\"modified_at\":1775875660.872463,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.618016,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a715ee29ebb812ad53ff3962471973c\",\"labels\":[],\"modified_at\":1775868886.618058,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.61896,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fed74cd33f82ba6c78036a9cebbf06\",\"labels\":[],\"modified_at\":1775868913.133053,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62005,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6aa5184211eb3c2d8ccd38a3b494e66f\",\"labels\":[],\"modified_at\":1775872197.350263,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62157,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62526651242478435d1e767d473d0b01\",\"labels\":[],\"modified_at\":1775868886.621614,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.622608,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c40a87b4581f5eae3d7a6360360a4fc\",\"labels\":[],\"modified_at\":1775868913.13455,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.624775,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d40ea24dbd15c204e20d4041d24cd2d0\",\"labels\":[],\"modified_at\":1775868886.624821,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.640178,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_fed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"339abf0c4de7f4ba8ac9610f75299234\",\"labels\":[],\"modified_at\":1775868913.135283,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.641542,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.tracker_one\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4dde6447448035238f372ce06801427\",\"labels\":[],\"modified_at\":1775868913.136075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.643148,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_sink_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2195ff58fb96b2adfde3932a8dba49a5\",\"labels\":[],\"modified_at\":1775868913.136902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775869869.03551,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apexcharts_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59310574b32edd03da9449e2fc1b7504\",\"labels\":[],\"modified_at\":1775869869.036084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"apexcharts-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870068.253425,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.track_tracker_one_log_press\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"251e799623f0dc9e26c3a81c1bcc0e30\",\"labels\":[],\"modified_at\":1775870068.254211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TRACK - Tracker One - Log Press\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775869806572\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870401.81351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.fish_fed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86abac3ce035a999bd58f59520b2f4f0\",\"labels\":[],\"modified_at\":1775870444.348953,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Fish Fed\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"fish_fed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870404.195975,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.tracker_one_presses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"563381785d898580a4ec98b5d47f8241\",\"labels\":[],\"modified_at\":1775870428.194489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tracker One Presses\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"tracker_one_presses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775870404.57426,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apexcharts_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3c39d6ccf8398fd21217517712467e\",\"labels\":[],\"modified_at\":1775870404.574316,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485157,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15bd4e2db4610819856a0a96d8fb46ac\",\"labels\":[],\"modified_at\":1775870556.016822,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Fish Fed - Latch On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485897,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_fish_fed_reset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb491690a44f98c51901d58d37cdd2d8\",\"labels\":[],\"modified_at\":1775890800.094108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Fish Fed - Reset\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211862\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"config_subentry_id\":null,\"created_at\":1775959350.075729,\"device_id\":\"bd61b07f6c18d67ffd4150ebf11743fa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18f6e46b7275812f380f65c45ab68432\",\"labels\":[],\"modified_at\":1775959350.076865,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Car in Garage\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"", + "offset_ms": 325 + }, + { + "direction": "recv", + "type": "text", + "payload": "44:17:93:1B:60:94-binary_sensor-car_in_garage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067514.535912,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52f365b0d3680334baa51a6a1268693d\",\"labels\":[],\"modified_at\":1776067514.537586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067515.336196,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ba17144d4b28c18b1610c9e6524f080\",\"labels\":[],\"modified_at\":1776067515.337787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"}]}", + "offset_ms": 333 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_update_entity_registry_entry.json b/cassettes/test_entity_registry/test_update_entity_registry_entry.json new file mode 100644 index 00000000..0a84f3ad --- /dev/null +++ b/cassettes/test_entity_registry/test_update_entity_registry_entry.json @@ -0,0 +1,67 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:08:59.712119+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": \"Test Name\", \"id\": 2, \"type\": \"config/entity_registry/update\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067739.712396,\"name\":\"Test Name\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", + "offset_ms": 18 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": null, \"id\": 3, \"type\": \"config/entity_registry/update\"}", + "offset_ms": 18 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067739.720447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", + "offset_ms": 25 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_endpoint_not_found_error.json b/cassettes/test_errors/test_async_endpoint_not_found_error.json new file mode 100644 index 00000000..f875d468 --- /dev/null +++ b/cassettes/test_errors/test_async_endpoint_not_found_error.json @@ -0,0 +1,169 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:00 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "139" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc74da22c654-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:00.963904+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:00 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:00.972880+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/qwertyuioasdfghjkzxcvbnm", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 404, + "message": "Not Found" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:00 GMT" + ], + "content-type": [ + "text/plain; charset=utf-8" + ], + "content-length": [ + "14" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "404: Not Found" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/qwertyuioasdfghjkzxcvbnm" + }, + "recorded_at": "2026-04-13T08:09:00.980810+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_invalid_template.json b/cassettes/test_errors/test_async_invalid_template.json new file mode 100644 index 00000000..ac089337 --- /dev/null +++ b/cassettes/test_errors/test_async_invalid_template.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "140" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc78b830495f-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:01.585344+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:01.595150+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/template", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 400, + "message": "Bad Request" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "100" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"Error rendering template: TemplateSyntaxError: expected token 'end of print statement', got 'lol'\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/template" + }, + "recorded_at": "2026-04-13T08:09:01.605118+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_method_not_allowed_error.json b/cassettes/test_errors/test_async_method_not_allowed_error.json new file mode 100644 index 00000000..2edefeea --- /dev/null +++ b/cassettes/test_errors/test_async_method_not_allowed_error.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "140" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc75cefeaee3-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:01.114784+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:01.128142+00:00" + }, + { + "request": { + "method": "DELETE", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 405, + "message": "Method Not Allowed" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "text/plain; charset=utf-8" + ], + "content-length": [ + "23" + ], + "allow": [ + "GET,OPTIONS" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "405: Method Not Allowed" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:01.139487+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_no_entity_information_provided.json b/cassettes/test_errors/test_async_no_entity_information_provided.json new file mode 100644 index 00000000..06d9dada --- /dev/null +++ b/cassettes/test_errors/test_async_no_entity_information_provided.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "140" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc77cb45cf48-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:01.430196+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:01.441914+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_websocket_get_entity_histories_not_supported.json b/cassettes/test_errors/test_async_websocket_get_entity_histories_not_supported.json new file mode 100644 index 00000000..fe76027a --- /dev/null +++ b/cassettes/test_errors/test_async_websocket_get_entity_histories_not_supported.json @@ -0,0 +1,43 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:01.795708+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_websocket_set_state_not_supported.json b/cassettes/test_errors/test_async_websocket_set_state_not_supported.json new file mode 100644 index 00000000..35bddd27 --- /dev/null +++ b/cassettes/test_errors/test_async_websocket_set_state_not_supported.json @@ -0,0 +1,43 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:01.749815+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_wrong_headers.json b/cassettes/test_errors/test_async_wrong_headers.json new file mode 100644 index 00000000..7b39fb9c --- /dev/null +++ b/cassettes/test_errors/test_async_wrong_headers.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "140" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc76ccc41f9b-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:01.271581+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:01.280903+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_domain_missing_services_attribute.json b/cassettes/test_errors/test_domain_missing_services_attribute.json new file mode 100644 index 00000000..42c841a7 --- /dev/null +++ b/cassettes/test_errors/test_domain_missing_services_attribute.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:00 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "139" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc73fbb8f896-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:00.820665+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:00 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:00.830836+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_endpoint_not_found_error.json b/cassettes/test_errors/test_endpoint_not_found_error.json new file mode 100644 index 00000000..ccf3514f --- /dev/null +++ b/cassettes/test_errors/test_endpoint_not_found_error.json @@ -0,0 +1,169 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:00 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "139" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc746ffaa509-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:00.891340+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:00 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:00.903905+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/qwertyuioasdfghjkzxcvbnm", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 404, + "message": "Not Found" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:00 GMT" + ], + "content-type": [ + "text/plain; charset=utf-8" + ], + "content-length": [ + "14" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "404: Not Found" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/qwertyuioasdfghjkzxcvbnm" + }, + "recorded_at": "2026-04-13T08:09:00.912754+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_invalid_template.json b/cassettes/test_errors/test_invalid_template.json new file mode 100644 index 00000000..1a547af5 --- /dev/null +++ b/cassettes/test_errors/test_invalid_template.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "140" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc783ca8a11a-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:01.508297+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:01.520820+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/template", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 400, + "message": "Bad Request" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "100" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"Error rendering template: TemplateSyntaxError: expected token 'end of print statement', got 'lol'\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/template" + }, + "recorded_at": "2026-04-13T08:09:01.530450+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_method_not_allowed_error.json b/cassettes/test_errors/test_method_not_allowed_error.json new file mode 100644 index 00000000..f08a669e --- /dev/null +++ b/cassettes/test_errors/test_method_not_allowed_error.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "140" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc754a099bf9-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:01.034976+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:01.043904+00:00" + }, + { + "request": { + "method": "DELETE", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 405, + "message": "Method Not Allowed" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "text/plain; charset=utf-8" + ], + "content-length": [ + "23" + ], + "allow": [ + "GET,OPTIONS" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "405: Method Not Allowed" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:01.052817+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_no_entity_information_provided.json b/cassettes/test_errors/test_no_entity_information_provided.json new file mode 100644 index 00000000..b62e9329 --- /dev/null +++ b/cassettes/test_errors/test_no_entity_information_provided.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "140" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc773dccefde-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:01.345639+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:01.358308+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_websocket_get_entity_histories_not_supported.json b/cassettes/test_errors/test_websocket_get_entity_histories_not_supported.json new file mode 100644 index 00000000..aee299e5 --- /dev/null +++ b/cassettes/test_errors/test_websocket_get_entity_histories_not_supported.json @@ -0,0 +1,43 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:01.700178+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_websocket_set_state_not_supported.json b/cassettes/test_errors/test_websocket_set_state_not_supported.json new file mode 100644 index 00000000..05bde6f3 --- /dev/null +++ b/cassettes/test_errors/test_websocket_set_state_not_supported.json @@ -0,0 +1,43 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:01.645720+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 9 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 9 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 14 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_wrong_headers.json b/cassettes/test_errors/test_wrong_headers.json new file mode 100644 index 00000000..1eb6a1ee --- /dev/null +++ b/cassettes/test_errors/test_wrong_headers.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "140" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc765c8fc146-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:01.208882+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:01 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:01.219903+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_events/test_async_listen_config_entries.json b/cassettes/test_events/test_async_listen_config_entries.json new file mode 100644 index 00000000..923cf48c --- /dev/null +++ b/cassettes/test_events/test_async_listen_config_entries.json @@ -0,0 +1,127 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:02.985257+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/subscribe\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"0039", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "1291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 21 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"unload_in_progress\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 30 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": null, \"id\": 4, \"type\": \"config_entries/disable\"}", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"setup_in_progress\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 39 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 263 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 263 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 2, \"id\": 5, \"type\": \"unsubscribe_events\"}", + "offset_ms": 263 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 269 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_events/test_async_listen_events.json b/cassettes/test_events/test_async_listen_events.json new file mode 100644 index 00000000..5fb4f27a --- /dev/null +++ b/cassettes/test_events/test_async_listen_events.json @@ -0,0 +1,85 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:01.898256+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"event_type\": \"async_test_event\", \"id\": 2, \"type\": \"subscribe_events\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 16 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"event_type\": \"async_test_event\", \"event_data\": {\"message\": \"Triggered by async websocket client\"}, \"id\": 3, \"type\": \"fire_event\"}", + "offset_ms": 16 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"event\",\"event\":{\"event_type\":\"async_test_event\",\"data\":{\"message\":\"Triggered by async websocket client\"},\"origin\":\"LOCAL\",\"time_fired\":\"2026-04-13T08:09:01.904321+00:00\",\"context\":{\"id\":\"01KP2Y626GJ58WQV890PMXGX2H\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},\"id\":2}", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KP2Y626GJ58WQV890PMXGX2H\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}}", + "offset_ms": 23 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 2, \"id\": 4, \"type\": \"unsubscribe_events\"}", + "offset_ms": 23 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 29 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_events/test_async_listen_trigger.json b/cassettes/test_events/test_async_listen_trigger.json new file mode 100644 index 00000000..9e1dffd1 --- /dev/null +++ b/cassettes/test_events/test_async_listen_trigger.json @@ -0,0 +1,103 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:03.289546+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"template\": \"{{ (now() + timedelta(seconds=1)) }}\", \"report_errors\": true, \"id\": 2, \"type\": \"render_template\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":{\"result\":\"2026-04-13 01:09:04.298527-07:00\",\"listeners\":{\"all\":false,\"entities\":[],\"domains\":[],\"time\":true}}}", + "offset_ms": 26 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 2, \"id\": 3, \"type\": \"unsubscribe_events\"}", + "offset_ms": 26 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 32 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"trigger\": {\"platform\": \"time\", \"at\": \"01:09:04\"}, \"id\": 4, \"type\": \"subscribe_trigger\"}", + "offset_ms": 32 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 39 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"event\",\"event\":{\"variables\":{\"trigger\":{\"id\":\"0\",\"idx\":\"0\",\"alias\":null,\"platform\":\"time\",\"now\":\"2026-04-13T01:09:04.285327-07:00\",\"description\":\"time\",\"entity_id\":null}},\"context\":null}}", + "offset_ms": 1015 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 4, \"id\": 5, \"type\": \"unsubscribe_events\"}", + "offset_ms": 1015 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1020 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_events/test_listen_config_entries.json b/cassettes/test_events/test_listen_config_entries.json new file mode 100644 index 00000000..ee53b912 --- /dev/null +++ b/cassettes/test_events/test_listen_config_entries.json @@ -0,0 +1,127 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:02.347982+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/subscribe\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 19 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"0039", + "offset_ms": 20 + }, + { + "direction": "recv", + "type": "text", + "payload": "1291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 20 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", + "offset_ms": 21 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"unload_in_progress\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 30 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": null, \"id\": 4, \"type\": \"config_entries/disable\"}", + "offset_ms": 31 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"setup_in_progress\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 39 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 592 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 593 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 2, \"id\": 5, \"type\": \"unsubscribe_events\"}", + "offset_ms": 593 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 598 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_events/test_listen_events.json b/cassettes/test_events/test_listen_events.json new file mode 100644 index 00000000..2c8d47fc --- /dev/null +++ b/cassettes/test_events/test_listen_events.json @@ -0,0 +1,85 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:01.838792+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"event_type\": \"test_event\", \"id\": 2, \"type\": \"subscribe_events\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 16 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"event_type\": \"test_event\", \"event_data\": {\"message\": \"Triggered by websocket client\"}, \"id\": 3, \"type\": \"fire_event\"}", + "offset_ms": 16 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"event\",\"event\":{\"event_type\":\"test_event\",\"data\":{\"message\":\"Triggered by websocket client\"},\"origin\":\"LOCAL\",\"time_fired\":\"2026-04-13T08:09:01.844338+00:00\",\"context\":{\"id\":\"01KP2Y624M7WF3HBJA4H972FY7\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},\"id\":2}", + "offset_ms": 21 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KP2Y624M7WF3HBJA4H972FY7\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}}", + "offset_ms": 22 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 2, \"id\": 4, \"type\": \"unsubscribe_events\"}", + "offset_ms": 22 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 27 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_events/test_listen_trigger.json b/cassettes/test_events/test_listen_trigger.json new file mode 100644 index 00000000..fb7ce6c6 --- /dev/null +++ b/cassettes/test_events/test_listen_trigger.json @@ -0,0 +1,103 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://ha.krkn.cc/api/websocket", + "handshake_recorded_at": "2026-04-13T08:09:01.968534+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"template\": \"{{ (now() + timedelta(seconds=1)) }}\", \"report_errors\": true, \"id\": 2, \"type\": \"render_template\"}", + "offset_ms": 13 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":{\"result\":\"2026-04-13 01:09:02.975715-07:00\",\"listeners\":{\"all\":false,\"entities\":[],\"domains\":[],\"time\":true}}}", + "offset_ms": 24 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 2, \"id\": 3, \"type\": \"unsubscribe_events\"}", + "offset_ms": 24 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 30 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"trigger\": {\"platform\": \"time\", \"at\": \"01:09:02\"}, \"id\": 4, \"type\": \"subscribe_trigger\"}", + "offset_ms": 30 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 36 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"event\",\"event\":{\"variables\":{\"trigger\":{\"id\":\"0\",\"idx\":\"0\",\"alias\":null,\"platform\":\"time\",\"now\":\"2026-04-13T01:09:02.274069-07:00\",\"description\":\"time\",\"entity_id\":null}},\"context\":null}}", + "offset_ms": 322 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 4, \"id\": 5, \"type\": \"unsubscribe_events\"}", + "offset_ms": 323 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 328 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_models/test_async_entity_get_entity.json b/cassettes/test_models/test_async_entity_get_entity.json new file mode 100644 index 00000000..3a330faa --- /dev/null +++ b/cassettes/test_models/test_async_entity_get_entity.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "143" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8aa8bd121f-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:04.458415+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:04.469434+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/person.test_user", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 404, + "message": "Not Found" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "39" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"Entity not found.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/person.test_user" + }, + "recorded_at": "2026-04-13T08:09:04.479634+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_async_entity_get_history.json b/cassettes/test_models/test_async_entity_get_history.json new file mode 100644 index 00000000..50e21f39 --- /dev/null +++ b/cassettes/test_models/test_async_entity_get_history.json @@ -0,0 +1,215 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "144" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc9028dc1ef3-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:05.327753+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:05.337059+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "641" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.sun" + }, + "recorded_at": "2026-04-13T08:09:05.345927+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "190" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T08:09:05.336804+00:00\",\"last_updated\":\"2026-04-12T08:09:05.336804+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T13:31:27.886086+00:00\",\"last_updated\":\"2026-04-12T13:31:27.886086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_updated\":\"2026-04-13T02:58:29.987568+00:00\"}]]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun" + }, + "recorded_at": "2026-04-13T08:09:05.360960+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_async_entity_get_history_none.json b/cassettes/test_models/test_async_entity_get_history_none.json new file mode 100644 index 00000000..0fc2275e --- /dev/null +++ b/cassettes/test_models/test_async_entity_get_history_none.json @@ -0,0 +1,215 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "144" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc91cf9f3d1b-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:05.598073+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:05.610609+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "336" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:09:04.641828+00:00\",\"last_reported\":\"2026-04-13T08:09:04.641828+00:00\",\"last_updated\":\"2026-04-13T08:09:04.641828+00:00\",\"context\":{\"id\":\"01KP2Y64W1X57GZR5AKVMG0J1T\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-13T08:09:05.620723+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "10" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00" + }, + "recorded_at": "2026-04-13T08:09:05.631028+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_async_entity_update_state.json b/cassettes/test_models/test_async_entity_update_state.json new file mode 100644 index 00000000..a3348688 --- /dev/null +++ b/cassettes/test_models/test_async_entity_update_state.json @@ -0,0 +1,218 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "143" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8bb8a88ce4-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:04.626090+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:04.637425+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "338" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of your hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:09:04.545843+00:00\",\"last_reported\":\"2026-04-13T08:09:04.545843+00:00\",\"last_updated\":\"2026-04-13T08:09:04.545843+00:00\",\"context\":{\"id\":\"01KP2Y64S1BE282QFA6FT259BR\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-13T08:09:04.648881+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "219" + ], + "location": [ + "/api/states/sun.red_sun" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:09:04.641828+00:00\",\"last_reported\":\"2026-04-13T08:09:04.641828+00:00\",\"last_updated\":\"2026-04-13T08:09:04.641828+00:00\",\"context\":{\"id\":\"01KP2Y64W1X57GZR5AKVMG0J1T\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-13T08:09:04.660939+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_async_fire_event.json b/cassettes/test_models/test_async_fire_event.json new file mode 100644 index 00000000..b296fd74 --- /dev/null +++ b/cassettes/test_models/test_async_fire_event.json @@ -0,0 +1,218 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "143" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8dee350055-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:04.976299+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:04.988554+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "248" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/events" + }, + "recorded_at": "2026-04-13T08:09:04.998125+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/events/core_config_updated", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "54" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"Event core_config_updated fired.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/events/core_config_updated" + }, + "recorded_at": "2026-04-13T08:09:05.006789+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_async_get_domains.json b/cassettes/test_models/test_async_get_domains.json new file mode 100644 index 00000000..8bdcc9f3 --- /dev/null +++ b/cassettes/test_models/test_async_get_domains.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "144" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8f18c4ff11-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:05.157106+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:05.165979+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:09:05.180127+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_async_get_event.json b/cassettes/test_models/test_async_get_event.json new file mode 100644 index 00000000..79a7e894 --- /dev/null +++ b/cassettes/test_models/test_async_get_event.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "143" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8cee161f9b-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:04.815128+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:04.827874+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "248" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/events" + }, + "recorded_at": "2026-04-13T08:09:04.837904+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_base_domain_from_json_invalid_services_type.json b/cassettes/test_models/test_base_domain_from_json_invalid_services_type.json new file mode 100644 index 00000000..9c65970c --- /dev/null +++ b/cassettes/test_models/test_base_domain_from_json_invalid_services_type.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "144" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc927e221f9b-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:05.699850+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:05.711478+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_domain_from_json_with_client_missing_keys.json b/cassettes/test_models/test_domain_from_json_with_client_missing_keys.json new file mode 100644 index 00000000..977b4059 --- /dev/null +++ b/cassettes/test_models/test_domain_from_json_with_client_missing_keys.json @@ -0,0 +1,126 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "144" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc915ca788dc-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:05.522406+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:05.532051+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_domain_service_attribute_access.json b/cassettes/test_models/test_domain_service_attribute_access.json new file mode 100644 index 00000000..ddc66bc2 --- /dev/null +++ b/cassettes/test_models/test_domain_service_attribute_access.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "144" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc92ebb7cf48-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:05.774125+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:05.787508+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:09:05.803493+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_entity_get_entity.json b/cassettes/test_models/test_entity_get_entity.json new file mode 100644 index 00000000..767b4a40 --- /dev/null +++ b/cassettes/test_models/test_entity_get_entity.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "143" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8a2e55ff15-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:04.378412+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:04.389035+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/person.test_user", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 404, + "message": "Not Found" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "39" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"Entity not found.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/person.test_user" + }, + "recorded_at": "2026-04-13T08:09:04.397296+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_entity_get_history.json b/cassettes/test_models/test_entity_get_history.json new file mode 100644 index 00000000..e8da82df --- /dev/null +++ b/cassettes/test_models/test_entity_get_history.json @@ -0,0 +1,215 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "144" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8f999f9d6b-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:05.241563+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:05.250842+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "641" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.sun" + }, + "recorded_at": "2026-04-13T08:09:05.258920+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "189" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T08:09:05.249662+00:00\",\"last_updated\":\"2026-04-12T08:09:05.249662+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T13:31:27.886086+00:00\",\"last_updated\":\"2026-04-12T13:31:27.886086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_updated\":\"2026-04-13T02:58:29.987568+00:00\"}]]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun" + }, + "recorded_at": "2026-04-13T08:09:05.274006+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_entity_get_history_none.json b/cassettes/test_models/test_entity_get_history_none.json new file mode 100644 index 00000000..ea9ca2f6 --- /dev/null +++ b/cassettes/test_models/test_entity_get_history_none.json @@ -0,0 +1,215 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "144" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc90bb985012-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:05.427850+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:05.439349+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "336" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:09:04.641828+00:00\",\"last_reported\":\"2026-04-13T08:09:04.641828+00:00\",\"last_updated\":\"2026-04-13T08:09:04.641828+00:00\",\"context\":{\"id\":\"01KP2Y64W1X57GZR5AKVMG0J1T\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-13T08:09:05.449615+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "10" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00" + }, + "recorded_at": "2026-04-13T08:09:05.459790+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_entity_update_state.json b/cassettes/test_models/test_entity_update_state.json new file mode 100644 index 00000000..55797efd --- /dev/null +++ b/cassettes/test_models/test_entity_update_state.json @@ -0,0 +1,218 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "143" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8b2b02a11a-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:04.536475+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:04.546618+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "336" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"beyond_our_solar_system\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:08:58.618002+00:00\",\"last_reported\":\"2026-04-13T08:08:58.618002+00:00\",\"last_updated\":\"2026-04-13T08:08:58.618002+00:00\",\"context\":{\"id\":\"01KP2Y5YZS5M77V83CMRSFA6BM\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-13T08:09:04.554936+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "220" + ], + "location": [ + "/api/states/sun.red_sun" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of your hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:09:04.545843+00:00\",\"last_reported\":\"2026-04-13T08:09:04.545843+00:00\",\"last_updated\":\"2026-04-13T08:09:04.545843+00:00\",\"context\":{\"id\":\"01KP2Y64S1BE282QFA6FT259BR\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-13T08:09:04.564404+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_fire_event.json b/cassettes/test_models/test_fire_event.json new file mode 100644 index 00000000..b21902bd --- /dev/null +++ b/cassettes/test_models/test_fire_event.json @@ -0,0 +1,218 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "143" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8d6e3a8f7a-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:04.891200+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:04.902773+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "248" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/events" + }, + "recorded_at": "2026-04-13T08:09:04.910818+00:00" + }, + { + "request": { + "method": "POST", + "uri": "https://ha.krkn.cc/api/events/core_config_updated", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "54" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"Event core_config_updated fired.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/events/core_config_updated" + }, + "recorded_at": "2026-04-13T08:09:04.919803+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_get_domain.json b/cassettes/test_models/test_get_domain.json new file mode 100644 index 00000000..29dcc4b1 --- /dev/null +++ b/cassettes/test_models/test_get_domain.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "144" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8e7fe6ff11-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:05.067974+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:05.080379+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:05 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "13774" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/services" + }, + "recorded_at": "2026-04-13T08:09:05.095162+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_models/test_get_event.json b/cassettes/test_models/test_get_event.json new file mode 100644 index 00000000..fb8ecc6c --- /dev/null +++ b/cassettes/test_models/test_get_event.json @@ -0,0 +1,172 @@ +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://e7.c.lencr.org/108.crl", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "Content-Type": [ + "application/pkix-crl" + ], + "Content-Length": [ + "58971" + ], + "Connection": [ + "keep-alive" + ], + "x-amz-id-2": [ + "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" + ], + "x-amz-request-id": [ + "XKCCHX3VKFDK94GA" + ], + "Last-Modified": [ + "Mon, 13 Apr 2026 07:55:20 GMT" + ], + "etag": [ + "\"bb57d55af27d13aa7a56be8369622ab7\"" + ], + "x-amz-server-side-encryption": [ + "AES256" + ], + "x-amz-meta-crlnumber": [ + "1776066919003521495" + ], + "cache-control": [ + "stale-if-error=600" + ], + "expires": [ + "Mon, 13 Apr 2026 08:30:19 GMT" + ], + "x-amz-version-id": [ + "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" + ], + "Accept-Ranges": [ + "bytes" + ], + "Server": [ + "cloudflare" + ], + "Age": [ + "143" + ], + "cf-cache-status": [ + "HIT" + ], + "CF-RAY": [ + "9eb8fc8c5b75fef7-PDX" + ] + }, + "body": null, + "protocol": null, + "url": "http://e7.c.lencr.org/108.crl" + }, + "recorded_at": "2026-04-13T08:09:04.722399+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "34" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/" + }, + "recorded_at": "2026-04-13T08:09:04.733399+00:00" + }, + { + "request": { + "method": "GET", + "uri": "https://ha.krkn.cc/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "server": [ + "nginx/1.28.2" + ], + "date": [ + "Mon, 13 Apr 2026 08:09:04 GMT" + ], + "content-type": [ + "application/json" + ], + "content-length": [ + "248" + ], + "referrer-policy": [ + "no-referrer" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "content-encoding": [ + "deflate" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "https://ha.krkn.cc/api/events" + }, + "recorded_at": "2026-04-13T08:09:04.743341+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/nimax-design.md b/nimax-design.md new file mode 100644 index 00000000..81e249bc --- /dev/null +++ b/nimax-design.md @@ -0,0 +1,542 @@ +# nimax — Design Document + +> A clean-room re-implementation of betamax for [niquests](https://github.com/jawah/niquests). +> Working title: **nimax** + +--- + +## 1. Motivation + +`betamax` is a VCR-style HTTP recording library for the `requests` library. +`niquests` is a drop-in `requests` replacement that adds HTTP/2, HTTP/3, +multiplexed connections, lazy responses, and `AsyncSession`. Betamax is +fundamentally incompatible with niquests because: + +| Betamax assumption | Niquests reality | +|---|---| +| `send()` returns a complete `Response` immediately | `Response` may be **lazy** — attributes unresolved until awaited or `gather()`d | +| One request in-flight per `send()` | `multiplexed=True` sends many before any resolve | +| Only synchronous sessions | `AsyncSession` with `async def send()` | +| HTTP/1.1 headers only | HTTP/2 pseudo-headers, QUIC trailers, protocol negotiation metadata | +| `BaseAdapter` / `HTTPAdapter` from `requests` | Same API surface in niquests but wraps `urllib3.future` (not urllib3) | + +A clean-room re-write allows us to design natively for these constraints +rather than patching around them. + +--- + +## 2. Betamax Architecture (reference) + +Understanding what we are replacing: + +``` +Session + └── BetamaxAdapter (mounted at "http://" and "https://") + ├── cassette: Cassette | None + ├── http_adapter: HTTPAdapter ← real network I/O + ├── send(request) → Response + │ 1. find matching Interaction in cassette + │ 2a. match found → build Response from cassette data + │ 2b. no match + recording allowed → send_and_record() + │ 2c. no match + recording disabled → raise BetamaxError + └── send_and_record() + 1. delegate to http_adapter.send() + 2. cassette.save_interaction(request, response) +``` + +**Cassette file format** (JSON, default): + +```json +{ + "http_interactions": [ + { + "request": { "method": "GET", "uri": "...", "headers": {}, "body": null }, + "response": { "status": {"code": 200, "message": "OK"}, + "headers": {}, "body": {"string": "..."} }, + "recorded_at": "2024-01-01T00:00:00" + } + ], + "recorded_with": "betamax/0.8.2" +} +``` + +**Record modes**: `once` · `none` · `new_episodes` · `all` +**Matchers**: `method` · `uri` · `host` · `path` · `query` · `headers` · `body` +**Serializers**: JSON (built-in) · YAML (third-party) + +--- + +## 3. Key Design Challenges + +### 3.1 Lazy Responses + +Niquests returns a `Response` that may not have its body resolved yet. +Recording must occur **after** the response is fully consumed, not in `send()`. + +Strategy: hook into niquests' **event hook system** (`response` hook) to +trigger the record step once the response is fully materialized. + +### 3.2 Multiplexed Sessions + +`Session(multiplexed=True)` sends N requests before any response resolves. +`gather(*responses)` then resolves them all. + +Strategy: the adapter intercepts `send()` for each request and records +**pending** interaction slots. The `gather()` step triggers actual +serialization once responses are available. We must wrap `Session.gather()` +or hook into the response lifecycle. + +### 3.3 Async Sessions + +`AsyncSession` has `async def send()`. The adapter shim must expose both +sync `send()` and `async def send()`. + +Strategy: `NimaxAdapter` provides both methods. The async path is a coroutine +that awaits the real adapter and writes to the cassette. + +### 3.4 Protocol Metadata + +Cassettes should optionally preserve the negotiated protocol (`HTTP/1.1`, +`HTTP/2`, `HTTP/3`) so replay can assert the same protocol was used. + +--- + +## 4. Proposed Architecture + +``` +NimaxRecorder ← replaces Betamax class; wraps Session + ├── use_cassette(name, **kw) → context manager + └── _mount_adapter(session) + +NimaxAdapter(BaseAdapter) ← mounted at "http://" + "https://" + ├── cassette: Cassette | None + ├── _real: HTTPAdapter ← niquests HTTPAdapter for live I/O + ├── send(PreparedRequest, **kw) → Response + └── async asend(PreparedRequest, **kw) → Response + +Cassette + ├── record_mode: RecordMode + ├── matchers: list[BaseMatcher] + ├── serializer: BaseSerializer + ├── interactions: list[Interaction] + ├── find_match(request) → Interaction | None + ├── save_interaction(request, response) → None + ├── load() / save() + └── sanitize(placeholders) + +Interaction + ├── request: SerializedRequest + ├── response: SerializedResponse + ├── recorded_at: datetime + ├── protocol: str | None ← NEW: "HTTP/2", "HTTP/3", etc. + └── used: bool ← for "once" mode exhaustion tracking + +RecordMode(enum) + NONE · ONCE · NEW_EPISODES · ALL + +BaseMatcher (ABC) + name: str + match(recorded: SerializedRequest, live: PreparedRequest) → bool + +BaseSerializer (ABC) + extension: str + serialize(cassette_data: dict) → str + deserialize(raw: str) → dict +``` + +### 4.1 Session Wrapping + +```python +with NimaxRecorder(session).use_cassette("my_test") as recorder: + resp = session.get("https://example.com") +``` + +For async: + +```python +async with NimaxRecorder(async_session).use_cassette("my_test") as recorder: + resp = await async_session.aget("https://example.com") +``` + +`NimaxRecorder` mounts `NimaxAdapter` on enter and restores original adapters +on exit. It also wraps `session.gather` to trigger deferred interaction saves. + +### 4.2 Lazy Response Handling + +`NimaxAdapter.send()` registers a `response` event hook on the prepared +request **before** delegating to the real adapter: + +```python +def send(self, request, **kwargs): + if self.cassette.should_record(request): + request.hooks["response"].append(self._on_response_received) + elif (interaction := self.cassette.find_match(request)): + return self._build_response(request, interaction) + else: + raise CannotSendRequest(request) + return self._real.send(request, **kwargs) + +def _on_response_received(self, response, **kwargs): + # Called after body is available + self.cassette.save_interaction(response.request, response) +``` + +### 4.3 Multiplexed Session Handling + +For multiplexed sessions, `send()` returns immediately with a lazy +`Response`. Actual recording happens in a wrapped `gather()`: + +```python +class NimaxRecorder: + def _patch_gather(self, session): + original_gather = session.gather + + def patched_gather(*responses, **kwargs): + result = original_gather(*responses, **kwargs) + for resp in responses: + if resp in self._pending_record: + self.cassette.save_interaction(resp.request, resp) + return result + + session.gather = patched_gather +``` + +### 4.4 Async Adapter + +```python +class NimaxAdapter(BaseAdapter): + def send(self, request, **kw): + # sync path + ... + + async def asend(self, request, **kw): + # async path — await self._real.asend(...) + ... +``` + +--- + +## 5. Cassette Format + +Extends betamax's format with a `protocol` field and a schema version. +Backwards-compatible with betamax cassettes (protocol field optional). + +```json +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "https://example.com/api", + "headers": { "User-Agent": ["niquests/3.x"] }, + "body": null + }, + "response": { + "status": { "code": 200, "message": "OK" }, + "headers": { "Content-Type": ["application/json"] }, + "body": { "string": "{\"key\": \"value\"}" }, + "protocol": "HTTP/2" + }, + "recorded_at": "2026-04-12T10:00:00Z" + } + ] +} +``` + +--- + +## 6. Record Modes + +| Mode | Behaviour | +|---|---| +| `ONCE` | Record on first run; replay thereafter. Error if cassette exists and request has no match. | +| `NONE` | Never record. All requests must match a stored interaction. | +| `NEW_EPISODES` | Replay existing matches; record unmatched requests. | +| `ALL` | Re-record every interaction. Replaces cassette on each run. | + +--- + +## 7. Matchers + +Built-in matchers (all from betamax, re-implemented): + +- `method` — HTTP verb +- `uri` — full URI including query string +- `host` — hostname only +- `path` — path component only +- `query` — query string (order-insensitive) +- `headers` — subset of request headers +- `body` — raw body bytes + +New matchers added for niquests: + +- `protocol` — assert `HTTP/1.1` / `HTTP/2` / `HTTP/3` match + +Custom matchers registered via: + +```python +NimaxRecorder.register_matcher(MyMatcher) +``` + +--- + +## 8. Serializers + +Built-in: + +- `json` — compact JSON (default) +- `pretty_json` — indented JSON for human-readable cassettes + +Third-party extension point: `BaseSerializer` ABC with `serialize()` / +`deserialize()` methods. Register via: + +```python +NimaxRecorder.register_serializer(YAMLSerializer) +``` + +--- + +## 9. pytest Integration + +```python +# conftest.py +import pytest +from nimax.pytest_plugin import nimax_fixture + +@pytest.fixture +def betamax_session(nimax_session): + return nimax_session +``` + +The plugin provides: + +- `nimax_session` fixture — a `niquests.Session` with `NimaxAdapter` mounted +- `nimax_async_session` fixture — an `AsyncSession` variant +- Auto-naming cassettes by test module + function name +- `nimax_parametrized_recorder` for parameterised tests + +Configuration via `conftest.py` or `pyproject.toml`: + +```toml +[tool.nimax] +cassette_library_dir = "tests/cassettes" +default_cassette_name = "{module}/{test}" +record_mode = "once" +match_on = ["method", "uri"] +``` + +--- + +## 10. Placeholder / Sanitization + +Sensitive values (API keys, tokens) are replaced before cassette writes: + +```python +with NimaxRecorder(session).use_cassette( + "auth_test", + placeholders=[ + Placeholder(placeholder="", replace=os.environ["API_KEY"]) + ] +): + ... +``` + +On record: `os.environ["API_KEY"]` → `` in cassette. +On replay: `` → `os.environ["API_KEY"]` in reconstructed response. + +--- + +## 11. WebSocket Recording + +### 11.1 Conceptual Model + +A WebSocket session has two distinct phases: + +1. **Handshake** — an HTTP `GET` with `Upgrade: websocket`. This is a normal + HTTP interaction and is recorded using the existing `http_interactions` model. +2. **Frame exchange** — a bidirectional stream of frames after the upgrade. + This requires a separate `websocket_sessions` track in the cassette. + +In niquests, WebSocket is accessed via `resp.extension` after calling +`session.ws_connect()` (or equivalent). Recording wraps that extension object +in a proxy that intercepts `send_payload()` and `next_payload()` calls. + +### 11.2 Frame Model + +Each recorded frame has: + +| Field | Type | Description | +|---|---|---| +| `direction` | `"send"` \| `"recv"` | Client-to-server or server-to-client | +| `type` | `"text"` \| `"binary"` \| `"ping"` \| `"pong"` \| `"close"` | WS frame opcode | +| `payload` | `str` \| `bytes` \| `null` | Frame payload (base64 for binary) | +| `offset_ms` | `int` | Milliseconds since handshake (optional; for timing replay) | +| `close_code` | `int` \| `null` | Only on `close` frames (e.g. 1000 = Normal Closure) | +| `close_reason` | `str` \| `null` | Only on `close` frames | + +### 11.3 Cassette Format Extension + +```json +{ + "nimax_version": "0.1.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "wss://example.com/ws", + "handshake_recorded_at": "2026-04-12T10:00:00Z", + "protocol": "HTTP/1.1", + "frames": [ + { "direction": "send", "type": "text", "payload": "hello", "offset_ms": 0 }, + { "direction": "recv", "type": "text", "payload": "world", "offset_ms": 48 }, + { "direction": "send", "type": "binary", "payload": "aGVsbG8=","offset_ms": 120 }, + { "direction": "recv", "type": "close", "payload": null, + "close_code": 1000, "close_reason": "Normal Closure", "offset_ms": 200 } + ] + } + ] +} +``` + +Multiple WS sessions in one cassette are supported (matched by URI, same as +HTTP interactions). + +### 11.4 Architecture + +``` +WebSocketExtensionProxy + ├── _extension: real niquests WS extension object + ├── _session: WebSocketSession (in cassette) + ├── send_payload(payload) → None + │ record Frame(direction="send", ...) + │ delegate to _extension.send_payload() + ├── next_payload() → str | bytes + │ if replaying: pop next recv Frame from _session, return its payload + │ if recording: call _extension.next_payload(), record Frame, return + ├── ping() → None (recorded as ping frame; replayed as no-op) + └── close() → None (records close frame; saves session to cassette) + +WebSocketSession + ├── uri: str + ├── protocol: str + ├── handshake_recorded_at: datetime + ├── frames: list[Frame] + └── cursor: int ← replay position for next recv frame +``` + +`NimaxRecorder` wraps `session.ws_connect()` (or the equivalent call) to +intercept the returned response. On the `response` hook, if the response is a +WebSocket upgrade (status 101), the recorder replaces `resp.extension` with a +`WebSocketExtensionProxy`. + +```python +def _on_response_received(self, response, **kwargs): + if response.status_code == 101: # WebSocket upgrade + ws_session = self.cassette.find_or_create_ws_session(response.url) + response.extension = WebSocketExtensionProxy( + extension=response.extension, + ws_session=ws_session, + record_mode=self.cassette.record_mode, + ) + else: + self.cassette.save_interaction(response.request, response) +``` + +### 11.5 Replay Behaviour + +On replay, `next_payload()` pops the next `recv`-direction frame from +`WebSocketSession.frames[cursor:]`. `send_payload()` can optionally validate +that the sent payload matches the recorded `send` frame at the same position +(controlled by a `strict_send` option — default `False` to avoid brittleness). + +`ping()` and `pong` frames are replayed as no-ops by default; setting +`replay_pings=True` causes them to be re-emitted on the proxy. + +### 11.6 Async Support + +`WebSocketExtensionProxy` mirrors the sync/async split in `NimaxAdapter`: + +```python +class WebSocketExtensionProxy: + def send_payload(self, payload): ... + async def asend_payload(self, payload): ... + + def next_payload(self): ... + async def anext_payload(self): ... + + def close(self): ... + async def aclose(self): ... +``` + +### 11.7 Record Modes for WebSocket + +| Mode | Behaviour | +|---|---| +| `ONCE` | Record full frame sequence on first run; replay thereafter | +| `NONE` | Replay only; error if URI has no recorded session | +| `NEW_EPISODES` | Replay known URIs; record new ones | +| `ALL` | Re-record every frame sequence on each run | + +### 11.8 WebSocket Design Decisions + +1. **Partial frame sequences** — if the test closes the socket early and not + all recorded frames are consumed, replay raises `CannotEjectCassette`. + Unconsumed frames indicate an incomplete test or a behavioural regression. + +2. **Binary payload encoding** — delegated to the serializer. The frame `type` + field (`"text"` vs `"binary"`) is the discriminator; no user flag needed. + The default JSON serializer base64-encodes `binary` frames and stores `text` + frames as plain UTF-8 strings. + +3. **Multiple connections to same URI** — disambiguated via an explicit + `nimax_label` parameter on `ws_connect()`. The cassette matches sessions by + `(uri, label)`. Unlabelled connections to a unique URI work without a label; + a second connection to the same URI without a label raises at record time. + +--- + +## 12. Out of Scope (v0.1) + +- SSE (Server-Sent Events) recording +- YAML serializer (first-party; kept as a third-party extension point) +- `betamax-matchers` compatibility shim + +--- + +## 13. Migration from betamax + +For users already on betamax with `requests`, switching to nimax + niquests: + +1. `pip install niquests nimax` +2. Replace `import requests` → `import niquests as requests` +3. Replace `from betamax import Betamax` → `from nimax import NimaxRecorder` +4. Replace `Betamax(session)` → `NimaxRecorder(session)` +5. Existing JSON cassettes are forward-compatible (no `protocol` field = HTTP/1.1 assumed) +6. pytest: replace `betamax_session` fixture with `nimax_session` + +--- + +## 14. Design Decisions + +1. **Cassette name collision in multiplexed mode** — interactions are matched + by content (matchers), not position. On replay, nimax finds the first + unmatched stored interaction satisfying all configured matchers, regardless + of cassette order. Cassettes are not sorted on save; insertion order is + preserved for readability but is not load-bearing. + +2. **`once` mode + lazy responses** — on cassette eject, nimax force-consumes + any pending lazy responses before writing the cassette file. This prevents + half-written cassettes that cause confusing match failures on the next run. + An unconsumed response body at eject time is considered a test smell. + +3. **Protocol downgrade on replay** — nimax raises `ProtocolMismatch` when a + cassette recorded `HTTP/2` or `HTTP/3` but the replayed response negotiated + a lower protocol. Set `allow_protocol_downgrade=True` on `use_cassette()` to + suppress the error. Applies to both HTTP interactions and WebSocket + handshakes. + +4. **Thread safety** — in-memory cassette state (`interactions`, WS `cursor`) + is protected by a `threading.Lock`. File-level isolation is the test + runner's responsibility; the pytest plugin names cassettes + `{module}/{test}` by default, ensuring each parallel worker uses a distinct + file. File locking is not provided. diff --git a/nimax-implementation-plan.md b/nimax-implementation-plan.md new file mode 100644 index 00000000..6651a085 --- /dev/null +++ b/nimax-implementation-plan.md @@ -0,0 +1,235 @@ +# nimax Implementation Plan + +Delta between `nimax-design.md` and the current `pytest-niquests-cassettes` package. + +--- + +## Module Structure (new) + +``` +src/pytest_niquests_cassettes/ + __init__.py ← add NimaxRecorder, RecordMode, Placeholder, BaseMatcher, BaseSerializer + plugin.py ← add nimax_session / nimax_async_session, pyproject.toml config + _record_mode.py ← NEW: RecordMode enum (NONE, ONCE, NEW_EPISODES, ALL) + _placeholders.py ← NEW: Placeholder dataclass + apply/restore helpers + _matchers.py ← NEW: BaseMatcher ABC + 8 concrete matchers + _serializers.py ← NEW: BaseSerializer ABC + JSONSerializer + YAMLSerializer + _websocket.py ← NEW: Frame, WebSocketSession, 4 extension proxies + _cassette.py ← REWRITE: Interaction dataclass, matcher-based lookup, new format + _adapter.py ← NEW: NimaxRecorder (class-level monkey-patch wrapper) +``` + +--- + +## 1. RecordMode enum (`_record_mode.py`) + +Replace `record: bool` with: + +| Mode | Behaviour | +|---|---| +| `NONE` | Never record; error on no match | +| `ONCE` | Record if cassette file absent; replay if present; error on match miss | +| `NEW_EPISODES` | Replay known interactions; record unmatched | +| `ALL` | Re-record every interaction | + +CLI mapping: `--record` → `ALL`, no flag → `ONCE`. + +--- + +## 2. Matcher system (`_matchers.py`) + +``` +BaseMatcher(ABC) + name: ClassVar[str] + match(recorded: dict, live: PreparedRequest) → bool + +Concrete: MethodMatcher, URIMatcher, HostMatcher, PathMatcher, + QueryMatcher, HeadersMatcher, BodyMatcher, ProtocolMatcher +``` + +`NimaxRecorder._matchers` is a `ClassVar[dict[str, type[BaseMatcher]]]`. Lookup by +name string from `--cassette-match-on`. Default: `["method", "path"]`. + +`NimaxRecorder.register_matcher(cls)` adds to class-level dict. + +--- + +## 3. Serializer system (`_serializers.py`) + +``` +BaseSerializer(ABC) + extension: ClassVar[str] + serialize(data: dict) → str + deserialize(raw: str) → dict + +JSONSerializer — extension = "json" +YAMLSerializer — extension = "yaml" (backward-compat default in plugin) +``` + +Plugin default: `YAMLSerializer` (keeps existing `cassettes/session.yaml` working). +`NimaxRecorder.use_cassette()` default: `JSONSerializer`. + +`NimaxRecorder.register_serializer(cls)` adds to class-level dict. + +--- + +## 4. Cassette format (`_cassette.py`) + +New on-disk format (mirrors `nimax-design.md` §5): + +```json +{ + "nimax_version": "0.1.0", + "http_interactions": [ + { + "request": { "method": "GET", "uri": "...", "headers": {}, "body": null }, + "response": { "status": {"code": 200, "message": "OK"}, + "headers": {}, "body": {"string": "..."}, "protocol": null }, + "recorded_at": "2026-04-12T10:00:00Z" + } + ], + "websocket_sessions": [...] +} +``` + +**Legacy migration** (auto-detected on `_load`): +- `interactions` key → treated as `http_interactions` +- `status: 200` → `{"code": 200, "message": "OK"}` +- `body: "..."` → `{"string": "..."}` +- `request.url` → `request.uri` + +Headers stored as `{ "Content-Type": ["application/json"] }` (list values). + +**Interaction lookup**: linear scan with matcher objects, `Interaction.used` flag. +FIFO semantics for multiple identical interactions preserved by scan order. + +**Thread safety**: `threading.Lock` guards `_interactions` and `_websocket_sessions`. + +--- + +## 5. Placeholder system (`_placeholders.py`) + +```python +@dataclass +class Placeholder: + placeholder: str # stored in cassette + replace: str # real value in env + +apply_placeholders(text, placeholders) # real → placeholder (before save) +restore_placeholders(text, placeholders) # placeholder → real (after load) +``` + +Applied at the serialized-string level, before write and after read. + +--- + +## 6. WebSocket frame model (`_websocket.py`) + +`Frame` dataclass gains `type`, `offset_ms`, `close_code`, `close_reason`: + +```python +@dataclass +class Frame: + direction: str # "send" | "recv" + type: str # "text" | "binary" | "ping" | "pong" | "close" + payload: str | None + offset_ms: int = 0 + close_code: int | None = None + close_reason: str | None = None +``` + +`WebSocketSession` dataclass holds `uri`, `protocol`, `handshake_recorded_at`, `frames`. + +The four extension proxy classes (`FakeExtension`, `AsyncFakeExtension`, +`RecordingExtension`, `AsyncRecordingExtension`) remain but use `Frame` internally. +`RecordingExtension.next_payload` captures `offset_ms` via `time.monotonic()`. + +--- + +## 7. NimaxRecorder (`_adapter.py`) + +```python +class NimaxRecorder: + _matchers: ClassVar[dict[str, type[BaseMatcher]]] + _serializers: ClassVar[dict[str, type[BaseSerializer]]] + + def __init__(self, session: Session | AsyncSession) -> None: ... + + @classmethod + def register_matcher(cls, matcher: type[BaseMatcher]) -> None: ... + + @classmethod + def register_serializer(cls, serializer: type[BaseSerializer]) -> None: ... + + @contextlib.contextmanager + def use_cassette( + self, + name: str, + *, + cassette_dir: Path | str = "cassettes", + record_mode: RecordMode = RecordMode.ONCE, + match_on: Iterable[str] = ("method", "path"), + serializer: BaseSerializer | None = None, + placeholders: list[Placeholder] | None = None, + ) -> Generator[Cassette, None, None]: ... +``` + +Internally patches `niquests.Session.send` and `niquests.AsyncSession.send` +class-wide (same approach as current `Cassette.__enter__`). + +--- + +## 8. pytest plugin (`plugin.py`) + +**Record mode**: `--record` → `RecordMode.ALL`; default → `RecordMode.ONCE`. +`--record-mode` option added for explicit control. + +**Existing `cassette` fixture**: unchanged name, unchanged scope (`session`), +now uses `RecordMode` + `NimaxRecorder` internally. + +**New fixtures**: + +```python +@pytest.fixture +def nimax_session(request) -> Generator[Session, None, None]: + """Per-test session with auto-named cassette: {module}/{test}.""" + +@pytest_asyncio.fixture +async def nimax_async_session(request) -> AsyncGenerator[AsyncSession, None]: + """Per-test async session with auto-named cassette.""" +``` + +**pyproject.toml config** (`[tool.nimax]`): + +```toml +[tool.nimax] +cassette_library_dir = "tests/cassettes" +default_cassette_name = "{module}/{test}" +record_mode = "once" +match_on = ["method", "uri"] +``` + +Read via `tomllib` (Python 3.11+). CLI options override `pyproject.toml`. + +--- + +## 9. Breaking changes + +- Cassette saved in new format (old YAML cassettes are auto-migrated on read, + but saved back in new format on next record run). +- Default mode is now `ONCE` (not `ALL`). Re-recording requires `--record` or + `--record-mode=all`. +- `Cassette(path, record=True)` still accepted but deprecated in favour of + `record_mode=RecordMode.ALL`. + +--- + +## 10. Out of scope for this iteration + +- `NimaxAdapter(BaseAdapter)` mounting (WS scheme support uncertain; monkey-patch + kept as implementation detail) +- `nimax_parametrized_recorder` fixture +- `CannotEjectCassette` on unconsumed WS frames +- Protocol downgrade detection (`ProtocolMismatch`) +- `allow_protocol_downgrade` option +- `gather()` wrapping for multiplexed sessions diff --git a/packages/pytest-niquests-cassettes/pyproject.toml b/packages/nimax/pyproject.toml similarity index 72% rename from packages/pytest-niquests-cassettes/pyproject.toml rename to packages/nimax/pyproject.toml index dff38c11..6f30a0f9 100644 --- a/packages/pytest-niquests-cassettes/pyproject.toml +++ b/packages/nimax/pyproject.toml @@ -3,18 +3,19 @@ build-backend = "hatchling.build" requires = ["hatchling"] [project] -name = "pytest-niquests-cassettes" +name = "nimax" version = "0.1.0" description = "Record and replay niquests HTTP and WebSocket interactions in pytest" requires-python = ">=3.11" dependencies = [ "niquests>=3", "pytest>=8", + "pytest-asyncio>=0.24", "PyYAML>=6", ] [project.entry-points.pytest11] -niquests-cassettes = "pytest_niquests_cassettes.plugin" +nimax = "nimax.plugin" [tool.hatch.build.targets.wheel] -packages = ["src/pytest_niquests_cassettes"] +packages = ["src/nimax"] diff --git a/packages/nimax/src/nimax/__init__.py b/packages/nimax/src/nimax/__init__.py new file mode 100644 index 00000000..143ae261 --- /dev/null +++ b/packages/nimax/src/nimax/__init__.py @@ -0,0 +1,21 @@ +"""nimax: record and replay niquests HTTP/WebSocket interactions in pytest.""" + +from ._adapter import NimaxRecorder +from ._cassette import Cassette +from ._matchers import BaseMatcher +from ._placeholders import Placeholder +from ._record_mode import RecordMode +from ._serializers import BaseSerializer +from ._serializers import JSONSerializer +from ._serializers import YAMLSerializer + +__all__ = [ + "BaseMatcher", + "BaseSerializer", + "Cassette", + "JSONSerializer", + "NimaxRecorder", + "Placeholder", + "RecordMode", + "YAMLSerializer", +] diff --git a/packages/nimax/src/nimax/_adapter.py b/packages/nimax/src/nimax/_adapter.py new file mode 100644 index 00000000..b29af092 --- /dev/null +++ b/packages/nimax/src/nimax/_adapter.py @@ -0,0 +1,99 @@ +"""NimaxRecorder: programmatic API for wrapping a session with a cassette.""" + +from __future__ import annotations + +import contextlib +from pathlib import Path +from typing import TYPE_CHECKING +from typing import Any +from typing import ClassVar + +from ._cassette import DEFAULT_MATCH_ON +from ._cassette import Cassette +from ._matchers import BUILTIN_MATCHERS +from ._matchers import BaseMatcher +from ._record_mode import RecordMode +from ._serializers import BUILTIN_SERIALIZERS +from ._serializers import BaseSerializer +from ._serializers import JSONSerializer + +if TYPE_CHECKING: + from collections.abc import Generator + from collections.abc import Iterable + + import niquests + + from ._placeholders import Placeholder + + +class NimaxRecorder: + """Wraps a niquests session to provide cassette recording and replay. + + Usage:: + + recorder = NimaxRecorder(session) + with recorder.use_cassette("my_test") as cassette: + resp = session.get("https://example.com") + + The recorder patches ``niquests.Session.send`` and + ``niquests.AsyncSession.send`` class-wide for the duration of the context, + so any sessions created inside the block are also intercepted. + + Custom matchers and serializers can be registered at the class level:: + + NimaxRecorder.register_matcher(MyMatcher) + NimaxRecorder.register_serializer(MySerializer) + """ + + _matchers: ClassVar[dict[str, type[BaseMatcher]]] = dict(BUILTIN_MATCHERS) + _serializers: ClassVar[dict[str, type[BaseSerializer]]] = dict(BUILTIN_SERIALIZERS) + + def __init__(self, session: niquests.Session | niquests.AsyncSession) -> None: + self._session = session + + @classmethod + def register_matcher(cls, matcher: type[BaseMatcher]) -> None: + """Register a custom matcher, making it available by name.""" + cls._matchers[matcher.name] = matcher + + @classmethod + def register_serializer(cls, serializer: type[BaseSerializer]) -> None: + """Register a custom serializer, making it available by extension.""" + cls._serializers[serializer.extension] = serializer + + @contextlib.contextmanager + def use_cassette( # noqa: PLR0913 + self, + name: str, + *, + cassette_dir: Path | str = "cassettes", + record_mode: RecordMode = RecordMode.ONCE, + match_on: Iterable[str] = DEFAULT_MATCH_ON, + serializer: BaseSerializer | None = None, + placeholders: list[Placeholder] | None = None, + ) -> Generator[Cassette, None, None]: + """Context manager that activates a named cassette for the session. + + :param name: Cassette name (used as the filename stem). + :param cassette_dir: Directory to store cassette files. + :param record_mode: When to record vs replay. + :param match_on: Iterable of matcher names. + :param serializer: Explicit serializer (defaults to JSON). + :param placeholders: Sensitive values to redact in the cassette. + """ + resolved_serializer = serializer or JSONSerializer() + path = Path(cassette_dir) / f"{name}.{resolved_serializer.extension}" + cassette = Cassette( + path=path, + record_mode=record_mode, + match_on=frozenset(match_on), + serializer=resolved_serializer, + placeholders=placeholders, + ) + with cassette: + yield cassette + + # Convenience: expose session on the recorder for use inside the context + @property + def session(self) -> Any: + return self._session diff --git a/packages/nimax/src/nimax/_cassette.py b/packages/nimax/src/nimax/_cassette.py new file mode 100644 index 00000000..47a2dbd1 --- /dev/null +++ b/packages/nimax/src/nimax/_cassette.py @@ -0,0 +1,495 @@ +""" +Core cassette machinery: record and replay niquests HTTP and WebSocket interactions. +""" + +from __future__ import annotations + +import threading +import time +from dataclasses import dataclass +from dataclasses import field +from datetime import datetime +from datetime import timezone +from http import HTTPStatus +from typing import TYPE_CHECKING +from typing import Any +from typing import Self +from unittest.mock import patch +from urllib.parse import urlparse + +import niquests +from niquests import AsyncSession +from niquests import Response +from niquests import Session +from niquests.structures import CaseInsensitiveDict + +from ._matchers import BUILTIN_MATCHERS +from ._matchers import BaseMatcher +from ._placeholders import Placeholder +from ._placeholders import apply_placeholders +from ._placeholders import restore_placeholders +from ._record_mode import RecordMode +from ._serializers import BaseSerializer +from ._serializers import JSONSerializer +from ._serializers import YAMLSerializer +from ._websocket import AsyncFakeExtension +from ._websocket import AsyncRecordingExtension +from ._websocket import FakeExtension +from ._websocket import RecordingExtension +from ._websocket import WebSocketSession + +if TYPE_CHECKING: + from pathlib import Path + +NIMAX_VERSION = "0.1.0" + +#: Supported matcher names. +SUPPORTED_MATCHERS: frozenset[str] = frozenset(BUILTIN_MATCHERS.keys()) + +#: Default matchers — path-only matching ignores dynamic query params. +DEFAULT_MATCH_ON: frozenset[str] = frozenset({"method", "path"}) + + +# ── Helpers ─────────────────────────────────────────────────────────────────── + + +def _is_ws(url: str) -> bool: + return url.startswith(("ws://", "wss://")) + + +def _normalize_status(status: Any) -> dict[str, Any]: + """Coerce status to ``{"code": int, "message": str}`` (handles legacy int form).""" + if isinstance(status, dict): + return status + code = int(status) + try: + message = HTTPStatus(code).phrase + except ValueError: + message = "" + return {"code": code, "message": message} + + +def _normalize_body(body: Any) -> dict[str, str] | None: + """Coerce body to ``{"string": "..."}`` (handles legacy bare-string form).""" + if body is None: + return None + if isinstance(body, dict): + return body + text = body if isinstance(body, str) else body.decode("utf-8", errors="replace") + return {"string": text} if text else None + + +def _normalize_headers(headers: dict[str, Any]) -> dict[str, list[str]]: + """Ensure all header values are lists of strings.""" + return {k: [v] if isinstance(v, str) else v for k, v in headers.items()} + + +def _migrate_interaction(entry: dict[str, Any]) -> dict[str, Any]: + """Upgrade a legacy cassette entry to the current format in place.""" + req = dict(entry["request"]) + resp = dict(entry["response"]) + + # request.url → request.uri + if "url" in req and "uri" not in req: + req["uri"] = req.pop("url") + req.setdefault("headers", {}) + req.setdefault("body", None) + + resp["status"] = _normalize_status(resp.get("status", 200)) + resp["body"] = _normalize_body(resp.get("body")) + resp["headers"] = _normalize_headers(resp.get("headers", {})) + resp.setdefault("protocol", None) + resp.setdefault("url", req.get("uri", "")) + + return { + "request": req, + "response": resp, + "recorded_at": entry.get("recorded_at", ""), + } + + +# ── Data model ──────────────────────────────────────────────────────────────── + + +@dataclass +class Interaction: + request: dict[str, Any] + response: dict[str, Any] + recorded_at: str + used: bool = field(default=False, compare=False) + + +# ── Fake raw (replay WebSocket) ─────────────────────────────────────────────── + + +class _FakeRaw: + """Minimal stand-in for urllib3's HTTPResponse exposing just the extension.""" + + def __init__(self, extension: Any) -> None: + self.extension = extension + + +# ── Cassette ────────────────────────────────────────────────────────────────── + + +class Cassette: + """ + Context manager that intercepts ``niquests.Session.send`` and + ``niquests.AsyncSession.send`` to record or replay HTTP and WebSocket + interactions. + + :param path: Path to the cassette file (extension determines serializer + when *serializer* is ``None``). + :param record_mode: :class:`RecordMode` controlling when recording is allowed. + Defaults to ``ONCE``. + :param match_on: Set of matcher names used to find stored interactions. + Defaults to ``{"method", "path"}``. + :param serializer: Explicit serializer instance. When ``None``, inferred from + *path* extension (``.yaml`` → YAML, otherwise JSON). + :param placeholders: List of :class:`Placeholder` objects for value sanitization. + :param record: Deprecated boolean shorthand. ``True`` → ``RecordMode.ALL``, + ``False`` → ``RecordMode.NONE``. + """ + + def __init__( # noqa: PLR0913 + self, + path: Path, + *, + record_mode: RecordMode = RecordMode.ONCE, + match_on: frozenset[str] = DEFAULT_MATCH_ON, + serializer: BaseSerializer | None = None, + placeholders: list[Placeholder] | None = None, + record: bool | None = None, + ) -> None: + # Backward-compat shim + if record is not None: + record_mode = RecordMode.ALL if record else RecordMode.NONE + + unknown = match_on - SUPPORTED_MATCHERS + if unknown: + msg = f"Unknown matcher(s): {unknown!r}. Supported: {SUPPORTED_MATCHERS!r}" + raise ValueError(msg) + + self._path = path + self._record_mode = record_mode + self._matchers: list[BaseMatcher] = [ + BUILTIN_MATCHERS[name]() for name in match_on + ] + self._placeholders: list[Placeholder] = placeholders or [] + self._serializer: BaseSerializer = serializer or self._infer_serializer() + + self._interactions: list[Interaction] = [] + self._ws_sessions: list[WebSocketSession] = [] + self._lock = threading.Lock() + self._patches: list[Any] = [] + + # Determine whether this run is a recording pass + if record_mode == RecordMode.NONE: + self._recording_active = False + elif record_mode == RecordMode.ONCE: + self._recording_active = not path.exists() + else: # ALL, NEW_EPISODES + self._recording_active = True + + if not self._recording_active: + self._load() + + # ── Serializer inference ────────────────────────────────────────────────── + + def _infer_serializer(self) -> BaseSerializer: + ext = self._path.suffix.lstrip(".") + if ext == "yaml": + return YAMLSerializer() + return JSONSerializer() + + # ── Persistence ─────────────────────────────────────────────────────────── + + def _load(self) -> None: + if not self._path.exists(): + return + raw = self._path.read_text(encoding="utf-8") + if self._placeholders: + raw = restore_placeholders(raw, self._placeholders) + + # Use YAML for .yaml files regardless of configured serializer + ext = self._path.suffix.lstrip(".") + if ext == "yaml": + data: dict[str, Any] = YAMLSerializer().deserialize(raw) + else: + data = self._serializer.deserialize(raw) + + # Support both legacy "interactions" key and current "http_interactions" + interactions_raw = data.get("http_interactions") or data.get("interactions", []) + for entry in interactions_raw: + migrated = _migrate_interaction(entry) + self._interactions.append( + Interaction( + request=migrated["request"], + response=migrated["response"], + recorded_at=migrated["recorded_at"], + ), + ) + + for ws_entry in data.get("websocket_sessions", []): + # Migrate legacy frame format (direction + payload only) + frames_raw = ws_entry.get("frames", []) + for f in frames_raw: + f.setdefault("type", "text") + f.setdefault("offset_ms", 0) + self._ws_sessions.append(WebSocketSession.from_dict(ws_entry)) + + def save(self) -> None: + if not self._recording_active: + return + + with self._lock: + http_interactions = [ + { + "request": i.request, + "response": i.response, + "recorded_at": i.recorded_at, + } + for i in self._interactions + ] + ws_sessions = [ws.to_dict() for ws in self._ws_sessions] + + data: dict[str, Any] = { + "nimax_version": NIMAX_VERSION, + "http_interactions": http_interactions, + "websocket_sessions": ws_sessions, + } + serialized = self._serializer.serialize(data) + if self._placeholders: + serialized = apply_placeholders(serialized, self._placeholders) + + self._path.parent.mkdir(parents=True, exist_ok=True) + self._path.write_text(serialized, encoding="utf-8") + + # ── Matching & recording ────────────────────────────────────────────────── + + def find_match(self, live_request: Any) -> Interaction | None: + """Return the first unused stored interaction that satisfies all matchers.""" + with self._lock: + for interaction in self._interactions: + if interaction.used: + continue + if all( + m.match(interaction.request, live_request) for m in self._matchers + ): + interaction.used = True + return interaction + return None + + def save_interaction(self, method: str, url: str, resp: Response) -> None: + """Append a recorded HTTP interaction.""" + body_str = resp.text if resp._content else "" + try: + message = HTTPStatus(resp.status_code).phrase + except ValueError: + message = "" + headers = _normalize_headers(dict(resp.headers)) + now = datetime.now(tz=timezone.utc).isoformat() + interaction = Interaction( + request={"method": method, "uri": url, "headers": {}, "body": None}, + response={ + "status": {"code": resp.status_code, "message": message}, + "headers": headers, + "body": {"string": body_str} if body_str else None, + "protocol": None, + "url": url, + }, + recorded_at=now, + ) + with self._lock: + self._interactions.append(interaction) + + def record_ws(self, url: str) -> tuple[WebSocketSession, float]: + """Register a new WS session and return it with the monotonic start time.""" + now = datetime.now(tz=timezone.utc).isoformat() + session = WebSocketSession( + uri=url, + handshake_recorded_at=now, + protocol=None, + ) + with self._lock: + self._ws_sessions.append(session) + return session, time.monotonic() + + def find_ws_session(self, url: str) -> WebSocketSession | None: + """Return the first unclaimed WS session matching *url* by path.""" + parsed_path = urlparse(url).path + with self._lock: + for ws in self._ws_sessions: + if urlparse(ws.uri).path == parsed_path and ws.claim(): + return ws + return None + + # ── Response construction ───────────────────────────────────────────────── + + def _build_response(self, interaction: Interaction, request: Any) -> Response: + resp_data = interaction.response + resp = Response() + resp.status_code = _normalize_status(resp_data["status"])["code"] + headers_raw = resp_data.get("headers", {}) + resp.headers = CaseInsensitiveDict( + {k: (v[0] if isinstance(v, list) else v) for k, v in headers_raw.items()}, + ) + body_data = resp_data.get("body") + if body_data is None: + resp._content = b"" + elif isinstance(body_data, dict): + resp._content = body_data.get("string", "").encode("utf-8") + else: + resp._content = ( + body_data.encode("utf-8") + if isinstance(body_data, str) + else bytes(body_data) + ) + resp._content_consumed = True + resp.encoding = "utf-8" + resp.url = resp_data.get("url", "") + resp.request = request + return resp + + def _ws_response( + self, + url: str, + ws_session: WebSocketSession, + *, + is_async: bool, + ) -> Response: + ext: Any = ( + AsyncFakeExtension(ws_session) if is_async else FakeExtension(ws_session) + ) + resp = Response() + resp.status_code = 101 + resp._content = b"" + resp._content_consumed = True + resp.headers = CaseInsensitiveDict({"Upgrade": "websocket"}) + resp.encoding = "utf-8" + resp.url = url + resp.raw = _FakeRaw(ext) + return resp + + # ── Send interceptors ───────────────────────────────────────────────────── + + def _make_sync_send(self, original: Any) -> Any: + cassette = self + + def send(session_self: Session, request: Any, **kwargs: Any) -> Response: + url = request.url or "" + method = request.method or "GET" + + if _is_ws(url): + if cassette._recording_active: + resp = original(session_self, request, **kwargs) + if resp.extension is not None: + ws_session, start = cassette.record_ws(url) + resp.raw._extension = RecordingExtension( + resp.extension, + ws_session, + start, + ) + return resp + ws_session = cassette.find_ws_session(url) + if ws_session is None: + msg = ( + f"No recorded WS session for {url!r}" + " — re-run with --record to update cassettes" + ) + raise KeyError(msg) + return cassette._ws_response(url, ws_session, is_async=False) + + match = cassette.find_match(request) + if match is not None: + return cassette._build_response(match, request) + + if cassette._recording_active: + resp = original(session_self, request, **kwargs) + cassette.save_interaction(method, url, resp) + return resp + + msg = ( + f"No recorded response for {method} {url!r}" + " — re-run with --record to update cassettes" + ) + raise KeyError(msg) + + return send + + def _make_async_send(self, original: Any) -> Any: + cassette = self + + async def send( + session_self: AsyncSession, + request: Any, + **kwargs: Any, + ) -> Response: + url = request.url or "" + method = request.method or "GET" + + if _is_ws(url): + if cassette._recording_active: + resp = await original(session_self, request, **kwargs) + if resp.extension is not None: + ws_session, start = cassette.record_ws(url) + resp.raw._extension = AsyncRecordingExtension( + resp.extension, + ws_session, + start, + ) + return resp + ws_session = cassette.find_ws_session(url) + if ws_session is None: + msg = ( + f"No recorded WS session for {url!r}" + " — re-run with --record to update cassettes" + ) + raise KeyError(msg) + return cassette._ws_response(url, ws_session, is_async=True) + + match = cassette.find_match(request) + if match is not None: + return cassette._build_response(match, request) + + if cassette._recording_active: + resp = await original(session_self, request, **kwargs) + cassette.save_interaction(method, url, resp) + return resp + + msg = ( + f"No recorded response for {method} {url!r}" + " — re-run with --record to update cassettes" + ) + raise KeyError(msg) + + return send + + # ── Context manager ─────────────────────────────────────────────────────── + + def _start_patching(self) -> None: + sync_orig = niquests.Session.send + async_orig = niquests.AsyncSession.send + self._patches = [ + patch.object(niquests.Session, "send", self._make_sync_send(sync_orig)), + patch.object( + niquests.AsyncSession, + "send", + self._make_async_send(async_orig), + ), + ] + for p in self._patches: + p.start() + + def _stop_patching(self) -> None: + for p in self._patches: + p.stop() + self._patches = [] + + def __enter__(self) -> Self: + self._start_patching() + return self + + def __exit__(self, *_: object) -> None: + self._stop_patching() + self.save() diff --git a/packages/nimax/src/nimax/_matchers.py b/packages/nimax/src/nimax/_matchers.py new file mode 100644 index 00000000..5f0100ad --- /dev/null +++ b/packages/nimax/src/nimax/_matchers.py @@ -0,0 +1,125 @@ +"""Matcher ABCs and built-in matcher implementations.""" + +from __future__ import annotations + +from abc import ABC +from abc import abstractmethod +from typing import Any +from urllib.parse import parse_qs +from urllib.parse import urlparse + + +class BaseMatcher(ABC): + """Abstract base for all request matchers. + + A matcher compares a recorded request dict (from the cassette) with a live + ``PreparedRequest`` and returns ``True`` if they are considered equivalent + for the component this matcher is responsible for. + """ + + name: str + + @abstractmethod + def match(self, recorded: dict[str, Any], live: Any) -> bool: + """Return True if *live* matches the *recorded* request for this component.""" + + +class MethodMatcher(BaseMatcher): + name = "method" + + def match(self, recorded: dict[str, Any], live: Any) -> bool: + return recorded.get("method", "").upper() == (live.method or "").upper() + + +class URIMatcher(BaseMatcher): + """Exact URI match including query string.""" + + name = "uri" + + def match(self, recorded: dict[str, Any], live: Any) -> bool: + return recorded.get("uri", "") == (live.url or "") + + +class HostMatcher(BaseMatcher): + name = "host" + + def match(self, recorded: dict[str, Any], live: Any) -> bool: + recorded_host = urlparse(recorded.get("uri", "")).netloc + live_host = urlparse(live.url or "").netloc + return recorded_host == live_host + + +class PathMatcher(BaseMatcher): + name = "path" + + def match(self, recorded: dict[str, Any], live: Any) -> bool: + recorded_path = urlparse(recorded.get("uri", "")).path + live_path = urlparse(live.url or "").path + return recorded_path == live_path + + +class QueryMatcher(BaseMatcher): + """Order-insensitive query-string comparison.""" + + name = "query" + + def match(self, recorded: dict[str, Any], live: Any) -> bool: + recorded_q = parse_qs(urlparse(recorded.get("uri", "")).query) + live_q = parse_qs(urlparse(live.url or "").query) + return recorded_q == live_q + + +class HeadersMatcher(BaseMatcher): + """Checks that all recorded request headers are present in the live request.""" + + name = "headers" + + def match(self, recorded: dict[str, Any], live: Any) -> bool: + recorded_headers: dict[str, list[str]] = recorded.get("headers") or {} + live_headers = live.headers or {} + for key, values in recorded_headers.items(): + live_val = live_headers.get(key) + if live_val is None: + return False + expected = values[0] if isinstance(values, list) else values + if live_val != expected: + return False + return True + + +class BodyMatcher(BaseMatcher): + name = "body" + + def match(self, recorded: dict[str, Any], live: Any) -> bool: + recorded_body = recorded.get("body") + live_body = live.body + if isinstance(live_body, bytes): + live_body = live_body.decode("utf-8", errors="replace") + return recorded_body == live_body + + +class ProtocolMatcher(BaseMatcher): + """Match the negotiated HTTP protocol (HTTP/1.1, HTTP/2, HTTP/3).""" + + name = "protocol" + + def match(self, recorded: dict[str, Any], live: Any) -> bool: # noqa: ARG002 + # Protocol is not available on the PreparedRequest; always pass at + # match time and validate post-response in the adapter layer. + return True + + +# Registry of all built-in matchers keyed by name. +BUILTIN_MATCHERS: dict[str, type[BaseMatcher]] = { + m.name: m # type: ignore[attr-defined] + for m in ( + MethodMatcher, + URIMatcher, + HostMatcher, + PathMatcher, + QueryMatcher, + HeadersMatcher, + BodyMatcher, + ProtocolMatcher, + ) +} diff --git a/packages/nimax/src/nimax/_placeholders.py b/packages/nimax/src/nimax/_placeholders.py new file mode 100644 index 00000000..9ae5dfef --- /dev/null +++ b/packages/nimax/src/nimax/_placeholders.py @@ -0,0 +1,31 @@ +"""Placeholder / sanitization support for cassette sensitive values.""" + +from __future__ import annotations + +from dataclasses import dataclass + + +@dataclass(frozen=True) +class Placeholder: + """Maps a real value to a redacted placeholder stored in the cassette. + + :param placeholder: The token written to the cassette (e.g. ``""``). + :param replace: The real value present in requests/responses. + """ + + placeholder: str + replace: str + + +def apply_placeholders(text: str, placeholders: list[Placeholder]) -> str: + """Replace real values with placeholder tokens before writing a cassette.""" + for p in placeholders: + text = text.replace(p.replace, p.placeholder) + return text + + +def restore_placeholders(text: str, placeholders: list[Placeholder]) -> str: + """Replace placeholder tokens with real values after reading a cassette.""" + for p in placeholders: + text = text.replace(p.placeholder, p.replace) + return text diff --git a/packages/nimax/src/nimax/_record_mode.py b/packages/nimax/src/nimax/_record_mode.py new file mode 100644 index 00000000..d333ea8b --- /dev/null +++ b/packages/nimax/src/nimax/_record_mode.py @@ -0,0 +1,20 @@ +"""RecordMode enum for nimax cassette recording behaviour.""" + +from __future__ import annotations + +from enum import Enum + + +class RecordMode(str, Enum): + """Controls when cassette interactions are recorded vs replayed. + + NONE — Never record; raise on any unmatched request. + ONCE — Record if cassette is absent; replay (and error on miss) if present. + NEW_EPISODES — Replay matched interactions; record unmatched ones. + ALL — Re-record every interaction, replacing the cassette each run. + """ + + NONE = "none" + ONCE = "once" + NEW_EPISODES = "new_episodes" + ALL = "all" diff --git a/packages/nimax/src/nimax/_serializers.py b/packages/nimax/src/nimax/_serializers.py new file mode 100644 index 00000000..76a768d9 --- /dev/null +++ b/packages/nimax/src/nimax/_serializers.py @@ -0,0 +1,55 @@ +"""Serializer ABCs and built-in serializer implementations.""" + +from __future__ import annotations + +import json +from abc import ABC +from abc import abstractmethod + +import yaml + + +class BaseSerializer(ABC): + """Abstract base for cassette serializers.""" + + extension: str + + @abstractmethod + def serialize(self, data: dict) -> str: + """Convert cassette data dict to a string for writing to disk.""" + + @abstractmethod + def deserialize(self, raw: str) -> dict: + """Parse a cassette file string back to a data dict.""" + + +class JSONSerializer(BaseSerializer): + extension = "json" + + def serialize(self, data: dict) -> str: + return json.dumps(data, indent=2, ensure_ascii=False) + + def deserialize(self, raw: str) -> dict: + return json.loads(raw) + + +class YAMLSerializer(BaseSerializer): + extension = "yaml" + + def serialize(self, data: dict) -> str: + return yaml.dump( + data, + default_flow_style=False, + allow_unicode=True, + sort_keys=False, + ) + + def deserialize(self, raw: str) -> dict: + return yaml.safe_load(raw) or {} + + +# Registry of all built-in serializers keyed by name / extension. +BUILTIN_SERIALIZERS: dict[str, type[BaseSerializer]] = { + "json": JSONSerializer, + "yaml": YAMLSerializer, +} diff --git a/packages/nimax/src/nimax/_websocket.py b/packages/nimax/src/nimax/_websocket.py new file mode 100644 index 00000000..6033ec63 --- /dev/null +++ b/packages/nimax/src/nimax/_websocket.py @@ -0,0 +1,218 @@ +"""WebSocket frame model and extension proxy classes.""" + +from __future__ import annotations + +import time +from dataclasses import dataclass +from dataclasses import field +from typing import Any + + +@dataclass +class Frame: + """A single recorded WebSocket frame.""" + + direction: str # "send" | "recv" + type: str # "text" | "binary" | "ping" | "pong" | "close" + payload: str | None + offset_ms: int = 0 + close_code: int | None = None + close_reason: str | None = None + + def to_dict(self) -> dict[str, Any]: + d: dict[str, Any] = { + "direction": self.direction, + "type": self.type, + "payload": self.payload, + "offset_ms": self.offset_ms, + } + if self.close_code is not None: + d["close_code"] = self.close_code + if self.close_reason is not None: + d["close_reason"] = self.close_reason + return d + + @classmethod + def from_dict(cls, d: dict[str, Any]) -> Frame: + return cls( + direction=d["direction"], + type=d.get("type", "text"), + payload=d.get("payload"), + offset_ms=d.get("offset_ms", 0), + close_code=d.get("close_code"), + close_reason=d.get("close_reason"), + ) + + +@dataclass +class WebSocketSession: + """Recorded WebSocket session: metadata + ordered frame sequence.""" + + uri: str + handshake_recorded_at: str + protocol: str | None + frames: list[Frame] = field(default_factory=list) + _cursor: int = field(default=0, init=False, repr=False) + # True once a replay consumer has claimed this session so subsequent + # connections to the same URI get the next unclaimed session. + _claimed: bool = field(default=False, init=False, repr=False) + + def claim(self) -> bool: + """Mark session as claimed. Returns True if it was unclaimed.""" + if self._claimed: + return False + self._claimed = True + return True + + def next_recv_frame(self) -> Frame | None: + """Return the next unplayed recv-direction frame, advancing the cursor.""" + while self._cursor < len(self.frames): + frame = self.frames[self._cursor] + self._cursor += 1 + if frame.direction == "recv": + return frame + return None + + def to_dict(self) -> dict[str, Any]: + return { + "uri": self.uri, + "handshake_recorded_at": self.handshake_recorded_at, + "protocol": self.protocol, + "frames": [f.to_dict() for f in self.frames], + } + + @classmethod + def from_dict(cls, d: dict[str, Any]) -> WebSocketSession: + # "url" is the legacy key; "uri" is the current format + uri = d.get("uri") or d.get("url", "") + session = cls( + uri=uri, + handshake_recorded_at=d.get("handshake_recorded_at", ""), + protocol=d.get("protocol"), + ) + session.frames = [Frame.from_dict(f) for f in d.get("frames", [])] + return session + + +# ── Replay proxies ──────────────────────────────────────────────────────────── + + +class FakeExtension: + """Replays pre-recorded WebSocket recv frames for sync clients.""" + + def __init__(self, session: WebSocketSession) -> None: + self._session = session + + def next_payload(self) -> str | None: + frame = self._session.next_recv_frame() + return frame.payload if frame is not None else None + + def send_payload(self, data: str) -> None: + pass + + def close(self) -> None: + pass + + +class AsyncFakeExtension: + """Replays pre-recorded WebSocket recv frames for async clients.""" + + def __init__(self, session: WebSocketSession) -> None: + self._session = session + + async def next_payload(self) -> str | None: + frame = self._session.next_recv_frame() + return frame.payload if frame is not None else None + + async def send_payload(self, data: str) -> None: + pass + + async def close(self) -> None: + pass + + +# ── Recording proxies ───────────────────────────────────────────────────────── + + +class RecordingExtension: + """Wraps a live sync WS extension, recording every frame into *session*.""" + + def __init__(self, real: Any, session: WebSocketSession, start: float) -> None: + self._real = real + self._session = session + self._start = start + + def _elapsed_ms(self) -> int: + return int((time.monotonic() - self._start) * 1000) + + def next_payload(self) -> str | None: + raw = self._real.next_payload() + if raw is not None: + payload = ( + raw if isinstance(raw, str) else raw.decode("utf-8", errors="replace") + ) + self._session.frames.append( + Frame( + direction="recv", + type="text", + payload=payload, + offset_ms=self._elapsed_ms(), + ), + ) + return raw + + def send_payload(self, data: str) -> None: + self._session.frames.append( + Frame( + direction="send", + type="text", + payload=data, + offset_ms=self._elapsed_ms(), + ), + ) + self._real.send_payload(data) + + def close(self) -> None: + self._real.close() + + +class AsyncRecordingExtension: + """Wraps a live async WS extension, recording every frame into *session*.""" + + def __init__(self, real: Any, session: WebSocketSession, start: float) -> None: + self._real = real + self._session = session + self._start = start + + def _elapsed_ms(self) -> int: + return int((time.monotonic() - self._start) * 1000) + + async def next_payload(self) -> str | None: + raw = await self._real.next_payload() + if raw is not None: + payload = ( + raw if isinstance(raw, str) else raw.decode("utf-8", errors="replace") + ) + self._session.frames.append( + Frame( + direction="recv", + type="text", + payload=payload, + offset_ms=self._elapsed_ms(), + ), + ) + return raw + + async def send_payload(self, data: str) -> None: + self._session.frames.append( + Frame( + direction="send", + type="text", + payload=data, + offset_ms=self._elapsed_ms(), + ), + ) + await self._real.send_payload(data) + + async def close(self) -> None: + await self._real.close() diff --git a/packages/nimax/src/nimax/plugin.py b/packages/nimax/src/nimax/plugin.py new file mode 100644 index 00000000..61f946fa --- /dev/null +++ b/packages/nimax/src/nimax/plugin.py @@ -0,0 +1,175 @@ +"""pytest plugin entry point for nimax.""" + +from __future__ import annotations + +from pathlib import Path # noqa: TC003 +from typing import TYPE_CHECKING + +import niquests +import pytest +import pytest_asyncio +import tomllib + +if TYPE_CHECKING: + from collections.abc import AsyncGenerator + from collections.abc import Generator + +from ._adapter import NimaxRecorder +from ._cassette import DEFAULT_MATCH_ON +from ._cassette import SUPPORTED_MATCHERS +from ._record_mode import RecordMode +from ._serializers import JSONSerializer + +# ── pyproject.toml config ───────────────────────────────────────────────────── + + +def _load_nimax_config(config: pytest.Config) -> dict: + """Read ``[tool.nimax]`` from the project's ``pyproject.toml``, if present.""" + pyproject = config.rootpath / "pyproject.toml" + if not pyproject.exists(): + return {} + with pyproject.open("rb") as fh: + data = tomllib.load(fh) + return data.get("tool", {}).get("nimax", {}) + + +# ── CLI options ─────────────────────────────────────────────────────────────── + + +def pytest_addoption(parser: pytest.Parser) -> None: + group = parser.getgroup("niquests-cassettes") + group.addoption( + "--record", + action="store_true", + default=False, + help="Shorthand for --record-mode=all: record cassettes from live traffic.", + ) + group.addoption( + "--record-mode", + default=None, + choices=[m.value for m in RecordMode], + help=( + "Cassette record mode. One of: " + + ", ".join(m.value for m in RecordMode) + + ". Default: once" + ), + ) + group.addoption( + "--cassette-dir", + default=None, + help="Directory to store cassette files (relative to rootdir). Default: cassettes/", + ) + default_matchers = ",".join(sorted(DEFAULT_MATCH_ON)) + supported = ", ".join(sorted(SUPPORTED_MATCHERS)) + group.addoption( + "--cassette-match-on", + default=None, + help=( + f"Comma-separated request components used to match cassette entries. " + f"Supported: {supported}. Default: {default_matchers}" + ), + ) + + +# ── Shared config resolution ────────────────────────────────────────────────── + + +def _resolve_config(request: pytest.FixtureRequest) -> dict: + """Merge pyproject.toml config with CLI options (CLI wins).""" + toml_cfg = _load_nimax_config(request.config) + + # Record mode + if request.config.getoption("--record"): + record_mode = RecordMode.ALL + elif request.config.getoption("--record-mode") is not None: + record_mode = RecordMode(request.config.getoption("--record-mode")) + elif "record_mode" in toml_cfg: + record_mode = RecordMode(toml_cfg["record_mode"]) + else: + record_mode = RecordMode.ONCE + + # Cassette directory + if request.config.getoption("--cassette-dir") is not None: + cassette_dir_str: str = request.config.getoption("--cassette-dir") + else: + cassette_dir_str = toml_cfg.get("cassette_library_dir", "cassettes") + + # Matchers + if request.config.getoption("--cassette-match-on") is not None: + raw: str = request.config.getoption("--cassette-match-on") + match_on = frozenset(m.strip() for m in raw.split(",") if m.strip()) + elif "match_on" in toml_cfg: + cfg_match = toml_cfg["match_on"] + if isinstance(cfg_match, list): + match_on = frozenset(cfg_match) + else: + match_on = frozenset( + m.strip() for m in str(cfg_match).split(",") if m.strip() + ) + else: + match_on = DEFAULT_MATCH_ON + + return { + "record_mode": record_mode, + "cassette_dir": request.config.rootpath / cassette_dir_str, + "match_on": match_on, + } + + +# ── Per-test fixtures ───────────────────────────────────────────────────────── + + +def _test_cassette_path( + request: pytest.FixtureRequest, + cassette_dir: Path, +) -> Path: + """Build a per-test cassette path: ``{cassette_dir}/{module}/{test}.json``.""" + module = request.path.stem + test_name = request.node.name + # Sanitise parameterised-test brackets for filesystem safety + safe_name = test_name.replace("[", "_").replace("]", "").replace("/", "_") + return cassette_dir / module / f"{safe_name}.json" + + +@pytest.fixture +def nimax_session( + request: pytest.FixtureRequest, +) -> Generator[niquests.Session, None, None]: + """Per-test fixture: a ``niquests.Session`` backed by its own cassette. + + Cassette is named ``{cassette_dir}/{module}/{test}.json``. + """ + cfg = _resolve_config(request) + path = _test_cassette_path(request, cfg["cassette_dir"]) + session = niquests.Session() + recorder = NimaxRecorder(session) + with recorder.use_cassette( + path.stem, + cassette_dir=path.parent, + record_mode=cfg["record_mode"], + match_on=cfg["match_on"], + serializer=JSONSerializer(), + ): + yield session + + +@pytest_asyncio.fixture +async def nimax_async_session( + request: pytest.FixtureRequest, +) -> AsyncGenerator[niquests.AsyncSession, None]: + """Per-test fixture: a ``niquests.AsyncSession`` backed by its own cassette. + + Cassette is named ``{cassette_dir}/{module}/{test}.json``. + """ + cfg = _resolve_config(request) + path = _test_cassette_path(request, cfg["cassette_dir"]) + session = niquests.AsyncSession() + recorder = NimaxRecorder(session) + with recorder.use_cassette( + path.stem, + cassette_dir=path.parent, + record_mode=cfg["record_mode"], + match_on=cfg["match_on"], + serializer=JSONSerializer(), + ): + yield session diff --git a/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/__init__.py b/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/__init__.py deleted file mode 100644 index 00b35437..00000000 --- a/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -"""pytest-niquests-cassettes: record and replay niquests HTTP/WebSocket interactions.""" - -from ._cassette import Cassette - -__all__ = ["Cassette"] diff --git a/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/_cassette.py b/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/_cassette.py deleted file mode 100644 index adf46ca9..00000000 --- a/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/_cassette.py +++ /dev/null @@ -1,381 +0,0 @@ -""" -Core cassette machinery: record and replay niquests HTTP and WebSocket interactions. -""" - -from __future__ import annotations - -from collections import defaultdict -from typing import TYPE_CHECKING -from typing import Any -from typing import Self - -if TYPE_CHECKING: - from pathlib import Path -from unittest.mock import patch -from urllib.parse import urlparse - -import niquests -import yaml -from niquests import AsyncSession -from niquests import Response -from niquests import Session -from niquests.structures import CaseInsensitiveDict - -# ── URL utilities ──────────────────────────────────────────────────────────── - -#: Supported matcher names and the URL component each one examines. -SUPPORTED_MATCHERS: frozenset[str] = frozenset({"method", "host", "path", "query"}) - -#: Default matchers — path-only matching ignores dynamic query params (timestamps, etc.) -DEFAULT_MATCH_ON: frozenset[str] = frozenset({"method", "path"}) - - -def _http_key( - method: str, - url: str, - match_on: frozenset[str] = DEFAULT_MATCH_ON, -) -> str: - """Build a cassette lookup key from the parts of the request selected by *match_on*.""" - parsed = urlparse(url) - parts: list[str] = [] - if "method" in match_on: - parts.append(method.upper()) - if "host" in match_on: - parts.append(parsed.netloc) - if "path" in match_on: - parts.append(parsed.path) - if "query" in match_on and parsed.query: - parts.append(f"?{parsed.query}") - return " ".join(parts) - - -def _ws_key(url: str) -> str: - return f"WS {urlparse(url).path}" - - -def _is_ws(url: str) -> bool: - return url.startswith(("ws://", "wss://")) - - -# ── Fake extensions (replay mode) ──────────────────────────────────────────── - - -class FakeExtension: - """Replays pre-recorded WebSocket recv frames for sync clients.""" - - def __init__(self, frames: list[dict[str, str]]) -> None: - self._payloads = [f["payload"] for f in frames if f["direction"] == "recv"] - self._idx = 0 - - def next_payload(self) -> str | None: - if self._idx >= len(self._payloads): - return None - payload = self._payloads[self._idx] - self._idx += 1 - return payload - - def send_payload(self, data: str) -> None: - pass - - def close(self) -> None: - pass - - -class AsyncFakeExtension: - """Replays pre-recorded WebSocket recv frames for async clients.""" - - def __init__(self, frames: list[dict[str, str]]) -> None: - self._payloads = [f["payload"] for f in frames if f["direction"] == "recv"] - self._idx = 0 - - async def next_payload(self) -> str | None: - if self._idx >= len(self._payloads): - return None - payload = self._payloads[self._idx] - self._idx += 1 - return payload - - async def send_payload(self, data: str) -> None: - pass - - async def close(self) -> None: - pass - - -# ── Recording extensions (record mode) ─────────────────────────────────────── - - -class RecordingExtension: - """Wraps a live sync WS extension, appending every frame to a shared list.""" - - def __init__(self, real: Any, frames: list[dict[str, str]]) -> None: - self._real = real - self._frames = frames - - def next_payload(self) -> str | None: - raw = self._real.next_payload() - if raw is not None: - decoded = raw if isinstance(raw, str) else raw.decode() - self._frames.append({"direction": "recv", "payload": decoded}) - return raw - - def send_payload(self, data: str) -> None: - self._frames.append({"direction": "send", "payload": data}) - self._real.send_payload(data) - - def close(self) -> None: - self._real.close() - - -class AsyncRecordingExtension: - """Wraps a live async WS extension, appending every frame to a shared list.""" - - def __init__(self, real: Any, frames: list[dict[str, str]]) -> None: - self._real = real - self._frames = frames - - async def next_payload(self) -> str | None: - raw = await self._real.next_payload() - if raw is not None: - decoded = raw if isinstance(raw, str) else raw.decode() - self._frames.append({"direction": "recv", "payload": decoded}) - return raw - - async def send_payload(self, data: str) -> None: - self._frames.append({"direction": "send", "payload": data}) - await self._real.send_payload(data) - - async def close(self) -> None: - await self._real.close() - - -# ── Response construction ───────────────────────────────────────────────────── - - -class _FakeRaw: - """Minimal stand-in for urllib3's HTTPResponse, exposing just the extension attribute.""" - - def __init__(self, extension: Any) -> None: - self.extension = extension - - -def _build_response(recorded: dict[str, Any]) -> Response: - resp = Response() - resp.status_code = recorded["status"] - resp.headers = CaseInsensitiveDict(recorded.get("headers", {})) - body = recorded.get("body") or "" - resp._content = body.encode("utf-8") if isinstance(body, str) else bytes(body) - resp._content_consumed = True - resp.encoding = "utf-8" - resp.url = recorded.get("url", "") - return resp - - -def _ws_response(url: str, frames: list[dict[str, str]], *, is_async: bool) -> Response: - ext = AsyncFakeExtension(frames) if is_async else FakeExtension(frames) - resp = Response() - resp.status_code = 101 - resp._content = b"" - resp._content_consumed = True - resp.headers = CaseInsensitiveDict({"Upgrade": "websocket"}) - resp.encoding = "utf-8" - resp.url = url - resp.raw = _FakeRaw(ext) - return resp - - -# ── Cassette ────────────────────────────────────────────────────────────────── - - -class Cassette: - """ - Context manager that intercepts ``niquests.Session.send`` and - ``niquests.AsyncSession.send`` to record or replay HTTP and WebSocket - interactions. - - **Record mode** (``record=True``): calls pass through to the real network; - each interaction is captured and written to ``path`` on exit. - - **Replay mode** (default): responses are returned from the cassette file - without any network access. Responses are queued per the key derived from - ``match_on`` and popped FIFO, so repeated calls to the same endpoint work. - - :param match_on: Set of request components used to build the lookup key. - Supported values: ``"method"``, ``"host"``, ``"path"``, ``"query"``. - Defaults to ``{"method", "path"}``, which ignores dynamic query params - such as timestamps or pagination tokens. - """ - - def __init__( - self, - path: Path, - *, - record: bool = False, - match_on: frozenset[str] = DEFAULT_MATCH_ON, - ) -> None: - unknown = match_on - SUPPORTED_MATCHERS - if unknown: - msg = f"Unknown matcher(s): {unknown!r}. Supported: {SUPPORTED_MATCHERS!r}" - raise ValueError(msg) - self._path = path - self._record = record - self._match_on = match_on - # recorded[key] = list of raw interaction dicts (populated in record mode) - self._recorded: dict[str, list[Any]] = defaultdict(list) - # queues[key] = FIFO list of pre-loaded response dicts (replay mode) - self._queues: dict[str, list[Any]] = defaultdict(list) - self._patches: list[Any] = [] - - if not record: - self._load() - - # ── Persistence ────────────────────────────────────────────────────────── - - def _load(self) -> None: - if not self._path.exists(): - return - data = yaml.safe_load(self._path.read_text()) or {} - for entry in data.get("interactions", []): - # Cassettes store the full URL so all matchers work at load time. - key = _http_key( - entry["request"]["method"], - entry["request"]["url"], - self._match_on, - ) - self._queues[key].append(entry["response"]) - for ws in data.get("websocket_sessions", []): - key = _ws_key(ws["url"]) - self._queues[key].append(ws["frames"]) - - def save(self) -> None: - if not self._record: - return - interactions = [] - ws_sessions = [] - for key, entries in self._recorded.items(): - for entry in entries: - if key.startswith("WS "): - ws_sessions.append(entry) - else: - interactions.append(entry) - self._path.parent.mkdir(parents=True, exist_ok=True) - self._path.write_text( - yaml.dump( - {"interactions": interactions, "websocket_sessions": ws_sessions}, - default_flow_style=False, - allow_unicode=True, - sort_keys=False, - ), - ) - - # ── Internal helpers ────────────────────────────────────────────────────── - - def _record_http(self, method: str, url: str, resp: Response) -> None: - body = resp.text if resp._content else "" - # Store the full URL (not just path) so all match_on components are - # available when the cassette is loaded back for replay. - self._recorded[_http_key(method, url, self._match_on)].append( - { - "request": {"method": method, "url": url}, - "response": { - "status": resp.status_code, - "headers": dict(resp.headers), - "body": body, - "url": url, - }, - }, - ) - - def _record_ws(self, url: str) -> list[dict[str, str]]: - """Register a new WS session recording and return its mutable frame list.""" - frames: list[dict[str, str]] = [] - self._recorded[_ws_key(url)].append({"url": url, "frames": frames}) - return frames - - def _replay_http(self, method: str, url: str, request: Any) -> Response: - key = _http_key(method, url, self._match_on) - if not self._queues.get(key): - msg = f"No recorded response for {key!r} — re-run with --record to update cassettes" - raise KeyError(msg) - resp = _build_response(self._queues[key].pop(0)) - resp.request = request - return resp - - def _replay_ws(self, url: str, *, is_async: bool) -> Response: - key = _ws_key(url) - if not self._queues.get(key): - msg = f"No recorded WS session for {key!r} — re-run with --record to update cassettes" - raise KeyError(msg) - return _ws_response(url, self._queues[key].pop(0), is_async=is_async) - - # ── Send interceptors ───────────────────────────────────────────────────── - - def _make_sync_send(self, original: Any) -> Any: - cassette = self - - def send(session_self: Session, request: Any, **kwargs: Any) -> Response: - url = request.url or "" - method = request.method or "GET" - if cassette._record: - resp = original(session_self, request, **kwargs) - if _is_ws(url) and resp.extension is not None: - resp.raw._extension = RecordingExtension( - resp.extension, - cassette._record_ws(url), - ) - else: - cassette._record_http(method, url, resp) - return resp - if _is_ws(url): - return cassette._replay_ws(url, is_async=False) - return cassette._replay_http(method, url, request) - - return send - - def _make_async_send(self, original: Any) -> Any: - cassette = self - - async def send( - session_self: AsyncSession, - request: Any, - **kwargs: Any, - ) -> Response: - url = request.url or "" - method = request.method or "GET" - if cassette._record: - resp = await original(session_self, request, **kwargs) - if _is_ws(url) and resp.extension is not None: - resp.raw._extension = AsyncRecordingExtension( - resp.extension, - cassette._record_ws(url), - ) - else: - cassette._record_http(method, url, resp) - return resp - if _is_ws(url): - return cassette._replay_ws(url, is_async=True) - return cassette._replay_http(method, url, request) - - return send - - # ── Context manager ─────────────────────────────────────────────────────── - - def __enter__(self) -> Self: - sync_orig = niquests.Session.send - async_orig = niquests.AsyncSession.send - self._patches = [ - patch.object(niquests.Session, "send", self._make_sync_send(sync_orig)), - patch.object( - niquests.AsyncSession, - "send", - self._make_async_send(async_orig), - ), - ] - for p in self._patches: - p.start() - return self - - def __exit__(self, *_: object) -> None: - for p in self._patches: - p.stop() - self.save() diff --git a/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/plugin.py b/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/plugin.py deleted file mode 100644 index 4919a9f0..00000000 --- a/packages/pytest-niquests-cassettes/src/pytest_niquests_cassettes/plugin.py +++ /dev/null @@ -1,69 +0,0 @@ -"""pytest plugin entry point for pytest-niquests-cassettes.""" - -from __future__ import annotations - -from pathlib import Path -from typing import TYPE_CHECKING - -import pytest - -if TYPE_CHECKING: - from collections.abc import Generator - -from ._cassette import DEFAULT_MATCH_ON -from ._cassette import SUPPORTED_MATCHERS -from ._cassette import Cassette - - -def pytest_addoption(parser: pytest.Parser) -> None: - group = parser.getgroup("niquests-cassettes") - group.addoption( - "--record", - action="store_true", - default=False, - help="Record cassettes from live network traffic instead of replaying stored ones.", - ) - group.addoption( - "--cassette-dir", - default="cassettes", - help="Directory to store cassette files (relative to rootdir). Default: cassettes/", - ) - group.addoption( - "--cassette-file", - default="session", - help="Cassette filename without extension. Default: session", - ) - default_matchers = ",".join(sorted(DEFAULT_MATCH_ON)) - supported = ", ".join(sorted(SUPPORTED_MATCHERS)) - group.addoption( - "--cassette-match-on", - default=default_matchers, - help=( - f"Comma-separated request components used to match cassette entries. " - f"Supported: {supported}. Default: {default_matchers}" - ), - ) - - -@pytest.fixture(scope="session", autouse=True) -def cassette(request: pytest.FixtureRequest) -> Generator[Cassette, None, None]: - """ - Session-scoped fixture that activates cassette record/replay for all - niquests HTTP and WebSocket traffic. - - Pass ``--record`` on the pytest command line to record a fresh cassette - from a live server. Without ``--record``, traffic is replayed from the - existing cassette file. - """ - record: bool = request.config.getoption("--record") - cassette_dir = Path(request.config.rootdir) / request.config.getoption( - "--cassette-dir", - ) - cassette_file = request.config.getoption("--cassette-file") - path = cassette_dir / f"{cassette_file}.yaml" - - raw_match_on: str = request.config.getoption("--cassette-match-on") - match_on = frozenset(m.strip() for m in raw_match_on.split(",") if m.strip()) - - with Cassette(path=path, record=record, match_on=match_on) as c: - yield c diff --git a/pyproject.toml b/pyproject.toml index 082bc84a..067ee9f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,14 +41,14 @@ dev = [ "aiosqlite>=0.22", "prek>=0.3.8", "pre-commit>=4.5.1", - "pytest-niquests-cassettes", + "nimax", ] [tool.uv.workspace] -members = ["packages/pytest-niquests-cassettes"] +members = ["packages/nimax"] [tool.uv.sources] -pytest-niquests-cassettes = { workspace = true } +nimax = { workspace = true } [tool.pytest.ini_options] asyncio_mode = "auto" diff --git a/tests/conftest.py b/tests/conftest.py index d3f2fd7f..1350793d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,3 +1,11 @@ +""" +Reference implementation of pytest-niquests-cassettes. + +Each fixture depends on ``nimax_session`` or ``nimax_async_session``, which +activates a per-test cassette named after the test module and function. +Pass ``--record`` to record fresh cassettes from a live HA instance. +""" + import logging import os import time @@ -5,10 +13,10 @@ from collections.abc import Generator from http import HTTPMethod +import niquests import pytest import pytest_asyncio from niquests.exceptions import ConnectionError as RequestsConnectionError -from pytest_niquests_cassettes import Cassette from homeassistant_api import AsyncClient from homeassistant_api import AsyncWebsocketClient @@ -44,35 +52,41 @@ def pytest_sessionstart(session: pytest.Session) -> None: raise TimeoutError(msg) -@pytest.fixture(name="cached_client", scope="session") -def setup_cached_client(cassette: Cassette) -> Generator[Client, None, None]: # noqa: ARG001 - """Initializes the Client and enters a cached session.""" - with Client(HA_URL, HA_TOKEN) as client: +@pytest.fixture(name="cached_client") +def setup_cached_client( + nimax_session: niquests.Session, +) -> Generator[Client, None, None]: + """Sync HTTP client backed by a per-test cassette.""" + with Client(HA_URL, HA_TOKEN, session=nimax_session) as client: yield client -@pytest_asyncio.fixture(name="async_cached_client", scope="session") +@pytest_asyncio.fixture(name="async_cached_client") async def setup_async_cached_client( - cassette: Cassette, # noqa: ARG001 + nimax_async_session: niquests.AsyncSession, ) -> AsyncGenerator[AsyncClient, None]: - """Initializes the AsyncClient and enters an async cached session.""" - async with AsyncClient(HA_URL, HA_TOKEN) as client: + """Async HTTP client backed by a per-test cassette.""" + async with AsyncClient(HA_URL, HA_TOKEN, session=nimax_async_session) as client: yield client -@pytest.fixture(name="websocket_client", scope="session") +@pytest.fixture(name="websocket_client") def setup_websocket_client( - cassette: Cassette, # noqa: ARG001 + nimax_session: niquests.Session, ) -> Generator[WebsocketClient, None, None]: - """Initializes the Client and enters a WebSocket session.""" - with WebsocketClient(HA_WS_URL, HA_TOKEN) as client: + """Sync WebSocket client backed by a per-test cassette.""" + with WebsocketClient(HA_WS_URL, HA_TOKEN, session=nimax_session) as client: yield client -@pytest_asyncio.fixture(name="async_websocket_client", scope="session") +@pytest_asyncio.fixture(name="async_websocket_client") async def setup_async_websocket_client( - cassette: Cassette, # noqa: ARG001 + nimax_async_session: niquests.AsyncSession, ) -> AsyncGenerator[AsyncWebsocketClient, None]: - """Initializes the AsyncWebsocketClient and enters an async WebSocket session.""" - async with AsyncWebsocketClient(HA_WS_URL, HA_TOKEN) as client: + """Async WebSocket client backed by a per-test cassette.""" + async with AsyncWebsocketClient( + HA_WS_URL, + HA_TOKEN, + session=nimax_async_session, + ) as client: yield client diff --git a/tests/test_client.py b/tests/test_client.py index b6c8c9c6..01ba575c 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -10,16 +10,16 @@ from homeassistant_api.baseclient import BaseClient -def test_custom_session() -> None: +def test_custom_session(nimax_session: niquests.Session) -> None: with Client( os.environ.get("HOMEASSISTANTAPI_URL", "http://localhost:8123/api"), os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), - session=niquests.Session(), + session=nimax_session, ): pass -def test_default_session() -> None: +def test_default_session(nimax_session: niquests.Session) -> None: # noqa: ARG001 with Client( os.environ.get("HOMEASSISTANTAPI_URL", "http://localhost:8123/api"), os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), @@ -27,16 +27,18 @@ def test_default_session() -> None: pass -async def test_custom_async_session() -> None: +async def test_custom_async_session(nimax_async_session: niquests.AsyncSession) -> None: async with AsyncClient( os.environ.get("HOMEASSISTANTAPI_URL", "http://localhost:8123/api"), os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), - session=niquests.AsyncSession(), + session=nimax_async_session, ): pass -async def test_default_async_session() -> None: +async def test_default_async_session( + nimax_async_session: niquests.AsyncSession, # noqa: ARG001 +) -> None: async with AsyncClient( os.environ.get("HOMEASSISTANTAPI_URL", "http://localhost:8123/api"), os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), @@ -44,18 +46,22 @@ async def test_default_async_session() -> None: pass -def test_websocket_client_ping() -> None: +def test_websocket_client_ping(nimax_session: niquests.Session) -> None: with WebsocketClient( os.environ.get("HOMEASSISTANTAPI_WS_URL", "ws://localhost:8123/api/websocket"), os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), + session=nimax_session, ) as client: assert client.ping_latency() > 0 -async def test_async_websocket_client_ping() -> None: +async def test_async_websocket_client_ping( + nimax_async_session: niquests.AsyncSession, +) -> None: async with AsyncWebsocketClient( os.environ.get("HOMEASSISTANTAPI_WS_URL", "ws://localhost:8123/api/websocket"), os.environ.get("HOMEASSISTANTAPI_TOKEN", ""), + session=nimax_async_session, ) as client: assert (await client.ping_latency()) > 0 diff --git a/volumes/config/.storage/core.restore_state b/volumes/config/.storage/core.restore_state index cc21ff18..7dee87d2 100644 --- a/volumes/config/.storage/core.restore_state +++ b/volumes/config/.storage/core.restore_state @@ -4,17 +4,117 @@ "key": "core.restore_state", "data": [ { - "state": {"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test User"},"last_changed":"2026-03-22T16:31:31.712211+00:00","last_reported":"2026-03-22T16:31:32.696411+00:00","last_updated":"2026-03-22T16:31:32.696411+00:00","context":{"id":"01KMB66CARJBA2W2SJVNFAHX3M","parent_id":null,"user_id":null}}, + "state": {"entity_id":"person.test_user","state":"unknown","attributes":{"editable":true,"id":"test_user","device_trackers":[],"user_id":"e85fc7b7b8924dc9b024ce90ad23799e","friendly_name":"Test User"},"last_changed":"2026-04-13T08:05:16.470960+00:00","last_reported":"2026-04-13T08:05:18.041731+00:00","last_updated":"2026-04-13T08:05:18.041731+00:00","context":{"id":"01KP2XZ7JSQ63YN3K9AF6N50XT","parent_id":null,"user_id":null}}, "extra_data": null, - "last_seen": "2026-03-22T22:01:32.720708+00:00" + "last_seen": "2026-04-13T08:20:18.042458+00:00" }, { - "state": {"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup Automatic backup"},"last_changed":"2026-03-22T16:31:32.709444+00:00","last_reported":"2026-03-22T16:31:32.709444+00:00","last_updated":"2026-03-22T16:31:32.709444+00:00","context":{"id":"01KMB66CB50RRBP5FEADY823M3","parent_id":null,"user_id":null}}, + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T08:05:16.498915+00:00","last_reported":"2026-04-13T08:05:16.498915+00:00","last_updated":"2026-04-13T08:05:16.498915+00:00","context":{"id":"01KP2XZ62J7C10KH3P440EPNMK","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_async_2","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T08:05:16.499051+00:00","last_reported":"2026-04-13T08:05:16.499051+00:00","last_updated":"2026-04-13T08:05:16.499051+00:00","context":{"id":"01KP2XZ62KN8DDT7V59FZBWZCY","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T08:05:16.499187+00:00","last_reported":"2026-04-13T08:05:16.499187+00:00","last_updated":"2026-04-13T08:05:16.499187+00:00","context":{"id":"01KP2XZ62KG1F3EPJ8VCQKCEJR","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_async_3","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T08:05:16.499319+00:00","last_reported":"2026-04-13T08:05:16.499319+00:00","last_updated":"2026-04-13T08:05:16.499319+00:00","context":{"id":"01KP2XZ62KP4B8TNGRX8EBT6VQ","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T08:05:16.499433+00:00","last_reported":"2026-04-13T08:05:16.499433+00:00","last_updated":"2026-04-13T08:05:16.499433+00:00","context":{"id":"01KP2XZ62KWS5ZPWR1GQY1DJBZ","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_async_4","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T08:05:16.499539+00:00","last_reported":"2026-04-13T08:05:16.499539+00:00","last_updated":"2026-04-13T08:05:16.499539+00:00","context":{"id":"01KP2XZ62K8P7RC4413ERRG60H","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T08:05:16.499647+00:00","last_reported":"2026-04-13T08:05:16.499647+00:00","last_updated":"2026-04-13T08:05:16.499647+00:00","context":{"id":"01KP2XZ62KEPJHMF3GHAASWKS7","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_async_5","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T08:05:16.499764+00:00","last_reported":"2026-04-13T08:05:16.499764+00:00","last_updated":"2026-04-13T08:05:16.499764+00:00","context":{"id":"01KP2XZ62K9NQ6XPG95Q978GBB","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_6","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T08:05:16.499877+00:00","last_reported":"2026-04-13T08:05:16.499877+00:00","last_updated":"2026-04-13T08:05:16.499877+00:00","context":{"id":"01KP2XZ62KY7GH5NY21JD4PPA2","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_async_6","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T08:05:16.499991+00:00","last_reported":"2026-04-13T08:05:16.499991+00:00","last_updated":"2026-04-13T08:05:16.499991+00:00","context":{"id":"01KP2XZ62K0DQP1H7V8Q664Y0B","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_7","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T08:05:16.500099+00:00","last_reported":"2026-04-13T08:05:16.500099+00:00","last_updated":"2026-04-13T08:05:16.500099+00:00","context":{"id":"01KP2XZ62MBSA83C1PFDRPXH8R","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_async_7","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T08:05:16.500206+00:00","last_reported":"2026-04-13T08:05:16.500206+00:00","last_updated":"2026-04-13T08:05:16.500206+00:00","context":{"id":"01KP2XZ62MA40SGX6V5A2FVDPA","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_8","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T08:05:16.500316+00:00","last_reported":"2026-04-13T08:05:16.500316+00:00","last_updated":"2026-04-13T08:05:16.500316+00:00","context":{"id":"01KP2XZ62MD5Z0A2RFT7XWSMP9","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_async_8","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T08:05:16.500435+00:00","last_reported":"2026-04-13T08:05:16.500435+00:00","last_updated":"2026-04-13T08:05:16.500435+00:00","context":{"id":"01KP2XZ62MH0SWB4X1X69SFJF9","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_9","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T08:05:16.500556+00:00","last_reported":"2026-04-13T08:05:16.500556+00:00","last_updated":"2026-04-13T08:05:16.500556+00:00","context":{"id":"01KP2XZ62M9BZVA9JB0R8KVEZP","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_async_9","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T08:05:16.500679+00:00","last_reported":"2026-04-13T08:05:16.500679+00:00","last_updated":"2026-04-13T08:05:16.500679+00:00","context":{"id":"01KP2XZ62M2QRMSPQ8AYF57D92","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"event.backup_automatic_backup","state":"unknown","attributes":{"event_types":["completed","failed","in_progress"],"event_type":null,"friendly_name":"Backup Automatic backup"},"last_changed":"2026-04-13T08:05:18.051432+00:00","last_reported":"2026-04-13T08:05:18.051432+00:00","last_updated":"2026-04-13T08:05:18.051432+00:00","context":{"id":"01KP2XZ7K3S9FS1W4NRSYFGJE1","parent_id":null,"user_id":null}}, "extra_data": { "last_event_type": null, "last_event_attributes": null }, - "last_seen": "2026-03-22T22:01:32.720708+00:00" + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_10","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T08:05:22.739100+00:00","last_reported":"2026-04-13T08:05:22.739100+00:00","last_updated":"2026-04-13T08:05:22.739100+00:00","context":{"id":"01KP2XZC5KZSFVMWXCA6GNM7EN","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_async_10","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T08:05:22.752067+00:00","last_reported":"2026-04-13T08:05:22.752067+00:00","last_updated":"2026-04-13T08:05:22.752067+00:00","context":{"id":"01KP2XZC605V1B1MGVBJJC2TJC","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:20:18.042458+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test"},"last_changed":"2026-04-13T08:05:16.498575+00:00","last_reported":"2026-04-13T08:05:16.498575+00:00","last_updated":"2026-04-13T08:05:16.498575+00:00","context":{"id":"01KP2XZ62JRGPDKKB30R3K3V47","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:05:22.740406+00:00" + }, + { + "state": {"entity_id":"input_boolean.smoke_registry_remove_test_async","state":"off","attributes":{"editable":true,"friendly_name":"smoke_registry_remove_test_async"},"last_changed":"2026-04-13T08:05:16.498774+00:00","last_reported":"2026-04-13T08:05:16.498774+00:00","last_updated":"2026-04-13T08:05:16.498774+00:00","context":{"id":"01KP2XZ62J2GV3746BD1PHTFXK","parent_id":null,"user_id":null}}, + "extra_data": null, + "last_seen": "2026-04-13T08:05:22.752998+00:00" } ] } \ No newline at end of file From 5a94241481612c0eb08f1976bac44c3bbb7b1ef1 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Mon, 13 Apr 2026 01:32:48 -0700 Subject: [PATCH 30/34] Remove nimax design docs (moved to nimax project) --- nimax-design.md | 542 ----------------------------------- nimax-implementation-plan.md | 235 --------------- 2 files changed, 777 deletions(-) delete mode 100644 nimax-design.md delete mode 100644 nimax-implementation-plan.md diff --git a/nimax-design.md b/nimax-design.md deleted file mode 100644 index 81e249bc..00000000 --- a/nimax-design.md +++ /dev/null @@ -1,542 +0,0 @@ -# nimax — Design Document - -> A clean-room re-implementation of betamax for [niquests](https://github.com/jawah/niquests). -> Working title: **nimax** - ---- - -## 1. Motivation - -`betamax` is a VCR-style HTTP recording library for the `requests` library. -`niquests` is a drop-in `requests` replacement that adds HTTP/2, HTTP/3, -multiplexed connections, lazy responses, and `AsyncSession`. Betamax is -fundamentally incompatible with niquests because: - -| Betamax assumption | Niquests reality | -|---|---| -| `send()` returns a complete `Response` immediately | `Response` may be **lazy** — attributes unresolved until awaited or `gather()`d | -| One request in-flight per `send()` | `multiplexed=True` sends many before any resolve | -| Only synchronous sessions | `AsyncSession` with `async def send()` | -| HTTP/1.1 headers only | HTTP/2 pseudo-headers, QUIC trailers, protocol negotiation metadata | -| `BaseAdapter` / `HTTPAdapter` from `requests` | Same API surface in niquests but wraps `urllib3.future` (not urllib3) | - -A clean-room re-write allows us to design natively for these constraints -rather than patching around them. - ---- - -## 2. Betamax Architecture (reference) - -Understanding what we are replacing: - -``` -Session - └── BetamaxAdapter (mounted at "http://" and "https://") - ├── cassette: Cassette | None - ├── http_adapter: HTTPAdapter ← real network I/O - ├── send(request) → Response - │ 1. find matching Interaction in cassette - │ 2a. match found → build Response from cassette data - │ 2b. no match + recording allowed → send_and_record() - │ 2c. no match + recording disabled → raise BetamaxError - └── send_and_record() - 1. delegate to http_adapter.send() - 2. cassette.save_interaction(request, response) -``` - -**Cassette file format** (JSON, default): - -```json -{ - "http_interactions": [ - { - "request": { "method": "GET", "uri": "...", "headers": {}, "body": null }, - "response": { "status": {"code": 200, "message": "OK"}, - "headers": {}, "body": {"string": "..."} }, - "recorded_at": "2024-01-01T00:00:00" - } - ], - "recorded_with": "betamax/0.8.2" -} -``` - -**Record modes**: `once` · `none` · `new_episodes` · `all` -**Matchers**: `method` · `uri` · `host` · `path` · `query` · `headers` · `body` -**Serializers**: JSON (built-in) · YAML (third-party) - ---- - -## 3. Key Design Challenges - -### 3.1 Lazy Responses - -Niquests returns a `Response` that may not have its body resolved yet. -Recording must occur **after** the response is fully consumed, not in `send()`. - -Strategy: hook into niquests' **event hook system** (`response` hook) to -trigger the record step once the response is fully materialized. - -### 3.2 Multiplexed Sessions - -`Session(multiplexed=True)` sends N requests before any response resolves. -`gather(*responses)` then resolves them all. - -Strategy: the adapter intercepts `send()` for each request and records -**pending** interaction slots. The `gather()` step triggers actual -serialization once responses are available. We must wrap `Session.gather()` -or hook into the response lifecycle. - -### 3.3 Async Sessions - -`AsyncSession` has `async def send()`. The adapter shim must expose both -sync `send()` and `async def send()`. - -Strategy: `NimaxAdapter` provides both methods. The async path is a coroutine -that awaits the real adapter and writes to the cassette. - -### 3.4 Protocol Metadata - -Cassettes should optionally preserve the negotiated protocol (`HTTP/1.1`, -`HTTP/2`, `HTTP/3`) so replay can assert the same protocol was used. - ---- - -## 4. Proposed Architecture - -``` -NimaxRecorder ← replaces Betamax class; wraps Session - ├── use_cassette(name, **kw) → context manager - └── _mount_adapter(session) - -NimaxAdapter(BaseAdapter) ← mounted at "http://" + "https://" - ├── cassette: Cassette | None - ├── _real: HTTPAdapter ← niquests HTTPAdapter for live I/O - ├── send(PreparedRequest, **kw) → Response - └── async asend(PreparedRequest, **kw) → Response - -Cassette - ├── record_mode: RecordMode - ├── matchers: list[BaseMatcher] - ├── serializer: BaseSerializer - ├── interactions: list[Interaction] - ├── find_match(request) → Interaction | None - ├── save_interaction(request, response) → None - ├── load() / save() - └── sanitize(placeholders) - -Interaction - ├── request: SerializedRequest - ├── response: SerializedResponse - ├── recorded_at: datetime - ├── protocol: str | None ← NEW: "HTTP/2", "HTTP/3", etc. - └── used: bool ← for "once" mode exhaustion tracking - -RecordMode(enum) - NONE · ONCE · NEW_EPISODES · ALL - -BaseMatcher (ABC) - name: str - match(recorded: SerializedRequest, live: PreparedRequest) → bool - -BaseSerializer (ABC) - extension: str - serialize(cassette_data: dict) → str - deserialize(raw: str) → dict -``` - -### 4.1 Session Wrapping - -```python -with NimaxRecorder(session).use_cassette("my_test") as recorder: - resp = session.get("https://example.com") -``` - -For async: - -```python -async with NimaxRecorder(async_session).use_cassette("my_test") as recorder: - resp = await async_session.aget("https://example.com") -``` - -`NimaxRecorder` mounts `NimaxAdapter` on enter and restores original adapters -on exit. It also wraps `session.gather` to trigger deferred interaction saves. - -### 4.2 Lazy Response Handling - -`NimaxAdapter.send()` registers a `response` event hook on the prepared -request **before** delegating to the real adapter: - -```python -def send(self, request, **kwargs): - if self.cassette.should_record(request): - request.hooks["response"].append(self._on_response_received) - elif (interaction := self.cassette.find_match(request)): - return self._build_response(request, interaction) - else: - raise CannotSendRequest(request) - return self._real.send(request, **kwargs) - -def _on_response_received(self, response, **kwargs): - # Called after body is available - self.cassette.save_interaction(response.request, response) -``` - -### 4.3 Multiplexed Session Handling - -For multiplexed sessions, `send()` returns immediately with a lazy -`Response`. Actual recording happens in a wrapped `gather()`: - -```python -class NimaxRecorder: - def _patch_gather(self, session): - original_gather = session.gather - - def patched_gather(*responses, **kwargs): - result = original_gather(*responses, **kwargs) - for resp in responses: - if resp in self._pending_record: - self.cassette.save_interaction(resp.request, resp) - return result - - session.gather = patched_gather -``` - -### 4.4 Async Adapter - -```python -class NimaxAdapter(BaseAdapter): - def send(self, request, **kw): - # sync path - ... - - async def asend(self, request, **kw): - # async path — await self._real.asend(...) - ... -``` - ---- - -## 5. Cassette Format - -Extends betamax's format with a `protocol` field and a schema version. -Backwards-compatible with betamax cassettes (protocol field optional). - -```json -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "https://example.com/api", - "headers": { "User-Agent": ["niquests/3.x"] }, - "body": null - }, - "response": { - "status": { "code": 200, "message": "OK" }, - "headers": { "Content-Type": ["application/json"] }, - "body": { "string": "{\"key\": \"value\"}" }, - "protocol": "HTTP/2" - }, - "recorded_at": "2026-04-12T10:00:00Z" - } - ] -} -``` - ---- - -## 6. Record Modes - -| Mode | Behaviour | -|---|---| -| `ONCE` | Record on first run; replay thereafter. Error if cassette exists and request has no match. | -| `NONE` | Never record. All requests must match a stored interaction. | -| `NEW_EPISODES` | Replay existing matches; record unmatched requests. | -| `ALL` | Re-record every interaction. Replaces cassette on each run. | - ---- - -## 7. Matchers - -Built-in matchers (all from betamax, re-implemented): - -- `method` — HTTP verb -- `uri` — full URI including query string -- `host` — hostname only -- `path` — path component only -- `query` — query string (order-insensitive) -- `headers` — subset of request headers -- `body` — raw body bytes - -New matchers added for niquests: - -- `protocol` — assert `HTTP/1.1` / `HTTP/2` / `HTTP/3` match - -Custom matchers registered via: - -```python -NimaxRecorder.register_matcher(MyMatcher) -``` - ---- - -## 8. Serializers - -Built-in: - -- `json` — compact JSON (default) -- `pretty_json` — indented JSON for human-readable cassettes - -Third-party extension point: `BaseSerializer` ABC with `serialize()` / -`deserialize()` methods. Register via: - -```python -NimaxRecorder.register_serializer(YAMLSerializer) -``` - ---- - -## 9. pytest Integration - -```python -# conftest.py -import pytest -from nimax.pytest_plugin import nimax_fixture - -@pytest.fixture -def betamax_session(nimax_session): - return nimax_session -``` - -The plugin provides: - -- `nimax_session` fixture — a `niquests.Session` with `NimaxAdapter` mounted -- `nimax_async_session` fixture — an `AsyncSession` variant -- Auto-naming cassettes by test module + function name -- `nimax_parametrized_recorder` for parameterised tests - -Configuration via `conftest.py` or `pyproject.toml`: - -```toml -[tool.nimax] -cassette_library_dir = "tests/cassettes" -default_cassette_name = "{module}/{test}" -record_mode = "once" -match_on = ["method", "uri"] -``` - ---- - -## 10. Placeholder / Sanitization - -Sensitive values (API keys, tokens) are replaced before cassette writes: - -```python -with NimaxRecorder(session).use_cassette( - "auth_test", - placeholders=[ - Placeholder(placeholder="", replace=os.environ["API_KEY"]) - ] -): - ... -``` - -On record: `os.environ["API_KEY"]` → `` in cassette. -On replay: `` → `os.environ["API_KEY"]` in reconstructed response. - ---- - -## 11. WebSocket Recording - -### 11.1 Conceptual Model - -A WebSocket session has two distinct phases: - -1. **Handshake** — an HTTP `GET` with `Upgrade: websocket`. This is a normal - HTTP interaction and is recorded using the existing `http_interactions` model. -2. **Frame exchange** — a bidirectional stream of frames after the upgrade. - This requires a separate `websocket_sessions` track in the cassette. - -In niquests, WebSocket is accessed via `resp.extension` after calling -`session.ws_connect()` (or equivalent). Recording wraps that extension object -in a proxy that intercepts `send_payload()` and `next_payload()` calls. - -### 11.2 Frame Model - -Each recorded frame has: - -| Field | Type | Description | -|---|---|---| -| `direction` | `"send"` \| `"recv"` | Client-to-server or server-to-client | -| `type` | `"text"` \| `"binary"` \| `"ping"` \| `"pong"` \| `"close"` | WS frame opcode | -| `payload` | `str` \| `bytes` \| `null` | Frame payload (base64 for binary) | -| `offset_ms` | `int` | Milliseconds since handshake (optional; for timing replay) | -| `close_code` | `int` \| `null` | Only on `close` frames (e.g. 1000 = Normal Closure) | -| `close_reason` | `str` \| `null` | Only on `close` frames | - -### 11.3 Cassette Format Extension - -```json -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://example.com/ws", - "handshake_recorded_at": "2026-04-12T10:00:00Z", - "protocol": "HTTP/1.1", - "frames": [ - { "direction": "send", "type": "text", "payload": "hello", "offset_ms": 0 }, - { "direction": "recv", "type": "text", "payload": "world", "offset_ms": 48 }, - { "direction": "send", "type": "binary", "payload": "aGVsbG8=","offset_ms": 120 }, - { "direction": "recv", "type": "close", "payload": null, - "close_code": 1000, "close_reason": "Normal Closure", "offset_ms": 200 } - ] - } - ] -} -``` - -Multiple WS sessions in one cassette are supported (matched by URI, same as -HTTP interactions). - -### 11.4 Architecture - -``` -WebSocketExtensionProxy - ├── _extension: real niquests WS extension object - ├── _session: WebSocketSession (in cassette) - ├── send_payload(payload) → None - │ record Frame(direction="send", ...) - │ delegate to _extension.send_payload() - ├── next_payload() → str | bytes - │ if replaying: pop next recv Frame from _session, return its payload - │ if recording: call _extension.next_payload(), record Frame, return - ├── ping() → None (recorded as ping frame; replayed as no-op) - └── close() → None (records close frame; saves session to cassette) - -WebSocketSession - ├── uri: str - ├── protocol: str - ├── handshake_recorded_at: datetime - ├── frames: list[Frame] - └── cursor: int ← replay position for next recv frame -``` - -`NimaxRecorder` wraps `session.ws_connect()` (or the equivalent call) to -intercept the returned response. On the `response` hook, if the response is a -WebSocket upgrade (status 101), the recorder replaces `resp.extension` with a -`WebSocketExtensionProxy`. - -```python -def _on_response_received(self, response, **kwargs): - if response.status_code == 101: # WebSocket upgrade - ws_session = self.cassette.find_or_create_ws_session(response.url) - response.extension = WebSocketExtensionProxy( - extension=response.extension, - ws_session=ws_session, - record_mode=self.cassette.record_mode, - ) - else: - self.cassette.save_interaction(response.request, response) -``` - -### 11.5 Replay Behaviour - -On replay, `next_payload()` pops the next `recv`-direction frame from -`WebSocketSession.frames[cursor:]`. `send_payload()` can optionally validate -that the sent payload matches the recorded `send` frame at the same position -(controlled by a `strict_send` option — default `False` to avoid brittleness). - -`ping()` and `pong` frames are replayed as no-ops by default; setting -`replay_pings=True` causes them to be re-emitted on the proxy. - -### 11.6 Async Support - -`WebSocketExtensionProxy` mirrors the sync/async split in `NimaxAdapter`: - -```python -class WebSocketExtensionProxy: - def send_payload(self, payload): ... - async def asend_payload(self, payload): ... - - def next_payload(self): ... - async def anext_payload(self): ... - - def close(self): ... - async def aclose(self): ... -``` - -### 11.7 Record Modes for WebSocket - -| Mode | Behaviour | -|---|---| -| `ONCE` | Record full frame sequence on first run; replay thereafter | -| `NONE` | Replay only; error if URI has no recorded session | -| `NEW_EPISODES` | Replay known URIs; record new ones | -| `ALL` | Re-record every frame sequence on each run | - -### 11.8 WebSocket Design Decisions - -1. **Partial frame sequences** — if the test closes the socket early and not - all recorded frames are consumed, replay raises `CannotEjectCassette`. - Unconsumed frames indicate an incomplete test or a behavioural regression. - -2. **Binary payload encoding** — delegated to the serializer. The frame `type` - field (`"text"` vs `"binary"`) is the discriminator; no user flag needed. - The default JSON serializer base64-encodes `binary` frames and stores `text` - frames as plain UTF-8 strings. - -3. **Multiple connections to same URI** — disambiguated via an explicit - `nimax_label` parameter on `ws_connect()`. The cassette matches sessions by - `(uri, label)`. Unlabelled connections to a unique URI work without a label; - a second connection to the same URI without a label raises at record time. - ---- - -## 12. Out of Scope (v0.1) - -- SSE (Server-Sent Events) recording -- YAML serializer (first-party; kept as a third-party extension point) -- `betamax-matchers` compatibility shim - ---- - -## 13. Migration from betamax - -For users already on betamax with `requests`, switching to nimax + niquests: - -1. `pip install niquests nimax` -2. Replace `import requests` → `import niquests as requests` -3. Replace `from betamax import Betamax` → `from nimax import NimaxRecorder` -4. Replace `Betamax(session)` → `NimaxRecorder(session)` -5. Existing JSON cassettes are forward-compatible (no `protocol` field = HTTP/1.1 assumed) -6. pytest: replace `betamax_session` fixture with `nimax_session` - ---- - -## 14. Design Decisions - -1. **Cassette name collision in multiplexed mode** — interactions are matched - by content (matchers), not position. On replay, nimax finds the first - unmatched stored interaction satisfying all configured matchers, regardless - of cassette order. Cassettes are not sorted on save; insertion order is - preserved for readability but is not load-bearing. - -2. **`once` mode + lazy responses** — on cassette eject, nimax force-consumes - any pending lazy responses before writing the cassette file. This prevents - half-written cassettes that cause confusing match failures on the next run. - An unconsumed response body at eject time is considered a test smell. - -3. **Protocol downgrade on replay** — nimax raises `ProtocolMismatch` when a - cassette recorded `HTTP/2` or `HTTP/3` but the replayed response negotiated - a lower protocol. Set `allow_protocol_downgrade=True` on `use_cassette()` to - suppress the error. Applies to both HTTP interactions and WebSocket - handshakes. - -4. **Thread safety** — in-memory cassette state (`interactions`, WS `cursor`) - is protected by a `threading.Lock`. File-level isolation is the test - runner's responsibility; the pytest plugin names cassettes - `{module}/{test}` by default, ensuring each parallel worker uses a distinct - file. File locking is not provided. diff --git a/nimax-implementation-plan.md b/nimax-implementation-plan.md deleted file mode 100644 index 6651a085..00000000 --- a/nimax-implementation-plan.md +++ /dev/null @@ -1,235 +0,0 @@ -# nimax Implementation Plan - -Delta between `nimax-design.md` and the current `pytest-niquests-cassettes` package. - ---- - -## Module Structure (new) - -``` -src/pytest_niquests_cassettes/ - __init__.py ← add NimaxRecorder, RecordMode, Placeholder, BaseMatcher, BaseSerializer - plugin.py ← add nimax_session / nimax_async_session, pyproject.toml config - _record_mode.py ← NEW: RecordMode enum (NONE, ONCE, NEW_EPISODES, ALL) - _placeholders.py ← NEW: Placeholder dataclass + apply/restore helpers - _matchers.py ← NEW: BaseMatcher ABC + 8 concrete matchers - _serializers.py ← NEW: BaseSerializer ABC + JSONSerializer + YAMLSerializer - _websocket.py ← NEW: Frame, WebSocketSession, 4 extension proxies - _cassette.py ← REWRITE: Interaction dataclass, matcher-based lookup, new format - _adapter.py ← NEW: NimaxRecorder (class-level monkey-patch wrapper) -``` - ---- - -## 1. RecordMode enum (`_record_mode.py`) - -Replace `record: bool` with: - -| Mode | Behaviour | -|---|---| -| `NONE` | Never record; error on no match | -| `ONCE` | Record if cassette file absent; replay if present; error on match miss | -| `NEW_EPISODES` | Replay known interactions; record unmatched | -| `ALL` | Re-record every interaction | - -CLI mapping: `--record` → `ALL`, no flag → `ONCE`. - ---- - -## 2. Matcher system (`_matchers.py`) - -``` -BaseMatcher(ABC) - name: ClassVar[str] - match(recorded: dict, live: PreparedRequest) → bool - -Concrete: MethodMatcher, URIMatcher, HostMatcher, PathMatcher, - QueryMatcher, HeadersMatcher, BodyMatcher, ProtocolMatcher -``` - -`NimaxRecorder._matchers` is a `ClassVar[dict[str, type[BaseMatcher]]]`. Lookup by -name string from `--cassette-match-on`. Default: `["method", "path"]`. - -`NimaxRecorder.register_matcher(cls)` adds to class-level dict. - ---- - -## 3. Serializer system (`_serializers.py`) - -``` -BaseSerializer(ABC) - extension: ClassVar[str] - serialize(data: dict) → str - deserialize(raw: str) → dict - -JSONSerializer — extension = "json" -YAMLSerializer — extension = "yaml" (backward-compat default in plugin) -``` - -Plugin default: `YAMLSerializer` (keeps existing `cassettes/session.yaml` working). -`NimaxRecorder.use_cassette()` default: `JSONSerializer`. - -`NimaxRecorder.register_serializer(cls)` adds to class-level dict. - ---- - -## 4. Cassette format (`_cassette.py`) - -New on-disk format (mirrors `nimax-design.md` §5): - -```json -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { "method": "GET", "uri": "...", "headers": {}, "body": null }, - "response": { "status": {"code": 200, "message": "OK"}, - "headers": {}, "body": {"string": "..."}, "protocol": null }, - "recorded_at": "2026-04-12T10:00:00Z" - } - ], - "websocket_sessions": [...] -} -``` - -**Legacy migration** (auto-detected on `_load`): -- `interactions` key → treated as `http_interactions` -- `status: 200` → `{"code": 200, "message": "OK"}` -- `body: "..."` → `{"string": "..."}` -- `request.url` → `request.uri` - -Headers stored as `{ "Content-Type": ["application/json"] }` (list values). - -**Interaction lookup**: linear scan with matcher objects, `Interaction.used` flag. -FIFO semantics for multiple identical interactions preserved by scan order. - -**Thread safety**: `threading.Lock` guards `_interactions` and `_websocket_sessions`. - ---- - -## 5. Placeholder system (`_placeholders.py`) - -```python -@dataclass -class Placeholder: - placeholder: str # stored in cassette - replace: str # real value in env - -apply_placeholders(text, placeholders) # real → placeholder (before save) -restore_placeholders(text, placeholders) # placeholder → real (after load) -``` - -Applied at the serialized-string level, before write and after read. - ---- - -## 6. WebSocket frame model (`_websocket.py`) - -`Frame` dataclass gains `type`, `offset_ms`, `close_code`, `close_reason`: - -```python -@dataclass -class Frame: - direction: str # "send" | "recv" - type: str # "text" | "binary" | "ping" | "pong" | "close" - payload: str | None - offset_ms: int = 0 - close_code: int | None = None - close_reason: str | None = None -``` - -`WebSocketSession` dataclass holds `uri`, `protocol`, `handshake_recorded_at`, `frames`. - -The four extension proxy classes (`FakeExtension`, `AsyncFakeExtension`, -`RecordingExtension`, `AsyncRecordingExtension`) remain but use `Frame` internally. -`RecordingExtension.next_payload` captures `offset_ms` via `time.monotonic()`. - ---- - -## 7. NimaxRecorder (`_adapter.py`) - -```python -class NimaxRecorder: - _matchers: ClassVar[dict[str, type[BaseMatcher]]] - _serializers: ClassVar[dict[str, type[BaseSerializer]]] - - def __init__(self, session: Session | AsyncSession) -> None: ... - - @classmethod - def register_matcher(cls, matcher: type[BaseMatcher]) -> None: ... - - @classmethod - def register_serializer(cls, serializer: type[BaseSerializer]) -> None: ... - - @contextlib.contextmanager - def use_cassette( - self, - name: str, - *, - cassette_dir: Path | str = "cassettes", - record_mode: RecordMode = RecordMode.ONCE, - match_on: Iterable[str] = ("method", "path"), - serializer: BaseSerializer | None = None, - placeholders: list[Placeholder] | None = None, - ) -> Generator[Cassette, None, None]: ... -``` - -Internally patches `niquests.Session.send` and `niquests.AsyncSession.send` -class-wide (same approach as current `Cassette.__enter__`). - ---- - -## 8. pytest plugin (`plugin.py`) - -**Record mode**: `--record` → `RecordMode.ALL`; default → `RecordMode.ONCE`. -`--record-mode` option added for explicit control. - -**Existing `cassette` fixture**: unchanged name, unchanged scope (`session`), -now uses `RecordMode` + `NimaxRecorder` internally. - -**New fixtures**: - -```python -@pytest.fixture -def nimax_session(request) -> Generator[Session, None, None]: - """Per-test session with auto-named cassette: {module}/{test}.""" - -@pytest_asyncio.fixture -async def nimax_async_session(request) -> AsyncGenerator[AsyncSession, None]: - """Per-test async session with auto-named cassette.""" -``` - -**pyproject.toml config** (`[tool.nimax]`): - -```toml -[tool.nimax] -cassette_library_dir = "tests/cassettes" -default_cassette_name = "{module}/{test}" -record_mode = "once" -match_on = ["method", "uri"] -``` - -Read via `tomllib` (Python 3.11+). CLI options override `pyproject.toml`. - ---- - -## 9. Breaking changes - -- Cassette saved in new format (old YAML cassettes are auto-migrated on read, - but saved back in new format on next record run). -- Default mode is now `ONCE` (not `ALL`). Re-recording requires `--record` or - `--record-mode=all`. -- `Cassette(path, record=True)` still accepted but deprecated in favour of - `record_mode=RecordMode.ALL`. - ---- - -## 10. Out of scope for this iteration - -- `NimaxAdapter(BaseAdapter)` mounting (WS scheme support uncertain; monkey-patch - kept as implementation detail) -- `nimax_parametrized_recorder` fixture -- `CannotEjectCassette` on unconsumed WS frames -- Protocol downgrade detection (`ProtocolMismatch`) -- `allow_protocol_downgrade` option -- `gather()` wrapping for multiplexed sessions From f99d0c85808e3b032df2d47c02dcef5005c75609 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Mon, 13 Apr 2026 01:36:26 -0700 Subject: [PATCH 31/34] =?UTF-8?q?Remove=20packages/nimax=20=E2=80=94=20now?= =?UTF-8?q?=20a=20standalone=20project=20at=20/home/alogan/pprojects/nimax?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch uv source from workspace member to editable path dependency. --- packages/nimax/pyproject.toml | 21 - packages/nimax/src/nimax/__init__.py | 21 - packages/nimax/src/nimax/_adapter.py | 99 ----- packages/nimax/src/nimax/_cassette.py | 495 ---------------------- packages/nimax/src/nimax/_matchers.py | 125 ------ packages/nimax/src/nimax/_placeholders.py | 31 -- packages/nimax/src/nimax/_record_mode.py | 20 - packages/nimax/src/nimax/_serializers.py | 55 --- packages/nimax/src/nimax/_websocket.py | 218 ---------- packages/nimax/src/nimax/plugin.py | 175 -------- pyproject.toml | 5 +- 11 files changed, 1 insertion(+), 1264 deletions(-) delete mode 100644 packages/nimax/pyproject.toml delete mode 100644 packages/nimax/src/nimax/__init__.py delete mode 100644 packages/nimax/src/nimax/_adapter.py delete mode 100644 packages/nimax/src/nimax/_cassette.py delete mode 100644 packages/nimax/src/nimax/_matchers.py delete mode 100644 packages/nimax/src/nimax/_placeholders.py delete mode 100644 packages/nimax/src/nimax/_record_mode.py delete mode 100644 packages/nimax/src/nimax/_serializers.py delete mode 100644 packages/nimax/src/nimax/_websocket.py delete mode 100644 packages/nimax/src/nimax/plugin.py diff --git a/packages/nimax/pyproject.toml b/packages/nimax/pyproject.toml deleted file mode 100644 index 6f30a0f9..00000000 --- a/packages/nimax/pyproject.toml +++ /dev/null @@ -1,21 +0,0 @@ -[build-system] -build-backend = "hatchling.build" -requires = ["hatchling"] - -[project] -name = "nimax" -version = "0.1.0" -description = "Record and replay niquests HTTP and WebSocket interactions in pytest" -requires-python = ">=3.11" -dependencies = [ - "niquests>=3", - "pytest>=8", - "pytest-asyncio>=0.24", - "PyYAML>=6", -] - -[project.entry-points.pytest11] -nimax = "nimax.plugin" - -[tool.hatch.build.targets.wheel] -packages = ["src/nimax"] diff --git a/packages/nimax/src/nimax/__init__.py b/packages/nimax/src/nimax/__init__.py deleted file mode 100644 index 143ae261..00000000 --- a/packages/nimax/src/nimax/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ -"""nimax: record and replay niquests HTTP/WebSocket interactions in pytest.""" - -from ._adapter import NimaxRecorder -from ._cassette import Cassette -from ._matchers import BaseMatcher -from ._placeholders import Placeholder -from ._record_mode import RecordMode -from ._serializers import BaseSerializer -from ._serializers import JSONSerializer -from ._serializers import YAMLSerializer - -__all__ = [ - "BaseMatcher", - "BaseSerializer", - "Cassette", - "JSONSerializer", - "NimaxRecorder", - "Placeholder", - "RecordMode", - "YAMLSerializer", -] diff --git a/packages/nimax/src/nimax/_adapter.py b/packages/nimax/src/nimax/_adapter.py deleted file mode 100644 index b29af092..00000000 --- a/packages/nimax/src/nimax/_adapter.py +++ /dev/null @@ -1,99 +0,0 @@ -"""NimaxRecorder: programmatic API for wrapping a session with a cassette.""" - -from __future__ import annotations - -import contextlib -from pathlib import Path -from typing import TYPE_CHECKING -from typing import Any -from typing import ClassVar - -from ._cassette import DEFAULT_MATCH_ON -from ._cassette import Cassette -from ._matchers import BUILTIN_MATCHERS -from ._matchers import BaseMatcher -from ._record_mode import RecordMode -from ._serializers import BUILTIN_SERIALIZERS -from ._serializers import BaseSerializer -from ._serializers import JSONSerializer - -if TYPE_CHECKING: - from collections.abc import Generator - from collections.abc import Iterable - - import niquests - - from ._placeholders import Placeholder - - -class NimaxRecorder: - """Wraps a niquests session to provide cassette recording and replay. - - Usage:: - - recorder = NimaxRecorder(session) - with recorder.use_cassette("my_test") as cassette: - resp = session.get("https://example.com") - - The recorder patches ``niquests.Session.send`` and - ``niquests.AsyncSession.send`` class-wide for the duration of the context, - so any sessions created inside the block are also intercepted. - - Custom matchers and serializers can be registered at the class level:: - - NimaxRecorder.register_matcher(MyMatcher) - NimaxRecorder.register_serializer(MySerializer) - """ - - _matchers: ClassVar[dict[str, type[BaseMatcher]]] = dict(BUILTIN_MATCHERS) - _serializers: ClassVar[dict[str, type[BaseSerializer]]] = dict(BUILTIN_SERIALIZERS) - - def __init__(self, session: niquests.Session | niquests.AsyncSession) -> None: - self._session = session - - @classmethod - def register_matcher(cls, matcher: type[BaseMatcher]) -> None: - """Register a custom matcher, making it available by name.""" - cls._matchers[matcher.name] = matcher - - @classmethod - def register_serializer(cls, serializer: type[BaseSerializer]) -> None: - """Register a custom serializer, making it available by extension.""" - cls._serializers[serializer.extension] = serializer - - @contextlib.contextmanager - def use_cassette( # noqa: PLR0913 - self, - name: str, - *, - cassette_dir: Path | str = "cassettes", - record_mode: RecordMode = RecordMode.ONCE, - match_on: Iterable[str] = DEFAULT_MATCH_ON, - serializer: BaseSerializer | None = None, - placeholders: list[Placeholder] | None = None, - ) -> Generator[Cassette, None, None]: - """Context manager that activates a named cassette for the session. - - :param name: Cassette name (used as the filename stem). - :param cassette_dir: Directory to store cassette files. - :param record_mode: When to record vs replay. - :param match_on: Iterable of matcher names. - :param serializer: Explicit serializer (defaults to JSON). - :param placeholders: Sensitive values to redact in the cassette. - """ - resolved_serializer = serializer or JSONSerializer() - path = Path(cassette_dir) / f"{name}.{resolved_serializer.extension}" - cassette = Cassette( - path=path, - record_mode=record_mode, - match_on=frozenset(match_on), - serializer=resolved_serializer, - placeholders=placeholders, - ) - with cassette: - yield cassette - - # Convenience: expose session on the recorder for use inside the context - @property - def session(self) -> Any: - return self._session diff --git a/packages/nimax/src/nimax/_cassette.py b/packages/nimax/src/nimax/_cassette.py deleted file mode 100644 index 47a2dbd1..00000000 --- a/packages/nimax/src/nimax/_cassette.py +++ /dev/null @@ -1,495 +0,0 @@ -""" -Core cassette machinery: record and replay niquests HTTP and WebSocket interactions. -""" - -from __future__ import annotations - -import threading -import time -from dataclasses import dataclass -from dataclasses import field -from datetime import datetime -from datetime import timezone -from http import HTTPStatus -from typing import TYPE_CHECKING -from typing import Any -from typing import Self -from unittest.mock import patch -from urllib.parse import urlparse - -import niquests -from niquests import AsyncSession -from niquests import Response -from niquests import Session -from niquests.structures import CaseInsensitiveDict - -from ._matchers import BUILTIN_MATCHERS -from ._matchers import BaseMatcher -from ._placeholders import Placeholder -from ._placeholders import apply_placeholders -from ._placeholders import restore_placeholders -from ._record_mode import RecordMode -from ._serializers import BaseSerializer -from ._serializers import JSONSerializer -from ._serializers import YAMLSerializer -from ._websocket import AsyncFakeExtension -from ._websocket import AsyncRecordingExtension -from ._websocket import FakeExtension -from ._websocket import RecordingExtension -from ._websocket import WebSocketSession - -if TYPE_CHECKING: - from pathlib import Path - -NIMAX_VERSION = "0.1.0" - -#: Supported matcher names. -SUPPORTED_MATCHERS: frozenset[str] = frozenset(BUILTIN_MATCHERS.keys()) - -#: Default matchers — path-only matching ignores dynamic query params. -DEFAULT_MATCH_ON: frozenset[str] = frozenset({"method", "path"}) - - -# ── Helpers ─────────────────────────────────────────────────────────────────── - - -def _is_ws(url: str) -> bool: - return url.startswith(("ws://", "wss://")) - - -def _normalize_status(status: Any) -> dict[str, Any]: - """Coerce status to ``{"code": int, "message": str}`` (handles legacy int form).""" - if isinstance(status, dict): - return status - code = int(status) - try: - message = HTTPStatus(code).phrase - except ValueError: - message = "" - return {"code": code, "message": message} - - -def _normalize_body(body: Any) -> dict[str, str] | None: - """Coerce body to ``{"string": "..."}`` (handles legacy bare-string form).""" - if body is None: - return None - if isinstance(body, dict): - return body - text = body if isinstance(body, str) else body.decode("utf-8", errors="replace") - return {"string": text} if text else None - - -def _normalize_headers(headers: dict[str, Any]) -> dict[str, list[str]]: - """Ensure all header values are lists of strings.""" - return {k: [v] if isinstance(v, str) else v for k, v in headers.items()} - - -def _migrate_interaction(entry: dict[str, Any]) -> dict[str, Any]: - """Upgrade a legacy cassette entry to the current format in place.""" - req = dict(entry["request"]) - resp = dict(entry["response"]) - - # request.url → request.uri - if "url" in req and "uri" not in req: - req["uri"] = req.pop("url") - req.setdefault("headers", {}) - req.setdefault("body", None) - - resp["status"] = _normalize_status(resp.get("status", 200)) - resp["body"] = _normalize_body(resp.get("body")) - resp["headers"] = _normalize_headers(resp.get("headers", {})) - resp.setdefault("protocol", None) - resp.setdefault("url", req.get("uri", "")) - - return { - "request": req, - "response": resp, - "recorded_at": entry.get("recorded_at", ""), - } - - -# ── Data model ──────────────────────────────────────────────────────────────── - - -@dataclass -class Interaction: - request: dict[str, Any] - response: dict[str, Any] - recorded_at: str - used: bool = field(default=False, compare=False) - - -# ── Fake raw (replay WebSocket) ─────────────────────────────────────────────── - - -class _FakeRaw: - """Minimal stand-in for urllib3's HTTPResponse exposing just the extension.""" - - def __init__(self, extension: Any) -> None: - self.extension = extension - - -# ── Cassette ────────────────────────────────────────────────────────────────── - - -class Cassette: - """ - Context manager that intercepts ``niquests.Session.send`` and - ``niquests.AsyncSession.send`` to record or replay HTTP and WebSocket - interactions. - - :param path: Path to the cassette file (extension determines serializer - when *serializer* is ``None``). - :param record_mode: :class:`RecordMode` controlling when recording is allowed. - Defaults to ``ONCE``. - :param match_on: Set of matcher names used to find stored interactions. - Defaults to ``{"method", "path"}``. - :param serializer: Explicit serializer instance. When ``None``, inferred from - *path* extension (``.yaml`` → YAML, otherwise JSON). - :param placeholders: List of :class:`Placeholder` objects for value sanitization. - :param record: Deprecated boolean shorthand. ``True`` → ``RecordMode.ALL``, - ``False`` → ``RecordMode.NONE``. - """ - - def __init__( # noqa: PLR0913 - self, - path: Path, - *, - record_mode: RecordMode = RecordMode.ONCE, - match_on: frozenset[str] = DEFAULT_MATCH_ON, - serializer: BaseSerializer | None = None, - placeholders: list[Placeholder] | None = None, - record: bool | None = None, - ) -> None: - # Backward-compat shim - if record is not None: - record_mode = RecordMode.ALL if record else RecordMode.NONE - - unknown = match_on - SUPPORTED_MATCHERS - if unknown: - msg = f"Unknown matcher(s): {unknown!r}. Supported: {SUPPORTED_MATCHERS!r}" - raise ValueError(msg) - - self._path = path - self._record_mode = record_mode - self._matchers: list[BaseMatcher] = [ - BUILTIN_MATCHERS[name]() for name in match_on - ] - self._placeholders: list[Placeholder] = placeholders or [] - self._serializer: BaseSerializer = serializer or self._infer_serializer() - - self._interactions: list[Interaction] = [] - self._ws_sessions: list[WebSocketSession] = [] - self._lock = threading.Lock() - self._patches: list[Any] = [] - - # Determine whether this run is a recording pass - if record_mode == RecordMode.NONE: - self._recording_active = False - elif record_mode == RecordMode.ONCE: - self._recording_active = not path.exists() - else: # ALL, NEW_EPISODES - self._recording_active = True - - if not self._recording_active: - self._load() - - # ── Serializer inference ────────────────────────────────────────────────── - - def _infer_serializer(self) -> BaseSerializer: - ext = self._path.suffix.lstrip(".") - if ext == "yaml": - return YAMLSerializer() - return JSONSerializer() - - # ── Persistence ─────────────────────────────────────────────────────────── - - def _load(self) -> None: - if not self._path.exists(): - return - raw = self._path.read_text(encoding="utf-8") - if self._placeholders: - raw = restore_placeholders(raw, self._placeholders) - - # Use YAML for .yaml files regardless of configured serializer - ext = self._path.suffix.lstrip(".") - if ext == "yaml": - data: dict[str, Any] = YAMLSerializer().deserialize(raw) - else: - data = self._serializer.deserialize(raw) - - # Support both legacy "interactions" key and current "http_interactions" - interactions_raw = data.get("http_interactions") or data.get("interactions", []) - for entry in interactions_raw: - migrated = _migrate_interaction(entry) - self._interactions.append( - Interaction( - request=migrated["request"], - response=migrated["response"], - recorded_at=migrated["recorded_at"], - ), - ) - - for ws_entry in data.get("websocket_sessions", []): - # Migrate legacy frame format (direction + payload only) - frames_raw = ws_entry.get("frames", []) - for f in frames_raw: - f.setdefault("type", "text") - f.setdefault("offset_ms", 0) - self._ws_sessions.append(WebSocketSession.from_dict(ws_entry)) - - def save(self) -> None: - if not self._recording_active: - return - - with self._lock: - http_interactions = [ - { - "request": i.request, - "response": i.response, - "recorded_at": i.recorded_at, - } - for i in self._interactions - ] - ws_sessions = [ws.to_dict() for ws in self._ws_sessions] - - data: dict[str, Any] = { - "nimax_version": NIMAX_VERSION, - "http_interactions": http_interactions, - "websocket_sessions": ws_sessions, - } - serialized = self._serializer.serialize(data) - if self._placeholders: - serialized = apply_placeholders(serialized, self._placeholders) - - self._path.parent.mkdir(parents=True, exist_ok=True) - self._path.write_text(serialized, encoding="utf-8") - - # ── Matching & recording ────────────────────────────────────────────────── - - def find_match(self, live_request: Any) -> Interaction | None: - """Return the first unused stored interaction that satisfies all matchers.""" - with self._lock: - for interaction in self._interactions: - if interaction.used: - continue - if all( - m.match(interaction.request, live_request) for m in self._matchers - ): - interaction.used = True - return interaction - return None - - def save_interaction(self, method: str, url: str, resp: Response) -> None: - """Append a recorded HTTP interaction.""" - body_str = resp.text if resp._content else "" - try: - message = HTTPStatus(resp.status_code).phrase - except ValueError: - message = "" - headers = _normalize_headers(dict(resp.headers)) - now = datetime.now(tz=timezone.utc).isoformat() - interaction = Interaction( - request={"method": method, "uri": url, "headers": {}, "body": None}, - response={ - "status": {"code": resp.status_code, "message": message}, - "headers": headers, - "body": {"string": body_str} if body_str else None, - "protocol": None, - "url": url, - }, - recorded_at=now, - ) - with self._lock: - self._interactions.append(interaction) - - def record_ws(self, url: str) -> tuple[WebSocketSession, float]: - """Register a new WS session and return it with the monotonic start time.""" - now = datetime.now(tz=timezone.utc).isoformat() - session = WebSocketSession( - uri=url, - handshake_recorded_at=now, - protocol=None, - ) - with self._lock: - self._ws_sessions.append(session) - return session, time.monotonic() - - def find_ws_session(self, url: str) -> WebSocketSession | None: - """Return the first unclaimed WS session matching *url* by path.""" - parsed_path = urlparse(url).path - with self._lock: - for ws in self._ws_sessions: - if urlparse(ws.uri).path == parsed_path and ws.claim(): - return ws - return None - - # ── Response construction ───────────────────────────────────────────────── - - def _build_response(self, interaction: Interaction, request: Any) -> Response: - resp_data = interaction.response - resp = Response() - resp.status_code = _normalize_status(resp_data["status"])["code"] - headers_raw = resp_data.get("headers", {}) - resp.headers = CaseInsensitiveDict( - {k: (v[0] if isinstance(v, list) else v) for k, v in headers_raw.items()}, - ) - body_data = resp_data.get("body") - if body_data is None: - resp._content = b"" - elif isinstance(body_data, dict): - resp._content = body_data.get("string", "").encode("utf-8") - else: - resp._content = ( - body_data.encode("utf-8") - if isinstance(body_data, str) - else bytes(body_data) - ) - resp._content_consumed = True - resp.encoding = "utf-8" - resp.url = resp_data.get("url", "") - resp.request = request - return resp - - def _ws_response( - self, - url: str, - ws_session: WebSocketSession, - *, - is_async: bool, - ) -> Response: - ext: Any = ( - AsyncFakeExtension(ws_session) if is_async else FakeExtension(ws_session) - ) - resp = Response() - resp.status_code = 101 - resp._content = b"" - resp._content_consumed = True - resp.headers = CaseInsensitiveDict({"Upgrade": "websocket"}) - resp.encoding = "utf-8" - resp.url = url - resp.raw = _FakeRaw(ext) - return resp - - # ── Send interceptors ───────────────────────────────────────────────────── - - def _make_sync_send(self, original: Any) -> Any: - cassette = self - - def send(session_self: Session, request: Any, **kwargs: Any) -> Response: - url = request.url or "" - method = request.method or "GET" - - if _is_ws(url): - if cassette._recording_active: - resp = original(session_self, request, **kwargs) - if resp.extension is not None: - ws_session, start = cassette.record_ws(url) - resp.raw._extension = RecordingExtension( - resp.extension, - ws_session, - start, - ) - return resp - ws_session = cassette.find_ws_session(url) - if ws_session is None: - msg = ( - f"No recorded WS session for {url!r}" - " — re-run with --record to update cassettes" - ) - raise KeyError(msg) - return cassette._ws_response(url, ws_session, is_async=False) - - match = cassette.find_match(request) - if match is not None: - return cassette._build_response(match, request) - - if cassette._recording_active: - resp = original(session_self, request, **kwargs) - cassette.save_interaction(method, url, resp) - return resp - - msg = ( - f"No recorded response for {method} {url!r}" - " — re-run with --record to update cassettes" - ) - raise KeyError(msg) - - return send - - def _make_async_send(self, original: Any) -> Any: - cassette = self - - async def send( - session_self: AsyncSession, - request: Any, - **kwargs: Any, - ) -> Response: - url = request.url or "" - method = request.method or "GET" - - if _is_ws(url): - if cassette._recording_active: - resp = await original(session_self, request, **kwargs) - if resp.extension is not None: - ws_session, start = cassette.record_ws(url) - resp.raw._extension = AsyncRecordingExtension( - resp.extension, - ws_session, - start, - ) - return resp - ws_session = cassette.find_ws_session(url) - if ws_session is None: - msg = ( - f"No recorded WS session for {url!r}" - " — re-run with --record to update cassettes" - ) - raise KeyError(msg) - return cassette._ws_response(url, ws_session, is_async=True) - - match = cassette.find_match(request) - if match is not None: - return cassette._build_response(match, request) - - if cassette._recording_active: - resp = await original(session_self, request, **kwargs) - cassette.save_interaction(method, url, resp) - return resp - - msg = ( - f"No recorded response for {method} {url!r}" - " — re-run with --record to update cassettes" - ) - raise KeyError(msg) - - return send - - # ── Context manager ─────────────────────────────────────────────────────── - - def _start_patching(self) -> None: - sync_orig = niquests.Session.send - async_orig = niquests.AsyncSession.send - self._patches = [ - patch.object(niquests.Session, "send", self._make_sync_send(sync_orig)), - patch.object( - niquests.AsyncSession, - "send", - self._make_async_send(async_orig), - ), - ] - for p in self._patches: - p.start() - - def _stop_patching(self) -> None: - for p in self._patches: - p.stop() - self._patches = [] - - def __enter__(self) -> Self: - self._start_patching() - return self - - def __exit__(self, *_: object) -> None: - self._stop_patching() - self.save() diff --git a/packages/nimax/src/nimax/_matchers.py b/packages/nimax/src/nimax/_matchers.py deleted file mode 100644 index 5f0100ad..00000000 --- a/packages/nimax/src/nimax/_matchers.py +++ /dev/null @@ -1,125 +0,0 @@ -"""Matcher ABCs and built-in matcher implementations.""" - -from __future__ import annotations - -from abc import ABC -from abc import abstractmethod -from typing import Any -from urllib.parse import parse_qs -from urllib.parse import urlparse - - -class BaseMatcher(ABC): - """Abstract base for all request matchers. - - A matcher compares a recorded request dict (from the cassette) with a live - ``PreparedRequest`` and returns ``True`` if they are considered equivalent - for the component this matcher is responsible for. - """ - - name: str - - @abstractmethod - def match(self, recorded: dict[str, Any], live: Any) -> bool: - """Return True if *live* matches the *recorded* request for this component.""" - - -class MethodMatcher(BaseMatcher): - name = "method" - - def match(self, recorded: dict[str, Any], live: Any) -> bool: - return recorded.get("method", "").upper() == (live.method or "").upper() - - -class URIMatcher(BaseMatcher): - """Exact URI match including query string.""" - - name = "uri" - - def match(self, recorded: dict[str, Any], live: Any) -> bool: - return recorded.get("uri", "") == (live.url or "") - - -class HostMatcher(BaseMatcher): - name = "host" - - def match(self, recorded: dict[str, Any], live: Any) -> bool: - recorded_host = urlparse(recorded.get("uri", "")).netloc - live_host = urlparse(live.url or "").netloc - return recorded_host == live_host - - -class PathMatcher(BaseMatcher): - name = "path" - - def match(self, recorded: dict[str, Any], live: Any) -> bool: - recorded_path = urlparse(recorded.get("uri", "")).path - live_path = urlparse(live.url or "").path - return recorded_path == live_path - - -class QueryMatcher(BaseMatcher): - """Order-insensitive query-string comparison.""" - - name = "query" - - def match(self, recorded: dict[str, Any], live: Any) -> bool: - recorded_q = parse_qs(urlparse(recorded.get("uri", "")).query) - live_q = parse_qs(urlparse(live.url or "").query) - return recorded_q == live_q - - -class HeadersMatcher(BaseMatcher): - """Checks that all recorded request headers are present in the live request.""" - - name = "headers" - - def match(self, recorded: dict[str, Any], live: Any) -> bool: - recorded_headers: dict[str, list[str]] = recorded.get("headers") or {} - live_headers = live.headers or {} - for key, values in recorded_headers.items(): - live_val = live_headers.get(key) - if live_val is None: - return False - expected = values[0] if isinstance(values, list) else values - if live_val != expected: - return False - return True - - -class BodyMatcher(BaseMatcher): - name = "body" - - def match(self, recorded: dict[str, Any], live: Any) -> bool: - recorded_body = recorded.get("body") - live_body = live.body - if isinstance(live_body, bytes): - live_body = live_body.decode("utf-8", errors="replace") - return recorded_body == live_body - - -class ProtocolMatcher(BaseMatcher): - """Match the negotiated HTTP protocol (HTTP/1.1, HTTP/2, HTTP/3).""" - - name = "protocol" - - def match(self, recorded: dict[str, Any], live: Any) -> bool: # noqa: ARG002 - # Protocol is not available on the PreparedRequest; always pass at - # match time and validate post-response in the adapter layer. - return True - - -# Registry of all built-in matchers keyed by name. -BUILTIN_MATCHERS: dict[str, type[BaseMatcher]] = { - m.name: m # type: ignore[attr-defined] - for m in ( - MethodMatcher, - URIMatcher, - HostMatcher, - PathMatcher, - QueryMatcher, - HeadersMatcher, - BodyMatcher, - ProtocolMatcher, - ) -} diff --git a/packages/nimax/src/nimax/_placeholders.py b/packages/nimax/src/nimax/_placeholders.py deleted file mode 100644 index 9ae5dfef..00000000 --- a/packages/nimax/src/nimax/_placeholders.py +++ /dev/null @@ -1,31 +0,0 @@ -"""Placeholder / sanitization support for cassette sensitive values.""" - -from __future__ import annotations - -from dataclasses import dataclass - - -@dataclass(frozen=True) -class Placeholder: - """Maps a real value to a redacted placeholder stored in the cassette. - - :param placeholder: The token written to the cassette (e.g. ``""``). - :param replace: The real value present in requests/responses. - """ - - placeholder: str - replace: str - - -def apply_placeholders(text: str, placeholders: list[Placeholder]) -> str: - """Replace real values with placeholder tokens before writing a cassette.""" - for p in placeholders: - text = text.replace(p.replace, p.placeholder) - return text - - -def restore_placeholders(text: str, placeholders: list[Placeholder]) -> str: - """Replace placeholder tokens with real values after reading a cassette.""" - for p in placeholders: - text = text.replace(p.placeholder, p.replace) - return text diff --git a/packages/nimax/src/nimax/_record_mode.py b/packages/nimax/src/nimax/_record_mode.py deleted file mode 100644 index d333ea8b..00000000 --- a/packages/nimax/src/nimax/_record_mode.py +++ /dev/null @@ -1,20 +0,0 @@ -"""RecordMode enum for nimax cassette recording behaviour.""" - -from __future__ import annotations - -from enum import Enum - - -class RecordMode(str, Enum): - """Controls when cassette interactions are recorded vs replayed. - - NONE — Never record; raise on any unmatched request. - ONCE — Record if cassette is absent; replay (and error on miss) if present. - NEW_EPISODES — Replay matched interactions; record unmatched ones. - ALL — Re-record every interaction, replacing the cassette each run. - """ - - NONE = "none" - ONCE = "once" - NEW_EPISODES = "new_episodes" - ALL = "all" diff --git a/packages/nimax/src/nimax/_serializers.py b/packages/nimax/src/nimax/_serializers.py deleted file mode 100644 index 76a768d9..00000000 --- a/packages/nimax/src/nimax/_serializers.py +++ /dev/null @@ -1,55 +0,0 @@ -"""Serializer ABCs and built-in serializer implementations.""" - -from __future__ import annotations - -import json -from abc import ABC -from abc import abstractmethod - -import yaml - - -class BaseSerializer(ABC): - """Abstract base for cassette serializers.""" - - extension: str - - @abstractmethod - def serialize(self, data: dict) -> str: - """Convert cassette data dict to a string for writing to disk.""" - - @abstractmethod - def deserialize(self, raw: str) -> dict: - """Parse a cassette file string back to a data dict.""" - - -class JSONSerializer(BaseSerializer): - extension = "json" - - def serialize(self, data: dict) -> str: - return json.dumps(data, indent=2, ensure_ascii=False) - - def deserialize(self, raw: str) -> dict: - return json.loads(raw) - - -class YAMLSerializer(BaseSerializer): - extension = "yaml" - - def serialize(self, data: dict) -> str: - return yaml.dump( - data, - default_flow_style=False, - allow_unicode=True, - sort_keys=False, - ) - - def deserialize(self, raw: str) -> dict: - return yaml.safe_load(raw) or {} - - -# Registry of all built-in serializers keyed by name / extension. -BUILTIN_SERIALIZERS: dict[str, type[BaseSerializer]] = { - "json": JSONSerializer, - "yaml": YAMLSerializer, -} diff --git a/packages/nimax/src/nimax/_websocket.py b/packages/nimax/src/nimax/_websocket.py deleted file mode 100644 index 6033ec63..00000000 --- a/packages/nimax/src/nimax/_websocket.py +++ /dev/null @@ -1,218 +0,0 @@ -"""WebSocket frame model and extension proxy classes.""" - -from __future__ import annotations - -import time -from dataclasses import dataclass -from dataclasses import field -from typing import Any - - -@dataclass -class Frame: - """A single recorded WebSocket frame.""" - - direction: str # "send" | "recv" - type: str # "text" | "binary" | "ping" | "pong" | "close" - payload: str | None - offset_ms: int = 0 - close_code: int | None = None - close_reason: str | None = None - - def to_dict(self) -> dict[str, Any]: - d: dict[str, Any] = { - "direction": self.direction, - "type": self.type, - "payload": self.payload, - "offset_ms": self.offset_ms, - } - if self.close_code is not None: - d["close_code"] = self.close_code - if self.close_reason is not None: - d["close_reason"] = self.close_reason - return d - - @classmethod - def from_dict(cls, d: dict[str, Any]) -> Frame: - return cls( - direction=d["direction"], - type=d.get("type", "text"), - payload=d.get("payload"), - offset_ms=d.get("offset_ms", 0), - close_code=d.get("close_code"), - close_reason=d.get("close_reason"), - ) - - -@dataclass -class WebSocketSession: - """Recorded WebSocket session: metadata + ordered frame sequence.""" - - uri: str - handshake_recorded_at: str - protocol: str | None - frames: list[Frame] = field(default_factory=list) - _cursor: int = field(default=0, init=False, repr=False) - # True once a replay consumer has claimed this session so subsequent - # connections to the same URI get the next unclaimed session. - _claimed: bool = field(default=False, init=False, repr=False) - - def claim(self) -> bool: - """Mark session as claimed. Returns True if it was unclaimed.""" - if self._claimed: - return False - self._claimed = True - return True - - def next_recv_frame(self) -> Frame | None: - """Return the next unplayed recv-direction frame, advancing the cursor.""" - while self._cursor < len(self.frames): - frame = self.frames[self._cursor] - self._cursor += 1 - if frame.direction == "recv": - return frame - return None - - def to_dict(self) -> dict[str, Any]: - return { - "uri": self.uri, - "handshake_recorded_at": self.handshake_recorded_at, - "protocol": self.protocol, - "frames": [f.to_dict() for f in self.frames], - } - - @classmethod - def from_dict(cls, d: dict[str, Any]) -> WebSocketSession: - # "url" is the legacy key; "uri" is the current format - uri = d.get("uri") or d.get("url", "") - session = cls( - uri=uri, - handshake_recorded_at=d.get("handshake_recorded_at", ""), - protocol=d.get("protocol"), - ) - session.frames = [Frame.from_dict(f) for f in d.get("frames", [])] - return session - - -# ── Replay proxies ──────────────────────────────────────────────────────────── - - -class FakeExtension: - """Replays pre-recorded WebSocket recv frames for sync clients.""" - - def __init__(self, session: WebSocketSession) -> None: - self._session = session - - def next_payload(self) -> str | None: - frame = self._session.next_recv_frame() - return frame.payload if frame is not None else None - - def send_payload(self, data: str) -> None: - pass - - def close(self) -> None: - pass - - -class AsyncFakeExtension: - """Replays pre-recorded WebSocket recv frames for async clients.""" - - def __init__(self, session: WebSocketSession) -> None: - self._session = session - - async def next_payload(self) -> str | None: - frame = self._session.next_recv_frame() - return frame.payload if frame is not None else None - - async def send_payload(self, data: str) -> None: - pass - - async def close(self) -> None: - pass - - -# ── Recording proxies ───────────────────────────────────────────────────────── - - -class RecordingExtension: - """Wraps a live sync WS extension, recording every frame into *session*.""" - - def __init__(self, real: Any, session: WebSocketSession, start: float) -> None: - self._real = real - self._session = session - self._start = start - - def _elapsed_ms(self) -> int: - return int((time.monotonic() - self._start) * 1000) - - def next_payload(self) -> str | None: - raw = self._real.next_payload() - if raw is not None: - payload = ( - raw if isinstance(raw, str) else raw.decode("utf-8", errors="replace") - ) - self._session.frames.append( - Frame( - direction="recv", - type="text", - payload=payload, - offset_ms=self._elapsed_ms(), - ), - ) - return raw - - def send_payload(self, data: str) -> None: - self._session.frames.append( - Frame( - direction="send", - type="text", - payload=data, - offset_ms=self._elapsed_ms(), - ), - ) - self._real.send_payload(data) - - def close(self) -> None: - self._real.close() - - -class AsyncRecordingExtension: - """Wraps a live async WS extension, recording every frame into *session*.""" - - def __init__(self, real: Any, session: WebSocketSession, start: float) -> None: - self._real = real - self._session = session - self._start = start - - def _elapsed_ms(self) -> int: - return int((time.monotonic() - self._start) * 1000) - - async def next_payload(self) -> str | None: - raw = await self._real.next_payload() - if raw is not None: - payload = ( - raw if isinstance(raw, str) else raw.decode("utf-8", errors="replace") - ) - self._session.frames.append( - Frame( - direction="recv", - type="text", - payload=payload, - offset_ms=self._elapsed_ms(), - ), - ) - return raw - - async def send_payload(self, data: str) -> None: - self._session.frames.append( - Frame( - direction="send", - type="text", - payload=data, - offset_ms=self._elapsed_ms(), - ), - ) - await self._real.send_payload(data) - - async def close(self) -> None: - await self._real.close() diff --git a/packages/nimax/src/nimax/plugin.py b/packages/nimax/src/nimax/plugin.py deleted file mode 100644 index 61f946fa..00000000 --- a/packages/nimax/src/nimax/plugin.py +++ /dev/null @@ -1,175 +0,0 @@ -"""pytest plugin entry point for nimax.""" - -from __future__ import annotations - -from pathlib import Path # noqa: TC003 -from typing import TYPE_CHECKING - -import niquests -import pytest -import pytest_asyncio -import tomllib - -if TYPE_CHECKING: - from collections.abc import AsyncGenerator - from collections.abc import Generator - -from ._adapter import NimaxRecorder -from ._cassette import DEFAULT_MATCH_ON -from ._cassette import SUPPORTED_MATCHERS -from ._record_mode import RecordMode -from ._serializers import JSONSerializer - -# ── pyproject.toml config ───────────────────────────────────────────────────── - - -def _load_nimax_config(config: pytest.Config) -> dict: - """Read ``[tool.nimax]`` from the project's ``pyproject.toml``, if present.""" - pyproject = config.rootpath / "pyproject.toml" - if not pyproject.exists(): - return {} - with pyproject.open("rb") as fh: - data = tomllib.load(fh) - return data.get("tool", {}).get("nimax", {}) - - -# ── CLI options ─────────────────────────────────────────────────────────────── - - -def pytest_addoption(parser: pytest.Parser) -> None: - group = parser.getgroup("niquests-cassettes") - group.addoption( - "--record", - action="store_true", - default=False, - help="Shorthand for --record-mode=all: record cassettes from live traffic.", - ) - group.addoption( - "--record-mode", - default=None, - choices=[m.value for m in RecordMode], - help=( - "Cassette record mode. One of: " - + ", ".join(m.value for m in RecordMode) - + ". Default: once" - ), - ) - group.addoption( - "--cassette-dir", - default=None, - help="Directory to store cassette files (relative to rootdir). Default: cassettes/", - ) - default_matchers = ",".join(sorted(DEFAULT_MATCH_ON)) - supported = ", ".join(sorted(SUPPORTED_MATCHERS)) - group.addoption( - "--cassette-match-on", - default=None, - help=( - f"Comma-separated request components used to match cassette entries. " - f"Supported: {supported}. Default: {default_matchers}" - ), - ) - - -# ── Shared config resolution ────────────────────────────────────────────────── - - -def _resolve_config(request: pytest.FixtureRequest) -> dict: - """Merge pyproject.toml config with CLI options (CLI wins).""" - toml_cfg = _load_nimax_config(request.config) - - # Record mode - if request.config.getoption("--record"): - record_mode = RecordMode.ALL - elif request.config.getoption("--record-mode") is not None: - record_mode = RecordMode(request.config.getoption("--record-mode")) - elif "record_mode" in toml_cfg: - record_mode = RecordMode(toml_cfg["record_mode"]) - else: - record_mode = RecordMode.ONCE - - # Cassette directory - if request.config.getoption("--cassette-dir") is not None: - cassette_dir_str: str = request.config.getoption("--cassette-dir") - else: - cassette_dir_str = toml_cfg.get("cassette_library_dir", "cassettes") - - # Matchers - if request.config.getoption("--cassette-match-on") is not None: - raw: str = request.config.getoption("--cassette-match-on") - match_on = frozenset(m.strip() for m in raw.split(",") if m.strip()) - elif "match_on" in toml_cfg: - cfg_match = toml_cfg["match_on"] - if isinstance(cfg_match, list): - match_on = frozenset(cfg_match) - else: - match_on = frozenset( - m.strip() for m in str(cfg_match).split(",") if m.strip() - ) - else: - match_on = DEFAULT_MATCH_ON - - return { - "record_mode": record_mode, - "cassette_dir": request.config.rootpath / cassette_dir_str, - "match_on": match_on, - } - - -# ── Per-test fixtures ───────────────────────────────────────────────────────── - - -def _test_cassette_path( - request: pytest.FixtureRequest, - cassette_dir: Path, -) -> Path: - """Build a per-test cassette path: ``{cassette_dir}/{module}/{test}.json``.""" - module = request.path.stem - test_name = request.node.name - # Sanitise parameterised-test brackets for filesystem safety - safe_name = test_name.replace("[", "_").replace("]", "").replace("/", "_") - return cassette_dir / module / f"{safe_name}.json" - - -@pytest.fixture -def nimax_session( - request: pytest.FixtureRequest, -) -> Generator[niquests.Session, None, None]: - """Per-test fixture: a ``niquests.Session`` backed by its own cassette. - - Cassette is named ``{cassette_dir}/{module}/{test}.json``. - """ - cfg = _resolve_config(request) - path = _test_cassette_path(request, cfg["cassette_dir"]) - session = niquests.Session() - recorder = NimaxRecorder(session) - with recorder.use_cassette( - path.stem, - cassette_dir=path.parent, - record_mode=cfg["record_mode"], - match_on=cfg["match_on"], - serializer=JSONSerializer(), - ): - yield session - - -@pytest_asyncio.fixture -async def nimax_async_session( - request: pytest.FixtureRequest, -) -> AsyncGenerator[niquests.AsyncSession, None]: - """Per-test fixture: a ``niquests.AsyncSession`` backed by its own cassette. - - Cassette is named ``{cassette_dir}/{module}/{test}.json``. - """ - cfg = _resolve_config(request) - path = _test_cassette_path(request, cfg["cassette_dir"]) - session = niquests.AsyncSession() - recorder = NimaxRecorder(session) - with recorder.use_cassette( - path.stem, - cassette_dir=path.parent, - record_mode=cfg["record_mode"], - match_on=cfg["match_on"], - serializer=JSONSerializer(), - ): - yield session diff --git a/pyproject.toml b/pyproject.toml index 067ee9f2..b2e5cc10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,11 +44,8 @@ dev = [ "nimax", ] -[tool.uv.workspace] -members = ["packages/nimax"] - [tool.uv.sources] -nimax = { workspace = true } +nimax = { path = "/home/alogan/pprojects/nimax", editable = true } [tool.pytest.ini_options] asyncio_mode = "auto" From 79456effadf8119db59433b67e780c9d700fc41c Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Mon, 20 Apr 2026 20:02:48 -0700 Subject: [PATCH 32/34] Migrate to nimax PyPI package and re-record cassettes - Remove local path override for nimax, now resolved from PyPI (nimax==1.0.0) - Move cassettes from cassettes/ to tests/cassettes/ and add [tool.nimax] config - Switch cassette matcher from default path-only to method+uri to correctly distinguish ?return_response requests from plain service calls - Fix EntityRegistryEntryExtended.aliases to tolerate None values from HA - Update compose.yml image to ghcr.io prefix for podman compatibility --- .../test_custom_async_session.json | 126 ----- .../test_client/test_custom_session.json | 126 ----- .../test_default_async_session.json | 126 ----- .../test_client/test_default_session.json | 126 ----- .../test_async_check_api_config.json | 172 ------- ...est_async_disable_enable_config_entry.json | 109 ----- .../test_endpoints/test_async_fire_event.json | 172 ------- .../test_async_get_components.json | 172 ------- .../test_endpoints/test_async_get_config.json | 172 ------- .../test_async_get_config_entries.json | 55 --- .../test_endpoints/test_async_get_domain.json | 172 ------- .../test_async_get_domains.json | 172 ------- .../test_async_get_entities.json | 172 ------- .../test_endpoints/test_async_get_entity.json | 169 ------- .../test_async_get_entity_histories.json | 215 --------- .../test_async_get_entry_subentries.json | 67 --- .../test_async_get_error_log.json | 178 ------- .../test_endpoints/test_async_get_events.json | 172 ------- .../test_async_get_logbook_entries.json | 172 ------- ...t_async_get_nonuser_flows_in_progress.json | 55 --- .../test_async_get_rendered_template.json | 169 ------- .../test_endpoints/test_async_get_state.json | 169 ------- .../test_endpoints/test_async_get_states.json | 172 ------- .../test_endpoints/test_async_set_state.json | 175 ------- .../test_async_trigger_service.json | 218 --------- ...t_async_trigger_service_with_response.json | 206 -------- .../test_async_websocket_get_config.json | 55 --- .../test_async_websocket_get_domain.json | 61 --- .../test_async_websocket_get_domains.json | 67 --- .../test_async_websocket_get_entities.json | 85 ---- ...ync_websocket_get_entity_by_entity_id.json | 91 ---- ...nc_websocket_get_entity_by_group_slug.json | 91 ---- .../test_async_websocket_get_state.json | 109 ----- ...t_async_websocket_get_state_not_found.json | 79 --- .../test_async_websocket_get_states.json | 79 --- .../test_async_websocket_trigger_service.json | 85 ---- ...bsocket_trigger_service_with_response.json | 85 ---- .../test_endpoints/test_check_api_config.json | 172 ------- .../test_disable_enable_config_entry.json | 121 ----- cassettes/test_endpoints/test_fire_event.json | 172 ------- .../test_endpoints/test_get_components.json | 172 ------- cassettes/test_endpoints/test_get_config.json | 172 ------- .../test_get_config_entries.json | 61 --- cassettes/test_endpoints/test_get_domain.json | 172 ------- .../test_endpoints/test_get_domains.json | 172 ------- .../test_endpoints/test_get_entities.json | 172 ------- cassettes/test_endpoints/test_get_entity.json | 169 ------- .../test_get_entity_histories.json | 215 --------- .../test_get_entry_subentries.json | 73 --- .../test_endpoints/test_get_error_log.json | 178 ------- cassettes/test_endpoints/test_get_events.json | 172 ------- .../test_get_logbook_entries.json | 172 ------- .../test_get_nonuser_flows_in_progress.json | 55 --- .../test_get_rendered_template.json | 169 ------- cassettes/test_endpoints/test_get_state.json | 169 ------- cassettes/test_endpoints/test_get_states.json | 172 ------- cassettes/test_endpoints/test_set_state.json | 175 ------- .../test_endpoints/test_trigger_service.json | 218 --------- .../test_trigger_service_with_response.json | 206 -------- .../test_websocket_get_config.json | 55 --- .../test_websocket_get_domain.json | 85 ---- .../test_websocket_get_domains.json | 79 --- .../test_websocket_get_entities.json | 253 ---------- ...est_websocket_get_entity_by_entity_id.json | 283 ----------- ...st_websocket_get_entity_by_group_slug.json | 247 ---------- .../test_websocket_get_state.json | 247 ---------- .../test_websocket_get_state_not_found.json | 259 ---------- .../test_websocket_get_states.json | 265 ---------- .../test_websocket_trigger_service.json | 103 ---- ...socket_trigger_service_with_entity_id.json | 451 ------------------ ...bsocket_trigger_service_with_response.json | 103 ---- .../test_async_list_entity_registry.json | 97 ---- ...st_async_remove_entity_registry_entry.json | 133 ------ ...st_async_update_entity_registry_entry.json | 67 --- .../test_list_entity_registry.json | 433 ----------------- .../test_remove_entity_registry_entry.json | 445 ----------------- .../test_update_entity_registry_entry.json | 67 --- .../test_async_endpoint_not_found_error.json | 169 ------- .../test_async_invalid_template.json | 172 ------- .../test_async_method_not_allowed_error.json | 172 ------- ..._async_no_entity_information_provided.json | 126 ----- .../test_errors/test_async_wrong_headers.json | 126 ----- ...est_domain_missing_services_attribute.json | 126 ----- .../test_endpoint_not_found_error.json | 169 ------- .../test_errors/test_invalid_template.json | 172 ------- .../test_method_not_allowed_error.json | 172 ------- .../test_no_entity_information_provided.json | 126 ----- cassettes/test_errors/test_wrong_headers.json | 126 ----- .../test_async_listen_config_entries.json | 127 ----- .../test_listen_config_entries.json | 127 ----- .../test_async_entity_get_entity.json | 172 ------- .../test_async_entity_get_history.json | 215 --------- .../test_async_entity_get_history_none.json | 215 --------- .../test_async_entity_update_state.json | 218 --------- .../test_models/test_async_fire_event.json | 218 --------- .../test_models/test_async_get_domains.json | 172 ------- .../test_models/test_async_get_event.json | 172 ------- ...omain_from_json_invalid_services_type.json | 126 ----- ...in_from_json_with_client_missing_keys.json | 126 ----- .../test_domain_service_attribute_access.json | 172 ------- .../test_models/test_entity_get_entity.json | 172 ------- .../test_models/test_entity_get_history.json | 215 --------- .../test_entity_get_history_none.json | 215 --------- .../test_models/test_entity_update_state.json | 218 --------- cassettes/test_models/test_fire_event.json | 218 --------- cassettes/test_models/test_get_domain.json | 172 ------- cassettes/test_models/test_get_event.json | 172 ------- compose.yml | 2 +- homeassistant_api/models/entity_registry.py | 7 + pyproject.toml | 5 +- .../test_async_websocket_client_ping.json | 22 +- .../test_custom_async_session.json | 52 ++ .../test_client/test_custom_session.json | 52 ++ .../test_default_async_session.json | 52 ++ .../test_client/test_default_session.json | 52 ++ .../test_websocket_client_ping.json | 22 +- .../test_async_check_api_config.json | 98 ++++ .../test_async_delete_entry_subentry.json | 22 +- ...est_async_disable_enable_config_entry.json | 103 ++++ .../test_endpoints/test_async_fire_event.json | 98 ++++ .../test_async_get_components.json | 98 ++++ .../test_endpoints/test_async_get_config.json | 98 ++++ .../test_async_get_config_entries.json | 55 +++ .../test_endpoints/test_async_get_domain.json | 98 ++++ .../test_async_get_domains.json | 98 ++++ .../test_async_get_entities.json | 98 ++++ .../test_endpoints/test_async_get_entity.json | 95 ++++ .../test_async_get_entity_histories.json | 141 ++++++ .../test_async_get_entry_subentries.json | 67 +++ .../test_async_get_error_log.json | 107 +++++ .../test_endpoints/test_async_get_events.json | 98 ++++ .../test_async_get_logbook_entries.json | 98 ++++ ...t_async_get_nonuser_flows_in_progress.json | 55 +++ .../test_async_get_rendered_template.json | 95 ++++ .../test_endpoints/test_async_get_state.json | 95 ++++ .../test_endpoints/test_async_get_states.json | 98 ++++ .../test_async_ignore_config_flow.json | 22 +- .../test_endpoints/test_async_set_state.json | 101 ++++ .../test_async_trigger_service.json | 190 ++++++++ ...t_async_trigger_service_with_response.json | 144 ++++++ .../test_async_websocket_get_config.json | 55 +++ .../test_async_websocket_get_domain.json | 55 +++ .../test_async_websocket_get_domains.json | 55 +++ .../test_async_websocket_get_entities.json | 55 +++ ...ync_websocket_get_entity_by_entity_id.json | 55 +++ ...nc_websocket_get_entity_by_group_slug.json | 55 +++ ...st_async_websocket_get_entity_no_args.json | 18 +- ...async_websocket_get_rendered_template.json | 28 +- .../test_async_websocket_get_state.json | 55 +++ ...t_async_websocket_get_state_not_found.json | 55 +++ .../test_async_websocket_get_states.json | 55 +++ .../test_async_websocket_trigger_service.json | 79 +++ ...bsocket_trigger_service_with_response.json | 67 +++ .../test_endpoints/test_check_api_config.json | 98 ++++ .../test_delete_entry_subentry.json | 22 +- .../test_disable_enable_config_entry.json | 103 ++++ .../test_endpoints/test_fire_event.json | 98 ++++ .../test_endpoints/test_get_components.json | 98 ++++ .../test_endpoints/test_get_config.json | 98 ++++ .../test_get_config_entries.json | 55 +++ .../test_endpoints/test_get_domain.json | 98 ++++ .../test_endpoints/test_get_domains.json | 98 ++++ .../test_endpoints/test_get_entities.json | 98 ++++ .../test_endpoints/test_get_entity.json | 95 ++++ .../test_get_entity_histories.json | 141 ++++++ .../test_get_entry_subentries.json | 67 +++ .../test_endpoints/test_get_error_log.json | 107 +++++ .../test_endpoints/test_get_events.json | 98 ++++ .../test_get_logbook_entries.json | 98 ++++ .../test_get_nonuser_flows_in_progress.json | 55 +++ .../test_get_rendered_template.json | 95 ++++ .../test_endpoints/test_get_state.json | 95 ++++ .../test_endpoints/test_get_states.json | 98 ++++ .../test_ignore_config_flow.json | 22 +- .../test_endpoints/test_set_state.json | 101 ++++ .../test_endpoints/test_trigger_service.json | 190 ++++++++ .../test_trigger_service_with_response.json | 144 ++++++ .../test_websocket_get_config.json | 55 +++ .../test_websocket_get_domain.json | 55 +++ .../test_websocket_get_domains.json | 55 +++ .../test_websocket_get_entities.json | 55 +++ ...est_websocket_get_entity_by_entity_id.json | 55 +++ ...st_websocket_get_entity_by_group_slug.json | 55 +++ .../test_websocket_get_entity_no_args.json | 18 +- .../test_websocket_get_rendered_template.json | 28 +- .../test_websocket_get_state.json | 55 +++ .../test_websocket_get_state_not_found.json | 55 +++ .../test_websocket_get_states.json | 55 +++ .../test_websocket_trigger_service.json | 79 +++ ...socket_trigger_service_with_entity_id.json | 79 +++ ...bsocket_trigger_service_with_response.json | 67 +++ .../test_async_get_entity_registry_entry.json | 24 +- .../test_async_list_entity_registry.json | 55 +++ ...st_async_remove_entity_registry_entry.json | 79 +++ ...st_async_update_entity_registry_entry.json | 67 +++ .../test_get_entity_registry_entry.json | 24 +- .../test_list_entity_registry.json | 55 +++ .../test_remove_entity_registry_entry.json | 79 +++ .../test_update_entity_registry_entry.json | 67 +++ .../test_async_endpoint_not_found_error.json | 95 ++++ .../test_async_invalid_template.json | 98 ++++ .../test_async_method_not_allowed_error.json | 98 ++++ ..._async_no_entity_information_provided.json | 52 ++ ...et_get_entity_histories_not_supported.json | 18 +- ...ync_websocket_set_state_not_supported.json | 18 +- .../test_errors/test_async_wrong_headers.json | 52 ++ ...est_domain_missing_services_attribute.json | 52 ++ .../test_endpoint_not_found_error.json | 95 ++++ .../test_errors/test_invalid_template.json | 98 ++++ .../test_method_not_allowed_error.json | 98 ++++ .../test_no_entity_information_provided.json | 52 ++ ...et_get_entity_histories_not_supported.json | 18 +- ...est_websocket_set_state_not_supported.json | 18 +- .../test_errors/test_wrong_headers.json | 52 ++ .../test_async_listen_config_entries.json | 121 +++++ .../test_events/test_async_listen_events.json | 36 +- .../test_async_listen_trigger.json | 44 +- .../test_listen_config_entries.json | 121 +++++ .../test_events/test_listen_events.json | 36 +- .../test_events/test_listen_trigger.json | 44 +- .../test_async_entity_get_entity.json | 138 ++++++ .../test_async_entity_get_history.json | 141 ++++++ .../test_async_entity_get_history_none.json | 141 ++++++ .../test_async_entity_update_state.json | 144 ++++++ .../test_models/test_async_fire_event.json | 144 ++++++ .../test_models/test_async_get_domains.json | 98 ++++ .../test_models/test_async_get_event.json | 98 ++++ ...omain_from_json_invalid_services_type.json | 52 ++ ...in_from_json_with_client_missing_keys.json | 52 ++ .../test_domain_service_attribute_access.json | 98 ++++ .../test_models/test_entity_get_entity.json | 138 ++++++ .../test_models/test_entity_get_history.json | 141 ++++++ .../test_entity_get_history_none.json | 141 ++++++ .../test_models/test_entity_update_state.json | 144 ++++++ .../test_models/test_fire_event.json | 144 ++++++ .../test_models/test_get_domain.json | 98 ++++ .../cassettes/test_models/test_get_event.json | 98 ++++ 237 files changed, 9784 insertions(+), 17450 deletions(-) delete mode 100644 cassettes/test_client/test_custom_async_session.json delete mode 100644 cassettes/test_client/test_custom_session.json delete mode 100644 cassettes/test_client/test_default_async_session.json delete mode 100644 cassettes/test_client/test_default_session.json delete mode 100644 cassettes/test_endpoints/test_async_check_api_config.json delete mode 100644 cassettes/test_endpoints/test_async_disable_enable_config_entry.json delete mode 100644 cassettes/test_endpoints/test_async_fire_event.json delete mode 100644 cassettes/test_endpoints/test_async_get_components.json delete mode 100644 cassettes/test_endpoints/test_async_get_config.json delete mode 100644 cassettes/test_endpoints/test_async_get_config_entries.json delete mode 100644 cassettes/test_endpoints/test_async_get_domain.json delete mode 100644 cassettes/test_endpoints/test_async_get_domains.json delete mode 100644 cassettes/test_endpoints/test_async_get_entities.json delete mode 100644 cassettes/test_endpoints/test_async_get_entity.json delete mode 100644 cassettes/test_endpoints/test_async_get_entity_histories.json delete mode 100644 cassettes/test_endpoints/test_async_get_entry_subentries.json delete mode 100644 cassettes/test_endpoints/test_async_get_error_log.json delete mode 100644 cassettes/test_endpoints/test_async_get_events.json delete mode 100644 cassettes/test_endpoints/test_async_get_logbook_entries.json delete mode 100644 cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json delete mode 100644 cassettes/test_endpoints/test_async_get_rendered_template.json delete mode 100644 cassettes/test_endpoints/test_async_get_state.json delete mode 100644 cassettes/test_endpoints/test_async_get_states.json delete mode 100644 cassettes/test_endpoints/test_async_set_state.json delete mode 100644 cassettes/test_endpoints/test_async_trigger_service.json delete mode 100644 cassettes/test_endpoints/test_async_trigger_service_with_response.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_get_config.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_get_domain.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_get_domains.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_get_entities.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_get_state.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_get_state_not_found.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_get_states.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_trigger_service.json delete mode 100644 cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json delete mode 100644 cassettes/test_endpoints/test_check_api_config.json delete mode 100644 cassettes/test_endpoints/test_disable_enable_config_entry.json delete mode 100644 cassettes/test_endpoints/test_fire_event.json delete mode 100644 cassettes/test_endpoints/test_get_components.json delete mode 100644 cassettes/test_endpoints/test_get_config.json delete mode 100644 cassettes/test_endpoints/test_get_config_entries.json delete mode 100644 cassettes/test_endpoints/test_get_domain.json delete mode 100644 cassettes/test_endpoints/test_get_domains.json delete mode 100644 cassettes/test_endpoints/test_get_entities.json delete mode 100644 cassettes/test_endpoints/test_get_entity.json delete mode 100644 cassettes/test_endpoints/test_get_entity_histories.json delete mode 100644 cassettes/test_endpoints/test_get_entry_subentries.json delete mode 100644 cassettes/test_endpoints/test_get_error_log.json delete mode 100644 cassettes/test_endpoints/test_get_events.json delete mode 100644 cassettes/test_endpoints/test_get_logbook_entries.json delete mode 100644 cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json delete mode 100644 cassettes/test_endpoints/test_get_rendered_template.json delete mode 100644 cassettes/test_endpoints/test_get_state.json delete mode 100644 cassettes/test_endpoints/test_get_states.json delete mode 100644 cassettes/test_endpoints/test_set_state.json delete mode 100644 cassettes/test_endpoints/test_trigger_service.json delete mode 100644 cassettes/test_endpoints/test_trigger_service_with_response.json delete mode 100644 cassettes/test_endpoints/test_websocket_get_config.json delete mode 100644 cassettes/test_endpoints/test_websocket_get_domain.json delete mode 100644 cassettes/test_endpoints/test_websocket_get_domains.json delete mode 100644 cassettes/test_endpoints/test_websocket_get_entities.json delete mode 100644 cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json delete mode 100644 cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json delete mode 100644 cassettes/test_endpoints/test_websocket_get_state.json delete mode 100644 cassettes/test_endpoints/test_websocket_get_state_not_found.json delete mode 100644 cassettes/test_endpoints/test_websocket_get_states.json delete mode 100644 cassettes/test_endpoints/test_websocket_trigger_service.json delete mode 100644 cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json delete mode 100644 cassettes/test_endpoints/test_websocket_trigger_service_with_response.json delete mode 100644 cassettes/test_entity_registry/test_async_list_entity_registry.json delete mode 100644 cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json delete mode 100644 cassettes/test_entity_registry/test_async_update_entity_registry_entry.json delete mode 100644 cassettes/test_entity_registry/test_list_entity_registry.json delete mode 100644 cassettes/test_entity_registry/test_remove_entity_registry_entry.json delete mode 100644 cassettes/test_entity_registry/test_update_entity_registry_entry.json delete mode 100644 cassettes/test_errors/test_async_endpoint_not_found_error.json delete mode 100644 cassettes/test_errors/test_async_invalid_template.json delete mode 100644 cassettes/test_errors/test_async_method_not_allowed_error.json delete mode 100644 cassettes/test_errors/test_async_no_entity_information_provided.json delete mode 100644 cassettes/test_errors/test_async_wrong_headers.json delete mode 100644 cassettes/test_errors/test_domain_missing_services_attribute.json delete mode 100644 cassettes/test_errors/test_endpoint_not_found_error.json delete mode 100644 cassettes/test_errors/test_invalid_template.json delete mode 100644 cassettes/test_errors/test_method_not_allowed_error.json delete mode 100644 cassettes/test_errors/test_no_entity_information_provided.json delete mode 100644 cassettes/test_errors/test_wrong_headers.json delete mode 100644 cassettes/test_events/test_async_listen_config_entries.json delete mode 100644 cassettes/test_events/test_listen_config_entries.json delete mode 100644 cassettes/test_models/test_async_entity_get_entity.json delete mode 100644 cassettes/test_models/test_async_entity_get_history.json delete mode 100644 cassettes/test_models/test_async_entity_get_history_none.json delete mode 100644 cassettes/test_models/test_async_entity_update_state.json delete mode 100644 cassettes/test_models/test_async_fire_event.json delete mode 100644 cassettes/test_models/test_async_get_domains.json delete mode 100644 cassettes/test_models/test_async_get_event.json delete mode 100644 cassettes/test_models/test_base_domain_from_json_invalid_services_type.json delete mode 100644 cassettes/test_models/test_domain_from_json_with_client_missing_keys.json delete mode 100644 cassettes/test_models/test_domain_service_attribute_access.json delete mode 100644 cassettes/test_models/test_entity_get_entity.json delete mode 100644 cassettes/test_models/test_entity_get_history.json delete mode 100644 cassettes/test_models/test_entity_get_history_none.json delete mode 100644 cassettes/test_models/test_entity_update_state.json delete mode 100644 cassettes/test_models/test_fire_event.json delete mode 100644 cassettes/test_models/test_get_domain.json delete mode 100644 cassettes/test_models/test_get_event.json rename {cassettes => tests/cassettes}/test_client/test_async_websocket_client_ping.json (71%) create mode 100644 tests/cassettes/test_client/test_custom_async_session.json create mode 100644 tests/cassettes/test_client/test_custom_session.json create mode 100644 tests/cassettes/test_client/test_default_async_session.json create mode 100644 tests/cassettes/test_client/test_default_session.json rename {cassettes => tests/cassettes}/test_client/test_websocket_client_ping.json (71%) create mode 100644 tests/cassettes/test_endpoints/test_async_check_api_config.json rename {cassettes => tests/cassettes}/test_endpoints/test_async_delete_entry_subentry.json (73%) create mode 100644 tests/cassettes/test_endpoints/test_async_disable_enable_config_entry.json create mode 100644 tests/cassettes/test_endpoints/test_async_fire_event.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_components.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_config.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_config_entries.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_domain.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_domains.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_entities.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_entity.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_entity_histories.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_entry_subentries.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_error_log.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_events.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_logbook_entries.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_rendered_template.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_state.json create mode 100644 tests/cassettes/test_endpoints/test_async_get_states.json rename {cassettes => tests/cassettes}/test_endpoints/test_async_ignore_config_flow.json (73%) create mode 100644 tests/cassettes/test_endpoints/test_async_set_state.json create mode 100644 tests/cassettes/test_endpoints/test_async_trigger_service.json create mode 100644 tests/cassettes/test_endpoints/test_async_trigger_service_with_response.json create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_get_config.json create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_get_domain.json create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_get_domains.json create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_get_entities.json create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json rename {cassettes => tests/cassettes}/test_endpoints/test_async_websocket_get_entity_no_args.json (68%) rename {cassettes => tests/cassettes}/test_endpoints/test_async_websocket_get_rendered_template.json (77%) create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_get_state.json create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_get_state_not_found.json create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_get_states.json create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_trigger_service.json create mode 100644 tests/cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json create mode 100644 tests/cassettes/test_endpoints/test_check_api_config.json rename {cassettes => tests/cassettes}/test_endpoints/test_delete_entry_subentry.json (73%) create mode 100644 tests/cassettes/test_endpoints/test_disable_enable_config_entry.json create mode 100644 tests/cassettes/test_endpoints/test_fire_event.json create mode 100644 tests/cassettes/test_endpoints/test_get_components.json create mode 100644 tests/cassettes/test_endpoints/test_get_config.json create mode 100644 tests/cassettes/test_endpoints/test_get_config_entries.json create mode 100644 tests/cassettes/test_endpoints/test_get_domain.json create mode 100644 tests/cassettes/test_endpoints/test_get_domains.json create mode 100644 tests/cassettes/test_endpoints/test_get_entities.json create mode 100644 tests/cassettes/test_endpoints/test_get_entity.json create mode 100644 tests/cassettes/test_endpoints/test_get_entity_histories.json create mode 100644 tests/cassettes/test_endpoints/test_get_entry_subentries.json create mode 100644 tests/cassettes/test_endpoints/test_get_error_log.json create mode 100644 tests/cassettes/test_endpoints/test_get_events.json create mode 100644 tests/cassettes/test_endpoints/test_get_logbook_entries.json create mode 100644 tests/cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json create mode 100644 tests/cassettes/test_endpoints/test_get_rendered_template.json create mode 100644 tests/cassettes/test_endpoints/test_get_state.json create mode 100644 tests/cassettes/test_endpoints/test_get_states.json rename {cassettes => tests/cassettes}/test_endpoints/test_ignore_config_flow.json (73%) create mode 100644 tests/cassettes/test_endpoints/test_set_state.json create mode 100644 tests/cassettes/test_endpoints/test_trigger_service.json create mode 100644 tests/cassettes/test_endpoints/test_trigger_service_with_response.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_get_config.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_get_domain.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_get_domains.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_get_entities.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json rename {cassettes => tests/cassettes}/test_endpoints/test_websocket_get_entity_no_args.json (68%) rename {cassettes => tests/cassettes}/test_endpoints/test_websocket_get_rendered_template.json (77%) create mode 100644 tests/cassettes/test_endpoints/test_websocket_get_state.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_get_state_not_found.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_get_states.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_trigger_service.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json create mode 100644 tests/cassettes/test_endpoints/test_websocket_trigger_service_with_response.json rename {cassettes => tests/cassettes}/test_entity_registry/test_async_get_entity_registry_entry.json (50%) create mode 100644 tests/cassettes/test_entity_registry/test_async_list_entity_registry.json create mode 100644 tests/cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json create mode 100644 tests/cassettes/test_entity_registry/test_async_update_entity_registry_entry.json rename {cassettes => tests/cassettes}/test_entity_registry/test_get_entity_registry_entry.json (50%) create mode 100644 tests/cassettes/test_entity_registry/test_list_entity_registry.json create mode 100644 tests/cassettes/test_entity_registry/test_remove_entity_registry_entry.json create mode 100644 tests/cassettes/test_entity_registry/test_update_entity_registry_entry.json create mode 100644 tests/cassettes/test_errors/test_async_endpoint_not_found_error.json create mode 100644 tests/cassettes/test_errors/test_async_invalid_template.json create mode 100644 tests/cassettes/test_errors/test_async_method_not_allowed_error.json create mode 100644 tests/cassettes/test_errors/test_async_no_entity_information_provided.json rename {cassettes => tests/cassettes}/test_errors/test_async_websocket_get_entity_histories_not_supported.json (68%) rename {cassettes => tests/cassettes}/test_errors/test_async_websocket_set_state_not_supported.json (68%) create mode 100644 tests/cassettes/test_errors/test_async_wrong_headers.json create mode 100644 tests/cassettes/test_errors/test_domain_missing_services_attribute.json create mode 100644 tests/cassettes/test_errors/test_endpoint_not_found_error.json create mode 100644 tests/cassettes/test_errors/test_invalid_template.json create mode 100644 tests/cassettes/test_errors/test_method_not_allowed_error.json create mode 100644 tests/cassettes/test_errors/test_no_entity_information_provided.json rename {cassettes => tests/cassettes}/test_errors/test_websocket_get_entity_histories_not_supported.json (68%) rename {cassettes => tests/cassettes}/test_errors/test_websocket_set_state_not_supported.json (68%) create mode 100644 tests/cassettes/test_errors/test_wrong_headers.json create mode 100644 tests/cassettes/test_events/test_async_listen_config_entries.json rename {cassettes => tests/cassettes}/test_events/test_async_listen_events.json (71%) rename {cassettes => tests/cassettes}/test_events/test_async_listen_trigger.json (74%) create mode 100644 tests/cassettes/test_events/test_listen_config_entries.json rename {cassettes => tests/cassettes}/test_events/test_listen_events.json (69%) rename {cassettes => tests/cassettes}/test_events/test_listen_trigger.json (74%) create mode 100644 tests/cassettes/test_models/test_async_entity_get_entity.json create mode 100644 tests/cassettes/test_models/test_async_entity_get_history.json create mode 100644 tests/cassettes/test_models/test_async_entity_get_history_none.json create mode 100644 tests/cassettes/test_models/test_async_entity_update_state.json create mode 100644 tests/cassettes/test_models/test_async_fire_event.json create mode 100644 tests/cassettes/test_models/test_async_get_domains.json create mode 100644 tests/cassettes/test_models/test_async_get_event.json create mode 100644 tests/cassettes/test_models/test_base_domain_from_json_invalid_services_type.json create mode 100644 tests/cassettes/test_models/test_domain_from_json_with_client_missing_keys.json create mode 100644 tests/cassettes/test_models/test_domain_service_attribute_access.json create mode 100644 tests/cassettes/test_models/test_entity_get_entity.json create mode 100644 tests/cassettes/test_models/test_entity_get_history.json create mode 100644 tests/cassettes/test_models/test_entity_get_history_none.json create mode 100644 tests/cassettes/test_models/test_entity_update_state.json create mode 100644 tests/cassettes/test_models/test_fire_event.json create mode 100644 tests/cassettes/test_models/test_get_domain.json create mode 100644 tests/cassettes/test_models/test_get_event.json diff --git a/cassettes/test_client/test_custom_async_session.json b/cassettes/test_client/test_custom_async_session.json deleted file mode 100644 index 346c0dbc..00000000 --- a/cassettes/test_client/test_custom_async_session.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:10:02 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "201" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fdf76d77b024-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:10:02.816235+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:10:02 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:10:02.826100+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_client/test_custom_session.json b/cassettes/test_client/test_custom_session.json deleted file mode 100644 index 32f1096d..00000000 --- a/cassettes/test_client/test_custom_session.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:10:02 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "201" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fdf69cf20024-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:10:02.687782+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:10:02 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:10:02.696971+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_client/test_default_async_session.json b/cassettes/test_client/test_default_async_session.json deleted file mode 100644 index 9b9ad97d..00000000 --- a/cassettes/test_client/test_default_async_session.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:10:02 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "201" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fdf7da008636-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:10:02.880935+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:10:02 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:10:02.891397+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_client/test_default_session.json b/cassettes/test_client/test_default_session.json deleted file mode 100644 index b98f2232..00000000 --- a/cassettes/test_client/test_default_session.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:10:02 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "201" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fdf70ca31d89-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:10:02.746572+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:10:02 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:10:02.757991+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_check_api_config.json b/cassettes/test_endpoints/test_async_check_api_config.json deleted file mode 100644 index 281b902f..00000000 --- a/cassettes/test_endpoints/test_async_check_api_config.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:53 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "132" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc43e9df4598-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:53.134131+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:53 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:53.145060+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/config/core/check_config", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:53 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "56" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"result\":\"valid\",\"errors\":null,\"warnings\":null}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/config/core/check_config" - }, - "recorded_at": "2026-04-13T08:08:53.242853+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_disable_enable_config_entry.json b/cassettes/test_endpoints/test_async_disable_enable_config_entry.json deleted file mode 100644 index e9b21acc..00000000 --- a/cassettes/test_endpoints/test_async_disable_enable_config_entry.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:56.221123+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", - "offset_ms": 12 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.3", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "56199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", - "offset_ms": 19 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", - "offset_ms": 20 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", - "offset_ms": 28 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 4, \"type\": \"config_entries/get\"}", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", - "offset_ms": 34 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": null, \"id\": 5, \"type\": \"config_entries/disable\"}", - "offset_ms": 34 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", - "offset_ms": 265 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 6, \"type\": \"config_entries/get\"}", - "offset_ms": 265 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":6,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", - "offset_ms": 270 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_fire_event.json b/cassettes/test_endpoints/test_async_fire_event.json deleted file mode 100644 index 8c4afb2f..00000000 --- a/cassettes/test_endpoints/test_async_fire_event.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:59 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "138" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc68ef985332-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:59.056394+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:59 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:59.069319+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/events/my_new_event", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:59 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "47" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"Event my_new_event fired.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/events/my_new_event" - }, - "recorded_at": "2026-04-13T08:08:59.080276+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_components.json b/cassettes/test_endpoints/test_async_get_components.json deleted file mode 100644 index 454d50e8..00000000 --- a/cassettes/test_endpoints/test_async_get_components.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:59 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "138" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc6a0db08864-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:59.231214+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:59 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:59.242450+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/components", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:59 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "1125" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/components" - }, - "recorded_at": "2026-04-13T08:08:59.252139+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_config.json b/cassettes/test_endpoints/test_async_get_config.json deleted file mode 100644 index 1c45c05d..00000000 --- a/cassettes/test_endpoints/test_async_get_config.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "130" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc3afaa34e7c-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:51.704804+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:51.717423+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/config", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "1542" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"allowlist_external_dirs\":[\"/config/www\",\"/media\"],\"allowlist_external_urls\":[],\"components\":[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":0,\"external_url\":null,\"internal_url\":\"https://ha.krkn.cc\",\"language\":\"en\",\"latitude\":45.2486428320808,\"location_name\":\"Logan's Landing\",\"longitude\":-123.11064967054175,\"radius\":129,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Los_Angeles\",\"unit_system\":{\"length\":\"mi\",\"accumulated_precipitation\":\"in\",\"area\":\"ft²\",\"mass\":\"lb\",\"pressure\":\"psi\",\"temperature\":\"°F\",\"volume\":\"gal\",\"wind_speed\":\"mph\"},\"version\":\"2026.1.2\",\"whitelist_external_dirs\":[\"/config/www\",\"/media\"]}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/config" - }, - "recorded_at": "2026-04-13T08:08:51.726900+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_config_entries.json b/cassettes/test_endpoints/test_async_get_config_entries.json deleted file mode 100644 index f14dd5d1..00000000 --- a/cassettes/test_endpoints/test_async_get_config_entries.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:56.683860+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", - "offset_ms": 13 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", - "offset_ms": 19 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_domain.json b/cassettes/test_endpoints/test_async_get_domain.json deleted file mode 100644 index 39772f33..00000000 --- a/cassettes/test_endpoints/test_async_get_domain.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:55 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "134" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc50ec888b90-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:55.211076+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:55 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:55.220851+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:55 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:08:55.234783+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_domains.json b/cassettes/test_endpoints/test_async_get_domains.json deleted file mode 100644 index d51cf004..00000000 --- a/cassettes/test_endpoints/test_async_get_domains.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:54 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "133" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc4eeace8636-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:54.889891+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:54 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:54.901406+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:54 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:08:54.917750+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_entities.json b/cassettes/test_endpoints/test_async_get_entities.json deleted file mode 100644 index 534672db..00000000 --- a/cassettes/test_endpoints/test_async_get_entities.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:53 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "132" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc45a825dab7-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:53.418559+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:53 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:53.430589+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:53 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "90985" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states" - }, - "recorded_at": "2026-04-13T08:08:53.465372+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_entity.json b/cassettes/test_endpoints/test_async_get_entity.json deleted file mode 100644 index 71118b5f..00000000 --- a/cassettes/test_endpoints/test_async_get_entity.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "131" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc3f1828b57f-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:52.364263+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:52.377404+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "641" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.sun" - }, - "recorded_at": "2026-04-13T08:08:52.386963+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_entity_histories.json b/cassettes/test_endpoints/test_async_get_entity_histories.json deleted file mode 100644 index 0aef5299..00000000 --- a/cassettes/test_endpoints/test_async_get_entity_histories.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "131" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc405b0fe22a-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:52.557546+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:52.569217+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "641" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.sun" - }, - "recorded_at": "2026-04-13T08:08:52.579080+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "189" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T08:08:52.570731+00:00\",\"last_updated\":\"2026-04-12T08:08:52.570731+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T13:31:27.886086+00:00\",\"last_updated\":\"2026-04-12T13:31:27.886086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_updated\":\"2026-04-13T02:58:29.987568+00:00\"}]]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun" - }, - "recorded_at": "2026-04-13T08:08:52.595432+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_entry_subentries.json b/cassettes/test_endpoints/test_async_get_entry_subentries.json deleted file mode 100644 index 3c68f011..00000000 --- a/cassettes/test_endpoints/test_async_get_entry_subentries.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:56.812624+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 11 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", - "offset_ms": 13 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", - "offset_ms": 20 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"id\": 3, \"type\": \"config_entries/subentries/list\"}", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":[]}", - "offset_ms": 28 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_error_log.json b/cassettes/test_endpoints/test_async_get_error_log.json deleted file mode 100644 index 9ffadb1d..00000000 --- a/cassettes/test_endpoints/test_async_get_error_log.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "130" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc39ef2c3d1b-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:51.532914+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:51.543027+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/error_log", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "content-type": [ - "application/octet-stream" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "etag": [ - "\"18a5dc3110c7d305-1f862\"" - ], - "last-modified": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "accept-ranges": [ - "bytes" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "2026-04-11 01:19:59.797 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration anomaly which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.798 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration average which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.799 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.799 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration apsystems_ecur which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.800 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration emporia_vue which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.800 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration opensprinkler which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration dahua which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smartthinq_sensors which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration anomaly which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.802 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration average which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.802 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration apsystems_ecur which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration emporia_vue which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration opensprinkler which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.804 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration dahua which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.804 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smartthinq_sensors which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:20:08.151 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for freezer_sensor @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-11 01:20:08.152 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for mariah_light_1 @ 10.0.0.236: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.236', port=6053))]: [Errno 113] Connect call failed ('10.0.0.236', 6053) (SocketAPIError)\n2026-04-11 01:20:08.153 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for mariah_light_2 @ 10.0.0.199: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.199', port=6053))]: [Errno 113] Connect call failed ('10.0.0.199', 6053) (SocketAPIError)\n2026-04-11 01:20:15.271 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_4 @ 10.0.0.186: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.186', port=6053))]: [Errno 113] Connect call failed ('10.0.0.186', 6053) (SocketAPIError)\n2026-04-11 01:40:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 02:40:30.108 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 02:43:36.782 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 02:54:41.494 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 03:20:04.571 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 03:35:04.543 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 03:50:42.249 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 03:55:45.919 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 04:02:12.600 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 04:10:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 04:30:04.570 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 04:47:28.788 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 04:55:04.579 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 05:30:00.435 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-11 05:30:00.487 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-11 05:50:04.546 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:05:04.541 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:42:45.759 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 06:45:04.549 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:51:36.935 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:51:43.899 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 06:55:12.312 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:57:19.452 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:57:33.875 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:00:14.241 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:03:40.790 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 07:03:53.650 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-11 07:04:12.347 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:19:03.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 07:30:04.540 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 07:45:04.570 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:05:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:20:04.560 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:20:05.539 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:05.541 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:06.659 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:06.660 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.312 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.313 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.574 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:22:05.394 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:23:05.430 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:24:05.399 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:25:05.378 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:55:04.566 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 09:33:15.066 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 09:36:09.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 09:40:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:10:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:35:04.578 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:50:04.568 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 11:11:57.239 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 12:05:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 12:30:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 13:05:04.557 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 13:10:50.728 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 14:00:00.204 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-11 14:00:00.409 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 14:10:04.544 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 14:55:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 15:10:04.555 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:15:04.551 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:16:17.888 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:40:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:49:48.102 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:52:05.205 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:59:55.350 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 17:01:19.647 ERROR (MainThread) [homeassistant] Error doing job: Task exception was never retrieved (task: None)\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/_websocket/writer.py\", line 240, in _send_compressed_frame_async_locked\n self._write_websocket_frame(\n ~~~~~~~~~~~~~~~~~~~~~~~~~~~^\n (\n ^\n ...<8 lines>...\n 0x40,\n ^^^^^\n )\n ^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/_websocket/writer.py\", line 151, in _write_websocket_frame\n raise ClientConnectionResetError(\"Cannot write to closing transport\")\naiohttp.client_exceptions.ClientConnectionResetError: Cannot write to closing transport\n2026-04-11 17:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 17:24:26.562 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 17:30:04.574 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 17:38:09.456 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 17:46:52.016 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 17:48:39.466 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:25:04.536 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 18:32:20.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 18:43:58.735 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:46:58.026 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 18:47:17.168 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:59:33.868 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:01:14.708 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:09:25.459 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:16:54.600 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:21:32.275 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:29:18.916 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:37:53.860 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:40:16.378 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 20:10:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 20:35:04.594 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 20:48:55.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 21:30:04.547 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:00:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:25:04.545 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:40:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:48:08.946 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 22:48:31.970 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-11 23:10:54.388 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for freezer_sensor @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-11 23:10:56.464 WARNING (MainThread) [aioesphomeapi.connection] 10.0.0.210: Connection error occurred: 10.0.0.210: Connection requires encryption\n2026-04-11 23:33:33.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 23:40:04.565 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:05:04.593 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:28:55.491 ERROR (MainThread) [homeassistant.components.script.kitchen_lights_off] Kitchen Lights Off: Error executing script. Error for call_service at pos 1: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:28:55.492 ERROR (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Error executing script. Error for call_service at pos 1: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:28:55.493 ERROR (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] Error while executing automation automation.motion_kitchen_lights_off: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:30:04.572 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:31:37.583 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 00:58:50.816 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 01:00:42.766 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 01:15:06.135 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 01:26:54.287 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 01:29:28.512 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:33:58.759 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 01:46:32.286 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.160: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 01:46:42.287 ERROR (MainThread) [aioesphomeapi.connection] office_light_2 @ 10.0.0.160: disconnect request failed\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\nTimeoutError\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 890, in send_messages_await_response_complex\naioesphomeapi.core.TimeoutAPIError: Timeout waiting for DisconnectResponse after 10.0s\n2026-04-12 01:46:50.386 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 01:49:55.510 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:56:25.049 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:58:20.381 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 02:01:22.067 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 02:02:02.419 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:03:27.620 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:05:15.378 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:14:17.225 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 02:15:49.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:16:51.475 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:21:01.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:23:21.961 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 02:30:20.709 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 02:33:12.004 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:35:04.544 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 02:38:54.035 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:39:27.942 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for garage-parking @ 10.0.0.210: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))] (TimeoutAPIError)\n2026-04-12 02:43:43.676 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:46:25.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:51:52.320 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 02:52:56.540 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.2s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:54:58.536 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 02:59:33.887 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 03:11:17.708 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:11:20.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 03:12:08.766 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 03:13:20.248 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:20:50.624 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:23:09.898 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 03:24:40.686 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 03:36:06.787 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 03:37:27.816 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:40:17.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 03:45:04.555 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 03:48:58.546 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:51:48.500 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 04:01:17.510 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 04:02:03.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 04:05:40.470 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 04:09:59.830 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 04:15:00.962 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.185: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 04:15:10.963 ERROR (MainThread) [aioesphomeapi.connection] front_porch_3 @ 10.0.0.185: disconnect request failed\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\nTimeoutError\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 890, in send_messages_await_response_complex\naioesphomeapi.core.TimeoutAPIError: Timeout waiting for DisconnectResponse after 10.0s\n2026-04-12 04:15:55.452 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Timeout waiting for HelloResponse after 30.0s (TimeoutAPIError)\n2026-04-12 04:28:36.466 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:30:04.591 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 04:31:40.208 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 04:41:05.548 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 04:45:54.593 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:46:47.195 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:50:15.480 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:50:18.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 04:52:34.012 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 04:55:04.539 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 04:56:36.677 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.160: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 04:56:39.705 ERROR (MainThread) [aioesphomeapi.connection] office_light_2 @ 10.0.0.160: disconnect request failed\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/asyncio/selector_events.py\", line 1005, in _read_ready__data_received\n data = self._sock.recv(self.max_size)\nConnectionResetError: [Errno 104] Connection reset by peer\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\naioesphomeapi.core.ReadFailedAPIError: [Errno 104] Connection reset by peer\n2026-04-12 05:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 05:30:00.435 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-12 05:30:00.485 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-12 06:15:04.540 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 06:16:37.279 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-12 06:17:08.627 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 06:40:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 07:10:04.547 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 08:32:03.113 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 08:48:19.617 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 08:55:04.567 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 09:21:47.304 WARNING (SyncWorker_7) [custom_components.apsystems_ecur] Using cached data from last successful communication from ECU. Exception error: 'NoneType' object does not support item assignment\n2026-04-12 09:26:52.302 WARNING (SyncWorker_0) [custom_components.apsystems_ecur] Using cached data from last successful communication from ECU. Invalid data error: [Errno 111] Connection refused\n2026-04-12 09:40:04.560 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:09:02.498 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-12 10:09:31.130 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 10:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:30:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:55:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 11:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 11:50:18.052 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 12:20:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 12:33:09.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 12:36:37.398 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: HTTPSConnectionPool(host='api.emporiaenergy.com', port=443): Read timed out. (read timeout=10.03)\n2026-04-12 12:36:37.399 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: HTTPSConnectionPool(host='api.emporiaenergy.com', port=443): Read timed out. (read timeout=10.03)\n2026-04-12 13:03:49.371 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:14:38.271 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:21:57.324 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:30:51.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 14:00:00.203 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-12 14:00:04.543 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 14:20:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 14:40:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 15:11:01.011 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:14:29.549 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 15:14:50.963 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 1: Call cancelled\n2026-04-12 15:15:04.578 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 15:37:07.990 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:48:27.189 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:50:04.572 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 16:15:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 16:21:30.964 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 16:50:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 17:06:11.516 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 17:12:18.296 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error demuxing stream (Operation timed out, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:20.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 17:12:20.264 ERROR (MainThread) [homeassistant.components.roku.coordinator] Error fetching roku data: Invalid response from API: Timeout occurred while connecting to device\n2026-04-12 17:12:26.948 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Error occurred while communicating with WLED device at 10.0.0.187\n2026-04-12 17:12:29.355 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:31.429 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:32.871 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:36.229 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:12:36.229 ERROR (MainThread) [custom_components.dahua] Error fetching dahua data: \n2026-04-12 17:12:40.059 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 17:12:43.040 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Timeout occurred while connecting to WLED device at 10.0.0.176\n2026-04-12 17:12:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:45.058 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 17:12:47.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:52.548 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:02.072 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:08.149 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:13:13.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:17.111 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:23.748 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:13:28.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:31.831 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:38.153 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 1 (10.0.0.190) data\n2026-04-12 17:13:38.252 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bedroom 1 (10.0.0.177) data\n2026-04-12 17:13:38.285 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 6 (10.0.0.195) data\n2026-04-12 17:13:38.288 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Shower (10.0.0.197) data\n2026-04-12 17:13:38.337 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 2 (10.0.0.191) data\n2026-04-12 17:13:38.420 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 4 (10.0.0.193) data\n2026-04-12 17:13:38.451 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Entry Light (10.0.0.196) data\n2026-04-12 17:13:38.452 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 5 (10.0.0.194) data\n2026-04-12 17:13:38.507 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bedroom 2 (10.0.0.178) data\n2026-04-12 17:13:38.532 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 3 (10.0.0.192) data\n2026-04-12 17:13:38.535 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Matter Bath Toilet (10.0.0.198) data\n2026-04-12 17:13:39.349 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:13:41.557 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Mariah Light (10.0.0.110) data\n2026-04-12 17:13:42.180 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 1 (10.0.0.150) data\n2026-04-12 17:13:42.320 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 3 (10.0.0.152) data\n2026-04-12 17:13:42.375 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 2 (10.0.0.151) data\n2026-04-12 17:13:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:44.224 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 3 (10.0.0.182) data\n2026-04-12 17:13:44.244 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 2 (10.0.0.181) data\n2026-04-12 17:13:45.194 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Living Room 1 (10.0.0.170) data\n2026-04-12 17:13:45.460 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 1 (10.0.0.180) data\n2026-04-12 17:13:46.872 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:47.271 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Living Room 2 (10.0.0.171) data\n2026-04-12 17:13:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:58.948 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 17:14:01.591 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:04.068 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for leks_lamp @ 10.0.0.49: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.49', port=6053))]: [Errno 113] Connect call failed ('10.0.0.49', 6053) (SocketAPIError)\n2026-04-12 17:14:05.348 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:14:06.149 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_4 @ 10.0.0.162: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.162', port=6053))]: [Errno 113] Connect call failed ('10.0.0.162', 6053) (SocketAPIError)\n2026-04-12 17:14:06.318 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.185', port=6053))]: [Errno 113] Connect call failed ('10.0.0.185', 6053) (SocketAPIError)\n2026-04-12 17:14:07.188 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_3 @ 10.0.0.161: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.161', port=6053))]: [Errno 113] Connect call failed ('10.0.0.161', 6053) (SocketAPIError)\n2026-04-12 17:14:09.828 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_lamp_1 @ 10.0.0.163: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.163', port=6053))]: [Errno 113] Connect call failed ('10.0.0.163', 6053) (SocketAPIError)\n2026-04-12 17:14:11.989 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:14:12.558 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_2 @ 10.0.0.184: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.184', port=6053))]: [Errno 113] Connect call failed ('10.0.0.184', 6053) (SocketAPIError)\n2026-04-12 17:14:13.361 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:14.788 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_1 @ 10.0.0.183: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.183', port=6053))]: [Errno 113] Connect call failed ('10.0.0.183', 6053) (SocketAPIError)\n2026-04-12 17:14:17.111 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.2s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:17.268 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_1 @ 10.0.0.159: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.159', port=6053))]: [Errno 113] Connect call failed ('10.0.0.159', 6053) (SocketAPIError)\n2026-04-12 17:14:28.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:32.311 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:43.439 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:14:46.951 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:58.308 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:14:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:02.241 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 17:15:13.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:14.239 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:15:16.871 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:28.401 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:31.911 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:46.229 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:15:47.041 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:58.628 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:16:16.376 ERROR (MainThread) [custom_components.dahua] server closed the connection\n2026-04-12 17:16:16.377 WARNING (MainThread) [custom_components.dahua] Disconnected from VTO at 10.0.0.107, reconnecting in 5s\n2026-04-12 17:20:00.850 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 17:22:42.937 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 17:36:58.262 ERROR (MainThread) [homeassistant.components.roku.coordinator] Error fetching roku data: Invalid response from API: Timeout occurred while connecting to device\n2026-04-12 17:41:28.993 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error demuxing stream (Operation timed out, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:41:29.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 17:41:32.148 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:41:32.148 ERROR (MainThread) [custom_components.dahua] Error fetching dahua data: \n2026-04-12 17:41:52.632 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Timeout occurred while connecting to WLED device at 10.0.0.187\n2026-04-12 17:41:54.059 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 18:08:22.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 18:15:57.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 18:30:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 18:33:30.868 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for garage-parking @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-12 18:34:56.001 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:35:20.098 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:37:00.945 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:37:01.877 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:37:37.665 ERROR (MainThread) [snitun.multiplexer.core] Timeout error while pinging peer\n2026-04-12 18:37:53.449 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:37:54.500 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:38:12.624 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:38:13.568 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:38:43.881 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:38:44.821 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:41:28.326 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 18:47:50.237 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:47:51.234 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:11.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:11.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:21.244 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:36.683 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:49:01.774 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:49:04.943 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:49:14.523 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.13/site-packages/turbojpeg.py:947: UserWarning: Corrupt JPEG data: 608 extraneous bytes before marker 0xfe\n warnings.warn(self.__get_error_string(handle))\n\n2026-04-12 18:50:19.341 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 18:50:37.444 ERROR (MainThread) [homeassistant.components.automation.notify_garage_lights_left_on] NOTIFY - Garage Lights Left On: Error executing script. Service not found for call_service at pos 1: Action notify.mobile_app_adam_s_pixel_7 not found\n2026-04-12 19:27:44.345 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:28:09.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:32:49.299 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:33:33.495 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:35:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 19:43:54.509 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:44:20.653 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:44:50.468 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:45:21.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:45:22.499 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:47:23.415 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 19:50:06.490 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:09.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:50:34.528 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:35.452 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:47.998 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:50:48.935 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:51:02.855 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:22.658 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:53:23.593 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:53:24.888 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:25.812 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:31.411 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:54:12.569 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:54:13.578 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:00:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 20:00:15.837 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:00:16.807 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:00:55.970 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:00:56.935 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:04:02.331 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 20:15:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 20:17:37.705 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 20:35:01.370 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:35:02.307 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:37:34.234 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:37:35.199 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:40:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 21:00:34.107 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:00:35.075 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:01:33.320 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:01:34.311 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:02:06.347 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:02:07.305 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:05:04.549 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 21:11:34.866 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:11:35.826 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:12:50.072 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:13:12.937 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:18:06.778 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:33:38.676 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:34:08.277 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:44:24.585 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:44:27.859 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:44:50.813 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:44:51.775 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:46:30.620 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 22:40:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 22:53:12.965 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 22:53:14.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 22:53:41.290 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 22:53:42.245 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:00:55.476 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:00:56.474 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:01:39.220 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:01:39.224 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:02:20.947 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:02:49.147 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:02:55.878 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:03:51.394 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:05:28.785 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 23:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:14:05.881 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:14:06.810 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:14:17.323 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:25:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:25:12.344 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:25:13.330 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:25:34.221 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:25:35.184 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:12.175 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:13.173 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:21.888 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:22.867 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:47.187 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:48.204 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:28:30.553 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:28:31.559 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:28:56.733 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:28:57.727 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:31:25.167 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:36:46.658 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:50:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:53:43.998 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:44.986 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:51.335 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:52.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:54:21.085 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:54:22.070 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:55:00.235 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:01.188 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:29.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:30.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:56:23.519 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:56:24.480 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:03:40.855 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:03:41.859 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:04:06.692 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:04:07.671 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:10:29.774 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:10:30.730 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:11:01.924 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:11:02.865 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:30:37.277 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:38.231 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:44.481 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:45.488 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:31:11.688 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:31:12.623 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:33:12.698 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:33:13.644 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:33:41.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:33:42.483 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:35:04.648 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 01:19:20.217 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 01:28:30.229 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 01:28:30.230 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 01:30:04.561 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 01:51:28.016 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 02:02:20.007 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:02:21.000 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:02:35.302 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:02:36.299 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:03:38.287 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:03:39.278 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:05:19.460 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:08:01.758 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:15:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 02:21:50.760 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 02:25:23.626 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:25:23.627 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:27:26.948 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:27:55.098 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:30:04.566 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 02:31:07.280 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:32:40.684 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:33:22.731 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:34:29.163 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:34:59.947 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:35:04.410 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:35:28.265 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:36:47.884 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:37:40.130 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:41:20.303 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:42:02.493 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:42:15.938 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:43:26.188 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:44:04.238 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:44:43.899 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:49:12.330 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:50:03.755 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:50:04.688 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:50:13.984 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:51:10.488 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:52:39.343 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:52:39.344 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:05:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 03:17:13.148 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:14.135 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:50.879 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:17:51.826 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:17:57.216 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:58.217 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:19.244 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:18:19.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:26.380 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:27.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:50.403 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:18:51.386 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:24:12.901 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:05:26.000 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:12:42.948 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:12:51.671 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:12:52.621 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:13:22.269 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:13:23.241 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:16:44.600 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:16:45.564 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:17:16.916 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:17:17.842 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:39:38.985 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:40:04.551 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 04:40:09.417 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:43:51.433 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:05.993 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:24.618 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:25.647 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:48.614 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:44:48.614 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 05:05:04.541 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 05:30:00.438 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-13 05:30:00.466 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-13 05:39:21.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-13 06:50:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 06:57:44.314 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.13/site-packages/turbojpeg.py:947: UserWarning: Corrupt JPEG data: 608 extraneous bytes before marker 0xfe\n warnings.warn(self.__get_error_string(handle))\n\n2026-04-13 08:05:05.661 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455378877664] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:05.728 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454991178912] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:07.419 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455122022496] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:07.473 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993089600] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.092 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901625728] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.150 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899902048] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.313 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899895648] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.447 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899907008] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.565 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900018976] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.618 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900014976] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.695 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900144448] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.795 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454991711744] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.896 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900140768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.964 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900144608] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.044 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900152128] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.166 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900147648] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.299 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900143008] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.383 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899829312] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.639 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455100599168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.693 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900139488] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.933 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454992494656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.997 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993092800] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.088 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993095680] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.142 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993093120] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.824 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904965824] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.111 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455083636064] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.177 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455083631104] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.247 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535808480] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.304 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535814880] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.371 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901624768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.434 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535814720] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.500 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901620768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.565 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901623488] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.627 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901626048] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.960 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901615168] An action which does not return responses can't be called with return_response=True\n2026-04-13 08:05:11.973 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901615168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.041 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901621408] An action which does not return responses can't be called with return_response=True\n2026-04-13 08:05:12.053 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901621408] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.235 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900394848] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.326 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.327 ERROR (MainThread) [aiohttp.server] Error handling request from 10.40.0.2\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_protocol.py\", line 510, in _handle_request\n resp = await request_handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_app.py\", line 569, in _handle\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_middlewares.py\", line 117, in impl\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/security_filter.py\", line 92, in security_filter_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/forwarded.py\", line 214, in forwarded_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/request_context.py\", line 26, in request_context_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/ban.py\", line 86, in ban_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/auth.py\", line 242, in auth_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/headers.py\", line 41, in headers_middleware\n response = await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/http.py\", line 73, in handle\n result = await handler(request, **request.match_info)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/api/__init__.py\", line 437, in post\n response = await shield(\n ^^^^^^^^^^^^^\n ...<8 lines>...\n )\n ^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2819, in async_call\n response_data = await coro\n ^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2862, in _execute_service\n return await target(service_call)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/service.py\", line 824, in entity_service_call\n raise HomeAssistantError(\n \"Service call requested response data but did not match any entities\"\n )\nhomeassistant.exceptions.HomeAssistantError: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.489 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.489 ERROR (MainThread) [aiohttp.server] Error handling request from 10.40.0.2\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_protocol.py\", line 510, in _handle_request\n resp = await request_handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_app.py\", line 569, in _handle\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_middlewares.py\", line 117, in impl\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/security_filter.py\", line 92, in security_filter_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/forwarded.py\", line 214, in forwarded_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/request_context.py\", line 26, in request_context_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/ban.py\", line 86, in ban_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/auth.py\", line 242, in auth_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/headers.py\", line 41, in headers_middleware\n response = await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/http.py\", line 73, in handle\n result = await handler(request, **request.match_info)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/api/__init__.py\", line 437, in post\n response = await shield(\n ^^^^^^^^^^^^^\n ...<8 lines>...\n )\n ^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2819, in async_call\n response_data = await coro\n ^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2862, in _execute_service\n return await target(service_call)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/service.py\", line 824, in entity_service_call\n raise HomeAssistantError(\n \"Service call requested response data but did not match any entities\"\n )\nhomeassistant.exceptions.HomeAssistantError: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.591 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.591 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] Error during service call to weather.get_forecasts: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.598 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] The action requires responses and must be called with return_response=True\n2026-04-13 08:05:12.641 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.715 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.715 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] Error during service call to weather.get_forecasts: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.722 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] The action requires responses and must be called with return_response=True\n2026-04-13 08:05:12.762 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:13.115 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900392928] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:13.198 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900399168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.338 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904955424] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.401 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901628448] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.479 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901614528] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.844 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900393888] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.008 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038481280] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.212 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038482080] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.277 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038480000] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.414 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038472000] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.476 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-13 08:05:15.523 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-13 08:05:15.566 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-13 08:05:15.630 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-13 08:05:16.552 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455084119904] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.611 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041390272] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.659 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041388192] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.708 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041391072] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.797 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455161674656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.898 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904968384] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:17.302 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455085128128] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:17.932 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900261056] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:18.239 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900261376] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:19.098 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900018656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:08:51.293 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900015616] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:08:51.362 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900009376] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/error_log" - }, - "recorded_at": "2026-04-13T08:08:51.558421+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_events.json b/cassettes/test_endpoints/test_async_get_events.json deleted file mode 100644 index d3896dd5..00000000 --- a/cassettes/test_endpoints/test_async_get_events.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "137" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc67bc1fef6f-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:58.874390+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:58.888687+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/events", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "248" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":4},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/events" - }, - "recorded_at": "2026-04-13T08:08:58.901183+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_logbook_entries.json b/cassettes/test_endpoints/test_async_get_logbook_entries.json deleted file mode 100644 index d5dcc87e..00000000 --- a/cassettes/test_endpoints/test_async_get_logbook_entries.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "130" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc3d083dff12-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:52.026443+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:52.035877+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "173" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:19.396864+00:00\",\"context_user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:19.501928+00:00\",\"context_user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00" - }, - "recorded_at": "2026-04-13T08:08:52.228761+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json b/cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json deleted file mode 100644 index 102b5e15..00000000 --- a/cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:55.499995+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 9 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 9 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 14 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config_entries/flow/progress\"}", - "offset_ms": 15 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"flow_id\":\"01KNX20H106MWSVY485WG4GDJV\",\"handler\":\"matter\",\"context\":{\"source\":\"zeroconf\",\"discovery_key\":{\"domain\":\"zeroconf\",\"key\":[\"_matter._tcp.local.\",\"FCE73F24FC01F9E6-00000000533C2701._matter._tcp.local.\"],\"version\":1},\"unique_id\":\"default_discovery_unique_id\"},\"step_id\":\"manual\"},{\"flow_id\":\"01KP2RCRT7PWY3TA3P9BWJTVHV\",\"handler\":\"androidtv_remote\",\"context\":{\"source\":\"zeroconf\",\"discovery_key\":{\"domain\":\"zeroconf\",\"key\":[\"_androidtvremote2._tcp.local.\",\"Lex room TV._androidtvremote2._tcp.local.\"],\"version\":1},\"unique_id\":\"c0:e5:da:99:a2:fd\",\"title_placeholders\":{\"name\":\"Lex room TV\"}},\"step_id\":\"zeroconf_confirm\"}]}", - "offset_ms": 20 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_rendered_template.json b/cassettes/test_endpoints/test_async_get_rendered_template.json deleted file mode 100644 index 151f659e..00000000 --- a/cassettes/test_endpoints/test_async_get_rendered_template.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "131" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc41690a4b01-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:52.735154+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:52.745121+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/template", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "text/plain; charset=utf-8" - ], - "content-length": [ - "29" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "The sun is below the horizon." - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/template" - }, - "recorded_at": "2026-04-13T08:08:52.753926+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_state.json b/cassettes/test_endpoints/test_async_get_state.json deleted file mode 100644 index a3cd7c09..00000000 --- a/cassettes/test_endpoints/test_async_get_state.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "137" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc65aa7def67-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:58.531317+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:58.539684+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "641" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.sun" - }, - "recorded_at": "2026-04-13T08:08:58.546756+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_get_states.json b/cassettes/test_endpoints/test_async_get_states.json deleted file mode 100644 index aa29013a..00000000 --- a/cassettes/test_endpoints/test_async_get_states.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "137" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc631aa85edd-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:58.124208+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:58.134998+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "90989" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states" - }, - "recorded_at": "2026-04-13T08:08:58.162370+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_set_state.json b/cassettes/test_endpoints/test_async_set_state.json deleted file mode 100644 index 030c028e..00000000 --- a/cassettes/test_endpoints/test_async_set_state.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "137" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc66b80112b1-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:58.699796+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:58.711349+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/states/sun.red_sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "216" - ], - "location": [ - "/api/states/sun.red_sun" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"beyond_our_solar_system\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:08:58.618002+00:00\",\"last_reported\":\"2026-04-13T08:08:58.618002+00:00\",\"last_updated\":\"2026-04-13T08:08:58.618002+00:00\",\"context\":{\"id\":\"01KP2Y5YZS5M77V83CMRSFA6BM\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.red_sun" - }, - "recorded_at": "2026-04-13T08:08:58.721547+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_trigger_service.json b/cassettes/test_endpoints/test_async_trigger_service.json deleted file mode 100644 index 160a42c2..00000000 --- a/cassettes/test_endpoints/test_async_trigger_service.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "136" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc5cdbea5d68-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:57.123200+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:57.132727+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:08:57.147145+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/services/notify/persistent_notification?return_response", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 400, - "message": "Bad Request" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "82" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"Service does not support responses. Remove return_response from request.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services/notify/persistent_notification?return_response" - }, - "recorded_at": "2026-04-13T08:08:57.175877+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_trigger_service_with_response.json b/cassettes/test_endpoints/test_async_trigger_service_with_response.json deleted file mode 100644 index 27a02b64..00000000 --- a/cassettes/test_endpoints/test_async_trigger_service_with_response.json +++ /dev/null @@ -1,206 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "136" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc60ac77c146-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:57.739399+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:57.751477+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:08:57.767589+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/services/weather/get_forecasts?return_response", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 500, - "message": "Internal Server Error" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "text/plain; charset=utf-8" - ], - "content-length": [ - "55" - ] - }, - "body": { - "string": "500 Internal Server Error\n\nServer got itself in trouble" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services/weather/get_forecasts?return_response" - }, - "recorded_at": "2026-04-13T08:08:57.798923+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_config.json b/cassettes/test_endpoints/test_async_websocket_get_config.json deleted file mode 100644 index 5905796d..00000000 --- a/cassettes/test_endpoints/test_async_websocket_get_config.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:53.564809+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_config\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"allowlist_external_dirs\":[\"/config/www\",\"/media\"],\"allowlist_external_urls\":[],\"components\":[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":0,\"external_url\":null,\"internal_url\":\"https://ha.krkn.cc\",\"language\":\"en\",\"latitude\":45.2486428320808,\"location_name\":\"Logan's Landing\",\"longitude\":-123.11064967054175,\"radius\":129,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Los_Angeles\",\"unit_system\":{\"length\":\"mi\",\"accumulated_precipitation\":\"in\",\"area\":\"ft²\",\"mass\":\"lb\",\"pressure\":\"psi\",\"temperature\":\"°F\",\"volume\":\"gal\",\"wind_speed\":\"mph\"},\"version\":\"2026.1.2\",\"whitelist_external_dirs\":[\"/config/www\",\"/media\"]}}", - "offset_ms": 16 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_domain.json b/cassettes/test_endpoints/test_async_websocket_get_domain.json deleted file mode 100644 index 51c34bdd..00000000 --- a/cassettes/test_endpoints/test_async_websocket_get_domain.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:55.354201+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_services\"}", - "offset_ms": 13 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", - "offset_ms": 25 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_domains.json b/cassettes/test_endpoints/test_async_websocket_get_domains.json deleted file mode 100644 index 56e18646..00000000 --- a/cassettes/test_endpoints/test_async_websocket_get_domains.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:55.028274+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_services\"}", - "offset_ms": 13 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"", - "offset_ms": 21 - }, - { - "direction": "recv", - "type": "text", - "payload": "required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":", - "offset_ms": 21 - }, - { - "direction": "recv", - "type": "text", - "payload": "1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", - "offset_ms": 22 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_entities.json b/cassettes/test_endpoints/test_async_websocket_get_entities.json deleted file mode 100644 index 27b6652a..00000000 --- a/cassettes/test_endpoints/test_async_websocket_get_entities.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:54.685934+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 11 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 12 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"d", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "ock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4J", - "offset_ms": 35 - }, - { - "direction": "recv", - "type": "text", - "payload": "M6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 38 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json b/cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json deleted file mode 100644 index 2e2f748c..00000000 --- a/cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:54.217880+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"d", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "ock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr C", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "losed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BM", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "Y15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0R", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "NPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 35 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json b/cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json deleted file mode 100644 index 3f8acfce..00000000 --- a/cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:54.137036+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", - "offset_ms": 21 - }, - { - "direction": "recv", - "type": "text", - "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-chec", - "offset_ms": 32 - }, - { - "direction": "recv", - "type": "text", - "payload": "k\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 36 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_state.json b/cassettes/test_endpoints/test_async_websocket_get_state.json deleted file mode 100644 index cea7285a..00000000 --- a/cassettes/test_endpoints/test_async_websocket_get_state.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:54.056157+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 13 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", - "offset_ms": 29 - }, - { - "direction": "recv", - "type": "text", - "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current M", - "offset_ms": 34 - }, - { - "direction": "recv", - "type": "text", - "payload": "ode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 38 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_state_not_found.json b/cassettes/test_endpoints/test_async_websocket_get_state_not_found.json deleted file mode 100644 index 221fd821..00000000 --- a/cassettes/test_endpoints/test_async_websocket_get_state_not_found.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:54.360020+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 34 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_states.json b/cassettes/test_endpoints/test_async_websocket_get_states.json deleted file mode 100644 index f06f7c95..00000000 --- a/cassettes/test_endpoints/test_async_websocket_get_states.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:58.339109+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 7 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 7 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 13 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 14 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40", - "offset_ms": 35 - }, - { - "direction": "recv", - "type": "text", - "payload": "KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 46 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_trigger_service.json b/cassettes/test_endpoints/test_async_websocket_trigger_service.json deleted file mode 100644 index 0afe3a3e..00000000 --- a/cassettes/test_endpoints/test_async_websocket_trigger_service.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:57.288382+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_services\"}", - "offset_ms": 12 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pul", - "offset_ms": 20 - }, - { - "direction": "recv", - "type": "text", - "payload": "se\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", - "offset_ms": 22 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"service_validation_error\",\"message\":\"Validation error: An action which does not return responses can't be called with return_response=True\",\"translation_key\":\"service_does_not_support_response\",\"translation_placeholders\":{\"return_response\":\"return_response=True\"},\"translation_domain\":\"homeassistant\"}}", - "offset_ms": 38 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": false, \"id\": 4, \"type\": \"call_service\"}", - "offset_ms": 38 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KP2Y5XQ43364GY8JC2C97AW4\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}}", - "offset_ms": 45 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json b/cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json deleted file mode 100644 index 417c3ab1..00000000 --- a/cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:57.913959+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_services\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recordi", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "ng. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", - "offset_ms": 21 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"domain\": \"weather\", \"service\": \"get_forecasts\", \"service_data\": {\"entity_id\": \"weather.forecast_home\", \"type\": \"hourly\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"home_assistant_error\",\"message\":\"Service call requested response data but did not match any entities\"}}", - "offset_ms": 33 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"domain\": \"weather\", \"service\": \"get_forecasts\", \"service_data\": {\"entity_id\": \"weather.forecast_home\", \"type\": \"hourly\"}, \"return_response\": false, \"id\": 4, \"type\": \"call_service\"}", - "offset_ms": 33 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"service_validation_error\",\"message\":\"Validation error: The action requires responses and must be called with return_response=True\",\"translation_key\":\"service_lacks_response_request\",\"translation_placeholders\":{\"return_response\":\"return_response=True\"},\"translation_domain\":\"homeassistant\"}}", - "offset_ms": 40 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_check_api_config.json b/cassettes/test_endpoints/test_check_api_config.json deleted file mode 100644 index 708b680b..00000000 --- a/cassettes/test_endpoints/test_check_api_config.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "131" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc42b8f3b395-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:52.941250+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:52.956246+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/config/core/check_config", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:53 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "56" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"result\":\"valid\",\"errors\":null,\"warnings\":null}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/config/core/check_config" - }, - "recorded_at": "2026-04-13T08:08:53.081326+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_disable_enable_config_entry.json b/cassettes/test_endpoints/test_disable_enable_config_entry.json deleted file mode 100644 index a0b858d6..00000000 --- a/cassettes/test_endpoints/test_disable_enable_config_entry.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:55.559725+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.3", - "offset_ms": 17 - }, - { - "direction": "recv", - "type": "text", - "payload": "56199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", - "offset_ms": 18 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", - "offset_ms": 27 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 4, \"type\": \"config_entries/get\"}", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb", - "offset_ms": 35 - }, - { - "direction": "recv", - "type": "text", - "payload": "1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", - "offset_ms": 36 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": null, \"id\": 5, \"type\": \"config_entries/disable\"}", - "offset_ms": 38 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", - "offset_ms": 611 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 6, \"type\": \"config_entries/get\"}", - "offset_ms": 611 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":6,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a486", - "offset_ms": 616 - }, - { - "direction": "recv", - "type": "text", - "payload": "6f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", - "offset_ms": 617 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_fire_event.json b/cassettes/test_endpoints/test_fire_event.json deleted file mode 100644 index a058e1df..00000000 --- a/cassettes/test_endpoints/test_fire_event.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "137" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc685bd8d82e-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:58.961153+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:58.970980+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/events/my_new_event", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "47" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"Event my_new_event fired.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/events/my_new_event" - }, - "recorded_at": "2026-04-13T08:08:58.979553+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_components.json b/cassettes/test_endpoints/test_get_components.json deleted file mode 100644 index ad0768e9..00000000 --- a/cassettes/test_endpoints/test_get_components.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:59 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "138" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc697f0c11c8-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:59.152846+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:59 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:59.166771+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/components", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:59 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "1125" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/components" - }, - "recorded_at": "2026-04-13T08:08:59.177114+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_config.json b/cassettes/test_endpoints/test_get_config.json deleted file mode 100644 index 415d2ac5..00000000 --- a/cassettes/test_endpoints/test_get_config.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "130" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc3a6adbc12a-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:51.613104+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:51.622633+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/config", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "1542" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"allowlist_external_dirs\":[\"/config/www\",\"/media\"],\"allowlist_external_urls\":[],\"components\":[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":0,\"external_url\":null,\"internal_url\":\"https://ha.krkn.cc\",\"language\":\"en\",\"latitude\":45.2486428320808,\"location_name\":\"Logan's Landing\",\"longitude\":-123.11064967054175,\"radius\":129,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Los_Angeles\",\"unit_system\":{\"length\":\"mi\",\"accumulated_precipitation\":\"in\",\"area\":\"ft²\",\"mass\":\"lb\",\"pressure\":\"psi\",\"temperature\":\"°F\",\"volume\":\"gal\",\"wind_speed\":\"mph\"},\"version\":\"2026.1.2\",\"whitelist_external_dirs\":[\"/config/www\",\"/media\"]}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/config" - }, - "recorded_at": "2026-04-13T08:08:51.631866+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_config_entries.json b/cassettes/test_endpoints/test_get_config_entries.json deleted file mode 100644 index 8f720bfb..00000000 --- a/cassettes/test_endpoints/test_get_config_entries.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:56.623341+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 11 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", - "offset_ms": 12 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.3", - "offset_ms": 18 - }, - { - "direction": "recv", - "type": "text", - "payload": "56199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", - "offset_ms": 18 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_domain.json b/cassettes/test_endpoints/test_get_domain.json deleted file mode 100644 index a9a38a75..00000000 --- a/cassettes/test_endpoints/test_get_domain.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:55 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "134" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc505847a32d-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:55.123195+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:55 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:55.132986+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:55 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:08:55.146145+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_domains.json b/cassettes/test_endpoints/test_get_domains.json deleted file mode 100644 index 1d9d47ff..00000000 --- a/cassettes/test_endpoints/test_get_domains.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:54 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "133" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc4e5b126c24-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:54.797858+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:54 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:54.808900+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:54 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:08:54.824084+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_entities.json b/cassettes/test_endpoints/test_get_entities.json deleted file mode 100644 index 58f77136..00000000 --- a/cassettes/test_endpoints/test_get_entities.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:53 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "132" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc44fff51c37-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:53.298109+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:53 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:53.309034+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:53 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "90985" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states" - }, - "recorded_at": "2026-04-13T08:08:53.336788+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_entity.json b/cassettes/test_endpoints/test_get_entity.json deleted file mode 100644 index 376b95cd..00000000 --- a/cassettes/test_endpoints/test_get_entity.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "131" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc3eab46ac0d-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:52.285552+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:52.294569+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "641" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.sun" - }, - "recorded_at": "2026-04-13T08:08:52.302724+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_entity_histories.json b/cassettes/test_endpoints/test_get_entity_histories.json deleted file mode 100644 index 0312b30c..00000000 --- a/cassettes/test_endpoints/test_get_entity_histories.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "131" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc3f9c2fafe8-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:52.444904+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:52.456079+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "641" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.sun" - }, - "recorded_at": "2026-04-13T08:08:52.464203+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/history/period/2020-01-01T00:00:00+00:00?filter_entity_id=sun.sun&end_time=2030-01-01T00%3A00%3A01%2B00%3A00&significant_changes_only", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "1001" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-02T13:50:53.248484+00:00\",\"last_updated\":\"2026-04-02T13:50:53.248484+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-03T02:43:42.151184+00:00\",\"last_updated\":\"2026-04-03T02:43:42.151184+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-03T05:02:42.697017+00:00\",\"last_updated\":\"2026-04-03T05:02:42.697017+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-03T05:02:42.715181+00:00\",\"last_updated\":\"2026-04-03T05:02:42.715181+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-03T05:02:42.782964+00:00\",\"last_updated\":\"2026-04-03T05:02:42.782964+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-03T05:02:42.800750+00:00\",\"last_updated\":\"2026-04-03T05:02:42.800750+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-03T13:49:01.517414+00:00\",\"last_updated\":\"2026-04-03T13:49:01.517414+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-04T02:44:59.006693+00:00\",\"last_updated\":\"2026-04-04T02:44:59.006693+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-04T13:46:38.144446+00:00\",\"last_updated\":\"2026-04-04T13:46:38.144446+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:56:37.391853+00:00\",\"last_updated\":\"2026-04-05T00:56:37.391853+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:56:37.410901+00:00\",\"last_updated\":\"2026-04-05T00:56:37.410901+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:07:48.293046+00:00\",\"last_updated\":\"2026-04-05T02:07:48.293046+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:07:48.311199+00:00\",\"last_updated\":\"2026-04-05T02:07:48.311199+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:07:48.392962+00:00\",\"last_updated\":\"2026-04-05T02:07:48.392962+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:07:48.413356+00:00\",\"last_updated\":\"2026-04-05T02:07:48.413356+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:32:14.152311+00:00\",\"last_updated\":\"2026-04-05T02:32:14.152311+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:32:14.172520+00:00\",\"last_updated\":\"2026-04-05T02:32:14.172520+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:33:00.586302+00:00\",\"last_updated\":\"2026-04-05T02:33:00.586302+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:33:00.606680+00:00\",\"last_updated\":\"2026-04-05T02:33:00.606680+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:33:00.678222+00:00\",\"last_updated\":\"2026-04-05T02:33:00.678222+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:33:00.699535+00:00\",\"last_updated\":\"2026-04-05T02:33:00.699535+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:46:15.834501+00:00\",\"last_updated\":\"2026-04-05T02:46:15.834501+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:58:45.524662+00:00\",\"last_updated\":\"2026-04-05T02:58:45.524662+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:58:45.545294+00:00\",\"last_updated\":\"2026-04-05T02:58:45.545294+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T02:58:45.607351+00:00\",\"last_updated\":\"2026-04-05T02:58:45.607351+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T02:58:45.625669+00:00\",\"last_updated\":\"2026-04-05T02:58:45.625669+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:38:17.263057+00:00\",\"last_updated\":\"2026-04-05T03:38:17.263057+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:38:17.281631+00:00\",\"last_updated\":\"2026-04-05T03:38:17.281631+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:38:17.347851+00:00\",\"last_updated\":\"2026-04-05T03:38:17.347851+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:38:17.365443+00:00\",\"last_updated\":\"2026-04-05T03:38:17.365443+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:49:42.181466+00:00\",\"last_updated\":\"2026-04-05T03:49:42.181466+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:49:42.198928+00:00\",\"last_updated\":\"2026-04-05T03:49:42.198928+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:49:42.264320+00:00\",\"last_updated\":\"2026-04-05T03:49:42.264320+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:49:42.281930+00:00\",\"last_updated\":\"2026-04-05T03:49:42.281930+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T13:44:43.330728+00:00\",\"last_updated\":\"2026-04-05T13:44:43.330728+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-06T02:47:32.643629+00:00\",\"last_updated\":\"2026-04-06T02:47:32.643629+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-06T13:42:48.751932+00:00\",\"last_updated\":\"2026-04-06T13:42:48.751932+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-06T15:27:04.254166+00:00\",\"last_updated\":\"2026-04-06T15:27:04.254166+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-06T18:42:42.285617+00:00\",\"last_updated\":\"2026-04-06T18:42:42.285617+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T02:48:49.434774+00:00\",\"last_updated\":\"2026-04-07T02:48:49.434774+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T13:40:54.426345+00:00\",\"last_updated\":\"2026-04-07T13:40:54.426345+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-08T02:50:06.212170+00:00\",\"last_updated\":\"2026-04-08T02:50:06.212170+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-08T13:39:00.404114+00:00\",\"last_updated\":\"2026-04-08T13:39:00.404114+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T02:51:22.981267+00:00\",\"last_updated\":\"2026-04-09T02:51:22.981267+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T13:37:06.704515+00:00\",\"last_updated\":\"2026-04-09T13:37:06.704515+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-10T02:52:39.740285+00:00\",\"last_updated\":\"2026-04-10T02:52:39.740285+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-10T13:35:13.356028+00:00\",\"last_updated\":\"2026-04-10T13:35:13.356028+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-11T00:54:43.409671+00:00\",\"last_updated\":\"2026-04-11T00:54:43.409671+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-11T01:20:03.295381+00:00\",\"last_updated\":\"2026-04-11T01:20:03.295381+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-11T02:53:56.493129+00:00\",\"last_updated\":\"2026-04-11T02:53:56.493129+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-11T13:33:20.406436+00:00\",\"last_updated\":\"2026-04-11T13:33:20.406436+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T02:55:13.242159+00:00\",\"last_updated\":\"2026-04-12T02:55:13.242159+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T13:31:27.886086+00:00\",\"last_updated\":\"2026-04-12T13:31:27.886086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_updated\":\"2026-04-13T02:58:29.987568+00:00\"}]]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/history/period/2020-01-01T00:00:00+00:00?filter_entity_id=sun.sun&end_time=2030-01-01T00%3A00%3A01%2B00%3A00&significant_changes_only" - }, - "recorded_at": "2026-04-13T08:08:52.505092+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_entry_subentries.json b/cassettes/test_endpoints/test_get_entry_subentries.json deleted file mode 100644 index 7f91e2f2..00000000 --- a/cassettes/test_endpoints/test_get_entry_subentries.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:56.737845+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", - "offset_ms": 13 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"00391291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.3", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "56199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", - "offset_ms": 21 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"id\": 3, \"type\": \"config_entries/subentries/list\"}", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":[]}", - "offset_ms": 28 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_error_log.json b/cassettes/test_endpoints/test_get_error_log.json deleted file mode 100644 index be5ba573..00000000 --- a/cassettes/test_endpoints/test_get_error_log.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "130" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc395b5c1d89-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:51.451045+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:51.462696+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/error_log", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "content-type": [ - "application/octet-stream" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "etag": [ - "\"18a5dc3110c7d305-1f862\"" - ], - "last-modified": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "accept-ranges": [ - "bytes" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "2026-04-11 01:19:59.797 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration anomaly which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.798 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration average which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.799 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.799 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration apsystems_ecur which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.800 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration emporia_vue which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.800 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration opensprinkler which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration dahua which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smartthinq_sensors which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.801 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration anomaly which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.802 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration average which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.802 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration apsystems_ecur which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration emporia_vue which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.803 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration opensprinkler which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.804 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration dahua which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:19:59.804 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smartthinq_sensors which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant\n2026-04-11 01:20:08.151 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for freezer_sensor @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-11 01:20:08.152 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for mariah_light_1 @ 10.0.0.236: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.236', port=6053))]: [Errno 113] Connect call failed ('10.0.0.236', 6053) (SocketAPIError)\n2026-04-11 01:20:08.153 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for mariah_light_2 @ 10.0.0.199: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.199', port=6053))]: [Errno 113] Connect call failed ('10.0.0.199', 6053) (SocketAPIError)\n2026-04-11 01:20:15.271 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_4 @ 10.0.0.186: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.186', port=6053))]: [Errno 113] Connect call failed ('10.0.0.186', 6053) (SocketAPIError)\n2026-04-11 01:40:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 02:40:30.108 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 02:43:36.782 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 02:54:41.494 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 03:20:04.571 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 03:35:04.543 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 03:50:42.249 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 03:55:45.919 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 04:02:12.600 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 04:10:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 04:30:04.570 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 04:47:28.788 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 04:55:04.579 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 05:30:00.435 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-11 05:30:00.487 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-11 05:50:04.546 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:05:04.541 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:42:45.759 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 06:45:04.549 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 06:51:36.935 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:51:43.899 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 06:55:12.312 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:57:19.452 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 06:57:33.875 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:00:14.241 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:03:40.790 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 07:03:53.650 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-11 07:04:12.347 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 07:19:03.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 07:30:04.540 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 07:45:04.570 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:05:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:20:04.560 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 08:20:05.539 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:05.541 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:06.659 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:20:06.660 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.312 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.313 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:21:05.574 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:22:05.394 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:23:05.430 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:24:05.399 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:25:05.378 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: An error occurred (UserLambdaValidationException) when calling the InitiateAuth operation: PreTokenGeneration failed with error Response was 403..\n2026-04-11 08:55:04.566 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 09:33:15.066 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-11 09:36:09.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 09:40:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:10:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:35:04.578 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 10:50:04.568 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 11:11:57.239 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 12:05:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 12:30:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 13:05:04.557 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 13:10:50.728 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 14:00:00.204 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-11 14:00:00.409 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 14:10:04.544 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 14:55:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 15:10:04.555 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:15:04.551 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:16:17.888 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:40:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 16:49:48.102 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:52:05.205 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 16:59:55.350 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 17:01:19.647 ERROR (MainThread) [homeassistant] Error doing job: Task exception was never retrieved (task: None)\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/_websocket/writer.py\", line 240, in _send_compressed_frame_async_locked\n self._write_websocket_frame(\n ~~~~~~~~~~~~~~~~~~~~~~~~~~~^\n (\n ^\n ...<8 lines>...\n 0x40,\n ^^^^^\n )\n ^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/_websocket/writer.py\", line 151, in _write_websocket_frame\n raise ClientConnectionResetError(\"Cannot write to closing transport\")\naiohttp.client_exceptions.ClientConnectionResetError: Cannot write to closing transport\n2026-04-11 17:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 17:24:26.562 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 17:30:04.574 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 17:38:09.456 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 17:46:52.016 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 17:48:39.466 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:25:04.536 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 18:32:20.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 18:43:58.735 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:46:58.026 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 18:47:17.168 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 18:59:33.868 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:01:14.708 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:09:25.459 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:16:54.600 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:21:32.275 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:29:18.916 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-11 19:37:53.860 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 19:40:16.378 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-11 20:10:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 20:35:04.594 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 20:48:55.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-11 21:30:04.547 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:00:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:25:04.545 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:40:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-11 22:48:08.946 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 22:48:31.970 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-11 23:10:54.388 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for freezer_sensor @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-11 23:10:56.464 WARNING (MainThread) [aioesphomeapi.connection] 10.0.0.210: Connection error occurred: 10.0.0.210: Connection requires encryption\n2026-04-11 23:33:33.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-11 23:40:04.565 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:05:04.593 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:28:55.491 ERROR (MainThread) [homeassistant.components.script.kitchen_lights_off] Kitchen Lights Off: Error executing script. Error for call_service at pos 1: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:28:55.492 ERROR (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Error executing script. Error for call_service at pos 1: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:28:55.493 ERROR (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] Error while executing automation automation.motion_kitchen_lights_off: Unable to set value 38-38-0-targetValue: zwave_error: Z-Wave error 1405 - The node failed to decode the message. (ZW1405)\n2026-04-12 00:30:04.572 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 00:31:37.583 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 00:58:50.816 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 01:00:42.766 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 01:15:06.135 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 01:26:54.287 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 01:29:28.512 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:33:58.759 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 01:46:32.286 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.160: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 01:46:42.287 ERROR (MainThread) [aioesphomeapi.connection] office_light_2 @ 10.0.0.160: disconnect request failed\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\nTimeoutError\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 890, in send_messages_await_response_complex\naioesphomeapi.core.TimeoutAPIError: Timeout waiting for DisconnectResponse after 10.0s\n2026-04-12 01:46:50.386 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 01:49:55.510 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:56:25.049 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 01:58:20.381 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 02:01:22.067 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 02:02:02.419 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:03:27.620 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:05:15.378 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:14:17.225 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 02:15:49.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:16:51.475 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:21:01.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:23:21.961 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 02:30:20.709 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 02:33:12.004 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:35:04.544 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 02:38:54.035 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:39:27.942 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for garage-parking @ 10.0.0.210: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))] (TimeoutAPIError)\n2026-04-12 02:43:43.676 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 02:46:25.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 02:51:52.320 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 02:52:56.540 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.2s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 02:54:58.536 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 02:59:33.887 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 03:11:17.708 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:11:20.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 03:12:08.766 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 03:13:20.248 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:20:50.624 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:23:09.898 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 03:24:40.686 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 03:36:06.787 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 03:37:27.816 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:40:17.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 03:45:04.555 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 03:48:58.546 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 03:51:48.500 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 04:01:17.510 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 04:02:03.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 04:05:40.470 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 04:09:59.830 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 04:15:00.962 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.185: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 04:15:10.963 ERROR (MainThread) [aioesphomeapi.connection] front_porch_3 @ 10.0.0.185: disconnect request failed\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\nTimeoutError\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 890, in send_messages_await_response_complex\naioesphomeapi.core.TimeoutAPIError: Timeout waiting for DisconnectResponse after 10.0s\n2026-04-12 04:15:55.452 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Timeout waiting for HelloResponse after 30.0s (TimeoutAPIError)\n2026-04-12 04:28:36.466 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:30:04.591 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 04:31:40.208 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Handshake timed out after 30.0s (TimeoutAPIError)\n2026-04-12 04:41:05.548 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Timeout while connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))] (TimeoutAPIError)\n2026-04-12 04:45:54.593 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:46:47.195 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:50:15.480 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 04:50:18.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 04:52:34.012 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 04:55:04.539 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 04:56:36.677 WARNING (MainThread) [homeassistant.components.esphome.manager] Error getting setting up connection for 10.0.0.160: Timeout waiting for DeviceInfoResponse, ListEntitiesDoneResponse, ListEntitiesAlarmControlPanelResponse, ListEntitiesBinarySensorResponse, ListEntitiesButtonResponse, ListEntitiesCameraResponse, ListEntitiesClimateResponse, ListEntitiesCoverResponse, ListEntitiesDateResponse, ListEntitiesDateTimeResponse, ListEntitiesEventResponse, ListEntitiesFanResponse, ListEntitiesLightResponse, ListEntitiesLockResponse, ListEntitiesMediaPlayerResponse, ListEntitiesNumberResponse, ListEntitiesSelectResponse, ListEntitiesSensorResponse, ListEntitiesServicesResponse, ListEntitiesSirenResponse, ListEntitiesSwitchResponse, ListEntitiesTextResponse, ListEntitiesTextSensorResponse, ListEntitiesTimeResponse, ListEntitiesUpdateResponse, ListEntitiesValveResponse, ListEntitiesWaterHeaterResponse after 60s\n2026-04-12 04:56:39.705 ERROR (MainThread) [aioesphomeapi.connection] office_light_2 @ 10.0.0.160: disconnect request failed\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/asyncio/selector_events.py\", line 1005, in _read_ready__data_received\n data = self._sock.recv(self.max_size)\nConnectionResetError: [Errno 104] Connection reset by peer\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"aioesphomeapi/connection.py\", line 1106, in aioesphomeapi.connection.APIConnection.disconnect\n File \"aioesphomeapi/connection.py\", line 904, in send_message_await_response\n File \"aioesphomeapi/connection.py\", line 886, in send_messages_await_response_complex\naioesphomeapi.core.ReadFailedAPIError: [Errno 104] Connection reset by peer\n2026-04-12 05:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 05:30:00.435 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-12 05:30:00.485 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-12 06:15:04.540 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 06:16:37.279 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-12 06:17:08.627 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 06:40:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 07:10:04.547 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 08:32:03.113 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 08:48:19.617 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 08:55:04.567 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 09:21:47.304 WARNING (SyncWorker_7) [custom_components.apsystems_ecur] Using cached data from last successful communication from ECU. Exception error: 'NoneType' object does not support item assignment\n2026-04-12 09:26:52.302 WARNING (SyncWorker_0) [custom_components.apsystems_ecur] Using cached data from last successful communication from ECU. Invalid data error: [Errno 111] Connection refused\n2026-04-12 09:40:04.560 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:09:02.498 WARNING (MainThread) [homeassistant.components.automation] Error evaluating condition in 'MOTION - Master Lights - On - Night':\nIn 'condition' (item 3 of 4):\n In 'state':\n In 'state' condition: unknown entity input_boolean.night_bed_occupied\n2026-04-12 10:09:31.130 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 10:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:30:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 10:55:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 11:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 11:50:18.052 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 12:20:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 12:33:09.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 12:36:37.398 ERROR (MainThread) [custom_components.emporia_vue] Error communicating with Emporia API: HTTPSConnectionPool(host='api.emporiaenergy.com', port=443): Read timed out. (read timeout=10.03)\n2026-04-12 12:36:37.399 ERROR (MainThread) [custom_components.emporia_vue] Error fetching sensor data: Error communicating with Emporia API: HTTPSConnectionPool(host='api.emporiaenergy.com', port=443): Read timed out. (read timeout=10.03)\n2026-04-12 13:03:49.371 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:14:38.271 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:21:57.324 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 13:30:51.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 14:00:00.203 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-12 14:00:04.543 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 14:20:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 14:40:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 15:11:01.011 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:14:29.549 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 14: Stream refused by server\n2026-04-12 15:14:50.963 WARNING (MainThread) [homeassistant.components.cloud.google_config] Error reporting state - 1: Call cancelled\n2026-04-12 15:15:04.578 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 15:37:07.990 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:48:27.189 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 15:50:04.572 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 16:15:04.558 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 16:21:30.964 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 16:50:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 17:06:11.516 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 17:12:18.296 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error demuxing stream (Operation timed out, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:20.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 17:12:20.264 ERROR (MainThread) [homeassistant.components.roku.coordinator] Error fetching roku data: Invalid response from API: Timeout occurred while connecting to device\n2026-04-12 17:12:26.948 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Error occurred while communicating with WLED device at 10.0.0.187\n2026-04-12 17:12:29.355 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:31.429 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:32.871 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:36.229 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:12:36.229 ERROR (MainThread) [custom_components.dahua] Error fetching dahua data: \n2026-04-12 17:12:40.059 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 17:12:43.040 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Timeout occurred while connecting to WLED device at 10.0.0.176\n2026-04-12 17:12:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:45.058 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 17:12:47.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:12:52.548 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:12:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:02.072 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:08.149 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:13:13.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:17.111 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:23.748 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:13:28.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.3s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:31.831 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:38.153 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 1 (10.0.0.190) data\n2026-04-12 17:13:38.252 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bedroom 1 (10.0.0.177) data\n2026-04-12 17:13:38.285 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 6 (10.0.0.195) data\n2026-04-12 17:13:38.288 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Shower (10.0.0.197) data\n2026-04-12 17:13:38.337 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 2 (10.0.0.191) data\n2026-04-12 17:13:38.420 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 4 (10.0.0.193) data\n2026-04-12 17:13:38.451 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Entry Light (10.0.0.196) data\n2026-04-12 17:13:38.452 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 5 (10.0.0.194) data\n2026-04-12 17:13:38.507 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bedroom 2 (10.0.0.178) data\n2026-04-12 17:13:38.532 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Master Bath 3 (10.0.0.192) data\n2026-04-12 17:13:38.535 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Matter Bath Toilet (10.0.0.198) data\n2026-04-12 17:13:39.349 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:13:41.557 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Mariah Light (10.0.0.110) data\n2026-04-12 17:13:42.180 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 1 (10.0.0.150) data\n2026-04-12 17:13:42.320 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 3 (10.0.0.152) data\n2026-04-12 17:13:42.375 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Dining Room Light 2 (10.0.0.151) data\n2026-04-12 17:13:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:44.224 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 3 (10.0.0.182) data\n2026-04-12 17:13:44.244 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 2 (10.0.0.181) data\n2026-04-12 17:13:45.194 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Living Room 1 (10.0.0.170) data\n2026-04-12 17:13:45.460 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Stairs Light 1 (10.0.0.180) data\n2026-04-12 17:13:46.872 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:47.271 ERROR (MainThread) [homeassistant.components.lifx] Timeout fetching Living Room 2 (10.0.0.171) data\n2026-04-12 17:13:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:13:58.948 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_2 @ 10.0.0.160: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.160', port=6053))]: [Errno 113] Connect call failed ('10.0.0.160', 6053) (SocketAPIError)\n2026-04-12 17:14:01.591 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:04.068 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for leks_lamp @ 10.0.0.49: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.49', port=6053))]: [Errno 113] Connect call failed ('10.0.0.49', 6053) (SocketAPIError)\n2026-04-12 17:14:05.348 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:14:06.149 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_4 @ 10.0.0.162: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.162', port=6053))]: [Errno 113] Connect call failed ('10.0.0.162', 6053) (SocketAPIError)\n2026-04-12 17:14:06.318 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_3 @ 10.0.0.185: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.185', port=6053))]: [Errno 113] Connect call failed ('10.0.0.185', 6053) (SocketAPIError)\n2026-04-12 17:14:07.188 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_3 @ 10.0.0.161: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.161', port=6053))]: [Errno 113] Connect call failed ('10.0.0.161', 6053) (SocketAPIError)\n2026-04-12 17:14:09.828 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_lamp_1 @ 10.0.0.163: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.163', port=6053))]: [Errno 113] Connect call failed ('10.0.0.163', 6053) (SocketAPIError)\n2026-04-12 17:14:11.989 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:14:12.558 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_2 @ 10.0.0.184: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.184', port=6053))]: [Errno 113] Connect call failed ('10.0.0.184', 6053) (SocketAPIError)\n2026-04-12 17:14:13.361 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.6s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:14.788 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for front_porch_1 @ 10.0.0.183: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.183', port=6053))]: [Errno 113] Connect call failed ('10.0.0.183', 6053) (SocketAPIError)\n2026-04-12 17:14:17.111 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.2s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:17.268 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for office_light_1 @ 10.0.0.159: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.159', port=6053))]: [Errno 113] Connect call failed ('10.0.0.159', 6053) (SocketAPIError)\n2026-04-12 17:14:28.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.8s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:32.311 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.1s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:43.439 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:14:46.951 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:14:58.308 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:14:58.391 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:02.241 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.9s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 17:15:13.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:14.239 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:15:16.871 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:28.401 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.4s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:31.911 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.7s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:43.351 INFO (MainThread) [backoff] Backing off _request_http(...) for 0.5s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:46.229 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:15:47.041 INFO (MainThread) [backoff] Backing off _request_http(...) for 1.0s (pyopensprinkler.OpenSprinklerConnectionError: Cannot connect to controller)\n2026-04-12 17:15:58.628 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error opening stream (Host is unreachable, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:16:16.376 ERROR (MainThread) [custom_components.dahua] server closed the connection\n2026-04-12 17:16:16.377 WARNING (MainThread) [custom_components.dahua] Disconnected from VTO at 10.0.0.107, reconnecting in 5s\n2026-04-12 17:20:00.850 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 17:22:42.937 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 17:36:58.262 ERROR (MainThread) [homeassistant.components.roku.coordinator] Error fetching roku data: Invalid response from API: Timeout occurred while connecting to device\n2026-04-12 17:41:28.993 ERROR (stream_worker) [homeassistant.components.stream.stream.camera.front_door_main] Error from stream worker: Error demuxing stream (Operation timed out, rtsp://****:****@10.0.0.107:554/cam/realmonitor?channel=1&subtype=0)\n2026-04-12 17:41:29.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 17:41:32.148 WARNING (MainThread) [custom_components.dahua] Failed to sync device state for 10.0.0.107. See README to enable debug logs to get full exception\n2026-04-12 17:41:32.148 ERROR (MainThread) [custom_components.dahua] Error fetching dahua data: \n2026-04-12 17:41:52.632 ERROR (MainThread) [homeassistant.components.wled] Error fetching wled data: Invalid response from WLED API: Timeout occurred while connecting to WLED device at 10.0.0.187\n2026-04-12 17:41:54.059 ERROR (MainThread) [homeassistant.components.wled] No PONG received after 15.0 seconds\n2026-04-12 18:08:22.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 18:15:57.237 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-12 18:30:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 18:33:30.868 WARNING (MainThread) [aioesphomeapi.reconnect_logic] Can't connect to ESPHome API for garage-parking @ 10.0.0.210: Error connecting to [AddrInfo(family=, type=, proto=6, sockaddr=IPv4Sockaddr(address='10.0.0.210', port=6053))]: [Errno 113] Connect call failed ('10.0.0.210', 6053) (SocketAPIError)\n2026-04-12 18:34:56.001 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:35:20.098 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:37:00.945 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:37:01.877 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:37:37.665 ERROR (MainThread) [snitun.multiplexer.core] Timeout error while pinging peer\n2026-04-12 18:37:53.449 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:37:54.500 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:38:12.624 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:38:13.568 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:38:43.881 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:38:44.821 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:41:28.326 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 18:47:50.237 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:47:51.234 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:11.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:11.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:21.244 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:48:36.683 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:49:01.774 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 18:49:04.943 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 18:49:14.523 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.13/site-packages/turbojpeg.py:947: UserWarning: Corrupt JPEG data: 608 extraneous bytes before marker 0xfe\n warnings.warn(self.__get_error_string(handle))\n\n2026-04-12 18:50:19.341 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 18:50:37.444 ERROR (MainThread) [homeassistant.components.automation.notify_garage_lights_left_on] NOTIFY - Garage Lights Left On: Error executing script. Service not found for call_service at pos 1: Action notify.mobile_app_adam_s_pixel_7 not found\n2026-04-12 19:27:44.345 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:28:09.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:32:49.299 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:33:33.495 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:35:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 19:43:54.509 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:44:20.653 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:44:50.468 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:45:21.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:45:22.499 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:47:23.415 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 19:50:06.490 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:09.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:50:34.528 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:35.452 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:50:47.998 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:50:48.935 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:51:02.855 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:22.658 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:53:23.593 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:53:24.888 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:25.812 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:53:31.411 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 19:54:12.569 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 19:54:13.578 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:00:04.556 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 20:00:15.837 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:00:16.807 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:00:55.970 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:00:56.935 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 20:04:02.331 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 20:15:04.553 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 20:17:37.705 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 20:35:01.370 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:35:02.307 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:37:34.234 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:37:35.199 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 20:40:04.554 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 21:00:34.107 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:00:35.075 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:01:33.320 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:01:34.311 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:02:06.347 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:02:07.305 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:05:04.549 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 21:11:34.866 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:11:35.826 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:12:50.072 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:13:12.937 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:18:06.778 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:33:38.676 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:34:08.277 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:44:24.585 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:44:27.859 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 21:44:50.813 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:44:51.775 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 21:46:30.620 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 22:40:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 22:53:12.965 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 22:53:14.962 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 22:53:41.290 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 22:53:42.245 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:00:55.476 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:00:56.474 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:01:39.220 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:01:39.224 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:02:20.947 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:02:49.147 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:02:55.878 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:03:51.394 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:05:28.785 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-12 23:10:04.552 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:14:05.881 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:14:06.810 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:14:17.323 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:25:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:25:12.344 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:25:13.330 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:25:34.221 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:25:35.184 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:12.175 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:13.173 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:21.888 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:22.867 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:27:47.187 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:27:48.204 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:28:30.553 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:28:31.559 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:28:56.733 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:28:57.727 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:31:25.167 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:36:46.658 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:50:04.573 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-12 23:53:43.998 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:44.986 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:51.335 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:53:52.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:54:21.085 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:54:22.070 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:55:00.235 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:01.188 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:29.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:55:30.137 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-12 23:56:23.519 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-12 23:56:24.480 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:03:40.855 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:03:41.859 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:04:06.692 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:04:07.671 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:10:29.774 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:10:30.730 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:11:01.924 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:11:02.865 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:30:37.277 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:38.231 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:44.481 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:30:45.488 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:31:11.688 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:31:12.623 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:33:12.698 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:33:13.644 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 00:33:41.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:33:42.483 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 00:35:04.648 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 01:19:20.217 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 01:28:30.229 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 01:28:30.230 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 01:30:04.561 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 01:51:28.016 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 02:02:20.007 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:02:21.000 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:02:35.302 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:02:36.299 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:03:38.287 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:03:39.278 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:05:19.460 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:08:01.758 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:15:04.542 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 02:21:50.760 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 02:25:23.626 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:25:23.627 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:27:26.948 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:27:55.098 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:30:04.566 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 02:31:07.280 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:32:40.684 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:33:22.731 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:34:29.163 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:34:59.947 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:35:04.410 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:35:28.265 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:36:47.884 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:37:40.130 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:41:20.303 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:42:02.493 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:42:15.938 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:43:26.188 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:44:04.238 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:44:43.899 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:49:12.330 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:50:03.755 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:50:04.688 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:50:13.984 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:51:10.488 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 02:52:39.343 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 02:52:39.344 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:05:04.550 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 03:17:13.148 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:14.135 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:50.879 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:17:51.826 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:17:57.216 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:17:58.217 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:19.244 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:18:19.511 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:26.380 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:27.314 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 03:18:50.403 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:18:51.386 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 03:24:12.901 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:05:26.000 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:12:42.948 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities input_boolean.night_bed_occupied are missing or not currently available\n2026-04-13 04:12:51.671 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:12:52.621 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:13:22.269 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:13:23.241 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:16:44.600 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:16:45.564 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:17:16.916 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:17:17.842 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:39:38.985 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:40:04.551 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 04:40:09.417 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:43:51.433 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:05.993 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:24.618 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:25.647 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_on] MOTION - Kitchen Lights - On: Already running\n2026-04-13 04:44:48.614 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 04:44:48.614 WARNING (MainThread) [homeassistant.components.automation.motion_kitchen_lights_off] MOTION - Kitchen Lights - Off: Already running\n2026-04-13 05:05:04.541 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 05:30:00.438 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities light.leksi_lamp are missing or not currently available\n2026-04-13 05:30:00.466 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities lock.back_door_lock are missing or not currently available\n2026-04-13 05:39:21.238 ERROR (MainThread) [custom_components.opensprinkler] Timeout fetching OpenSprinkler resource status data\n2026-04-13 06:50:04.559 ERROR (MainThread) [homeassistant.components.overseerr] Error fetching overseerr data: Error connecting to the Overseerr instance: Error occurred while communicating with the service\n2026-04-13 06:57:44.314 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.13/site-packages/turbojpeg.py:947: UserWarning: Corrupt JPEG data: 608 extraneous bytes before marker 0xfe\n warnings.warn(self.__get_error_string(handle))\n\n2026-04-13 08:05:05.661 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455378877664] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:05.728 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454991178912] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:07.419 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455122022496] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:07.473 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993089600] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.092 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901625728] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.150 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899902048] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.313 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899895648] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.447 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899907008] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.565 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900018976] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.618 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900014976] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.695 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900144448] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.795 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454991711744] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.896 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900140768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:08.964 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900144608] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.044 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900152128] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.166 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900147648] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.299 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900143008] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.383 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454899829312] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.639 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455100599168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.693 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900139488] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.933 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454992494656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:09.997 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993092800] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.088 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993095680] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.142 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454993093120] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:10.824 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904965824] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.111 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455083636064] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.177 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455083631104] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.247 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535808480] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.304 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535814880] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.371 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901624768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.434 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455535814720] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.500 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901620768] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.565 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901623488] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.627 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901626048] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:11.960 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901615168] An action which does not return responses can't be called with return_response=True\n2026-04-13 08:05:11.973 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901615168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.041 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901621408] An action which does not return responses can't be called with return_response=True\n2026-04-13 08:05:12.053 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901621408] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.235 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900394848] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.326 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.327 ERROR (MainThread) [aiohttp.server] Error handling request from 10.40.0.2\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_protocol.py\", line 510, in _handle_request\n resp = await request_handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_app.py\", line 569, in _handle\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_middlewares.py\", line 117, in impl\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/security_filter.py\", line 92, in security_filter_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/forwarded.py\", line 214, in forwarded_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/request_context.py\", line 26, in request_context_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/ban.py\", line 86, in ban_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/auth.py\", line 242, in auth_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/headers.py\", line 41, in headers_middleware\n response = await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/http.py\", line 73, in handle\n result = await handler(request, **request.match_info)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/api/__init__.py\", line 437, in post\n response = await shield(\n ^^^^^^^^^^^^^\n ...<8 lines>...\n )\n ^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2819, in async_call\n response_data = await coro\n ^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2862, in _execute_service\n return await target(service_call)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/service.py\", line 824, in entity_service_call\n raise HomeAssistantError(\n \"Service call requested response data but did not match any entities\"\n )\nhomeassistant.exceptions.HomeAssistantError: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.489 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.489 ERROR (MainThread) [aiohttp.server] Error handling request from 10.40.0.2\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_protocol.py\", line 510, in _handle_request\n resp = await request_handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_app.py\", line 569, in _handle\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.13/site-packages/aiohttp/web_middlewares.py\", line 117, in impl\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/security_filter.py\", line 92, in security_filter_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/forwarded.py\", line 214, in forwarded_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/request_context.py\", line 26, in request_context_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/ban.py\", line 86, in ban_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/auth.py\", line 242, in auth_middleware\n return await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/http/headers.py\", line 41, in headers_middleware\n response = await handler(request)\n ^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/http.py\", line 73, in handle\n result = await handler(request, **request.match_info)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/api/__init__.py\", line 437, in post\n response = await shield(\n ^^^^^^^^^^^^^\n ...<8 lines>...\n )\n ^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2819, in async_call\n response_data = await coro\n ^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/core.py\", line 2862, in _execute_service\n return await target(service_call)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/helpers/service.py\", line 824, in entity_service_call\n raise HomeAssistantError(\n \"Service call requested response data but did not match any entities\"\n )\nhomeassistant.exceptions.HomeAssistantError: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.591 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.591 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] Error during service call to weather.get_forecasts: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.598 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] The action requires responses and must be called with return_response=True\n2026-04-13 08:05:12.641 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455096530112] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:12.715 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities weather.forecast_home are missing or not currently available\n2026-04-13 08:05:12.715 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] Error during service call to weather.get_forecasts: Service call requested response data but did not match any entities\n2026-04-13 08:05:12.722 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] The action requires responses and must be called with return_response=True\n2026-04-13 08:05:12.762 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900384608] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:13.115 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900392928] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:13.198 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900399168] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.338 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904955424] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.401 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901628448] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.479 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454901614528] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:14.844 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900393888] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.008 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038481280] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.212 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038482080] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.277 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038480000] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.414 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455038472000] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:15.476 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-13 08:05:15.523 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-13 08:05:15.566 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-13 08:05:15.630 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from 10.0.0.10 (10.0.0.10). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-13 08:05:16.552 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455084119904] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.611 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041390272] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.659 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041388192] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.708 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455041391072] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.797 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455161674656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:16.898 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454904968384] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:17.302 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140455085128128] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:17.932 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900261056] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:18.239 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900261376] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:05:19.098 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900018656] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:08:51.293 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900015616] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-13 08:08:51.362 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140454900009376] Adam from 10.0.0.10 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/error_log" - }, - "recorded_at": "2026-04-13T08:08:51.478881+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_events.json b/cassettes/test_endpoints/test_get_events.json deleted file mode 100644 index dba25179..00000000 --- a/cassettes/test_endpoints/test_get_events.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "137" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc673937fef4-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:58.783424+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:58.793739+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/events", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "248" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":4},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/events" - }, - "recorded_at": "2026-04-13T08:08:58.801923+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_logbook_entries.json b/cassettes/test_endpoints/test_get_logbook_entries.json deleted file mode 100644 index a4c17292..00000000 --- a/cassettes/test_endpoints/test_get_logbook_entries.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "130" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc3b7a2e3d1b-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:51.785072+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:51.796219+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:51 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "173" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:19.396864+00:00\",\"context_user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:19.501928+00:00\",\"context_user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00" - }, - "recorded_at": "2026-04-13T08:08:51.968668+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json b/cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json deleted file mode 100644 index ab29561b..00000000 --- a/cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:55.430404+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 1 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 7 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 7 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 13 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config_entries/flow/progress\"}", - "offset_ms": 14 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"flow_id\":\"01KNX20H106MWSVY485WG4GDJV\",\"handler\":\"matter\",\"context\":{\"source\":\"zeroconf\",\"discovery_key\":{\"domain\":\"zeroconf\",\"key\":[\"_matter._tcp.local.\",\"FCE73F24FC01F9E6-00000000533C2701._matter._tcp.local.\"],\"version\":1},\"unique_id\":\"default_discovery_unique_id\"},\"step_id\":\"manual\"},{\"flow_id\":\"01KP2RCRT7PWY3TA3P9BWJTVHV\",\"handler\":\"androidtv_remote\",\"context\":{\"source\":\"zeroconf\",\"discovery_key\":{\"domain\":\"zeroconf\",\"key\":[\"_androidtvremote2._tcp.local.\",\"Lex room TV._androidtvremote2._tcp.local.\"],\"version\":1},\"unique_id\":\"c0:e5:da:99:a2:fd\",\"title_placeholders\":{\"name\":\"Lex room TV\"}},\"step_id\":\"zeroconf_confirm\"}]}", - "offset_ms": 19 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_rendered_template.json b/cassettes/test_endpoints/test_get_rendered_template.json deleted file mode 100644 index 6bc2e447..00000000 --- a/cassettes/test_endpoints/test_get_rendered_template.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "131" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc40ffaa2d7c-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:52.657449+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:52.668673+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/template", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:52 GMT" - ], - "content-type": [ - "text/plain; charset=utf-8" - ], - "content-length": [ - "29" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "The sun is below the horizon." - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/template" - }, - "recorded_at": "2026-04-13T08:08:52.677549+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_state.json b/cassettes/test_endpoints/test_get_state.json deleted file mode 100644 index 0fe48081..00000000 --- a/cassettes/test_endpoints/test_get_state.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "137" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc652808c4ac-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:58.455549+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:58.466202+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "641" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.sun" - }, - "recorded_at": "2026-04-13T08:08:58.475327+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_get_states.json b/cassettes/test_endpoints/test_get_states.json deleted file mode 100644 index e180ad85..00000000 --- a/cassettes/test_endpoints/test_get_states.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "136" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc6268dee6e0-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:58.014989+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:58.027882+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "90989" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states" - }, - "recorded_at": "2026-04-13T08:08:58.053511+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_set_state.json b/cassettes/test_endpoints/test_set_state.json deleted file mode 100644 index 133b4ef7..00000000 --- a/cassettes/test_endpoints/test_set_state.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "137" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc662e0a1bed-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:58.614085+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:58.626207+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/states/sun.red_sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:58 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "216" - ], - "location": [ - "/api/states/sun.red_sun" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"beyond_our_solar_system\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:08:58.618002+00:00\",\"last_reported\":\"2026-04-13T08:08:58.618002+00:00\",\"last_updated\":\"2026-04-13T08:08:58.618002+00:00\",\"context\":{\"id\":\"01KP2Y5YZS5M77V83CMRSFA6BM\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.red_sun" - }, - "recorded_at": "2026-04-13T08:08:58.635673+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_trigger_service.json b/cassettes/test_endpoints/test_trigger_service.json deleted file mode 100644 index d0430dcd..00000000 --- a/cassettes/test_endpoints/test_trigger_service.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:56 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "135" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc5c2dbfdebd-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:57.015900+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:57.027118+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:08:57.042838+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/services/notify/persistent_notification?return_response", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 400, - "message": "Bad Request" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "82" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"Service does not support responses. Remove return_response from request.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services/notify/persistent_notification?return_response" - }, - "recorded_at": "2026-04-13T08:08:57.064034+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_trigger_service_with_response.json b/cassettes/test_endpoints/test_trigger_service_with_response.json deleted file mode 100644 index c62c415c..00000000 --- a/cassettes/test_endpoints/test_trigger_service_with_response.json +++ /dev/null @@ -1,206 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "136" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc5fffcb97a5-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:08:57.621673+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:08:57.630843+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:08:57.645427+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/services/weather/get_forecasts?return_response", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 500, - "message": "Internal Server Error" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:08:57 GMT" - ], - "content-type": [ - "text/plain; charset=utf-8" - ], - "content-length": [ - "55" - ] - }, - "body": { - "string": "500 Internal Server Error\n\nServer got itself in trouble" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services/weather/get_forecasts?return_response" - }, - "recorded_at": "2026-04-13T08:08:57.672733+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_config.json b/cassettes/test_endpoints/test_websocket_get_config.json deleted file mode 100644 index d4359f5a..00000000 --- a/cassettes/test_endpoints/test_websocket_get_config.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:53.512641+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_config\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"allowlist_external_dirs\":[\"/config/www\",\"/media\"],\"allowlist_external_urls\":[],\"components\":[\"opensprinkler.number\",\"lifx.light\",\"automation\",\"apsystems_ecur\",\"opensprinkler\",\"select\",\"mobile_app.notify\",\"binary_sensor\",\"met.weather\",\"wled.sensor\",\"homekit_controller.binary_sensor\",\"humidifier\",\"api\",\"overseerr\",\"config\",\"wake_word\",\"light\",\"usage_prediction\",\"wled.select\",\"number\",\"input_datetime\",\"group\",\"sun.binary_sensor\",\"lock\",\"ecobee.weather\",\"blueprint\",\"opensprinkler.select\",\"assist_pipeline\",\"switch\",\"zwave_js.sensor\",\"cloud.binary_sensor\",\"lifx.select\",\"logger\",\"cloud\",\"ecobee.number\",\"roku.binary_sensor\",\"zwave_js\",\"history\",\"dahua.light\",\"apsystems_ecur.sensor\",\"esphome\",\"notify\",\"wled\",\"energy\",\"homeassistant\",\"fan\",\"recorder\",\"mqtt.number\",\"wled.button\",\"event\",\"media_source\",\"apsystems_ecur.switch\",\"network\",\"lifx\",\"mqtt.sensor\",\"lifx.sensor\",\"persistent_notification\",\"device_tracker\",\"roku.select\",\"wled.number\",\"web_rtc\",\"mqtt.select\",\"template.binary_sensor\",\"backup.sensor\",\"dahua.switch\",\"esphome.binary_sensor\",\"zwave_js.select\",\"onboarding\",\"system_health\",\"siren\",\"analytics\",\"local_calendar\",\"overseerr.sensor\",\"timer\",\"zwave_js.switch\",\"stream\",\"sun.sensor\",\"ffmpeg\",\"file\",\"dahua\",\"ecobee.sensor\",\"group.switch\",\"homekit_controller.select\",\"zwave_js.number\",\"androidtv_remote.media_player\",\"zwave_js.button\",\"image_upload\",\"zwave_js.binary_sensor\",\"androidtv_remote.remote\",\"sun\",\"google_assistant\",\"update\",\"dahua.camera\",\"bluetooth_adapters\",\"default_config\",\"search\",\"calendar\",\"hacs.switch\",\"esphome.sensor\",\"websocket_api\",\"homekit_controller\",\"dahua.binary_sensor\",\"template\",\"trace\",\"go2rtc\",\"zwave_js.lock\",\"zwave_js.siren\",\"google_translate.tts\",\"button\",\"dahua.select\",\"emporia_vue.switch\",\"script\",\"conversation\",\"homekit_controller.button\",\"counter\",\"backup\",\"overseerr.event\",\"usb\",\"zwave_js.cover\",\"wled.light\",\"stt\",\"cover\",\"esphome.light\",\"backup.event\",\"ecobee.humidifier\",\"template.cover\",\"homeassistant.scene\",\"mobile_app.sensor\",\"zwave_js.fan\",\"schedule\",\"tag\",\"logbook\",\"lifx.button\",\"emporia_vue\",\"camera\",\"homekit_controller.climate\",\"hacs\",\"diagnostics\",\"opensprinkler.binary_sensor\",\"frontend\",\"mqtt\",\"weather\",\"roku\",\"opensprinkler.switch\",\"wled.update\",\"lifx.binary_sensor\",\"emporia_vue.sensor\",\"cloud.stt\",\"tts\",\"intent\",\"opensprinkler.sensor\",\"device_automation\",\"mqtt.button\",\"homekit_controller.sensor\",\"zwave_js.event\",\"time\",\"zwave_js.update\",\"my\",\"homekit_controller.number\",\"template.sensor\",\"labs\",\"ecobee.switch\",\"homeassistant_alerts\",\"anomaly.binary_sensor\",\"input_select\",\"system_log\",\"input_number\",\"ssdp\",\"anomaly\",\"remote\",\"wled.switch\",\"hardware\",\"androidtv_remote\",\"ecobee\",\"text\",\"opensprinkler.text\",\"group.light\",\"mqtt.switch\",\"zwave_js.climate\",\"input_boolean\",\"roku.remote\",\"ecobee.climate\",\"met\",\"scene\",\"hacs.update\",\"http\",\"webhook\",\"dhcp\",\"energy.sensor\",\"ecobee.notify\",\"roku.media_player\",\"mobile_app\",\"apsystems_ecur.binary_sensor\",\"bluetooth\",\"auth\",\"ecobee.binary_sensor\",\"repairs\",\"mobile_app.binary_sensor\",\"file_upload\",\"mqtt.update\",\"person\",\"local_calendar.calendar\",\"cloud.tts\",\"zwave_js.light\",\"mqtt.binary_sensor\",\"media_player\",\"zone\",\"mcp_server\",\"zwave_js.humidifier\",\"climate\",\"zeroconf\",\"mqtt.light\",\"mobile_app.device_tracker\",\"input_text\",\"opensprinkler.time\",\"roku.sensor\",\"sensor\",\"lovelace\",\"input_button\",\"application_credentials\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":0,\"external_url\":null,\"internal_url\":\"https://ha.krkn.cc\",\"language\":\"en\",\"latitude\":45.2486428320808,\"location_name\":\"Logan's Landing\",\"longitude\":-123.11064967054175,\"radius\":129,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Los_Angeles\",\"unit_system\":{\"length\":\"mi\",\"accumulated_precipitation\":\"in\",\"area\":\"ft²\",\"mass\":\"lb\",\"pressure\":\"psi\",\"temperature\":\"°F\",\"volume\":\"gal\",\"wind_speed\":\"mph\"},\"version\":\"2026.1.2\",\"whitelist_external_dirs\":[\"/config/www\",\"/media\"]}}", - "offset_ms": 16 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_domain.json b/cassettes/test_endpoints/test_websocket_get_domain.json deleted file mode 100644 index c0a6cc91..00000000 --- a/cassettes/test_endpoints/test_websocket_get_domain.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:55.279817+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_services\"}", - "offset_ms": 10 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"", - "offset_ms": 20 - }, - { - "direction": "recv", - "type": "text", - "payload": "timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizo", - "offset_ms": 21 - }, - { - "direction": "recv", - "type": "text", - "payload": "ntal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recordi", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "ng. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", - "offset_ms": 27 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_domains.json b/cassettes/test_endpoints/test_websocket_get_domains.json deleted file mode 100644 index a558a860..00000000 --- a/cassettes/test_endpoints/test_websocket_get_domains.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:54.958138+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 20 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_services\"}", - "offset_ms": 20 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recordi", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "ng. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", - "offset_ms": 29 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_entities.json b/cassettes/test_endpoints/test_websocket_get_entities.json deleted file mode 100644 index 65dc821e..00000000 --- a/cassettes/test_endpoints/test_websocket_get_entities.json +++ /dev/null @@ -1,253 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:54.570840+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems E", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "CU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_", - "offset_ms": 29 - }, - { - "direction": "recv", - "type": "text", - "payload": "ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light ", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", - "offset_ms": 33 - }, - { - "direction": "recv", - "type": "text", - "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.4083", - "offset_ms": 34 - }, - { - "direction": "recv", - "type": "text", - "payload": "85+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75A", - "offset_ms": 35 - }, - { - "direction": "recv", - "type": "text", - "payload": "M8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-1", - "offset_ms": 36 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", - "offset_ms": 37 - }, - { - "direction": "recv", - "type": "text", - "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_", - "offset_ms": 39 - }, - { - "direction": "recv", - "type": "text", - "payload": "updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow", - "offset_ms": 40 - }, - { - "direction": "recv", - "type": "text", - "payload": " Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC7", - "offset_ms": 41 - }, - { - "direction": "recv", - "type": "text", - "payload": "07RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5", - "offset_ms": 43 - }, - { - "direction": "recv", - "type": "text", - "payload": "E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZV", - "offset_ms": 45 - }, - { - "direction": "recv", - "type": "text", - "payload": "KEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off ", - "offset_ms": 46 - }, - { - "direction": "recv", - "type": "text", - "payload": "At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"", - "offset_ms": 48 - }, - { - "direction": "recv", - "type": "text", - "payload": "Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX", - "offset_ms": 50 - }, - { - "direction": "recv", - "type": "text", - "payload": "4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.", - "offset_ms": 51 - }, - { - "direction": "recv", - "type": "text", - "payload": "solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current M", - "offset_ms": 53 - }, - { - "direction": "recv", - "type": "text", - "payload": "ode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4J", - "offset_ms": 55 - }, - { - "direction": "recv", - "type": "text", - "payload": "M6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZK", - "offset_ms": 58 - }, - { - "direction": "recv", - "type": "text", - "payload": "KGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310", - "offset_ms": 60 - }, - { - "direction": "recv", - "type": "text", - "payload": "325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731K", - "offset_ms": 62 - }, - { - "direction": "recv", - "type": "text", - "payload": "PNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":n", - "offset_ms": 65 - }, - { - "direction": "recv", - "type": "text", - "payload": "ull}}]}", - "offset_ms": 68 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json b/cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json deleted file mode 100644 index 335e0b7a..00000000 --- a/cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json +++ /dev/null @@ -1,283 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:53.881610+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 11 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 12 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YX", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "VNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr C", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "losed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon", - "offset_ms": 29 - }, - { - "direction": "recv", - "type": "text", - "payload": " Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_", - "offset_ms": 29 - }, - { - "direction": "recv", - "type": "text", - "payload": "ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light ", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", - "offset_ms": 32 - }, - { - "direction": "recv", - "type": "text", - "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", - "offset_ms": 33 - }, - { - "direction": "recv", - "type": "text", - "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.4083", - "offset_ms": 34 - }, - { - "direction": "recv", - "type": "text", - "payload": "85+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"", - "offset_ms": 35 - }, - { - "direction": "recv", - "type": "text", - "payload": "32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", - "offset_ms": 37 - }, - { - "direction": "recv", - "type": "text", - "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_", - "offset_ms": 38 - }, - { - "direction": "recv", - "type": "text", - "payload": "updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT", - "offset_ms": 39 - }, - { - "direction": "recv", - "type": "text", - "payload": "5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G7", - "offset_ms": 41 - }, - { - "direction": "recv", - "type": "text", - "payload": "1KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P", - "offset_ms": 42 - }, - { - "direction": "recv", - "type": "text", - "payload": "450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_", - "offset_ms": 44 - }, - { - "direction": "recv", - "type": "text", - "payload": "dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZ", - "offset_ms": 45 - }, - { - "direction": "recv", - "type": "text", - "payload": "H3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZV", - "offset_ms": 48 - }, - { - "direction": "recv", - "type": "text", - "payload": "KEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off ", - "offset_ms": 50 - }, - { - "direction": "recv", - "type": "text", - "payload": "At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"", - "offset_ms": 53 - }, - { - "direction": "recv", - "type": "text", - "payload": "Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX", - "offset_ms": 56 - }, - { - "direction": "recv", - "type": "text", - "payload": "4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1m", - "offset_ms": 59 - }, - { - "direction": "recv", - "type": "text", - "payload": "on\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_", - "offset_ms": 61 - }, - { - "direction": "recv", - "type": "text", - "payload": "updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe", - "offset_ms": 63 - }, - { - "direction": "recv", - "type": "text", - "payload": "\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.3070", - "offset_ms": 66 - }, - { - "direction": "recv", - "type": "text", - "payload": "53+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H", - "offset_ms": 69 - }, - { - "direction": "recv", - "type": "text", - "payload": "3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310", - "offset_ms": 71 - }, - { - "direction": "recv", - "type": "text", - "payload": "325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731K", - "offset_ms": 74 - }, - { - "direction": "recv", - "type": "text", - "payload": "PNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv", - "offset_ms": 76 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 78 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json b/cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json deleted file mode 100644 index 6da6fe4f..00000000 --- a/cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:53.753713+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YX", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "VNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light ", - "offset_ms": 33 - }, - { - "direction": "recv", - "type": "text", - "payload": "Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7", - "offset_ms": 34 - }, - { - "direction": "recv", - "type": "text", - "payload": "ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", - "offset_ms": 35 - }, - { - "direction": "recv", - "type": "text", - "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", - "offset_ms": 37 - }, - { - "direction": "recv", - "type": "text", - "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.4083", - "offset_ms": 38 - }, - { - "direction": "recv", - "type": "text", - "payload": "85+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"", - "offset_ms": 39 - }, - { - "direction": "recv", - "type": "text", - "payload": "32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Hom", - "offset_ms": 40 - }, - { - "direction": "recv", - "type": "text", - "payload": "e Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", - "offset_ms": 41 - }, - { - "direction": "recv", - "type": "text", - "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_", - "offset_ms": 42 - }, - { - "direction": "recv", - "type": "text", - "payload": "updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow", - "offset_ms": 44 - }, - { - "direction": "recv", - "type": "text", - "payload": " Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC7", - "offset_ms": 46 - }, - { - "direction": "recv", - "type": "text", - "payload": "07RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5", - "offset_ms": 48 - }, - { - "direction": "recv", - "type": "text", - "payload": "E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off ", - "offset_ms": 50 - }, - { - "direction": "recv", - "type": "text", - "payload": "At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"", - "offset_ms": 53 - }, - { - "direction": "recv", - "type": "text", - "payload": "Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX", - "offset_ms": 65 - }, - { - "direction": "recv", - "type": "text", - "payload": "4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.", - "offset_ms": 67 - }, - { - "direction": "recv", - "type": "text", - "payload": "solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current M", - "offset_ms": 69 - }, - { - "direction": "recv", - "type": "text", - "payload": "ode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4J", - "offset_ms": 71 - }, - { - "direction": "recv", - "type": "text", - "payload": "M6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZK", - "offset_ms": 73 - }, - { - "direction": "recv", - "type": "text", - "payload": "KGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310", - "offset_ms": 75 - }, - { - "direction": "recv", - "type": "text", - "payload": "325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731K", - "offset_ms": 78 - }, - { - "direction": "recv", - "type": "text", - "payload": "PNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":n", - "offset_ms": 80 - }, - { - "direction": "recv", - "type": "text", - "payload": "ull}}]}", - "offset_ms": 83 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_state.json b/cassettes/test_endpoints/test_websocket_get_state.json deleted file mode 100644 index 53d14098..00000000 --- a/cassettes/test_endpoints/test_websocket_get_state.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:53.624404+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 13 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 14 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YX", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "VNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", - "offset_ms": 29 - }, - { - "direction": "recv", - "type": "text", - "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.35", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "8230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH", - "offset_ms": 32 - }, - { - "direction": "recv", - "type": "text", - "payload": "5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H69", - "offset_ms": 33 - }, - { - "direction": "recv", - "type": "text", - "payload": "9BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light ", - "offset_ms": 34 - }, - { - "direction": "recv", - "type": "text", - "payload": "Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7", - "offset_ms": 35 - }, - { - "direction": "recv", - "type": "text", - "payload": "ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", - "offset_ms": 36 - }, - { - "direction": "recv", - "type": "text", - "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", - "offset_ms": 37 - }, - { - "direction": "recv", - "type": "text", - "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.4083", - "offset_ms": 39 - }, - { - "direction": "recv", - "type": "text", - "payload": "85+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"", - "offset_ms": 41 - }, - { - "direction": "recv", - "type": "text", - "payload": "32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", - "offset_ms": 42 - }, - { - "direction": "recv", - "type": "text", - "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_", - "offset_ms": 58 - }, - { - "direction": "recv", - "type": "text", - "payload": "updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow", - "offset_ms": 59 - }, - { - "direction": "recv", - "type": "text", - "payload": " Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC7", - "offset_ms": 61 - }, - { - "direction": "recv", - "type": "text", - "payload": "07RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5", - "offset_ms": 63 - }, - { - "direction": "recv", - "type": "text", - "payload": "E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"177", - "offset_ms": 64 - }, - { - "direction": "recv", - "type": "text", - "payload": "5869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\"", - "offset_ms": 66 - }, - { - "direction": "recv", - "type": "text", - "payload": ",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29", - "offset_ms": 68 - }, - { - "direction": "recv", - "type": "text", - "payload": ".7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs", - "offset_ms": 70 - }, - { - "direction": "recv", - "type": "text", - "payload": "_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0", - "offset_ms": 71 - }, - { - "direction": "recv", - "type": "text", - "payload": "434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-1", - "offset_ms": 73 - }, - { - "direction": "recv", - "type": "text", - "payload": "3T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQ", - "offset_ms": 75 - }, - { - "direction": "recv", - "type": "text", - "payload": "T9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83P", - "offset_ms": 77 - }, - { - "direction": "recv", - "type": "text", - "payload": "BV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310", - "offset_ms": 80 - }, - { - "direction": "recv", - "type": "text", - "payload": "325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731K", - "offset_ms": 82 - }, - { - "direction": "recv", - "type": "text", - "payload": "PNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":n", - "offset_ms": 85 - }, - { - "direction": "recv", - "type": "text", - "payload": "ull}}]}", - "offset_ms": 88 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_state_not_found.json b/cassettes/test_endpoints/test_websocket_get_state_not_found.json deleted file mode 100644 index 7845d99b..00000000 --- a/cassettes/test_endpoints/test_websocket_get_state_not_found.json +++ /dev/null @@ -1,259 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:54.448063+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 10 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YX", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "VNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"d", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "ock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr C", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "losed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:05:18.225770+00:00\",\"last_reported\":\"2026-04-13T08:05:18.225770+00:00\",\"last_updated\":\"2026-04-13T08:05:18.225770+00:00\",\"context\":{\"id\":\"01KP2XZ7RHEVY60V3H0VK6TQPS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": " Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_", - "offset_ms": 29 - }, - { - "direction": "recv", - "type": "text", - "payload": "ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light ", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:", - "offset_ms": 32 - }, - { - "direction": "recv", - "type": "text", - "payload": "31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effec", - "offset_ms": 33 - }, - { - "direction": "recv", - "type": "text", - "payload": "t_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.4083", - "offset_ms": 34 - }, - { - "direction": "recv", - "type": "text", - "payload": "85+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"", - "offset_ms": 35 - }, - { - "direction": "recv", - "type": "text", - "payload": "32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KK", - "offset_ms": 36 - }, - { - "direction": "recv", - "type": "text", - "payload": "RVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_", - "offset_ms": 38 - }, - { - "direction": "recv", - "type": "text", - "payload": "updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow", - "offset_ms": 39 - }, - { - "direction": "recv", - "type": "text", - "payload": " Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC7", - "offset_ms": 41 - }, - { - "direction": "recv", - "type": "text", - "payload": "07RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5", - "offset_ms": 43 - }, - { - "direction": "recv", - "type": "text", - "payload": "E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZV", - "offset_ms": 44 - }, - { - "direction": "recv", - "type": "text", - "payload": "KEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off ", - "offset_ms": 47 - }, - { - "direction": "recv", - "type": "text", - "payload": "At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"", - "offset_ms": 48 - }, - { - "direction": "recv", - "type": "text", - "payload": "Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX", - "offset_ms": 50 - }, - { - "direction": "recv", - "type": "text", - "payload": "4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA3", - "offset_ms": 52 - }, - { - "direction": "recv", - "type": "text", - "payload": "0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779", - "offset_ms": 54 - }, - { - "direction": "recv", - "type": "text", - "payload": "740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.57", - "offset_ms": 56 - }, - { - "direction": "recv", - "type": "text", - "payload": "8911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.3070", - "offset_ms": 58 - }, - { - "direction": "recv", - "type": "text", - "payload": "53+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.3129", - "offset_ms": 61 - }, - { - "direction": "recv", - "type": "text", - "payload": "79+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"s", - "offset_ms": 63 - }, - { - "direction": "recv", - "type": "text", - "payload": "upported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"", - "offset_ms": 66 - }, - { - "direction": "recv", - "type": "text", - "payload": "binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card", - "offset_ms": 68 - }, - { - "direction": "recv", - "type": "text", - "payload": " update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 72 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_states.json b/cassettes/test_endpoints/test_websocket_get_states.json deleted file mode 100644 index e2e52ed7..00000000 --- a/cassettes/test_endpoints/test_websocket_get_states.json +++ /dev/null @@ -1,265 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:58.206898+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 10 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-grou", - "offset_ms": 20 - }, - { - "direction": "recv", - "type": "text", - "payload": "p\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0", - "offset_ms": 20 - }, - { - "direction": "recv", - "type": "text", - "payload": "AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32", - "offset_ms": 21 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YX", - "offset_ms": 21 - }, - { - "direction": "recv", - "type": "text", - "payload": "VNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.1104", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "9],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"", - "offset_ms": 24 - }, - { - "direction": "recv", - "type": "text", - "payload": "context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door ", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4W", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "J7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.8367", - "offset_ms": 28 - }, - { - "direction": "recv", - "type": "text", - "payload": "63+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG", - "offset_ms": 29 - }, - { - "direction": "recv", - "type": "text", - "payload": "1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"e", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "ffect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:5", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "0.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom", - "offset_ms": 32 - }, - { - "direction": "recv", - "type": "text", - "payload": "_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40", - "offset_ms": 34 - }, - { - "direction": "recv", - "type": "text", - "payload": "KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 35 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball", - "offset_ms": 36 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_pr", - "offset_ms": 38 - }, - { - "direction": "recv", - "type": "text", - "payload": "eset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"", - "offset_ms": 39 - }, - { - "direction": "recv", - "type": "text", - "payload": "context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ", - "offset_ms": 48 - }, - { - "direction": "recv", - "type": "text", - "payload": "270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"", - "offset_ms": 50 - }, - { - "direction": "recv", - "type": "text", - "payload": "mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"", - "offset_ms": 52 - }, - { - "direction": "recv", - "type": "text", - "payload": "friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF", - "offset_ms": 53 - }, - { - "direction": "recv", - "type": "text", - "payload": "72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1m", - "offset_ms": 55 - }, - { - "direction": "recv", - "type": "text", - "payload": "on\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164", - "offset_ms": 57 - }, - { - "direction": "recv", - "type": "text", - "payload": "692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.", - "offset_ms": 59 - }, - { - "direction": "recv", - "type": "text", - "payload": "thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_", - "offset_ms": 61 - }, - { - "direction": "recv", - "type": "text", - "payload": "reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNH", - "offset_ms": 64 - }, - { - "direction": "recv", - "type": "text", - "payload": "CW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_", - "offset_ms": 67 - }, - { - "direction": "recv", - "type": "text", - "payload": "reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H77", - "offset_ms": 69 - }, - { - "direction": "recv", - "type": "text", - "payload": "31KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYT", - "offset_ms": 73 - }, - { - "direction": "recv", - "type": "text", - "payload": "F\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 76 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_trigger_service.json b/cassettes/test_endpoints/test_websocket_trigger_service.json deleted file mode 100644 index ef591f8e..00000000 --- a/cassettes/test_endpoints/test_websocket_trigger_service.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:57.212769+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 11 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_services\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"", - "offset_ms": 18 - }, - { - "direction": "recv", - "type": "text", - "payload": "required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recordi", - "offset_ms": 20 - }, - { - "direction": "recv", - "type": "text", - "payload": "ng. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", - "offset_ms": 20 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"service_validation_error\",\"message\":\"Validation error: An action which does not return responses can't be called with return_response=True\",\"translation_key\":\"service_does_not_support_response\",\"translation_placeholders\":{\"return_response\":\"return_response=True\"},\"translation_domain\":\"homeassistant\"}}", - "offset_ms": 29 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": false, \"id\": 4, \"type\": \"call_service\"}", - "offset_ms": 29 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KP2Y5XMFB49WEF8HQQTABM55\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}}", - "offset_ms": 35 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json b/cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json deleted file mode 100644 index 352ae741..00000000 --- a/cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json +++ /dev/null @@ -1,451 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:57.368005+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 11 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_states\"}", - "offset_ms": 12 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.29507", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "5+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:4", - "offset_ms": 26 - }, - { - "direction": "recv", - "type": "text", - "payload": "3:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_", - "offset_ms": 27 - }, - { - "direction": "recv", - "type": "text", - "payload": "8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 29 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"d", - "offset_ms": 33 - }, - { - "direction": "recv", - "type": "text", - "payload": "ock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_", - "offset_ms": 36 - }, - { - "direction": "recv", - "type": "text", - "payload": "battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr C", - "offset_ms": 38 - }, - { - "direction": "recv", - "type": "text", - "payload": "losed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"", - "offset_ms": 40 - }, - { - "direction": "recv", - "type": "text", - "payload": "Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"", - "offset_ms": 44 - }, - { - "direction": "recv", - "type": "text", - "payload": "button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"", - "offset_ms": 47 - }, - { - "direction": "recv", - "type": "text", - "payload": "friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4W", - "offset_ms": 49 - }, - { - "direction": "recv", - "type": "text", - "payload": "J7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 53 - }, - { - "direction": "recv", - "type": "text", - "payload": "2T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"e", - "offset_ms": 58 - }, - { - "direction": "recv", - "type": "text", - "payload": "ffect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:5", - "offset_ms": 63 - }, - { - "direction": "recv", - "type": "text", - "payload": "0.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom", - "offset_ms": 66 - }, - { - "direction": "recv", - "type": "text", - "payload": "_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_", - "offset_ms": 68 - }, - { - "direction": "recv", - "type": "text", - "payload": "updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40", - "offset_ms": 70 - }, - { - "direction": "recv", - "type": "text", - "payload": "KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-1", - "offset_ms": 71 - }, - { - "direction": "recv", - "type": "text", - "payload": "1T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH575MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball", - "offset_ms": 73 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FEAD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0", - "offset_ms": 74 - }, - { - "direction": "recv", - "type": "text", - "payload": "KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T07:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTE", - "offset_ms": 76 - }, - { - "direction": "recv", - "type": "text", - "payload": "QC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.625889+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"", - "offset_ms": 78 - }, - { - "direction": "recv", - "type": "text", - "payload": "mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"", - "offset_ms": 80 - }, - { - "direction": "recv", - "type": "text", - "payload": "state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC", - "offset_ms": 81 - }, - { - "direction": "recv", - "type": "text", - "payload": "9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_", - "offset_ms": 83 - }, - { - "direction": "recv", - "type": "text", - "payload": "updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165165+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D", - "offset_ms": 85 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"", - "offset_ms": 87 - }, - { - "direction": "recv", - "type": "text", - "payload": "context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7NQ4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789", - "offset_ms": 93 - }, - { - "direction": "recv", - "type": "text", - "payload": "H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath", - "offset_ms": 95 - }, - { - "direction": "recv", - "type": "text", - "payload": "_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-c", - "offset_ms": 98 - }, - { - "direction": "recv", - "type": "text", - "payload": "heck\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"Out", - "offset_ms": 100 - }, - { - "direction": "recv", - "type": "text", - "payload": "sideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 103 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"domain\": \"homeassistant\", \"service\": \"update_entity\", \"service_data\": {\"entity_id\": \"sun.sun\"}, \"return_response\": false, \"id\": 3, \"type\": \"call_service\"}", - "offset_ms": 111 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KP2Y5XVWSEAFX5ENJJ67ZQ4V\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}}", - "offset_ms": 117 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 4, \"type\": \"get_states\"}", - "offset_ms": 117 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"conversation.home_assistant\",\"state\":\"2025-09-23T20:30:48.027447+00:00\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-11T01:20:00.968173+00:00\",\"last_reported\":\"2026-04-11T01:20:00.968173+00:00\",\"last_updated\":\"2026-04-11T01:20:00.968173+00:00\",\"context\":{\"id\":\"01KNX1ZPE88MSX816ND6DEHVAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"2026-04-12T12:30:07.062+00:00\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":\"completed\",\"backup_stage\":null,\"failed_reason\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.062705+00:00\",\"last_reported\":\"2026-04-12T12:30:07.062705+00:00\",\"last_updated\":\"2026-04-12T12:30:07.062705+00:00\",\"context\":{\"id\":\"01KP0TQD6P4JJE3MGSSM4G829G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-12T12:30:07.063585+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063585+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063585+00:00\",\"context\":{\"id\":\"01KP0TQD6QXWF3592K81ZYDNG5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"2026-04-13T12:13:49+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001720+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063716+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001720+00:00\",\"context\":{\"id\":\"01KP0TPAZ13FB70C0AVBA0AFC5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"2026-04-12T12:30:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-12T12:30:07.063230+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063763+00:00\",\"last_updated\":\"2026-04-12T12:30:07.063230+00:00\",\"context\":{\"id\":\"01KP0TQD6QR6VDAQ7Y7326F94P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"2026-04-12T12:29:32+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-12T12:29:32.001942+00:00\",\"last_reported\":\"2026-04-12T12:30:07.063802+00:00\",\"last_updated\":\"2026-04-12T12:29:32.001942+00:00\",\"context\":{\"id\":\"01KP0TPAZ1CKQWG1NZ0AD482AK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"stt.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.524384+00:00\",\"last_reported\":\"2026-04-11T01:20:01.524384+00:00\",\"last_updated\":\"2026-04-11T01:20:01.524384+00:00\",\"context\":{\"id\":\"01KNX1ZPZMBA6S803MG79RAJZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"tts.home_assistant_cloud\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant Cloud\"},\"last_changed\":\"2026-04-11T01:20:01.525268+00:00\",\"last_reported\":\"2026-04-11T01:20:01.525268+00:00\",\"last_updated\":\"2026-04-11T01:20:01.525268+00:00\",\"context\":{\"id\":\"01KNX1ZPZNFCA98XQFJQTV18EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.bathroom_humidity_changed\",\"state\":\"off\",\"attributes\":{},\"last_changed\":\"2026-04-11T01:20:04.874695+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874695+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874695+00:00\",\"context\":{\"id\":\"01KNX1ZT8AH3SSSJTS0ZWJ7ZFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.remote_ui\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Remote UI\"},\"last_changed\":\"2026-04-12T18:37:53.883787+00:00\",\"last_reported\":\"2026-04-12T18:37:53.883787+00:00\",\"last_updated\":\"2026-04-12T18:37:53.883787+00:00\",\"context\":{\"id\":\"01KP1FRTTVSBWGT0QDJRR1TBBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_lamps\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.living_room_1\",\"light.living_room_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Living Room Lamps\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037558+00:00\",\"last_reported\":\"2026-04-13T04:45:22.037558+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037558+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"entity_id\":[\"light.front_porch_1\",\"light.front_porch_2\",\"light.front_porch_3\",\"light.front_porch_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Front Porch Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685761+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685761+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685761+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bedroom_1\",\"light.master_bedroom_2\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885957+00:00\",\"last_reported\":\"2026-04-13T04:53:13.886582+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885957+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"light.office_ceiling_lights\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_light_1\",\"light.office_light_2\",\"light.office_light_3\",\"light.office_light_4\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Ceiling Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143955+00:00\",\"last_reported\":\"2026-04-13T04:14:23.181123+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143955+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Akemi\",\"Android\",\"Aurora\",\"Black Hole\",\"Blends\",\"Blink\",\"Blink Rainbow\",\"Blobs\",\"Blurz\",\"Bouncing Balls\",\"Bpm\",\"Breathe\",\"Candle\",\"Candle Multi\",\"Chase\",\"Chase 2\",\"Chase 3\",\"Chase Flash\",\"Chase Flash Rnd\",\"Chase Rainbow\",\"Chase Random\",\"Chunchun\",\"Colored Bursts\",\"Colorful\",\"Colorloop\",\"Colortwinkles\",\"Colorwaves\",\"Crazy Bees\",\"DJ Light\",\"DNA\",\"DNA Spiral\",\"Dancing Shadows\",\"Dissolve\",\"Dissolve Rnd\",\"Distortion Waves\",\"Drift\",\"Drift Rose\",\"Drip\",\"Dynamic\",\"Dynamic Smooth\",\"Fade\",\"Fairy\",\"Fairytwinkle\",\"Fill Noise\",\"Fire 2012\",\"Fire Flicker\",\"Firenoise\",\"Fireworks\",\"Fireworks 1D\",\"Fireworks Starburst\",\"Flow\",\"Flow Stripe\",\"Freqmap\",\"Freqmatrix\",\"Freqpixels\",\"Freqwave\",\"Frizzles\",\"Funky Plank\",\"GEQ\",\"Game Of Life\",\"Ghost Rider\",\"Glitter\",\"Gradient\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"Gravimeter\",\"Halloween Eyes\",\"Heartbeat\",\"Hiphotic\",\"ICU\",\"Juggle\",\"Juggles\",\"Julia\",\"Lake\",\"Lighthouse\",\"Lightning\",\"Lissajous\",\"Loading\",\"Matripix\",\"Matrix\",\"Metaballs\",\"Meteor\",\"Meteor Smooth\",\"Midnoise\",\"Multi Comet\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Noise Pal\",\"Noise2D\",\"Noisefire\",\"Noisemeter\",\"Noisemove\",\"Octopus\",\"Oscillate\",\"Pacifica\",\"Palette\",\"Percent\",\"Perlin Move\",\"Phased\",\"Phased Noise\",\"Pixels\",\"Pixelwave\",\"Plasma\",\"Plasma Ball\",\"Plasmoid\",\"Polar Lights\",\"Popcorn\",\"Pride 2015\",\"Puddlepeak\",\"Puddles\",\"Pulser\",\"RSVD\",\"Railway\",\"Rain\",\"Rainbow\",\"Rainbow Runner\",\"Random Colors\",\"Ripple\",\"Ripple Peak\",\"Ripple Rainbow\",\"Rocktaves\",\"Rolling Balls\",\"Rotozoomer\",\"Running\",\"Running Dual\",\"Saw\",\"Scan\",\"Scan Dual\",\"Scanner\",\"Scanner Dual\",\"Scrolling Text\",\"Sindots\",\"Sine\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Soap\",\"Solid\",\"Solid Glitter\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spaceships\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Spots\",\"Spots Fade\",\"Squared Swirl\",\"Stream\",\"Stream 2\",\"Strobe\",\"Strobe Mega\",\"Strobe Rainbow\",\"Sun Radiation\",\"Sunrise\",\"Sweep\",\"Sweep Random\",\"Swirl\",\"TV Simulator\",\"Tartan\",\"Tetrix\",\"Theater\",\"Theater Rainbow\",\"Traffic Light\",\"Tri Fade\",\"Tri Wipe\",\"Twinkle\",\"Twinklecat\",\"Twinklefox\",\"Twinkleup\",\"Two Dots\",\"Washing Machine\",\"Waterfall\",\"Waverly\",\"Wavesins\",\"Waving Cell\",\"Wipe\",\"Wipe Random\"],\"supported_color_modes\":[\"rgb\",\"rgbww\"],\"effect\":\"Solid\",\"color_mode\":\"rgbww\",\"brightness\":202,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"entity_id\":[\"light.office_lamp_1\",\"light.office_ceiling_lights\",\"light.adam_desk_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Office Lights\",\"supported_features\":44},\"last_changed\":\"2026-04-13T04:14:23.144799+00:00\",\"last_reported\":\"2026-04-13T04:14:23.231804+00:00\",\"last_updated\":\"2026-04-13T04:14:23.231804+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.dining_room_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.dining_room_light_1\",\"light.dining_room_light_2\",\"light.dining_room_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Dining Room Lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397527+00:00\",\"last_reported\":\"2026-04-13T04:44:25.397527+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397527+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"light.play_area_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"entity_id\":[\"light.right_upstairs_hallway_lights\",\"light.left_upstairs_hallway_lights\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Area Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:16.948770+00:00\",\"last_reported\":\"2026-04-11T01:20:16.948690+00:00\",\"last_updated\":\"2026-04-11T01:20:16.948770+00:00\",\"context\":{\"id\":\"01KNX2061MBQVK4CHCPC5Y4QBQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"scene.mariah_in_bed\",\"state\":\"2024-09-02T00:38:25.438982+00:00\",\"attributes\":{\"entity_id\":[\"light.mariah_light\"],\"id\":\"1725237502868\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Mariah In Bed\"},\"last_changed\":\"2026-04-11T01:20:01.557847+00:00\",\"last_reported\":\"2026-04-11T01:20:01.557847+00:00\",\"last_updated\":\"2026-04-11T01:20:01.557847+00:00\",\"context\":{\"id\":\"01KNX1ZQ0N4KKFQ2KP2KPSGA2X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_base_station_power_switch\",\"state\":\"off\",\"attributes\":{\"entity_id\":[\"switch.vr_desk_plug\",\"switch.vr_cabinet_plug\"],\"friendly_name\":\"VR Base Station Power Switch\"},\"last_changed\":\"2026-04-11T01:21:03.725979+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727110+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725979+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.466052+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Lock Back Door\"},\"last_changed\":\"2026-04-13T05:30:00.467262+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467262+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467262+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Back Door\"},\"last_changed\":\"2026-04-11T01:20:01.805725+00:00\",\"last_reported\":\"2026-04-11T01:20:01.805725+00:00\",\"last_updated\":\"2026-04-11T01:20:01.805725+00:00\",\"context\":{\"id\":\"01KNX1ZQ8D5TAB07Y6FRZ4P033\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.065900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Red\"},\"last_changed\":\"2026-04-13T05:30:00.464554+00:00\",\"last_reported\":\"2026-04-13T05:30:00.464554+00:00\",\"last_updated\":\"2026-04-13T05:30:00.464554+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:22:02.295075+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier White\"},\"last_changed\":\"2026-04-12T17:22:02.734379+00:00\",\"last_reported\":\"2026-04-12T17:22:02.734379+00:00\",\"last_updated\":\"2026-04-12T17:22:02.734379+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Red\"},\"last_changed\":\"2026-04-11T01:20:01.806075+00:00\",\"last_reported\":\"2026-04-11T01:20:01.806075+00:00\",\"last_updated\":\"2026-04-11T01:20:01.806075+00:00\",\"context\":{\"id\":\"01KNX1ZQ8EG9V8E7HBXDY5YFR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T14:00:00.202507+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp White\"},\"last_changed\":\"2026-04-12T14:00:00.204056+00:00\",\"", - "offset_ms": 129 - }, - { - "direction": "recv", - "type": "text", - "payload": "last_reported\":\"2026-04-12T14:00:00.204056+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204056+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.437171+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Leksi Lamp Green\"},\"last_changed\":\"2026-04-13T05:30:00.438597+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438597+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438597+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:34:55.006970+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights On\"},\"last_changed\":\"2026-04-12T18:34:55.007024+00:00\",\"last_reported\":\"2026-04-12T18:34:55.007024+00:00\",\"last_updated\":\"2026-04-12T18:34:55.007024+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"script.kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-12T18:35:19.136524+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Kitchen Lights Off\"},\"last_changed\":\"2026-04-12T18:35:19.136574+00:00\",\"last_reported\":\"2026-04-12T18:35:19.136574+00:00\",\"last_updated\":\"2026-04-12T18:35:19.136574+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T06:58:01.020773+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Stair Chandelier Off\"},\"last_changed\":\"2026-04-13T06:58:01.432151+00:00\",\"last_reported\":\"2026-04-13T06:58:01.432151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.432151+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"script.master_bath_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:53.832162+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights White\"},\"last_changed\":\"2026-04-13T04:44:54.207666+00:00\",\"last_reported\":\"2026-04-13T04:44:54.207666+00:00\",\"last_updated\":\"2026-04-13T04:44:54.207666+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T07:59:15.856980+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Red\"},\"last_changed\":\"2026-04-12T07:59:16.271671+00:00\",\"last_reported\":\"2026-04-12T07:59:16.271671+00:00\",\"last_updated\":\"2026-04-12T07:59:16.271671+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"script.master_bath_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:50:40.965854+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Off\"},\"last_changed\":\"2026-04-13T04:50:41.314596+00:00\",\"last_reported\":\"2026-04-13T04:50:41.314596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.314596+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"script.lock_front_door_2\",\"state\":\"on\",\"attributes\":{\"last_triggered\":\"2026-04-13T05:30:00.467898+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"Lock Front Door\"},\"last_changed\":\"2026-04-13T05:30:00.467931+00:00\",\"last_reported\":\"2026-04-13T05:30:00.467931+00:00\",\"last_updated\":\"2026-04-13T05:30:00.467931+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Unlock Front Door\"},\"last_changed\":\"2026-04-11T01:20:01.807438+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807438+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807438+00:00\",\"context\":{\"id\":\"01KNX1ZQ8F64TH9WM8CB5A4PXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.kids_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-04T03:58:44.233811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Light White\"},\"last_changed\":\"2026-04-11T01:20:01.807539+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807539+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807539+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FJQNBRE5FTS15K3QQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:06:27.225199+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps White\"},\"last_changed\":\"2026-04-13T01:06:27.604275+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604275+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604275+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:39:45.216291+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Red\"},\"last_changed\":\"2026-04-13T04:39:45.737067+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737067+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737067+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"script.living_room_lamps_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2025-03-11T03:18:48.351418+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Living Room Lamps Off\"},\"last_changed\":\"2026-04-11T01:20:01.807825+00:00\",\"last_reported\":\"2026-04-11T01:20:01.807825+00:00\",\"last_updated\":\"2026-04-11T01:20:01.807825+00:00\",\"context\":{\"id\":\"01KNX1ZQ8FN71ABCTSK4GJEWNW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.desk_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.120295+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.233049+00:00\",\"last_reported\":\"2026-04-13T04:14:23.233049+00:00\",\"last_updated\":\"2026-04-13T04:14:23.233049+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.119741+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.238506+00:00\",\"last_reported\":\"2026-04-12T16:32:05.238506+00:00\",\"last_updated\":\"2026-04-12T16:32:05.238506+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.desk_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.523046+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Desk Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599158+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599158+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599158+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.toggle_large_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T22:42:08.722025+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Large Garage Door\"},\"last_changed\":\"2026-04-11T22:42:08.794485+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794485+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794485+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"script.porch_lights_christmas\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-11-01T02:32:53.431560+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Christmas\"},\"last_changed\":\"2026-04-11T01:20:01.808279+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808279+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808279+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GJF4EFCQSQK5BQS5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:35:28.987143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Light White\"},\"last_changed\":\"2026-04-11T01:20:01.808375+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808375+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808375+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GQ1ABNJWBFTSMHTCX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:29.983500+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights White\"},\"last_changed\":\"2026-04-13T03:24:29.988020+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988020+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988020+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:30:02.335789+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Off\"},\"last_changed\":\"2026-04-12T05:30:02.341006+00:00\",\"last_reported\":\"2026-04-12T05:30:02.341006+00:00\",\"last_updated\":\"2026-04-12T05:30:02.341006+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.toggle_small_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-04T23:29:54.038385+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Toggle Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.808747+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808747+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808747+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GVWVX4TJZAJQPRM1S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:51:30.609525+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White\"},\"last_changed\":\"2026-04-13T04:51:30.984067+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984067+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984067+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-08T10:07:00.095933+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Red\"},\"last_changed\":\"2026-04-11T01:20:01.808928+00:00\",\"last_reported\":\"2026-04-11T01:20:01.808928+00:00\",\"last_updated\":\"2026-04-11T01:20:01.808928+00:00\",\"context\":{\"id\":\"01KNX1ZQ8GXMTKTYKQWPJPTYKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T01:55:37.215099+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-13T01:55:37.723204+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723204+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723204+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112965+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.119503+00:00\",\"last_reported\":\"2026-04-13T04:14:23.119503+00:00\",\"last_updated\":\"2026-04-13T04:14:23.119503+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.112105+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.118120+00:00\",\"last_reported\":\"2026-04-12T16:32:05.118120+00:00\",\"last_updated\":\"2026-04-12T16:32:05.118120+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.517186+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.522254+00:00\",\"last_reported\":\"2026-04-13T03:55:02.522254+00:00\",\"last_updated\":\"2026-04-13T03:55:02.522254+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:14:23.112423+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Red\"},\"last_changed\":\"2026-04-13T04:14:23.234649+00:00\",\"last_reported\":\"2026-04-13T04:14:23.234649+00:00\",\"last_updated\":\"2026-04-13T04:14:23.234649+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.111471+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights White\"},\"last_changed\":\"2026-04-12T16:32:05.245653+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245653+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245653+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.office_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:55:02.516595+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lights Off\"},\"last_changed\":\"2026-04-13T03:55:02.599577+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599577+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599577+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"script.kids_room_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2023-04-15T05:43:00.538864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Kids Room Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.809681+00:00\",\"last_reported\":\"2026-04-11T01:20:01.809681+00:00\",\"last_updated\":\"2026-04-11T01:20:01.809681+00:00\",\"context\":{\"id\":\"01KNX1ZQ8HJ03PBJSKFF80PW3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_fade_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:23.314668+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White Fade On\"},\"last_changed\":\"2026-04-13T03:24:23.652122+00:00\",\"last_reported\":\"2026-04-13T03:24:23.652122+00:00\",\"last_updated\":\"2026-04-13T03:24:23.652122+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T03:24:12.898648+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Lights White 1%\"},\"last_changed\":\"2026-04-13T03:24:13.312430+00:00\",\"last_reported\":\"2026-04-13T03:24:13.312430+00:00\",\"last_updated\":\"2026-04-13T03:24:13.312430+00:00\",\"context\":{\"id\":\"01KP2DWHQ0PY7GF95KCT7FKH32\",\"parent_id\":\"01KP2DWHPZMWVJF8SEBDPDS6PD\",\"user_id\":null}},{\"entity_id\":\"script.notify_phones_about_garage_door\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-11T19:33:14.738886+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Notify Phones About Garage Door\"},\"last_changed\":\"2026-04-11T19:33:15.011519+00:00\",\"last_reported\":\"2026-04-11T19:33:15.011519+00:00\",\"last_updated\":\"2026-04-11T19:33:15.011519+00:00\",\"context\":{\"id\":\"01KNZ0HEVHRWQ4WEXZDF47C0CQ\",\"parent_id\":\"01KNYZZ4XGHAN24CGCWC7KZ8MK\",\"user_id\":null}},{\"entity_id\":\"script.office_ceiling_lights_meeting\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-10T17:42:14.686963+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Ceiling Lights Meeting\"},\"last_changed\":\"2026-04-11T01:20:01.810083+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810083+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810083+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JCHR34RXT74WHRK5A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-09T04:41:00.829893+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Porch Lights Halloween\"},\"last_changed\":\"2026-04-11T01:20:01.810192+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810192+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810192+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWXM6FCSDAQT4TZE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:06.957466+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn Off VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810290+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810290+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810290+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JNF9VRHB1V9B1HZ97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.vr_base_stations_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-05T00:36:05.255177+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Turn On VR Base Stations\"},\"last_changed\":\"2026-04-11T01:20:01.810380+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810380+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810380+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JWWSGRY3FZ8RDW7XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T07:46:02.060044+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights On\"},\"last_changed\":\"2026-04-11T01:20:01.810470+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810470+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810470+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JG143M24NSRS85VB6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.upstairs_hall_lights_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2024-05-18T08:16:02.106490+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Upstairs Hall Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.810572+00:00\",\"last_reported\":\"2026-04-11T01:20:01.810572+00:00\",\"last_updated\":\"2026-04-11T01:20:01.810572+00:00\",\"context\":{\"id\":\"01KNX1ZQ8JQ07XHXCPRJA802GP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_bed_lights_red\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T10:10:35.083151+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bed Lights Red\"},\"last_changed\":\"2026-04-12T10:10:35.178651+00:00\",\"last_reported\":\"2026-04-12T10:10:35.178651+00:00\",\"last_updated\":\"2026-04-12T10:10:35.178651+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:44:24.970352+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights Off\"},\"last_changed\":\"2026-04-13T04:44:25.399578+00:00\",\"last_reported\":\"2026-04-13T04:44:25.399578+00:00\",\"last_updated\":\"2026-04-13T04:44:25.399578+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_on\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:43:47.485474+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Dining Room Lights On White\"},\"last_changed\":\"2026-04-13T04:43:47.958240+00:00\",\"last_reported\":\"2026-04-13T04:43:47.958240+00:00\",\"last_updated\":\"2026-04-13T04:43:47.958240+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"script.office_lamp_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T16:32:05.241906+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Office Lamp White\"},\"last_changed\":\"2026-04-12T16:32:05.245137+00:00\",\"last_reported\":\"2026-04-12T16:32:05.245137+00:00\",\"last_updated\":\"2026-04-12T16:32:05.245137+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_purple\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T05:08:00.486463+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Purple\"},\"last_changed\":\"2026-04-12T05:08:00.837740+00:00\",\"last_reported\":\"2026-04-12T05:08:00.837740+00:00\",\"last_updated\":\"2026-04-12T05:08:00.837740+00:00\",\"context\":{\"id\":\"01KP01", - "offset_ms": 129 - }, - { - "direction": "recv", - "type": "text", - "payload": "DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_white\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:18:19.112375+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light White\"},\"last_changed\":\"2026-04-13T04:18:19.437418+00:00\",\"last_reported\":\"2026-04-13T04:18:19.437418+00:00\",\"last_updated\":\"2026-04-13T04:18:19.437418+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Morning Wake Up\"},\"last_changed\":\"2026-04-11T01:20:01.811177+00:00\",\"last_reported\":\"2026-04-11T01:20:01.811177+00:00\",\"last_updated\":\"2026-04-11T01:20:01.811177+00:00\",\"context\":{\"id\":\"01KNX1ZQ8KHPVSNKT5SVJJ9E1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off_2\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-13T04:12:37.824767+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Mariah Room Light Off\"},\"last_changed\":\"2026-04-13T04:12:38.147618+00:00\",\"last_reported\":\"2026-04-13T04:12:38.147618+00:00\",\"last_updated\":\"2026-04-13T04:12:38.147618+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_day\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:49:36.049607+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Day\"},\"last_changed\":\"2026-04-12T17:49:36.383170+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383170+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383170+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_night\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T13:10:12.527820+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"", - "offset_ms": 130 - }, - { - "direction": "recv", - "type": "text", - "payload": "Downstairs Hallway Light Night\"},\"last_changed\":\"2026-04-12T13:10:12.848005+00:00\",\"last_reported\":\"2026-04-12T13:10:12.848005+00:00\",\"last_updated\":\"2026-04-12T13:10:12.848005+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"script.downstairs_hallway_light_off\",\"state\":\"off\",\"attributes\":{\"last_triggered\":\"2026-04-12T17:51:17.034839+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Downstairs Hallway Light Off\"},\"last_changed\":\"2026-04-12T17:51:17.345044+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345044+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345044+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"light.master_bath_lights\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.master_bath_1\",\"light.master_bath_2\",\"light.master_bath_3\",\"light.master_bath_4\",\"light.master_bath_5\",\"light.matter_bath_toilet\",\"light.master_shower\",\"light.master_bath_6\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Master Bath Lights \",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.313256+00:00\",\"last_reported\":\"2026-04-13T04:50:41.313256+00:00\",\"last_updated\":\"2026-04-13T04:50:41.313256+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"input_boolean.fish_fed\",\"state\":\"off\",\"attributes\":{\"editable\":false,\"icon\":\"mdi:fish\",\"friendly_name\":\"Fish Fed\"},\"last_changed\":\"2026-04-13T07:00:00.094054+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094054+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094054+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"timer.garage_door_closed_recently\",\"state\":\"idle\",\"attributes\":{\"duration\":\"0:05:00\",\"editable\":true,\"friendly_name\":\"Garage Door Closed Recently\"},\"last_changed\":\"2026-04-11T01:20:01.814008+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814008+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814008+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P2A1DJ479CBV5MPNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.school\",\"state\":\"0\",\"attributes\":{\"latitude\":45.24664425331275,\"longitude\":-123.1076121847481,\"radius\":186.13161851159384,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:map-marker\",\"friendly_name\":\"School\"},\"last_changed\":\"2026-04-11T01:20:01.814225+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814225+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814225+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P3SRQTBS9DVW2BXAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.neck_pain\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:necklace\",\"friendly_name\":\"Neck Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814423+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814423+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814423+00:00\",\"context\":{\"id\":\"01KNX1ZQ8P8XYE6NS0MAJCW3Q1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.migraine\",\"state\":\"1.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":5.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Migraine\"},\"last_changed\":\"2026-04-11T01:20:01.814525+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814525+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814525+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5PPJJP1Y2FW7FV9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.back\",\"state\":\"5.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"friendly_name\":\"Back\"},\"last_changed\":\"2026-04-11T01:20:01.814610+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814610+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814610+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PJ5QSP59SJVDBAK0J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_number.joint_pain\",\"state\":\"3.0\",\"attributes\":{\"initial\":null,\"editable\":true,\"min\":0.0,\"max\":10.0,\"step\":1.0,\"mode\":\"slider\",\"icon\":\"mdi:account-alert-outline\",\"friendly_name\":\"Joint Pain\"},\"last_changed\":\"2026-04-11T01:20:01.814692+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814692+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814692+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE14R632WPS0DKDCT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_button.band_day_3\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day 3\"},\"last_changed\":\"2026-04-11T01:20:01.814851+00:00\",\"last_reported\":\"2026-04-11T01:20:01.814851+00:00\",\"last_updated\":\"2026-04-11T01:20:01.814851+00:00\",\"context\":{\"id\":\"01KNX1ZQ8PE7GW7ZR26W2KAYA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"zone.home\",\"state\":\"2\",\"attributes\":{\"latitude\":45.2486428320808,\"longitude\":-123.11064967054175,\"radius\":129,\"passive\":false,\"persons\":[\"person.adam\",\"person.jenni\"],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Logan's Landing\"},\"last_changed\":\"2026-04-11T22:42:08.717264+00:00\",\"last_reported\":\"2026-04-11T22:42:08.717264+00:00\",\"last_updated\":\"2026-04-11T22:42:08.717264+00:00\",\"context\":{\"id\":\"01KNZBBB6D39AQ2QFE4EVRXFGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.red_alert\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Red Alert\"},\"last_changed\":\"2026-04-11T01:20:01.818745+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818745+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818745+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TQQ19V5AAY818FNPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate\"},\"last_changed\":\"2026-04-11T01:20:01.818854+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818854+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818854+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TPXZ6TR46VSE1E5PG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.show_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Show Time\"},\"last_changed\":\"2026-04-11T01:20:01.818933+00:00\",\"last_reported\":\"2026-04-11T01:20:01.818933+00:00\",\"last_updated\":\"2026-04-11T01:20:01.818933+00:00\",\"context\":{\"id\":\"01KNX1ZQ8TFYH86W200B4C8CCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_kids_room\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:01.819007+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819007+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819007+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VAYWKAHJ251V15HPM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:01.819078+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819078+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819078+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPPP0MBHMA0HK8BT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.kid_dance_party\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Kid Dance Party\"},\"last_changed\":\"2026-04-11T01:20:01.819145+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819145+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819145+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VZ2AJ4840TG4YFZ8D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.illuminate_master\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-on\",\"friendly_name\":\"Illuminate Master\"},\"last_changed\":\"2026-04-11T01:20:01.819211+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819211+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819211+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V52EQPBNC8DBS97SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.master_lights_off\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:lightbulb-outline\",\"friendly_name\":\"Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:01.819277+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819277+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819277+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V8EG4VDKEWFW1YYZX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Adam Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819341+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819341+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819341+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V03DMM9G52JPGJKMN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.jenni_has_driven\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:car\",\"friendly_name\":\"Jenni Has Driven\"},\"last_changed\":\"2026-04-11T01:20:01.819403+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819403+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819403+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPE4TSGAVE31X4JJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.nap_time\",\"state\":\"on\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Nap Time\"},\"last_changed\":\"2026-04-13T04:56:45.154952+00:00\",\"last_reported\":\"2026-04-13T04:56:45.154952+00:00\",\"last_updated\":\"2026-04-13T04:56:45.154952+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"input_boolean.bed_time_persistent\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:bed\",\"friendly_name\":\"Bed Time Persistent\"},\"last_changed\":\"2026-04-11T01:20:01.819542+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819542+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819542+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V0F17TM3SGSJVX721\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Away\"},\"last_changed\":\"2026-04-11T22:42:08.718847+00:00\",\"last_reported\":\"2026-04-11T22:42:08.718847+00:00\",\"last_updated\":\"2026-04-11T22:42:08.718847+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"input_boolean.close_large_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819668+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819668+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819668+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V7Y5574WPT1TGS9SQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.close_small_garage_door\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:01.819733+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819733+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819733+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VPCYT9YG6G0NK38PZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Pause Master Bedroom Lights\"},\"last_changed\":\"2026-04-11T01:20:01.819802+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819802+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819802+00:00\",\"context\":{\"id\":\"01KNX1ZQ8V619CKT5TTK26MGMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.adam_away\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Adam Away\"},\"last_changed\":\"2026-04-11T01:20:01.819861+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819861+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819861+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VYEN8FZ99FKZAQV5M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.scaredy_cat\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:cat\",\"friendly_name\":\"Scaredy Cat\"},\"last_changed\":\"2026-04-11T01:20:01.819926+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819926+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819926+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VEDPV2YXVNEXGB2HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"Band Day\"},\"last_changed\":\"2026-04-11T01:20:01.819992+00:00\",\"last_reported\":\"2026-04-11T01:20:01.819992+00:00\",\"last_updated\":\"2026-04-11T01:20:01.819992+00:00\",\"context\":{\"id\":\"01KNX1ZQ8VCBQCBS0D8E52S5NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.band_day_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"icon\":\"mdi:account\",\"friendly_name\":\"band day 2\"},\"last_changed\":\"2026-04-11T01:20:01.820056+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820056+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820056+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WB0ZSR7AQXRX8Q2K6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820260+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820260+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820260+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WE8000VKXXHRTZC17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820372+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820372+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820372+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W31R77XPGQKQSQTA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820439+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820439+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820439+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W0XM7562C4EAYMD6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820503+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820503+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820503+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WAYFVWCK5TPV9GQJN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820565+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820565+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820565+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WEKA0ZZS0QEP1MSTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820624+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820624+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820624+00:00\",\"context\":{\"id\":\"01KNX1ZQ8W28VPRKZRC2C5JJGD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820700+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820700+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820700+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WZRKQMR7QMPVS1S18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.820762+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820762+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820762+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WP3MDQBM456VJJ6B7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820827+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820827+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820827+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WBNJZVGX70T1H3EP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820893+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820893+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820893+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WJEG1H7HXYNDMXK11\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.820956+00:00\",\"last_reported\":\"2026-04-11T01:20:01.820956+00:00\",\"last_updated\":\"2026-04-11T01:20:01.820956+00:00\",\"context\":{\"id\":\"01KNX1ZQ8WWWA573NVHMH5SR6N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821021+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821021+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821021+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XE3FYFC1RM3AQ7WKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821082+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821082+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821082+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XYVW2QW8R2AQNV16V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821160+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821160+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821160+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XP7ZESYXZF1J302HC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821231+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821231+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821231+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XH8TS3BWD4VJ1TP8H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821291+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821291+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821291+00:00\",\"context\":{\"id\":\"01KNX1ZQ8X3WFWKR14CGMRANQD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821352+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821352+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821352+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XVDEYKW24691HW922\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-11T01:20:01.821412+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821412+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821412+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XRE740DYT3Y1GNV66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-11T01:20:01.821478+00:00\",\"last_reported\":\"2026-04-11T01:20:01.821478+00:00\",\"last_updated\":\"2026-04-11T01:20:01.821478+00:00\",\"context\":{\"id\":\"01KNX1ZQ8XPC7B1JAS67QG7XWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stair_chandelier\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"entity_id\":[\"light.stairs_light_1\",\"light.stairs_light_2\",\"light.stairs_light_3\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Stair Chandelier\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429772+00:00\",\"last_reported\":\"2026-04-13T06:58:01.429772+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429772+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"person.adam\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"adam\",\"device_trackers\":[\"device_tracker.adam_pixel_watch_3\",\"device_tracker.adam_phone\"],\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"source\":\"device_tracker.adam_phone\",\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\",\"friendly_name\":\"Adam\"},\"last_changed\":\"2026-04-11T19:23:06.749689+00:00\",\"last_reported\":\"2026-04-13T07:47:06.198419+00:00\",\"last_updated\":\"2026-04-13T07:47:06.198419+00:00\",\"context\":{\"id\":\"01KP2WXXAPRZGST15GRXCP3Y15\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.jenni\",\"state\":\"home\",\"attributes\":{\"editable\":true,\"id\":\"jenni\",\"device_trackers\":[\"device_tracker.pixel_7\"],\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"source\":\"device_tracker.pixel_7\",\"user_id\":\"f", - "offset_ms": 130 - }, - { - "direction": "recv", - "type": "text", - "payload": "3ba209d20d24000ac21fb92e0803890\",\"friendly_name\":\"Jenni\"},\"last_changed\":\"2026-04-11T22:42:08.716999+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984413+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984413+00:00\",\"context\":{\"id\":\"01KP2RPVTRR4EYD0NJPWTXK7H1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.bed_time\",\"state\":\"22:30:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":22,\"minute\":30,\"second\":0,\"timestamp\":81000,\"friendly_name\":\"Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.308805+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308805+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308805+00:00\",\"context\":{\"id\":\"01KNX1ZQR4VZHHCMKECKTWWA49\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.wake_up_time\",\"state\":\"07:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":7,\"minute\":0,\"second\":0,\"timestamp\":25200,\"friendly_name\":\"Wake Up Time\"},\"last_changed\":\"2026-04-11T01:20:02.308958+00:00\",\"last_reported\":\"2026-04-11T01:20:02.308958+00:00\",\"last_updated\":\"2026-04-11T01:20:02.308958+00:00\",\"context\":{\"id\":\"01KNX1ZQR4T8YERC04K4MDV5D7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.adult_bed_time\",\"state\":\"23:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":23,\"minute\":0,\"second\":0,\"timestamp\":82800,\"friendly_name\":\"Adult Bed Time\"},\"last_changed\":\"2026-04-11T01:20:02.309072+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309072+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309072+00:00\",\"context\":{\"id\":\"01KNX1ZQR5VTSPC34S7WA86VRE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_datetime.night_tv_time\",\"state\":\"19:00:00\",\"attributes\":{\"has_date\":false,\"has_time\":true,\"editable\":true,\"hour\":19,\"minute\":0,\"second\":0,\"timestamp\":68400,\"friendly_name\":\"Night TV Time\"},\"last_changed\":\"2026-04-11T01:20:02.309195+00:00\",\"last_reported\":\"2026-04-11T01:20:02.309195+00:00\",\"last_updated\":\"2026-04-11T01:20:02.309195+00:00\",\"context\":{\"id\":\"01KNX1ZQR5BS71XTK7G5HKTVC9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-13T12:59:35+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-12T13:01:27.872500+00:00\",\"last_reported\":\"2026-04-13T08:05:15.271631+00:00\",\"last_updated\":\"2026-04-13T08:05:15.271631+00:00\",\"context\":{\"id\":\"01KP2XZ4W71VQCQM2R1HJH83J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-14T03:27:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-13T03:25:44.849796+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557189+00:00\",\"last_updated\":\"2026-04-13T03:25:44.849796+00:00\",\"context\":{\"id\":\"01KP2DZBGHQYDNR0PZG639JYMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-13T08:12:52+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-12T08:13:07.004069+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557253+00:00\",\"last_updated\":\"2026-04-12T08:13:07.004069+00:00\",\"context\":{\"id\":\"01KP0C0THWEHY8DGWJSXFZY615\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-13T20:13:04+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-12T20:13:20.004217+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557309+00:00\",\"last_updated\":\"2026-04-12T20:13:20.004217+00:00\",\"context\":{\"id\":\"01KP1N7JR4DHZTWDK360Y6AQ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-13T13:30:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-12T13:32:35.010880+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557360+00:00\",\"last_updated\":\"2026-04-12T13:32:35.010880+00:00\",\"context\":{\"id\":\"01KP0Y9SA20YD34B7P1VEF8H7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-14T02:55:46+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-13T02:54:29.985540+00:00\",\"last_reported\":\"2026-04-13T04:42:04.557407+00:00\",\"last_updated\":\"2026-04-13T02:54:29.985540+00:00\",\"context\":{\"id\":\"01KP2C64K1NPCBGVD8QP38JNXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.tracker_one_presses\",\"state\":\"0\",\"attributes\":{\"editable\":false,\"initial\":0,\"step\":1,\"friendly_name\":\"Tracker One Presses\"},\"last_changed\":\"2026-04-11T01:20:04.196353+00:00\",\"last_reported\":\"2026-04-11T01:20:04.196353+00:00\",\"last_updated\":\"2026-04-11T01:20:04.196353+00:00\",\"context\":{\"id\":\"01KNX1ZSK4ZWZBJSJF5R96MYB1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.total_inverter_watts\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Total_Inverter_Watts\"},\"last_changed\":\"2026-04-11T01:20:16.951211+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951211+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951211+00:00\",\"context\":{\"id\":\"01KNX2061Q8X7MV5RKASBVXA6Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion\"},\"last_changed\":\"2026-04-11T01:20:16.951568+00:00\",\"last_reported\":\"2026-04-11T01:20:16.951568+00:00\",\"last_updated\":\"2026-04-11T01:20:16.951568+00:00\",\"context\":{\"id\":\"01KNX2061QA8KE4JKNF65BDNW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"counter.water_intake\",\"state\":\"0\",\"attributes\":{\"editable\":true,\"initial\":0,\"step\":1,\"minimum\":0,\"icon\":\"mdi:water\",\"friendly_name\":\"Water Intake\"},\"last_changed\":\"2026-04-11T01:20:04.244330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.244330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.244330+00:00\",\"context\":{\"id\":\"01KNX1ZSMMR6WN2TEWJ1NK3TT6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.large_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Large Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-12T02:00:35.073406+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073406+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073406+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"cover.small_garage_door\",\"state\":\"closed\",\"attributes\":{\"current_position\":0,\"device_class\":\"garage\",\"friendly_name\":\"Small Garage Door\",\"supported_features\":11},\"last_changed\":\"2026-04-11T01:20:16.952091+00:00\",\"last_reported\":\"2026-04-11T01:20:16.952091+00:00\",\"last_updated\":\"2026-04-11T01:20:16.952091+00:00\",\"context\":{\"id\":\"01KNX2061RA4KSWPKHH3R7RW8W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_fan_on\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"HVAC Fan On\"},\"last_changed\":\"2026-04-13T08:02:07.676235+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676235+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676235+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.hvac_aux_heat_on\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"HVAC Aux Heat On\"},\"last_changed\":\"2026-04-11T01:20:04.246485+00:00\",\"last_reported\":\"2026-04-11T01:20:04.246485+00:00\",\"last_updated\":\"2026-04-11T01:20:04.246485+00:00\",\"context\":{\"id\":\"01KNX1ZSMPRYJHTXPM0X9ZEHDF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bed Occupied Stable\"},\"last_changed\":\"2026-04-13T04:51:44.729215+00:00\",\"last_reported\":\"2026-04-13T04:51:44.729215+00:00\",\"last_updated\":\"2026-04-13T04:51:44.729215+00:00\",\"context\":{\"id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Master Bedroom Motion Confirmed\"},\"last_changed\":\"2026-04-12T17:22:04.977552+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977552+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977552+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_action\",\"state\":\"cooling\",\"attributes\":{\"friendly_name\":\"HVAC Action\"},\"last_changed\":\"2026-04-13T08:02:07.676924+00:00\",\"last_reported\":\"2026-04-13T08:02:07.676924+00:00\",\"last_updated\":\"2026-04-13T08:02:07.676924+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.hvac_equipment_running\",\"state\":\"compCool1,fan\",\"attributes\":{\"friendly_name\":\"HVAC Equipment Running\"},\"last_changed\":\"2026-04-13T08:02:07.677419+00:00\",\"last_reported\":\"2026-04-13T08:02:07.677419+00:00\",\"last_updated\":\"2026-04-13T08:02:07.677419+00:00\",\"context\":{\"id\":\"01KP2XSDNVPBAJDZ5JXGYPXE2R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"state\":\"off\",\"attributes\":{\"sensor_1_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 1 Active\"},\"last_changed\":\"2026-04-13T05:39:26.295913+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320488+00:00\",\"last_updated\":\"2026-04-13T05:39:26.295913+00:00\",\"context\":{\"id\":\"01KP2NM4YQWC0SVYWC3PNP5FDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"state\":\"off\",\"attributes\":{\"sensor_2_enabled\":false,\"friendly_name\":\"OpenSprinkler Sensor 2 Active\"},\"last_changed\":\"2026-04-13T05:39:26.296107+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320584+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296107+00:00\",\"context\":{\"id\":\"01KP2NM4YRWE8JHEBXM6DHCYH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"OpenSprinkler Rain Delay Active\"},\"last_changed\":\"2026-04-13T05:39:26.296216+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320649+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296216+00:00\",\"context\":{\"id\":\"01KP2NM4YRAD1TSTSAJPYJ57X2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:play\",\"friendly_name\":\"OpenSprinkler Paused\"},\"last_changed\":\"2026-04-13T05:39:26.296306+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320706+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296306+00:00\",\"context\":{\"id\":\"01KP2NM4YRZP11H0YTJ4K09KWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_program_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"running\",\"icon\":\"mdi:timer-off-outline\",\"friendly_name\":\"Front Program Running\"},\"last_changed\":\"2026-04-13T05:39:26.296435+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320797+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296435+00:00\",\"context\":{\"id\":\"01KP2NM4YRHN17XCHBY6GAY82E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s01_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296573+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320895+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296573+00:00\",\"context\":{\"id\":\"01KP2NM4YR17T6T31NV2ZC2VVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296672+00:00\",\"last_reported\":\"2026-04-13T05:50:16.320960+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296672+00:00\",\"context\":{\"id\":\"01KP2NM4YRMNWKQ206457DV6WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s03_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296758+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321017+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296758+00:00\",\"context\":{\"id\":\"01KP2NM4YRSTMVN21772HX1401\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296838+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321069+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296838+00:00\",\"context\":{\"id\":\"01KP2NM4YRKCP9W30NK2Z1RFJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s05_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.296917+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.296917+00:00\",\"context\":{\"id\":\"01KP2NM4YR1DHGYWCMXX0CJCTB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s06_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297001+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321208+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297001+00:00\",\"context\":{\"id\":\"01KP2NM4YSMCYE70KG85Z015XA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s07_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297082+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321258+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297082+00:00\",\"context\":{\"id\":\"01KP2NM4YSQGVF2BKJM8A586EW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.s08_station_running\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"running\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Running\"},\"last_changed\":\"2026-04-13T05:39:26.297200+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321306+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297200+00:00\",\"context\":{\"id\":\"01KP2NM4YS4GD3QH2W2NXJH8YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s01_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S01 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297338+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321404+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297338+00:00\",\"context\":{\"id\":\"01KP2NM4YSGATCKAJ2KSK381RQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_lawn_station_duration\",\"state\":\"20\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Lawn Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297453+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321477+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297453+00:00\",\"context\":{\"id\":\"01KP2NM4YSJKH7XN3JHJHZ0G4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s03_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S03 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297544+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321537+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297544+00:00\",\"context\":{\"id\":\"01KP2NM4YS0Y9M38KJSRX25C97\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front Front Flower Bed Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297626+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321593+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297626+00:00\",\"context\":{\"id\":\"01KP2NM4YS5KYEJTXE9PME5HSG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s05_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S05 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297707+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321642+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297707+00:00\",\"context\":{\"id\":\"01KP2NM4YS29RCJYC00TBF0R3M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s06_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S06 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297791+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321692+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297791+00:00\",\"context\":{\"id\":\"01KP2NM4YSP95DJ5TMN1T7KW83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s07_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S07 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321739+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297870+00:00\",\"context\":{\"id\":\"01KP2NM4YSA7XNVRC0X2JE3JTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_s08_station_duration\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":1080.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:timer-sand\",\"friendly_name\":\"Front S08 Station Duration\"},\"last_changed\":\"2026-04-13T05:39:26.297947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321788+00:00\",\"last_updated\":\"2026-04-13T05:39:26.297947+00:00\",\"context\":{\"id\":\"01KP2NM4YSM30F9EY273S78D3R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_interval_days\",\"state\":\"0\",\"attributes\":{\"min\":10.0,\"max\":128.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-expand-horizontal\",\"friendly_name\":\"Front Interval Days\"},\"last_changed\":\"2026-04-13T05:39:26.298059+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298059+00:00\",\"context\":{\"id\":\"01KP2NM4YT5Z3420ZW4SKMP3P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_starting_in_days\",\"state\":\"9\",\"attributes\":{\"min\":0.0,\"max\":0.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"d\",\"device_class\":\"duration\",\"icon\":\"mdi:calendar-start\",\"friendly_name\":\"Front Starting In Days\"},\"last_changed\":\"2026-04-13T05:39:26.298177+00:00\",\"last_reported\":\"2026-04-13T05:50:16.321944+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298177+00:00\",\"context\":{\"id\":\"01KP2NM4YT2B0K6TAZ6B1KWRZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_start_time_offset\",\"state\":\"360\",\"attributes\":{\"min\":0.0,\"max\":1440.0,\"step\":1.0,\"mode\":\"auto\",\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"unit_of_measurement\":\"min\",\"device_class\":\"duration\",\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time ", - "offset_ms": 131 - }, - { - "direction": "recv", - "type": "text", - "payload": "Offset\"},\"last_changed\":\"2026-04-13T05:39:26.298300+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322037+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298300+00:00\",\"context\":{\"id\":\"01KP2NM4YT1PC0X26K4JPX2JZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_restrictions\",\"state\":\"None\",\"attributes\":{\"options\":[\"None\",\"Odd Days Only\",\"Even Days Only\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-cursor\",\"friendly_name\":\"Front Restrictions\"},\"last_changed\":\"2026-04-13T05:39:26.298438+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322141+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298438+00:00\",\"context\":{\"id\":\"01KP2NM4YTWASFF0393CAJTTTX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_type\",\"state\":\"Weekly\",\"attributes\":{\"options\":[\"Weekly\",\"Interval\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:calendar-range\",\"friendly_name\":\"Front Type\"},\"last_changed\":\"2026-04-13T05:39:26.298560+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322224+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298560+00:00\",\"context\":{\"id\":\"01KP2NM4YTC4YS3GQC1V3XDRD3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_additional_start_time_type\",\"state\":\"Repeating\",\"attributes\":{\"options\":[\"Repeating\",\"Fixed\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Additional Start Time Type\"},\"last_changed\":\"2026-04-13T05:39:26.298660+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322288+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298660+00:00\",\"context\":{\"id\":\"01KP2NM4YTAW46K7XRTZ4SDRWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_start_time_offset_type\",\"state\":\"Midnight\",\"attributes\":{\"options\":[\"Midnight\",\"Sunset\",\"Sunrise\"],\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time Offset Type\"},\"last_changed\":\"2026-04-13T05:39:26.298759+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322351+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298759+00:00\",\"context\":{\"id\":\"01KP2NM4YT0WPBWTCGFA1YZVM1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_last_run\",\"state\":\"unknown\",\"attributes\":{\"last_run_station\":0,\"last_run_program\":0,\"last_run_duration\":0,\"device_class\":\"timestamp\",\"icon\":\"mdi:history\",\"friendly_name\":\"OpenSprinkler Last Run\"},\"last_changed\":\"2026-04-13T05:39:26.298864+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322417+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298864+00:00\",\"context\":{\"id\":\"01KP2NM4YTHMVQVWBX7XCZY3EF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:weather-rainy\",\"friendly_name\":\"OpenSprinkler Rain Delay Stop Time\"},\"last_changed\":\"2026-04-13T05:39:26.298947+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322467+00:00\",\"last_updated\":\"2026-04-13T05:39:26.298947+00:00\",\"context\":{\"id\":\"01KP2NM4YT8K37ED9BFBH2JTXG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_water_level\",\"state\":\"0\",\"attributes\":{\"last_weather_call_error\":0,\"last_weather_call_error_name\":null,\"last_weather_call\":\"2026-04-13T05:16:57+00:00\",\"last_successfull_weather_call\":\"2026-04-13T05:16:57+00:00\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:water-percent\",\"friendly_name\":\"OpenSprinkler Water Level\"},\"last_changed\":\"2026-04-13T05:39:26.299101+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322583+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299101+00:00\",\"context\":{\"id\":\"01KP2NM4YVMEKSY8BXBJV5JQA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"L/min\",\"device_class\":\"volume_flow_rate\",\"icon\":\"mdi:speedometer\",\"friendly_name\":\"OpenSprinkler Flow Rate\"},\"last_changed\":\"2026-04-13T05:39:26.299186+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322636+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299186+00:00\",\"context\":{\"id\":\"01KP2NM4YVWHFCFDTE64FRJ79W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_current_draw\",\"state\":\"0\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"icon\":\"mdi:meter-electric-outline\",\"friendly_name\":\"OpenSprinkler Current Draw\"},\"last_changed\":\"2026-04-13T05:39:26.299262+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322680+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299262+00:00\",\"context\":{\"id\":\"01KP2NM4YVG64AQWZKRH57ZJJ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"icon\":\"mdi:timeline-clock\",\"friendly_name\":\"OpenSprinkler Pause End Time\"},\"last_changed\":\"2026-04-13T05:39:26.299337+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322720+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299337+00:00\",\"context\":{\"id\":\"01KP2NM4YVFH3F32QJWYSJ0M53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s01_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S01 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299449+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299449+00:00\",\"context\":{\"id\":\"01KP2NM4YV0M73H4Q4WTQYDFC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_lawn_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Lawn Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299543+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322860+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299543+00:00\",\"context\":{\"id\":\"01KP2NM4YVVFB2WAWRMQSJE1HE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s03_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S03 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299628+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322914+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299628+00:00\",\"context\":{\"id\":\"01KP2NM4YVPMMAD4D9B0H8DXW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_flower_bed_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"Front Flower Bed Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299709+00:00\",\"last_reported\":\"2026-04-13T05:50:16.322964+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299709+00:00\",\"context\":{\"id\":\"01KP2NM4YV6RM2BZC9KDT4MKXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s05_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S05 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299789+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323013+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299789+00:00\",\"context\":{\"id\":\"01KP2NM4YVTSY6Q1PHV53R9CS3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s06_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S06 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299870+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323062+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299870+00:00\",\"context\":{\"id\":\"01KP2NM4YVF52J0CP7CA73N11H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s07_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S07 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.299950+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323110+00:00\",\"last_updated\":\"2026-04-13T05:39:26.299950+00:00\",\"context\":{\"id\":\"01KP2NM4YV2WWN004KCJCXWDAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.s08_station_status\",\"state\":\"idle\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"enum\",\"icon\":\"mdi:valve-closed\",\"friendly_name\":\"S08 Station Status\"},\"last_changed\":\"2026-04-13T05:39:26.300027+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323157+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300027+00:00\",\"context\":{\"id\":\"01KP2NM4YWG2T4YMX3MSA7M5ZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.opensprinkler_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"controller\",\"firmware_version\":220,\"firmware_minor_version\":3,\"last_reboot_cause\":99,\"last_reboot_cause_name\":\"power_on\",\"last_reboot_time\":\"2026-04-12T17:16:23+00:00\",\"device_class\":\"controller\",\"icon\":\"mdi:barley\",\"friendly_name\":\"OpenSprinkler Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300111+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323256+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300111+00:00\",\"context\":{\"id\":\"01KP2NM4YWWNQGJNV3VYZX5J8F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"device_class\":\"program\",\"icon\":\"mdi:calendar-clock\",\"friendly_name\":\"Front Program Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300149+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323343+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300149+00:00\",\"context\":{\"id\":\"01KP2NM4YWBMEQ26B2DSCT0BGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_program_use_weather\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:weather-sunny\",\"friendly_name\":\"Front Program Use Weather\"},\"last_changed\":\"2026-04-13T05:39:26.300182+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323416+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300182+00:00\",\"context\":{\"id\":\"01KP2NM4YW98RYRZH1ZJPRJRMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s01_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S01\",\"index\":0,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S01 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300224+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323513+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300224+00:00\",\"context\":{\"id\":\"01KP2NM4YWBNFTNW0WBDCM0ZCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_lawn_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Lawn\",\"index\":1,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Lawn Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300261+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323592+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300261+00:00\",\"context\":{\"id\":\"01KP2NM4YWDVYACSQ5S2EVNFAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s03_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S03\",\"index\":2,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S03 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300292+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323662+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300292+00:00\",\"context\":{\"id\":\"01KP2NM4YWV85N0MEHH3EXQ7F6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"state\":\"on\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"Front Flower Bed\",\"index\":3,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water\",\"friendly_name\":\"Front Flower Bed Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300325+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323731+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300325+00:00\",\"context\":{\"id\":\"01KP2NM4YWZY2410GPKWXH2X3W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s05_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S05\",\"index\":4,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S05 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300356+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323798+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300356+00:00\",\"context\":{\"id\":\"01KP2NM4YWAZ8FHJ6WADGYAH7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s06_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S06\",\"index\":5,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S06 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300386+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323864+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300386+00:00\",\"context\":{\"id\":\"01KP2NM4YW8SEMWE05EQKSE1M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s07_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S07\",\"index\":6,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S07 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300416+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323930+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300416+00:00\",\"context\":{\"id\":\"01KP2NM4YWA3SJR95GRBG87Z96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.s08_station_enabled\",\"state\":\"off\",\"attributes\":{\"opensprinkler_type\":\"station\",\"name\":\"S08\",\"index\":7,\"is_master\":false,\"running_program_id\":0,\"start_time\":null,\"end_time\":null,\"device_class\":\"station\",\"icon\":\"mdi:water-off\",\"friendly_name\":\"S08 Station Enabled\"},\"last_changed\":\"2026-04-13T05:39:26.300447+00:00\",\"last_reported\":\"2026-04-13T05:50:16.323995+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300447+00:00\",\"context\":{\"id\":\"01KP2NM4YWDXC8R4GQ56Z4SCE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"text.front_program_name\",\"state\":\"Front\",\"attributes\":{\"mode\":\"text\",\"min\":1,\"max\":32,\"pattern\":null,\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:rename\",\"friendly_name\":\"Front Program Name\"},\"last_changed\":\"2026-04-13T05:39:26.300482+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324082+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300482+00:00\",\"context\":{\"id\":\"01KP2NM4YWMTG4EWRC9W3W8G2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"time.front_start_time\",\"state\":\"06:00:00\",\"attributes\":{\"opensprinkler_type\":\"program\",\"name\":\"Front\",\"index\":0,\"icon\":\"mdi:clock-start\",\"friendly_name\":\"Front Start Time\"},\"last_changed\":\"2026-04-13T05:39:26.300523+00:00\",\"last_reported\":\"2026-04-13T05:50:16.324171+00:00\",\"last_updated\":\"2026-04-13T05:39:26.300523+00:00\",\"context\":{\"id\":\"01KP2NM4YWS9E02D35YSVT28CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug-off\",\"friendly_name\":\"Pixel 6 Is Charging\"},\"last_changed\":\"2026-04-11T01:20:04.349510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.349510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.349510+00:00\",\"context\":{\"id\":\"01KNX1ZSQXRJTDP98VKNRYNYST\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_6\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486799,\"longitude\":-123.1105098,\"gps_accuracy\":12,\"altitude\":51,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 6\"},\"last_changed\":\"2026-04-11T01:20:04.350468+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350468+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350468+00:00\",\"context\":{\"id\":\"01KNX1ZSQYC6M9V86D129C3DNN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_level\",\"state\":\"86\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-80\",\"friendly_name\":\"Pixel 6 Battery Level\"},\"last_changed\":\"2026-04-11T01:20:04.350968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.350968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.350968+00:00\",\"context\":{\"id\":\"01KNX1ZSQYP2CB62TPTTF96BY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_state\",\"state\":\"discharging\",\"attributes\":{\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery State\"},\"last_changed\":\"2026-04-11T01:20:04.351177+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351177+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351177+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5WSHXVRJJNB1WNMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_charger_type\",\"state\":\"none\",\"attributes\":{\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Charger Type\"},\"last_changed\":\"2026-04-11T01:20:04.351352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351352+00:00\",\"context\":{\"id\":\"01KNX1ZSQZE8AX8J2E8YDF72X7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_health\",\"state\":\"good\",\"attributes\":{\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 6 Battery Health\"},\"last_changed\":\"2026-04-11T01:20:04.351515+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351515+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351515+00:00\",\"context\":{\"id\":\"01KNX1ZSQZJDF4XQTAQ7GXZ5FV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"state\":\"23.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 6 Battery Temperature\"},\"last_changed\":\"2026-04-11T01:20:04.351711+00:00\",\"last_reported\":\"2026-04-11T01:20:04.351711+00:00\",\"last_updated\":\"2026-04-11T01:20:04.351711+00:00\",\"context\":{\"id\":\"01KNX1ZSQZ5VB2J6M8Z4HFA408\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_battery_power\",\"state\":\"-6.89\",\"attributes\":{\"state_class\":\"measurement\",\"current\":-1.641562,\"voltage\":4.197,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-minus\",\"friendly_name\":\"Pixel 6 Battery Power\"},\"last_changed\":\"2026-04-11T01:20:04.352210+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352210+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352210+00:00\",\"context\":{\"id\":\"01KNX1ZSR0RZR2DKGWMV9HGRNQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.2486135,-123.1104762],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 6 Geocoded Location\"},\"last_changed\":\"2026-04-11T01:20:04.352386+00:00\",\"last_reported\":\"2026-04-11T01:20:04.352386+00:00\",\"last_updated\":\"2026-04-11T01:20:04.352386+00:00\",\"context\":{\"id\":\"01KNX1ZSR096NJY97GPDF8TS57\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"state\":\"on\",\"attributes\":{\"device_class\":\"plug\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Is charging\"},\"last_changed\":\"2026-04-13T06:13:41.813685+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813685+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813685+00:00\",\"context\":{\"id\":\"01KP2QJW9N2HH84G1X17F89E8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.pixel_7\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486766,\"longitude\":-123.1105176,\"gps_accuracy\":11,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":1,\"friendly_name\":\"Pixel 7\"},\"last_changed\":\"2026-04-13T06:33:20.984086+00:00\",\"last_reported\":\"2026-04-13T06:33:20.984086+00:00\",\"last_updated\":\"2026-04-13T06:33:20.984086+00:00\",\"context\":{\"id\":\"01KP2RPVTR15DEREG4GZ3PD1T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"state\":\"silent\",\"attributes\":{\"options\":[\"normal\",\"silent\",\"vibrate\"],\"device_class\":\"enum\",\"icon\":\"mdi:volume-off\",\"friendly_name\":\"Pixel 7 Ringer mode\"},\"last_changed\":\"2026-04-13T05:30:00.510401+00:00\",\"last_reported\":\"2026-04-13T05:30:00.510401+00:00\",\"last_updated\":\"2026-04-13T05:30:00.510401+00:00\",\"context\":{\"id\":\"01KP2N2WDYK7VFT4CM4A9MM89K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_level\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-80\",\"friendly_name\":\"Pixel 7 Battery level\"", - "offset_ms": 132 - }, - { - "direction": "recv", - "type": "text", - "payload": "},\"last_changed\":\"2026-04-13T06:46:28.967342+00:00\",\"last_reported\":\"2026-04-13T06:46:28.967342+00:00\",\"last_updated\":\"2026-04-13T06:46:28.967342+00:00\",\"context\":{\"id\":\"01KP2SEXB7PVSJZE1QV0VHT8TC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery state\"},\"last_changed\":\"2026-04-13T06:13:41.813404+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813404+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813404+00:00\",\"context\":{\"id\":\"01KP2QJW9NB6F1D8YVP5J0G2FC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Pixel 7 Charger type\"},\"last_changed\":\"2026-04-13T06:13:41.813970+00:00\",\"last_reported\":\"2026-04-13T06:13:41.813970+00:00\",\"last_updated\":\"2026-04-13T06:13:41.813970+00:00\",\"context\":{\"id\":\"01KP2QJW9NMKJEM870DXFMMKAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_health\",\"state\":\"good\",\"attributes\":{\"options\":[\"cold\",\"dead\",\"good\",\"overheated\",\"over_voltage\",\"failed\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-heart-variant\",\"friendly_name\":\"Pixel 7 Battery health\"},\"last_changed\":\"2026-04-11T01:20:04.355062+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355062+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355062+00:00\",\"context\":{\"id\":\"01KNX1ZSR3F5VJBJVTZY6E15G9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"state\":\"25.5\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"icon\":\"mdi:battery\",\"friendly_name\":\"Pixel 7 Battery temperature\"},\"last_changed\":\"2026-04-13T07:27:41.182325+00:00\",\"last_reported\":\"2026-04-13T07:27:41.182325+00:00\",\"last_updated\":\"2026-04-13T07:27:41.182325+00:00\",\"context\":{\"id\":\"01KP2VTBKYEXF1CFKZGNP9BYRQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_battery_power\",\"state\":\"0.01\",\"attributes\":{\"state_class\":\"measurement\",\"current\":0.001562,\"voltage\":4.093,\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Pixel 7 Battery power\"},\"last_changed\":\"2026-04-13T08:05:05.492449+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492449+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492449+00:00\",\"context\":{\"id\":\"01KP2XYVAMD10KR3SMFJM13B68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"state\":\"priority_only\",\"attributes\":{\"options\":[\"alarms_only\",\"off\",\"priority_only\",\"total_silence\"],\"device_class\":\"enum\",\"icon\":\"mdi:minus-circle\",\"friendly_name\":\"Pixel 7 Do Not Disturb sensor\"},\"last_changed\":\"2026-04-13T05:30:00.511648+00:00\",\"last_reported\":\"2026-04-13T05:30:00.511648+00:00\",\"last_updated\":\"2026-04-13T05:30:00.511648+00:00\",\"context\":{\"id\":\"01KP2N2WDZK0VA8VN9HB4GMY02\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 7 Geocoded location\"},\"last_changed\":\"2026-04-13T04:15:15.674973+00:00\",\"last_reported\":\"2026-04-13T04:15:15.674973+00:00\",\"last_updated\":\"2026-04-13T04:15:15.674973+00:00\",\"context\":{\"id\":\"01KP2GT0PTV31FM9SNESTM143X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_last_reboot\",\"state\":\"2026-04-10T17:06:38+00:00\",\"attributes\":{\"Local Time\":\"Fri Apr 10 10:06:38 PDT 2026\",\"Time in Milliseconds\":1775840798649,\"device_class\":\"timestamp\",\"icon\":\"mdi:restart\",\"friendly_name\":\"Pixel 7 Last reboot\"},\"last_changed\":\"2026-04-11T01:20:04.355940+00:00\",\"last_reported\":\"2026-04-11T01:20:04.355940+00:00\",\"last_updated\":\"2026-04-11T01:20:04.355940+00:00\",\"context\":{\"id\":\"01KNX1ZSR391AAG9KFZH4EMTJ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_light_sensor\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"icon\":\"mdi:brightness-5\",\"friendly_name\":\"Pixel 7 Light sensor\"},\"last_changed\":\"2026-04-13T06:58:10.735610+00:00\",\"last_reported\":\"2026-04-13T06:58:10.735610+00:00\",\"last_updated\":\"2026-04-13T06:58:10.735610+00:00\",\"context\":{\"id\":\"01KP2T4ANFCSZ2M21478BES054\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"state\":\"5\",\"attributes\":{\"unit_of_measurement\":\"seconds\",\"icon\":\"mdi:timer\",\"friendly_name\":\"Pixel 7 High accuracy update interval\"},\"last_changed\":\"2026-04-11T01:20:04.356266+00:00\",\"last_reported\":\"2026-04-11T01:20:04.356266+00:00\",\"last_updated\":\"2026-04-11T01:20:04.356266+00:00\",\"context\":{\"id\":\"01KNX1ZSR44N92T495Z81HKVHZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_next_alarm\",\"state\":\"2026-04-13T15:30:00+00:00\",\"attributes\":{\"Local Time\":\"Mon Apr 13 08:30:00 PDT 2026\",\"Package\":\"com.google.android.deskclock\",\"Time in Milliseconds\":1776094200000,\"device_class\":\"timestamp\",\"icon\":\"mdi:alarm\",\"friendly_name\":\"Pixel 7 Next alarm\"},\"last_changed\":\"2026-04-13T01:00:00.298103+00:00\",\"last_reported\":\"2026-04-13T01:00:00.307359+00:00\",\"last_updated\":\"2026-04-13T01:00:00.298103+00:00\",\"context\":{\"id\":\"01KP25MFXA7METR8QQSN7D2NG9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"state\":\"1005.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"hPa\",\"device_class\":\"atmospheric_pressure\",\"icon\":\"mdi:gauge\",\"friendly_name\":\"Pixel 7 Pressure sensor\"},\"last_changed\":\"2026-04-13T08:05:05.492820+00:00\",\"last_reported\":\"2026-04-13T08:05:05.492820+00:00\",\"last_updated\":\"2026-04-13T08:05:05.492820+00:00\",\"context\":{\"id\":\"01KP2XYVAM7SEV98RYYC1916FH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"state\":\"far\",\"attributes\":{\"icon\":\"mdi:leak\",\"friendly_name\":\"Pixel 7 Proximity sensor\"},\"last_changed\":\"2026-04-13T06:31:40.897912+00:00\",\"last_reported\":\"2026-04-13T06:31:40.897912+00:00\",\"last_updated\":\"2026-04-13T06:31:40.897912+00:00\",\"context\":{\"id\":\"01KP2RKT316D86YH7NM77FNBEJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.pixel_7_internal_storage\",\"state\":\"1\",\"attributes\":{\"state_class\":\"measurement\",\"Free internal storage\":\"804MB\",\"Total internal storage\":\"109GB\",\"unit_of_measurement\":\"%\",\"icon\":\"mdi:harddisk\",\"friendly_name\":\"Pixel 7 Internal storage\"},\"last_changed\":\"2026-04-13T01:27:00.444225+00:00\",\"last_reported\":\"2026-04-13T01:27:00.444225+00:00\",\"last_updated\":\"2026-04-13T01:27:00.444225+00:00\",\"context\":{\"id\":\"01KP275Y2W6R2KE1JJP3S7ME0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"state\":\"unknown\",\"attributes\":{\"source_type\":\"gps\",\"friendly_name\":\"Adam Pixel Watch 3\"},\"last_changed\":\"2026-04-11T01:20:04.357531+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357531+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357531+00:00\",\"context\":{\"id\":\"01KNX1ZSR57AXW6DEABNHBKM53\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.357897+00:00\",\"last_reported\":\"2026-04-11T01:20:04.357897+00:00\",\"last_updated\":\"2026-04-11T01:20:04.357897+00:00\",\"context\":{\"id\":\"01KNX1ZSR5CBEDTYTKZ4PKJ13G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"state\":\"full\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging\",\"friendly_name\":\"Adam Pixel Watch 3 Battery state\"},\"last_changed\":\"2026-04-11T01:20:04.358075+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358075+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358075+00:00\",\"context\":{\"id\":\"01KNX1ZSR624VWKTV0K6A32D7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"state\":\"ac\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:power-plug\",\"friendly_name\":\"Adam Pixel Watch 3 Charger type\"},\"last_changed\":\"2026-04-11T01:20:04.358230+00:00\",\"last_reported\":\"2026-04-11T01:20:04.358230+00:00\",\"last_updated\":\"2026-04-11T01:20:04.358230+00:00\",\"context\":{\"id\":\"01KNX1ZSR6THPKQY6R5JY49DS2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"state\":\"unknown\",\"attributes\":{\"icon\":\"mdi:crosshairs-gps\",\"friendly_name\":\"Pixel 9 High accuracy mode\"},\"last_changed\":\"2026-04-11T01:20:55.181017+00:00\",\"last_reported\":\"2026-04-11T01:22:31.408515+00:00\",\"last_updated\":\"2026-04-11T01:20:55.181017+00:00\",\"context\":{\"id\":\"01KNX21BCD88120MA7PK5HXF26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"device_tracker.adam_phone\",\"state\":\"home\",\"attributes\":{\"source_type\":\"gps\",\"latitude\":45.2486854,\"longitude\":-123.1105256,\"gps_accuracy\":100,\"altitude\":52.0,\"course\":0,\"speed\":0,\"vertical_accuracy\":100,\"friendly_name\":\"Adam Phone\"},\"last_changed\":\"2026-04-13T08:03:14.678705+00:00\",\"last_reported\":\"2026-04-13T08:03:14.678705+00:00\",\"last_updated\":\"2026-04-13T08:03:14.678705+00:00\",\"context\":{\"id\":\"01KP2XVF3PBB56VRZMA7HCDYH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_level\",\"state\":\"80\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"icon\":\"mdi:battery-charging-wireless-80\",\"friendly_name\":\"Adam Phone Battery level\"},\"last_changed\":\"2026-04-13T08:08:48.294704+00:00\",\"last_reported\":\"2026-04-13T08:08:48.294704+00:00\",\"last_updated\":\"2026-04-13T08:08:48.294704+00:00\",\"context\":{\"id\":\"01KP2Y5MX6JEHN72VDK6CZHEX", - "offset_ms": 133 - }, - { - "direction": "recv", - "type": "text", - "payload": "6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_battery_state\",\"state\":\"charging\",\"attributes\":{\"options\":[\"charging\",\"discharging\",\"full\",\"not_charging\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-plus\",\"friendly_name\":\"Adam Phone Battery state\"},\"last_changed\":\"2026-04-13T07:05:37.226540+00:00\",\"last_reported\":\"2026-04-13T07:05:37.362819+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226540+00:00\",\"context\":{\"id\":\"01KP2THYPAH97S9X66J9V5Y7BN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_charger_type\",\"state\":\"wireless\",\"attributes\":{\"options\":[\"ac\",\"usb\",\"wireless\",\"dock\",\"none\"],\"device_class\":\"enum\",\"icon\":\"mdi:battery-charging-wireless\",\"friendly_name\":\"Adam Phone Charger type\"},\"last_changed\":\"2026-04-13T07:05:37.226828+00:00\",\"last_reported\":\"2026-04-13T07:05:37.363037+00:00\",\"last_updated\":\"2026-04-13T07:05:37.226828+00:00\",\"context\":{\"id\":\"01KP2THYPAZ0WA47XA6GEKA9N8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"state\":\"1025 N Madison St, Lafayette, OR 97127, USA\",\"attributes\":{\"administrative_area\":\"Oregon\",\"country\":\"United States\",\"iso_country_code\":\"US\",\"locality\":\"Lafayette\",\"location\":[45.248604,-123.11049],\"name\":\"1025\",\"phone\":\"null\",\"postal_code\":\"97127\",\"premises\":\"null\",\"sub_administrative_area\":\"Yamhill County\",\"sub_locality\":\"null\",\"sub_thoroughfare\":\"1025\",\"thoroughfare\":\"North Madison Street\",\"url\":\"null\",\"icon\":\"mdi:map\",\"friendly_name\":\"Pixel 9 Geocoded location\"},\"last_changed\":\"2026-04-13T07:21:47.481401+00:00\",\"last_reported\":\"2026-04-13T07:21:47.481401+00:00\",\"last_updated\":\"2026-04-13T07:21:47.481401+00:00\",\"context\":{\"id\":\"01KP2VFJ6SBNFY6PGSQQ1Q1RKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.overseerr_last_media_event\",\"state\":\"2026-04-05T05:15:00.091+00:00\",\"attributes\":{\"event_types\":[\"pending\",\"approved\",\"available\",\"failed\",\"declined\",\"auto_approved\"],\"event_type\":\"available\",\"subject\":\"Shelter (2026)\",\"message\":\"A man living in self-imposed exile on a remote island rescues a young girl from a violent storm, setting off a chain of events that forces him out of seclusion to protect her from enemies tied to his past.\",\"media\":{\"media_type\":\"movie\",\"tmdb_id\":1290821,\"tvdb_id\":null,\"status\":\"available\",\"status4k\":\"unknown\"},\"request\":{\"request_id\":58,\"requested_by_email\":\"ant.kraken@gmail.com\",\"requested_by_username\":\"krakenant\",\"requested_by_avatar\":\"https://plex.tv/users/8440dcc8fd8acf3a/avatar?c=1774138846\",\"requested_by_settings_discord_id\":\"\",\"requested_by_settings_telegram_chat_id\":\"\"},\"friendly_name\":\"Overseerr Last media event\"},\"last_changed\":\"2026-04-13T06:55:04.527062+00:00\",\"last_reported\":\"2026-04-13T06:55:04.527062+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527062+00:00\",\"context\":{\"id\":\"01KP2SYMTFGCY2N9E1T20SBTA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_requests\",\"state\":\"54\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Total requests\"},\"last_changed\":\"2026-04-13T06:55:04.527159+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528092+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527159+00:00\",\"context\":{\"id\":\"01KP2SYMTFNC0MVKH8XQ5QYNY7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_movie_requests\",\"state\":\"48\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Movie requests\"},\"last_changed\":\"2026-04-13T06:55:04.527200+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528138+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527200+00:00\",\"context\":{\"id\":\"01KP2SYMTFRS2E57ERBFGDHRF0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_tv_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr TV requests\"},\"last_changed\":\"2026-04-13T06:55:04.527231+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528161+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527231+00:00\",\"context\":{\"id\":\"01KP2SYMTF4BJRCNBQREGD83Q8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_pending_requests\",\"state\":\"6\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Pending requests\"},\"last_changed\":\"2026-04-13T06:55:04.527260+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528182+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527260+00:00\",\"context\":{\"id\":\"01KP2SYMTF4CSKY5JCSQ3VHTYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_declined_requests\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Declined requests\"},\"last_changed\":\"2026-04-13T06:55:04.527285+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528202+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527285+00:00\",\"context\":{\"id\":\"01KP2SYMTF7BVMSKJ13JJY26VB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_processing_requests\",\"state\":\"9\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Processing requests\"},\"last_changed\":\"2026-04-13T06:55:04.527309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528220+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527309+00:00\",\"context\":{\"id\":\"01KP2SYMTFGX0MH1NJRC2G11TQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_available_requests\",\"state\":\"30\",\"attributes\":{\"state_class\":\"total\",\"unit_of_measurement\":\"requests\",\"friendly_name\":\"Overseerr Available requests\"},\"last_changed\":\"2026-04-13T06:55:04.527333+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528237+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527333+00:00\",\"context\":{\"id\":\"01KP2SYMTFSBM771CVDX8GSKHG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_total_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Total issues\"},\"last_changed\":\"2026-04-13T06:55:04.527357+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528255+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527357+00:00\",\"context\":{\"id\":\"01KP2SYMTFMTJD6VCXCR05AXSF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_open_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Open issues\"},\"last_changed\":\"2026-04-13T06:55:04.527381+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528271+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527381+00:00\",\"context\":{\"id\":\"01KP2SYMTFCNGDMQW0A4TBNZ99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_closed_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Closed issues\"},\"last_changed\":\"2026-04-13T06:55:04.527406+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528288+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527406+00:00\",\"context\":{\"id\":\"01KP2SYMTF8PWZY6S08C6QFD4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_video_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Video issues\"},\"last_changed\":\"2026-04-13T06:55:04.527430+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528304+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527430+00:00\",\"context\":{\"id\":\"01KP2SYMTF8KKTBZQSZTMQM1TY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_audio_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Audio issues\"},\"last_changed\":\"2026-04-13T06:55:04.527454+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528320+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527454+00:00\",\"context\":{\"id\":\"01KP2SYMTF3ESH55A9VSHTCKBB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"state\":\"0\",\"attributes\":{\"state_class\":\"total\",\"friendly_name\":\"Overseerr Subtitle issues\"},\"last_changed\":\"2026-04-13T06:55:04.527477+00:00\",\"last_reported\":\"2026-04-13T08:05:04.528337+00:00\",\"last_updated\":\"2026-04-13T06:55:04.527477+00:00\",\"context\":{\"id\":\"01KP2SYMTFR4GW6DHFWVM7MPWH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:35:10.304693+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483620+00:00\",\"last_updated\":\"2026-04-13T06:35:10.304693+00:00\",\"context\":{\"id\":\"01KP2RT6K0J8VDK7T3YTNSM9PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"heat_cool\",\"heat\",\"cool\",\"off\"],\"min_temp\":44.6,\"max_temp\":95.0,\"target_temp_step\":0.5,\"fan_modes\":[\"auto\",\"on\"],\"preset_modes\":[\"home\",\"away\",\"sleep\",\"deep night\",\"Afternoon\",\"away_indefinitely\"],\"current_temperature\":68.0,\"temperature\":68.2,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":60,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"preset_mode\":\"sleep\",\"fan\":\"on\",\"climate_mode\":\"Sleep\",\"equipment_running\":\"compCool1,fan\",\"fan_min_on_time\":0,\"available_sensors\":[\"Thermostat (354d7786af98b410edcf56caea5a2076)\",\"Thermostat (d0f9545202206f247b2a5c54f0b66b0a)\"],\"active_sensors\":[\"Thermostat\",\"Thermostat\"],\"friendly_name\":\"Thermostat\",\"supported_features\":411},\"last_changed\":\"2026-04-11T01:20:04.561777+00:00\",\"last_reported\":\"2026-04-13T08:08:07.702044+00:00\",\"last_updated\":\"2026-04-13T08:08:07.702044+00:00\",\"context\":{\"id\":\"01KP2Y4D8P8A2HR1WXJHYY8B5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"notify.thermostat\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.564242+00:00\",\"last_reported\":\"2026-04-11T01:20:04.564242+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564242+00:00\",\"context\":{\"id\":\"01KNX1ZSYMYCRRFP54NGTH8X0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"state\":\"35.0\",\"attributes\":{\"min\":-25,\"max\":66,\"step\":5,\"mode\":\"box\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"icon\":\"mdi:thermometer-off\",\"friendly_name\":\"Thermostat Compressor minimum temperature\"},\"last_changed\":\"2026-04-11T01:20:04.564701+00:00\",\"last_reported\":\"2026-04-13T08:04:40.483891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.564701+00:00\",\"context\":{\"id\":\"01KNX1ZSYMS1JEHAAREXB1CDZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Temperature\"},\"last_changed\":\"2026-04-13T08:08:10.491384+00:00\",\"last_reported\":\"2026-04-13T08:08:40.491964+00:00\",\"last_updated\":\"2026-04-13T08:08:10.491384+00:00\",\"context\":{\"id\":\"01KP2Y4FZVKCX5QFX0W5F06M00\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_humidity\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Humidity\"},\"last_changed\":\"2026-04-13T08:05:10.484877+00:00\",\"last_reported\":\"2026-04-13T08:05:10.484877+00:00\",\"last_updated\":\"2026-04-13T08:05:10.484877+00:00\",\"context\":{\"id\":\"01KP2XZ06MQEBS6RTJC856197D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.thermostat_aux_heat_only\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Thermostat Auxiliary heat only\"},\"last_changed\":\"2026-04-11T01:20:04.565998+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484474+00:00\",\"last_updated\":\"2026-04-11T01:20:04.565998+00:00\",\"context\":{\"id\":\"01KNX1ZSYNWHHBCTQQ5RNWDP7Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.thermostat\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"temperature_unit\":\"°F\",\"humidity\":89,\"pressure\":29.94,\"pressure_unit\":\"inHg\",\"wind_bearing\":226,\"wind_speed\":5.0,\"wind_speed_unit\":\"mph\",\"visibility\":9.94,\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Ecobee weather provided by FI:KMMV at 2026-04-13 08:01:41 UTC\",\"friendly_name\":\"Thermostat\",\"supported_features\":1},\"last_changed\":\"2026-04-13T07:02:10.353595+00:00\",\"last_reported\":\"2026-04-13T08:04:40.484739+00:00\",\"last_updated\":\"2026-04-13T08:02:10.479594+00:00\",\"context\":{\"id\":\"01KP2XSGDFA4Q2QNTKT4J549W0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mushroom_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v5.1.1\",\"in_progress\":false,\"latest_version\":\"v5.1.1\",\"release_summary\":null,\"release_url\":\"https://github.com/piitaya/lovelace-mushroom/releases/v5.1.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Mushroom update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577462+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1482F51BPG4AK535D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.number_box_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.17\",\"in_progress\":false,\"latest_version\":\"4.17\",\"release_summary\":null,\"release_url\":\"https://github.com/junkfix/numberbox-card/releases/4.17\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Number Box update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.577654+00:00\",\"last_reported\":\"2026-04-11T01:20:04.577654+00:00\",\"last_updated\":\"2026-04-11T01:20:04.577654+00:00\",\"context\":{\"id\":\"01KNX1ZSZ1NM09FVRBA5DHES7G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.emporia_vue_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.11.3\",\"in_progress\":false,\"latest_version\":\"v0.11.3\",\"release_summary\":null,\"release_url\":\"https://github.com/magico13/ha-emporia-vue/releases/v0.11.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/emporia_vue/icon.png\",\"friendly_name\":\"Emporia Vue update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593000+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593000+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593000+00:00\",\"context\":{\"id\":\"01KNX1ZSZGWXZ8TQCX849Y57G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.5.4\",\"in_progress\":false,\"latest_version\":\"v1.5.4\",\"release_summary\":null,\"release_url\":\"https://github.com/vinteo/hass-opensprinkler/releases/v1.5.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/opensprinkler/icon.png\",\"friendly_name\":\"OpenSprinkler integration for Home Assistant update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593212+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593212+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593212+00:00\",\"context\":{\"id\":\"01KNX1ZSZHGR57W5WSV5KY9B8Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apexcharts_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v2.2.3\",\"in_progress\":false,\"latest_version\":\"v2.2.3\",\"release_summary\":null,\"release_url\":\"https://github.com/RomRider/apexcharts-card/releases/v2.2.3\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"apexcharts-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593363+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593363+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593363+00:00\",\"context\":{\"id\":\"01KNX1ZSZHMJXXZ3GK56BQWGJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.card_tools_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"11\",\"in_progress\":false,\"latest_version\":\"11\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-card-tools/releases/11\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"card-tools update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593503+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593503+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593503+00:00\",\"context\":{\"id\":\"01KNX1ZSZHHE0HM1M179QFH5XY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.average_sensor_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.4.0\",\"in_progress\":false,\"latest_version\":\"2.4.0\",\"release_summary\":null,\"release_url\":\"https://github.com/Limych/ha-average/releases/2.4.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/average/icon.png\",\"friendly_name\":\"Average Sensor update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593642+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593642+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593642+00:00\",\"context\":{\"id\":\"01KNX1ZSZHZ41HH5AWYANETK4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.42.0\",\"in_progress\":false,\"latest_version\":\"v0.42.0\",\"release_summary\":null,\"release_url\":\"https://github.com/ollo69/ha-smartthinq-sensors/releases/v0.42.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/smartthinq_sensors/icon.png\",\"friendly_name\":\"SmartThinQ LGE Sensors update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593780+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593780+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593780+00:00\",\"context\":{\"id\":\"01KNX1ZSZHSWG4400346NPDGNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.hacs_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.5\",\"in_progress\":false,\"latest_version\":\"2.0.5\",\"release_summary\":null,\"release_url\":\"https://github.com/hacs/integration/releases/2.0.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/hacs/icon.png\",\"friendly_name\":\"HACS update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.593928+00:00\",\"last_reported\":\"2026-04-11T01:20:04.593928+00:00\",\"last_updated\":\"2026-04-11T01:20:04.593928+00:00\",\"context\":{\"id\":\"01KNX1ZSZH0BW3HPKV5XHW1SQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.dahua_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.9.83\",\"in_progress\":false,\"latest_version\":\"0.9.83\",\"release_summary\":null,\"release_url\":\"https://github.com/rroller/dahua/releases/0.9.83\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/dahua/icon.png\",\"friendly_name\":\"Dahua update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594068+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594068+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594068+00:00\",\"context\":{\"id\":\"01KNX1ZSZJC6B71KY79FE1", - "offset_ms": 134 - }, - { - "direction": "recv", - "type": "text", - "payload": "Z6SK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.mini_graph_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v0.13.0\",\"in_progress\":false,\"latest_version\":\"v0.13.0\",\"release_summary\":null,\"release_url\":\"https://github.com/kalkih/mini-graph-card/releases/v0.13.0\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"mini-graph-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594201+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594201+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594201+00:00\",\"context\":{\"id\":\"01KNX1ZSZJX3EK34EC17PRZ8D4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.apsystems_ecu_r_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.4.4\",\"in_progress\":false,\"latest_version\":\"v1.4.4\",\"release_summary\":null,\"release_url\":\"https://github.com/ksheumaker/homeassistant-apsystems_ecur/releases/v1.4.4\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"entity_picture\":\"https://brands.home-assistant.io/_/apsystems_ecur/icon.png\",\"friendly_name\":\"APSystems ECU-R update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594336+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594336+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594336+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ2T5TWF9V77MXSFXX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.auto_entities_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v1.16.1\",\"in_progress\":false,\"latest_version\":\"v1.16.1\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-auto-entities/releases/v1.16.1\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"auto-entities update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594462+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594462+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594462+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ8N1FTNYVY3QT3DKR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.lovelace_home_feed_card_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.6.5\",\"in_progress\":false,\"latest_version\":\"0.6.5\",\"release_summary\":null,\"release_url\":\"https://github.com/gadgetchnnel/lovelace-home-feed-card/releases/0.6.5\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"Lovelace Home Feed Card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594588+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594588+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594588+00:00\",\"context\":{\"id\":\"01KNX1ZSZJ6XF82AABE04BD4J5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fold_entity_row_update\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"v.2.3.2\",\"in_progress\":false,\"latest_version\":\"v.2.3.2\",\"release_summary\":null,\"release_url\":\"https://github.com/thomasloven/lovelace-fold-entity-row/releases/v.2.3.2\",\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"friendly_name\":\"fold-entity-row update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:04.594714+00:00\",\"last_reported\":\"2026-04-11T01:20:04.594714+00:00\",\"last_updated\":\"2026-04-11T01:20:04.594714+00:00\",\"context\":{\"id\":\"01KNX1ZSZJZKRB57BDAJTHZSVH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.logan_s_landing\",\"state\":\"cloudy\",\"attributes\":{\"temperature\":48,\"dew_point\":46,\"temperature_unit\":\"°F\",\"humidity\":91,\"cloud_coverage\":99.2,\"uv_index\":0.0,\"pressure\":29.99,\"pressure_unit\":\"inHg\",\"wind_bearing\":230.4,\"wind_speed\":7.15,\"wind_speed_unit\":\"mph\",\"visibility_unit\":\"mi\",\"precipitation_unit\":\"in\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Logan's Landing\",\"supported_features\":3},\"last_changed\":\"2026-04-13T08:08:56.469884+00:00\",\"last_reported\":\"2026-04-13T08:08:56.469884+00:00\",\"last_updated\":\"2026-04-13T08:08:56.469884+00:00\",\"context\":{\"id\":\"01KP2Y5WWN7BKG3AM332X77DA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"calendar.maya_school\",\"state\":\"off\",\"attributes\":{\"message\":\"Administrative Professionals Day!\",\"all_day\":true,\"start_time\":\"2026-04-22 00:00:00\",\"end_time\":\"2026-04-23 00:00:00\",\"location\":\"\",\"description\":\"\",\"friendly_name\":\"Maya school\",\"supported_features\":7},\"last_changed\":\"2026-04-11T07:00:00.001167+00:00\",\"last_reported\":\"2026-04-13T08:05:07.563238+00:00\",\"last_updated\":\"2026-04-11T07:00:04.928029+00:00\",\"context\":{\"id\":\"01KNXNEC60S3S3DK9J052PXJ40\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Living room tv Headphones connected\"},\"last_changed\":\"2026-04-12T17:37:23.384070+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384676+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384070+00:00\",\"context\":{\"id\":\"01KP1CA1DR4FK8T24GNCTYA26C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports AirPlay\"},\"last_changed\":\"2026-04-12T17:37:23.384309+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384759+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384309+00:00\",\"context\":{\"id\":\"01KP1CA1DRZCXSQJ81C567HH98\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports Ethernet\"},\"last_changed\":\"2026-04-12T17:37:23.384438+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384800+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384438+00:00\",\"context\":{\"id\":\"01KP1CA1DRZMWXHCEQ29HRAZET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv Supports find remote\"},\"last_changed\":\"2026-04-12T17:37:23.384535+00:00\",\"last_reported\":\"2026-04-13T08:05:04.384831+00:00\",\"last_updated\":\"2026-04-12T17:37:23.384535+00:00\",\"context\":{\"id\":\"01KP1CA1DRJA3G2GKXVFTRPR2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv_2\",\"state\":\"idle\",\"attributes\":{\"source_list\":[\"Home\",\"Backdrops\",\"Disney Plus\",\"Dragons Screensaver\",\"HBO Max\",\"Moon Screensaver\",\"Netflix\",\"PBS KIDS\",\"Plex - Free Movies & TV\",\"Prime Video\",\"The Roku Channel\",\"YouTube\"],\"media_content_type\":\"app\",\"app_id\":\"562859\",\"app_name\":\"Home\",\"source\":\"Home\",\"device_class\":\"receiver\",\"entity_picture\":\"/api/media_player_proxy/media_player.living_room_tv_2?token=38488279fbf2538c93c466893c95434d48035d20a527b84243699ee17544f7de&cache=1c60609faf0c6d06\",\"friendly_name\":\"Living room tv\",\"supported_features\":151481},\"last_changed\":\"2026-04-13T05:35:14.384349+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385046+00:00\",\"last_updated\":\"2026-04-13T05:35:14.384349+00:00\",\"context\":{\"id\":\"01KP2NCEYG8YWESAK6P01FKW66\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Living room tv\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:37:23.385005+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385165+00:00\",\"last_updated\":\"2026-04-12T17:37:23.385005+00:00\",\"context\":{\"id\":\"01KP1CA1DSNTT4PVXE5ZCKX0NB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app\",\"state\":\"Home\",\"attributes\":{\"friendly_name\":\"Living room tv Active app\"},\"last_changed\":\"2026-04-13T05:34:14.400750+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385252+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400750+00:00\",\"context\":{\"id\":\"01KP2NAMC090499KM1MFCFM2SA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"state\":\"562859\",\"attributes\":{\"friendly_name\":\"Living room tv Active app ID\"},\"last_changed\":\"2026-04-13T05:34:14.400855+00:00\",\"last_reported\":\"2026-04-13T08:05:04.385304+00:00\",\"last_updated\":\"2026-04-13T05:34:14.400855+00:00\",\"context\":{\"id\":\"01KP2NAMC0J0AGG3XSTSZ7SDFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_status\",\"state\":\"unresponsive\",\"attributes\":{\"friendly_name\":\"zwave_controller Status\"},\"last_changed\":\"2026-04-12T17:53:49.676720+00:00\",\"last_reported\":\"2026-04-12T17:53:49.676720+00:00\",\"last_updated\":\"2026-04-12T17:53:49.676720+00:00\",\"context\":{\"id\":\"01KP1D84KCKX0TWGKWEYXCTYZ6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.zwave_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"7.18.1\",\"in_progress\":false,\"latest_version\":\"7.18.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"zwave_controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.704559+00:00\",\"last_reported\":\"2026-04-11T01:20:04.704559+00:00\",\"last_updated\":\"2026-04-11T01:20:04.704559+00:00\",\"context\":{\"id\":\"01KNX1ZT3023FH4RKPGPYKD0MR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_node_status\",\"state\":\"dead\",\"attributes\":{\"friendly_name\":\"Back Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.709970+00:00\",\"last_reported\":\"2026-04-11T01:20:04.709970+00:00\",\"last_updated\":\"2026-04-11T01:20:04.709970+00:00\",\"context\":{\"id\":\"01KNX1ZT35PKFXQCXDVR4246YD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_ping\",\"state\":\"2022-11-11T07:22:35.107811+00:00\",\"attributes\":{\"friendly_name\":\"Back Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.710293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.710293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.710293+00:00\",\"context\":{\"id\":\"01KNX1ZT365D7YTFA5JKE9FMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_last_seen\",\"state\":\"2026-03-16T16:07:40+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Lock Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.714204+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714204+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714204+00:00\",\"context\":{\"id\":\"01KNX1ZT3A5S7MKCS478JMF2TF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Front Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.714547+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714547+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714547+00:00\",\"context\":{\"id\":\"01KNX1ZT3A2HMRMWGYB05T1FYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.714777+00:00\",\"last_reported\":\"2026-04-11T01:20:04.714777+00:00\",\"last_updated\":\"2026-04-11T01:20:04.714777+00:00\",\"context\":{\"id\":\"01KNX1ZT3AAJ403TV38BJ41WTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_last_seen\",\"state\":\"2026-04-08T15:13:24+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.715439+00:00\",\"last_reported\":\"2026-04-11T01:20:04.715439+00:00\",\"last_updated\":\"2026-04-11T01:20:04.715439+00:00\",\"context\":{\"id\":\"01KNX1ZT3B44N53P7NY0ZC5SA9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Back Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.719859+00:00\",\"last_reported\":\"2026-04-11T01:20:04.719859+00:00\",\"last_updated\":\"2026-04-11T01:20:04.719859+00:00\",\"context\":{\"id\":\"01KNX1ZT3FQ1R0Y31NT11JPCYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.720063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720063+00:00\",\"context\":{\"id\":\"01KNX1ZT3G07GD6MDWHBZBQKJD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_last_seen\",\"state\":\"2026-01-25T00:36:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.720712+00:00\",\"last_reported\":\"2026-04-11T01:20:04.720712+00:00\",\"last_updated\":\"2026-04-11T01:20:04.720712+00:00\",\"context\":{\"id\":\"01KNX1ZT3GA8QGB15ARD7GT3EX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.725349+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725349+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725349+00:00\",\"context\":{\"id\":\"01KNX1ZT3NW2QW86NVREA6T67H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_porch_light_ping\",\"state\":\"2022-10-22T01:52:57.404491+00:00\",\"attributes\":{\"friendly_name\":\"Front Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.725549+00:00\",\"last_reported\":\"2026-04-11T01:20:04.725549+00:00\",\"last_updated\":\"2026-04-11T01:20:04.725549+00:00\",\"context\":{\"id\":\"01KNX1ZT3NJ637TM73XSADRDAY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_porch_light_last_seen\",\"state\":\"2026-04-07T00:06:20+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.726217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.726217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.726217+00:00\",\"context\":{\"id\":\"01KNX1ZT3P7CZEQBXGBNQCBKWR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Room Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.730348+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730348+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730348+00:00\",\"context\":{\"id\":\"01KNX1ZT3TXMBDH60F72NK0MMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_room_light_ping\",\"state\":\"2022-10-22T01:52:57.515720+00:00\",\"attributes\":{\"friendly_name\":\"Front Room Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.730539+00:00\",\"last_reported\":\"2026-04-11T01:20:04.730539+00:00\",\"last_updated\":\"2026-04-11T01:20:04.730539+00:00\",\"context\":{\"id\":\"01KNX1ZT3TS0Z1G6ZEQ68D718T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_room_light_last_seen\",\"state\":\"2026-04-07T00:06:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Room Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.731186+00:00\",\"last_reported\":\"2026-04-11T01:20:04.731186+00:00\",\"last_updated\":\"2026-04-11T01:20:04.731186+00:00\",\"context\":{\"id\":\"01KNX1ZT3VJV1F91GND0W01VB7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Back Porch Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.735290+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735290+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735290+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZG8CZSHM16NPY65YR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_ping\",\"state\":\"2022-11-12T21:25:39.385508+00:00\",\"attributes\":{\"friendly_name\":\"Back Porch Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.735480+00:00\",\"last_reported\":\"2026-04-11T01:20:04.735480+00:00\",\"last_updated\":\"2026-04-11T01:20:04.735480+00:00\",\"context\":{\"id\":\"01KNX1ZT3ZCJ400Q5YZSK9E00R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_porch_light_last_seen\",\"state\":\"2026-03-20T18:59:48+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Back Porch Light Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.736119+00:00\",\"last_reported\":\"2026-04-11T01:20:04.736119+00:00\",\"last_updated\":\"2026-04-11T01:20:04.736119+00:00\",\"context\":{\"id\":\"01KNX1ZT40CAE71489DRCVXCJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Master Bathroom Node status\"},\"last_changed\":\"2026-04-11T01:20:04.741705+00:00\",\"last_reported\":\"2026-04-11T01:20:04.741705+00:00\",\"last_updated\":\"2026-04-11T01:20:04.741705+00:00\",\"context\":{\"id\":\"01KNX1ZT45EFPJHD0X1X593NAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.742084+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742084+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742084+00:00\",\"context\":{\"id\":\"01KNX1ZT46AFHWRT4WZ6M4RE59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_last_seen\",\"state\":\"2025-07-10T11:03:51+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bathroom Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.742682+00:00\",\"last_reported\":\"2026-04-11T01:20:04.742682+00:00\",\"last_updated\":\"2026-04-11T01:20:04.742682+00:00\",\"context\":{\"id\":\"01KNX1ZT461DCT7GR45XY5S71G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Kitchen Node status\"},\"last_changed\":\"2026-04-11T01:20:04.745592+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745592+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745592+00:00\",\"context\":{\"id\":\"01KNX1ZT49621XJR8JH46K4JSD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Ping\"},\"last_changed\":\"2026-04-11T01:20:04.745774+00:00\",\"last_reported\":\"2026-04-11T01:20:04.745774+00:00\",\"last_updated\":\"2026-04-11T01:20:04.745774+00:00\",\"context\":{\"id\":\"01KNX1ZT49QFZZAF26WNSKN4RM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_last_seen\",\"state\":\"2025-05-16T16:47:08+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.746352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.746352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.746352+00:00\",\"context\":{\"id\":\"01KNX1ZT4A25H699BGQMM5JRQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.749598+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749598+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749598+00:00\",\"context\":{\"id\":\"01KNX1ZT4DCK3KC0EJ3XY32FZ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.749766+00:00\",\"last_reported\":\"2026-04-11T01:20:04.749766+00:00\",\"last_updated\":\"2026-04-11T01:20:04.749766+00:00\",\"context\":{\"id\":\"01KNX1ZT4DF7GRJ286NTQ6MXJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"state\":\"2025-04-08T14:35:21+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Cat Bathroom Door Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.750337+00:00\",\"last_reported\":\"2026-04-11T01:20:04.750337+00:00\",\"last_updated\":\"2026-04-11T01:20:04.750337+00:00\",\"context\":{\"id\":\"01KNX1ZT4EXKRKNAESZS7N4FM2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.754350+00:00\",\"last_reported\":\"2026-04-11T01:20:04.754350+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754350+00:00\",\"context\":{\"id\":\"01KNX1ZT4JWN640BM1ZJ026VJA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_ping\",\"state\":\"2022-11-12T21:25:40.090809+00:00\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.754524+00:00\",\"last_reported\":\"2026-04-11T01:20:04.75", - "offset_ms": 136 - }, - { - "direction": "recv", - "type": "text", - "payload": "4524+00:00\",\"last_updated\":\"2026-04-11T01:20:04.754524+00:00\",\"context\":{\"id\":\"01KNX1ZT4JASB340FXS9G9E0JN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Stairs Light Switch Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.755106+00:00\",\"last_reported\":\"2026-04-11T01:20:04.755106+00:00\",\"last_updated\":\"2026-04-11T01:20:04.755106+00:00\",\"context\":{\"id\":\"01KNX1ZT4K82Y43M6YH5NCPE7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.760031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760031+00:00\",\"context\":{\"id\":\"01KNX1ZT4RWQ986QB7MWGXBMY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"state\":\"2022-11-12T21:25:40.121489+00:00\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.760207+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760207+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760207+00:00\",\"context\":{\"id\":\"01KNX1ZT4RTKZJ3KKSE443XPNC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"state\":\"2026-04-07T00:06:22+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Right Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.760794+00:00\",\"last_reported\":\"2026-04-11T01:20:04.760794+00:00\",\"last_updated\":\"2026-04-11T01:20:04.760794+00:00\",\"context\":{\"id\":\"01KNX1ZT4RMDEP28JG6JGWXC3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Node status\"},\"last_changed\":\"2026-04-11T01:20:04.765943+00:00\",\"last_reported\":\"2026-04-11T01:20:04.765943+00:00\",\"last_updated\":\"2026-04-11T01:20:04.765943+00:00\",\"context\":{\"id\":\"01KNX1ZT4X1ZF9HK5WXW79VK25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"state\":\"2022-11-12T21:25:40.167075+00:00\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Ping\"},\"last_changed\":\"2026-04-11T01:20:04.766118+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766118+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766118+00:00\",\"context\":{\"id\":\"01KNX1ZT4YHT1CJDZPJ30103MT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Left Upstairs Hallway Lights Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.766990+00:00\",\"last_reported\":\"2026-04-11T01:20:04.766990+00:00\",\"last_updated\":\"2026-04-11T01:20:04.766990+00:00\",\"context\":{\"id\":\"01KNX1ZT4YPNDK3B9PZ7QR26EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Office Node status\"},\"last_changed\":\"2026-04-11T01:20:04.771936+00:00\",\"last_reported\":\"2026-04-11T01:20:04.771936+00:00\",\"last_updated\":\"2026-04-11T01:20:04.771936+00:00\",\"context\":{\"id\":\"01KNX1ZT536XQ3C0BVSACRENDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_ping\",\"state\":\"2022-06-18T07:33:13.199679+00:00\",\"attributes\":{\"friendly_name\":\"Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.772125+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772125+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772125+00:00\",\"context\":{\"id\":\"01KNX1ZT54VC54XQ5DMXBRNZCH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_last_seen\",\"state\":\"2025-09-14T20:33:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Office Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.772718+00:00\",\"last_reported\":\"2026-04-11T01:20:04.772718+00:00\",\"last_updated\":\"2026-04-11T01:20:04.772718+00:00\",\"context\":{\"id\":\"01KNX1ZT54WRE4SP4EJ9PY126R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Master Bedroom Node status\"},\"last_changed\":\"2026-04-11T07:04:23.114956+00:00\",\"last_reported\":\"2026-04-11T07:04:23.114956+00:00\",\"last_updated\":\"2026-04-11T07:04:23.114956+00:00\",\"context\":{\"id\":\"01KNXNP8AA66D2R1QFJ9D8FGA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ping\"},\"last_changed\":\"2026-04-11T01:20:04.777534+00:00\",\"last_reported\":\"2026-04-11T01:20:04.777534+00:00\",\"last_updated\":\"2026-04-11T01:20:04.777534+00:00\",\"context\":{\"id\":\"01KNX1ZT59NE3TG2Y4CTGD6D2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_last_seen\",\"state\":\"2026-04-12T17:47:02+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Last seen\"},\"last_changed\":\"2026-04-12T17:47:02.171901+00:00\",\"last_reported\":\"2026-04-12T17:47:02.171901+00:00\",\"last_updated\":\"2026-04-12T17:47:02.171901+00:00\",\"context\":{\"id\":\"01KP1CVPMVAZ2WN4VEHGYJ8PJB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Large Garage Door Node status\"},\"last_changed\":\"2026-04-12T17:01:34.782977+00:00\",\"last_reported\":\"2026-04-12T17:01:34.782977+00:00\",\"last_updated\":\"2026-04-12T17:01:34.782977+00:00\",\"context\":{\"id\":\"01KP1A8F5YS1Y7SK6XBHMTXHT1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.782565+00:00\",\"last_reported\":\"2026-04-11T01:20:04.782565+00:00\",\"last_updated\":\"2026-04-11T01:20:04.782565+00:00\",\"context\":{\"id\":\"01KNX1ZT5EPHS3ESE0CQ4F1N3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_last_seen\",\"state\":\"2026-04-12T17:01:34+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Large Garage Door Last seen\"},\"last_changed\":\"2026-04-12T17:01:34.530411+00:00\",\"last_reported\":\"2026-04-12T17:01:34.530411+00:00\",\"last_updated\":\"2026-04-12T17:01:34.530411+00:00\",\"context\":{\"id\":\"01KP1A8EY2CBWNCTE6DQJ8P0PQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_node_status\",\"state\":\"awake\",\"attributes\":{\"friendly_name\":\"Small Garage Door Node status\"},\"last_changed\":\"2026-04-11T01:20:04.786155+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786155+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786155+00:00\",\"context\":{\"id\":\"01KNX1ZT5J0XGSR53VEKXHQHEX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Ping\"},\"last_changed\":\"2026-04-11T01:20:04.786343+00:00\",\"last_reported\":\"2026-04-11T01:20:04.786343+00:00\",\"last_updated\":\"2026-04-11T01:20:04.786343+00:00\",\"context\":{\"id\":\"01KNX1ZT5JKH5G0VYPY091BHXQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_last_seen\",\"state\":\"2026-04-12T16:45:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Small Garage Door Last seen\"},\"last_changed\":\"2026-04-12T16:45:45.032313+00:00\",\"last_reported\":\"2026-04-12T16:45:45.282587+00:00\",\"last_updated\":\"2026-04-12T16:45:45.032313+00:00\",\"context\":{\"id\":\"01KP19BFP82Z7VRFS6G4EEVPHA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Node status\"},\"last_changed\":\"2026-04-11T01:20:04.789891+00:00\",\"last_reported\":\"2026-04-11T01:20:04.789891+00:00\",\"last_updated\":\"2026-04-11T01:20:04.789891+00:00\",\"context\":{\"id\":\"01KNX1ZT5N9D71WYNT9TP8X47Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"state\":\"2022-10-22T01:52:57.811452+00:00\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Ping\"},\"last_changed\":\"2026-04-11T01:20:04.790063+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790063+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790063+00:00\",\"context\":{\"id\":\"01KNX1ZT5PZ84Y0KJ9WBV1CFCE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"state\":\"2026-04-07T00:06:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Master Bedroom Ceiling Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.790659+00:00\",\"last_reported\":\"2026-04-11T01:20:04.790659+00:00\",\"last_updated\":\"2026-04-11T01:20:04.790659+00:00\",\"context\":{\"id\":\"01KNX1ZT5PWZRM00AGZ3N62NKE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Kitchen Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.795661+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795661+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795661+00:00\",\"context\":{\"id\":\"01KNX1ZT5V05HEGE3YD5SQK9DJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_ping\",\"state\":\"2022-11-12T21:25:40.192819+00:00\",\"attributes\":{\"friendly_name\":\"Kitchen Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.795834+00:00\",\"last_reported\":\"2026-04-11T01:20:04.795834+00:00\",\"last_updated\":\"2026-04-11T01:20:04.795834+00:00\",\"context\":{\"id\":\"01KNX1ZT5VWWD07VGYT0F2RFWA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_light_last_seen\",\"state\":\"2026-04-12T17:41:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Kitchen Light Last seen\"},\"last_changed\":\"2026-04-12T17:41:17.382738+00:00\",\"last_reported\":\"2026-04-12T17:41:17.633074+00:00\",\"last_updated\":\"2026-04-12T17:41:17.382738+00:00\",\"context\":{\"id\":\"01KP1CH5Y6AJAN71A8CERQVD6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Node status\"},\"last_changed\":\"2026-04-11T01:20:04.802330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802330+00:00\",\"context\":{\"id\":\"01KNX1ZT6256R4CXMCD9WD7QXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_ping\",\"state\":\"2022-11-12T21:18:32.694300+00:00\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Ping\"},\"last_changed\":\"2026-04-11T01:20:04.802502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.802502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.802502+00:00\",\"context\":{\"id\":\"01KNX1ZT625V9PZME65FBCR8M1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"state\":\"2026-04-12T17:31:45+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Light Last seen\"},\"last_changed\":\"2026-04-12T17:31:45.246941+00:00\",\"last_reported\":\"2026-04-12T17:31:45.497490+00:00\",\"last_updated\":\"2026-04-12T17:31:45.246941+00:00\",\"context\":{\"id\":\"01KP1BZQ6YFB50JQWDTA9MBRQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811126+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811126+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811126+00:00\",\"context\":{\"id\":\"01KNX1ZT6B99HVVQDJ6X6SWJCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.811265+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811265+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811265+00:00\",\"context\":{\"id\":\"01KNX1ZT6BEDH0JDTFFJ2S9PCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.811624+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811624+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811624+00:00\",\"context\":{\"id\":\"01KNX1ZT6BG68SKD54MS9X5KSC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.811757+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811757+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811757+00:00\",\"context\":{\"id\":\"01KNX1ZT6B4EJW6FTFNPQKH4VZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.811870+00:00\",\"last_reported\":\"2026-04-11T01:20:04.811870+00:00\",\"last_updated\":\"2026-04-11T01:20:04.811870+00:00\",\"context\":{\"id\":\"01KNX1ZT6B683GBBP782HAC6NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.812179+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812179+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812179+00:00\",\"context\":{\"id\":\"01KNX1ZT6CE5X8BRM35F55MCKY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.812417+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812417+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812417+00:00\",\"context\":{\"id\":\"01KNX1ZT6CTF1QQC2N45RAKCG8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.812653+00:00\",\"last_reported\":\"2026-04-11T01:20:04.812653+00:00\",\"last_updated\":\"2026-04-11T01:20:04.812653+00:00\",\"context\":{\"id\":\"01KNX1ZT6C0WW4QJAJK1R4XSKM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.814679+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814679+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814679+00:00\",\"context\":{\"id\":\"01KNX1ZT6EE73RJ3YK374ZP0ZS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.814802+00:00\",\"last_reported\":\"2026-04-11T01:20:04.814802+00:00\",\"last_updated\":\"2026-04-11T01:20:04.814802+00:00\",\"context\":{\"id\":\"01KNX1ZT6EEY2FZX4TYJVSB2BR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"state\":\"off\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Back Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.815101+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815101+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815101+00:00\",\"context\":{\"id\":\"01KNX1ZT6FZTJQPJGA5Z331CQ3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.815221+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815221+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815221+00:00\",\"context\":{\"id\":\"01KNX1ZT6FW2GCJH7B40NXBKQ7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.815330+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815330+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815330+00:00\",\"context\":{\"id\":\"01KNX1ZT6F5DQQXTPW465FB4BM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Back Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.815442+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815442+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815442+00:00\",\"context\":{\"id\":\"01KNX1ZT6FFZXWATD0J6X8SYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle Power Management Power status\"},\"last_changed\":\"2026-04-11T01:20:04.815746+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815746+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815746+00:00\",\"context\":{\"id\":\"01KNX1ZT6FDQW6RE5SN5792Z9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Back Door Power has been applied\"},\"last_changed\":\"2026-04-11T01:20:04.815959+00:00\",\"last_reported\":\"2026-04-11T01:20:04.815959+00:00\",\"last_updated\":\"2026-04-11T01:20:04.815959+00:00\",\"context\":{\"id\":\"01KNX1ZT6FCF5EBGVKBZZAHZX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_idle_system_software_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Idle System Software status\"},\"last_changed\":\"2026-04-11T01:20:04.816228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816228+00:00\",\"context\":{\"id\":\"01KNX1ZT6GQWANA2TMK6G0K8MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Back Door System software failure (with failure code)\"},\"last_changed\":\"2026-04-11T01:20:04.816436+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816436+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816436+00:00\",\"context\":{\"id\":\"01KNX1ZT6GCT22F7Q4KVJKTGJT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Back Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.816730+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816730+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816730+00:00\",\"context\":{\"id\":\"01KNX1ZT6G5G8YXA26202WA21T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.816955+00:00\",\"last_reported\":\"2026-04-11T01:20:04.816955+00:00\",\"last_updated\":\"2026-04-11T01:20:04.816955+00:00\",\"context\":{\"id\":\"01KNX1ZT6GR1MBB3AR6M4ER0KX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.817217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817217+00:00\",\"context\":{\"id\":\"01KNX1ZT6HD86W16FK8FZFREC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_porch_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Porch Light \"},\"last_changed\":\"2026-04-11T01:20:04.817451+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817451+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817451+00:00\",\"context\":{\"id\":\"01KNX1ZT6H6KSKDA14H1KBX57A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.817727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817727+00:00\",\"context\":{\"id\":\"01KNX1ZT6H1MBSRKF251864XME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.817962+00:00\",\"last_reported\":\"2026-04-11T01:20:04.817962+00:00\",\"last_updated\":\"2026-04-11T01:20:04.817962+00:00\",\"context\":{\"id\":\"01KNX1ZT6HYMY46M9KWBT3BPC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_room_light\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Front Room Light \"},\"last_changed\":\"2026-04-11T01:20:04.819980+00:00\",\"last_reported\":\"2026-04-11T01:20:04.819980+00:00\",\"last_updated\":\"2026-04-11T01:20:04.819980+00:00\",\"context\":{\"id\":\"01KNX1ZT6KN0V63VPR1GJZVXN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.820199+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820199+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820199+00:00\",\"context\":{\"id\":\"01KNX1ZT6MDPY3X0D83TETFDAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.front_room_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Front Room Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.820419+00:00\",\"last_reported\":\"2026-04-11T01:20:04.820419+00:00\",\"last_updated\":\"2026-04-11T01:20:04.820419+00:00\",\"context\":{\"id\":\"01KNX1ZT6MHWVT1S3H1Y8569KR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.back_porch_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Back Porch Light \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.822440+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822440+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822440+00:00\",\"context\":{\"id\":\"01KNX1ZT6PNCVFAGRH91YN9DW7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.822673+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822673+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822673+00:00\",\"context\":{\"id\":\"01KNX1ZT6PBN30P12ZQGK5GX79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.back_porch_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Back Porch Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.822892+00:00\",\"last_reported\":\"2026-04-11T01:20:04.822", - "offset_ms": 137 - }, - { - "direction": "recv", - "type": "text", - "payload": "892+00:00\",\"last_updated\":\"2026-04-11T01:20:04.822892+00:00\",\"context\":{\"id\":\"01KNX1ZT6PFKSG5CVHW2V6GM2S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_porch_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Back Porch Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.825497+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825497+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825497+00:00\",\"context\":{\"id\":\"01KNX1ZT6SW1S2MYRFWJ2WYVDX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Back Porch Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.825702+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825702+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825702+00:00\",\"context\":{\"id\":\"01KNX1ZT6SD58FA974GP3BQXB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bathroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.825965+00:00\",\"last_reported\":\"2026-04-11T01:20:04.825965+00:00\",\"last_updated\":\"2026-04-11T01:20:04.825965+00:00\",\"context\":{\"id\":\"01KNX1ZT6S2GKGT1Z8HT6SPQ06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bathroom Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.826228+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826228+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826228+00:00\",\"context\":{\"id\":\"01KNX1ZT6TD7J78Y49GAW04W9A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_illuminance\",\"state\":\"0.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bathroom Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.826458+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826458+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826458+00:00\",\"context\":{\"id\":\"01KNX1ZT6TW5YJZXXW6GST4W7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_humidity\",\"state\":\"46.24\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bathroom Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.826710+00:00\",\"last_reported\":\"2026-04-11T01:20:04.826710+00:00\",\"last_updated\":\"2026-04-11T01:20:04.826710+00:00\",\"context\":{\"id\":\"01KNX1ZT6TN9A4QEGSFHNA5J87\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.827789+00:00\",\"last_reported\":\"2026-04-11T01:20:04.827789+00:00\",\"last_updated\":\"2026-04-11T01:20:04.827789+00:00\",\"context\":{\"id\":\"01KNX1ZT6VEM3Q0KFW3FH8XTV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bathroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.828004+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828004+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828004+00:00\",\"context\":{\"id\":\"01KNX1ZT6WN923V1XQPHT4QSZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bathroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.828255+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828255+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828255+00:00\",\"context\":{\"id\":\"01KNX1ZT6WNG1PFC9D0FQ4RWV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bathroom Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.828471+00:00\",\"last_reported\":\"2026-04-11T01:20:04.828471+00:00\",\"last_updated\":\"2026-04-11T01:20:04.828471+00:00\",\"context\":{\"id\":\"01KNX1ZT6WK63Y85Q5B1XYE49T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bathroom_battery_level\",\"state\":\"50.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bathroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.829196+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829196+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829196+00:00\",\"context\":{\"id\":\"01KNX1ZT6XBHZAGCQD3GDCW5KF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Kitchen Basic\"},\"last_changed\":\"2026-04-11T01:20:04.829516+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829516+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829516+00:00\",\"context\":{\"id\":\"01KNX1ZT6XXXK8EYWG309DW4QE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_air_temperature\",\"state\":\"67.8\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Kitchen Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.829795+00:00\",\"last_reported\":\"2026-04-11T01:20:04.829795+00:00\",\"last_updated\":\"2026-04-11T01:20:04.829795+00:00\",\"context\":{\"id\":\"01KNX1ZT6X4ET1YH7X27RWQ01T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_illuminance\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Kitchen Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.830030+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830030+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830030+00:00\",\"context\":{\"id\":\"01KNX1ZT6Y7VJCFJHHE9NEQ149\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_humidity\",\"state\":\"58.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Kitchen Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.830272+00:00\",\"last_reported\":\"2026-04-11T01:20:04.830272+00:00\",\"last_updated\":\"2026-04-11T01:20:04.830272+00:00\",\"context\":{\"id\":\"01KNX1ZT6YJMXJXZ70NZEZCW27\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.831316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831316+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZGG42EKNSZ8EAAF18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Kitchen Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.831520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831520+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZKBYY46NZX9G4SHWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.831782+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831782+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831782+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZERNCN9HYBJ998P0Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Kitchen Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.831986+00:00\",\"last_reported\":\"2026-04-11T01:20:04.831986+00:00\",\"last_updated\":\"2026-04-11T01:20:04.831986+00:00\",\"context\":{\"id\":\"01KNX1ZT6ZBCCB986EAT37RJ0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"state\":\"8\",\"attributes\":{\"value\":8,\"friendly_name\":\"Kitchen CO2 Alarm unknown\"},\"last_changed\":\"2026-04-11T01:20:04.833003+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833003+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833003+00:00\",\"context\":{\"id\":\"01KNX1ZT71Y3ZES5X6TEZFH5CC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.833314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.833314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.833314+00:00\",\"context\":{\"id\":\"01KNX1ZT71VJSD3Y96GNTAZ9ZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.834768+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834768+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834768+00:00\",\"context\":{\"id\":\"01KNX1ZT72B6AY64SKMHJ6W1XQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.834885+00:00\",\"last_reported\":\"2026-04-11T01:20:04.834885+00:00\",\"last_updated\":\"2026-04-11T01:20:04.834885+00:00\",\"context\":{\"id\":\"01KNX1ZT72FTMPPPHMMW30N3DN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Cat Bathroom Door Window/door is open\"},\"last_changed\":\"2026-04-11T01:20:04.835181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835181+00:00\",\"context\":{\"id\":\"01KNX1ZT73VY3BCBZY4GZXGJ6W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is closed\"},\"last_changed\":\"2026-04-11T01:20:04.835297+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835297+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835297+00:00\",\"context\":{\"id\":\"01KNX1ZT73HYSXFG1D0JXM54R5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in regular position\"},\"last_changed\":\"2026-04-11T01:20:04.835407+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835407+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835407+00:00\",\"context\":{\"id\":\"01KNX1ZT736YJRPJHZ94T49GA4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Window/door is open in tilt position\"},\"last_changed\":\"2026-04-11T01:20:04.835510+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835510+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835510+00:00\",\"context\":{\"id\":\"01KNX1ZT735FASYJT8RS4WSHNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Cat Bathroom Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.835792+00:00\",\"last_reported\":\"2026-04-11T01:20:04.835792+00:00\",\"last_updated\":\"2026-04-11T01:20:04.835792+00:00\",\"context\":{\"id\":\"01KNX1ZT737D4VX4WJ7ZFKTE5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Cat Bathroom Door Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.836010+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836010+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836010+00:00\",\"context\":{\"id\":\"01KNX1ZT74Q9NX0V42YJ6A8KX0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.cat_bathroom_door_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Cat Bathroom Door Identify\"},\"last_changed\":\"2026-04-11T01:20:04.836216+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836216+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836216+00:00\",\"context\":{\"id\":\"01KNX1ZT74AP3RH0TSTZW5W09A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_switch\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":224,\"friendly_name\":\"Stairs Light Switch \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.836520+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836520+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836520+00:00\",\"context\":{\"id\":\"01KNX1ZT7489CC715TNAEKZSQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.836763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836763+00:00\",\"context\":{\"id\":\"01KNX1ZT74B287TBJYZGZP2AVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.stairs_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Stairs Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.836983+00:00\",\"last_reported\":\"2026-04-11T01:20:04.836983+00:00\",\"last_updated\":\"2026-04-11T01:20:04.836983+00:00\",\"context\":{\"id\":\"01KNX1ZT74FWR6MJTT41C42V62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Stairs Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.839387+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839387+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839387+00:00\",\"context\":{\"id\":\"01KNX1ZT77GJ2ED0Z88GS5YCYX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Stairs Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:04.839854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.839854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.839854+00:00\",\"context\":{\"id\":\"01KNX1ZT77R6K2K3NCBC6NWN9N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.right_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Right Upstairs Hallway Lights \",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.840123+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840123+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840123+00:00\",\"context\":{\"id\":\"01KNX1ZT78ARP89YXNPD4FV322\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.840359+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840359+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840359+00:00\",\"context\":{\"id\":\"01KNX1ZT78M5N935YVXCV2CC7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Right Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.840578+00:00\",\"last_reported\":\"2026-04-11T01:20:04.840578+00:00\",\"last_updated\":\"2026-04-11T01:20:04.840578+00:00\",\"context\":{\"id\":\"01KNX1ZT7875CFVP7MY7EKCG4H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Right Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.842946+00:00\",\"last_reported\":\"2026-04-11T01:20:04.842946+00:00\",\"last_updated\":\"2026-04-11T01:20:04.842946+00:00\",\"context\":{\"id\":\"01KNX1ZT7ASA8DR4C8E3BCKZD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Right Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.843137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843137+00:00\",\"context\":{\"id\":\"01KNX1ZT7BBC3Y4DM91H2S2TRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.left_upstairs_hallway_lights\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Left Upstairs Hallway Lights\",\"supported_features\":32},\"last_changed\":\"2026-04-11T01:20:04.843394+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843394+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843394+00:00\",\"context\":{\"id\":\"01KNX1ZT7B06HD1Q56SQPFC4T1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.843630+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843630+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843630+00:00\",\"context\":{\"id\":\"01KNX1ZT7BKA6Y2ZP0BNGKPHFR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Left Upstairs Hallway Lights Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.843855+00:00\",\"last_reported\":\"2026-04-11T01:20:04.843855+00:00\",\"last_updated\":\"2026-04-11T01:20:04.843855+00:00\",\"context\":{\"id\":\"01KNX1ZT7BWYKK9BBY0RWGCSEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Left Upstairs Hallway Lights Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.846968+00:00\",\"last_reported\":\"2026-04-11T01:20:04.846968+00:00\",\"last_updated\":\"2026-04-11T01:20:04.846968+00:00\",\"context\":{\"id\":\"01KNX1ZT7E2KN6BF3YXNYJWAEG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Left Upstairs Hallway Lights Identify\"},\"last_changed\":\"2026-04-11T01:20:04.847171+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847171+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847171+00:00\",\"context\":{\"id\":\"01KNX1ZT7FMZ1QKFZZPN78ZTQP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Office Basic\"},\"last_changed\":\"2026-04-11T01:20:04.847425+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847425+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847425+00:00\",\"context\":{\"id\":\"01KNX1ZT7FV5YPHXGJR41ZAA6J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_air_temperature\",\"state\":\"72.84\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Office Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.847683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847683+00:00\",\"context\":{\"id\":\"01KNX1ZT7F9Z2PENZ1R0VEYCFS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_illuminance\",\"state\":\"27.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Office Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.847916+00:00\",\"last_reported\":\"2026-04-11T01:20:04.847916+00:00\",\"last_updated\":\"2026-04-11T01:20:04.847916+00:00\",\"context\":{\"id\":\"01KNX1ZT7FNJTFNGZBJG7FASFJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_humidity\",\"state\":\"56.59\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Office Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.848158+00:00\",\"last_reported\":\"2026-04-11T01:20:04.848158+00:00\",\"last_updated\":\"2026-04-11T01:20:04.848158+00:00\",\"context\":{\"id\":\"01KNX1ZT7GAG5CDZ2EQE6VEYV2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.849360+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849360+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849360+00:00\",\"context\":{\"id\":\"01KNX1ZT7H0NYQ4V3VPDZ74VWQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.849575+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849575+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849575+00:00\",\"context\":{\"id\":\"01KNX1ZT7HJBSZ4A5BMY15213K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.849831+00:00\",\"last_reported\":\"2026-04-11T01:20:04.849831+00:00\",\"last_updated\":\"2026-04-11T01:20:04.849831+00:00\",\"context\":{\"id\":\"01KNX1ZT7HE8XZV8M2F8E1WQHF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"state\":\"on\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Office Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.850045+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850045+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850045+00:00\",\"context\":{\"id\":\"01KNX1ZT7J9HHN9KHZCWBNN4P0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.office_battery_level\",\"state\":\"10.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Office Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.850769+00:00\",\"last_reported\":\"2026-04-11T01:20:04.850769+00:00\",\"last_updated\":\"2026-04-11T01:20:04.850769+00:00\",\"context\":{\"id\":\"01KNX1ZT7JPGXDP8XM6S9003YM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.office_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Office Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.851008+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851008+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851008+00:00\",\"context\":{\"id\":\"01KNX1ZT7KBRHQXTM962TEYMAH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.office_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Office Identify\"},\"last_changed\":\"2026-04-11T01:20:04.851206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851206+00:00\",\"context\":{\"id\":\"01KNX1ZT7KFX44HXY87GGFV32K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Master Bedroom Basic\"},\"last_changed\":\"2026-04-11T01:20:04.851454+00:00\",\"last_reported\":\"2026-04-11T01:20:04.851454+00:00\",\"last_updated\":\"2026-04-11T01:20:04.851454+00:00\",\"context\":{\"id\":\"01KNX1ZT7KKNXE25AR7Q4EW8PX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"state\":\"67.13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Master Bedroom Air temperature\"},\"last_changed\":\"2026-04-12T17:47:00.427699+00:00\",\"last_reported\":\"2026-04-12T17:47:00.427699+00:00\",\"last_updated\":\"2026-04-12T17:47:00.427699+00:00\",\"context\":{\"id\":\"01KP1CVMYB06K6VMKRXSQJVK71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_humidity\",\"state\":\"59.52\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Master Bedroom Humidity\"},\"last_changed\":\"2026-04-12T17:47:00.855901+00:00\",\"last_reported\":\"2026-04-12T17:47:00.855901+00:00\",\"last_updated\":\"2026-04-12T17:47:00.855901+00:00\",\"context\":{\"id\":\"01KP1CVNBQ6SXFM4N2JFJJAKE1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_illuminance\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Master Bedroom Illuminance\"},\"last_changed\":\"2026-04-12T17:47:01.923916+00:00\",\"last_reported\":\"2026-04-12T17:47:01.923916+00:00\",\"last_updated\":\"2026-04-12T17:47:01.923916+00:00\",\"context\":{\"id\":\"01KP1CVPD3MQRY6W3G36TGWKBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.853393+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853393+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853393+00:00\",\"context\":{\"id\":\"01KNX1ZT7NW7805DR9025E4Y6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Master Bedroom Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.853602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.853602+00:00\",\"context\":{\"id\":\"01KNX1ZT7NFGT7FEWZQK51GQ0R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.853860+00:00\",\"last_reported\":\"2026-04-11T01:20:04.853860+00:00\",\"last_", - "offset_ms": 138 - }, - { - "direction": "recv", - "type": "text", - "payload": "updated\":\"2026-04-11T01:20:04.853860+00:00\",\"context\":{\"id\":\"01KNX1ZT7NCA9PS4FV31CAGHF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Master Bedroom Motion detection\"},\"last_changed\":\"2026-04-12T17:22:04.977150+00:00\",\"last_reported\":\"2026-04-12T17:22:04.977150+00:00\",\"last_updated\":\"2026-04-12T17:22:04.977150+00:00\",\"context\":{\"id\":\"01KP1BE0HHRWMYXR4GV96NB0CK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bedroom_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bedroom Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.854854+00:00\",\"last_reported\":\"2026-04-11T01:20:04.854854+00:00\",\"last_updated\":\"2026-04-11T01:20:04.854854+00:00\",\"context\":{\"id\":\"01KNX1ZT7P4DE4K6VCV6D5NQJY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.855066+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855066+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855066+00:00\",\"context\":{\"id\":\"01KNX1ZT7QAGXJBGABMV1YMX81\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Identify\"},\"last_changed\":\"2026-04-11T01:20:04.855277+00:00\",\"last_reported\":\"2026-04-11T01:20:04.855277+00:00\",\"last_updated\":\"2026-04-11T01:20:04.855277+00:00\",\"context\":{\"id\":\"01KNX1ZT7QHGW33Q5SA4THRGTF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.856556+00:00\",\"last_reported\":\"2026-04-11T01:20:04.856556+00:00\",\"last_updated\":\"2026-04-11T01:20:04.856556+00:00\",\"context\":{\"id\":\"01KNX1ZT7RJHY8CN6JYGFRA42E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Large Garage Door Intrusion\"},\"last_changed\":\"2026-04-12T02:00:35.073138+00:00\",\"last_reported\":\"2026-04-12T02:00:35.073138+00:00\",\"last_updated\":\"2026-04-12T02:00:35.073138+00:00\",\"context\":{\"id\":\"01KNZPPPG11J5RGVJSV4BV123X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Large Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.857028+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857028+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857028+00:00\",\"context\":{\"id\":\"01KNX1ZT7S63T1WX7A3GDFG9RP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Large Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.857287+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857287+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857287+00:00\",\"context\":{\"id\":\"01KNX1ZT7SP52KNA8E24G20EF8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_battery_level\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Large Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.857879+00:00\",\"last_reported\":\"2026-04-11T01:20:04.857879+00:00\",\"last_updated\":\"2026-04-11T01:20:04.857879+00:00\",\"context\":{\"id\":\"01KNX1ZT7S219DPRAFWYJY7S3Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.858582+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858582+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858582+00:00\",\"context\":{\"id\":\"01KNX1ZT7T646DBKCGCE8RGF31\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Small Garage Door Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.858796+00:00\",\"last_reported\":\"2026-04-11T01:20:04.858796+00:00\",\"last_updated\":\"2026-04-11T01:20:04.858796+00:00\",\"context\":{\"id\":\"01KNX1ZT7T5HV81V8PQ29QX4CW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Small Garage Door Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.859054+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859054+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859054+00:00\",\"context\":{\"id\":\"01KNX1ZT7VZZ59GVFWNH0A4EKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Small Garage Door Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.859258+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859258+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859258+00:00\",\"context\":{\"id\":\"01KNX1ZT7VXCJ76T1SASWX39HR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.small_garage_door_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Small Garage Door Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.859837+00:00\",\"last_reported\":\"2026-04-11T01:20:04.859837+00:00\",\"last_updated\":\"2026-04-11T01:20:04.859837+00:00\",\"context\":{\"id\":\"01KNX1ZT7VS6249FKGN0BHVFYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.860072+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860072+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860072+00:00\",\"context\":{\"id\":\"01KNX1ZT7WZ61E07DT9JERNHSX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Master Bedroom Ceiling Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.860293+00:00\",\"last_reported\":\"2026-04-11T01:20:04.860293+00:00\",\"last_updated\":\"2026-04-11T01:20:04.860293+00:00\",\"context\":{\"id\":\"01KNX1ZT7WXJE4R6S7XJRERSED\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Master Bedroom Ceiling Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.863727+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863727+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863727+00:00\",\"context\":{\"id\":\"01KNX1ZT7Z8TF74X393JCYH45M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling Identify\"},\"last_changed\":\"2026-04-11T01:20:04.863935+00:00\",\"last_reported\":\"2026-04-11T01:20:04.863935+00:00\",\"last_updated\":\"2026-04-11T01:20:04.863935+00:00\",\"context\":{\"id\":\"01KNX1ZT7ZEVX4J3WY3PKMMY1H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling \"},\"last_changed\":\"2026-04-11T01:20:04.864139+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864139+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864139+00:00\",\"context\":{\"id\":\"01KNX1ZT801MXH3SZMSYH8T3T2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Master Bedroom Ceiling (2)\"},\"last_changed\":\"2026-04-11T01:20:04.864335+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864335+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864335+00:00\",\"context\":{\"id\":\"01KNX1ZT80NH1HBCAKZBAJM45E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.kitchen_light\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Kitchen Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:41:14.415878+00:00\",\"last_reported\":\"2026-04-12T17:41:17.384148+00:00\",\"last_updated\":\"2026-04-12T17:41:14.415878+00:00\",\"context\":{\"id\":\"01KP1CH3063VHSZT6MA81ETSJJ\",\"parent_id\":\"01KP1CGFF5VA69N6ZMPCC66FHX\",\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.864856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.864856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.864856+00:00\",\"context\":{\"id\":\"01KNX1ZT802T8CCZTG6BQK6B08\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.865082+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865082+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865082+00:00\",\"context\":{\"id\":\"01KNX1ZT819J40QNC7KKNNR6ZC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.kitchen_light_scene_003\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Kitchen Light Scene 003\"},\"last_changed\":\"2026-04-11T01:20:04.865354+00:00\",\"last_reported\":\"2026-04-11T01:20:04.865354+00:00\",\"last_updated\":\"2026-04-11T01:20:04.865354+00:00\",\"context\":{\"id\":\"01KNX1ZT81BBB4Y8ZED2Z3XC3D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.kitchen_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Kitchen Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.869608+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869608+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869608+00:00\",\"context\":{\"id\":\"01KNX1ZT85N6X3A97YPP5XM9KP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.kitchen_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Kitchen Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.869813+00:00\",\"last_reported\":\"2026-04-11T01:20:04.869813+00:00\",\"last_updated\":\"2026-04-11T01:20:04.869813+00:00\",\"context\":{\"id\":\"01KNX1ZT85BXV8H6RSXA2P96JZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.jenni_office_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Jenni Office Light \",\"supported_features\":32},\"last_changed\":\"2026-04-12T17:31:45.249375+00:00\",\"last_reported\":\"2026-04-12T17:31:45.249375+00:00\",\"last_updated\":\"2026-04-12T17:31:45.249375+00:00\",\"context\":{\"id\":\"01KP1BZQ710ZJSH9WZFWSXHS7K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 001\"},\"last_changed\":\"2026-04-11T01:20:04.870316+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870316+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870316+00:00\",\"context\":{\"id\":\"01KNX1ZT86N03V1WE22C8HPAS8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.jenni_office_light_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Jenni Office Light Scene 002\"},\"last_changed\":\"2026-04-11T01:20:04.870540+00:00\",\"last_reported\":\"2026-04-11T01:20:04.870540+00:00\",\"last_updated\":\"2026-04-11T01:20:04.870540+00:00\",\"context\":{\"id\":\"01KNX1ZT8675SMGNCVBVCCT9MP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.jenni_office_light_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Jenni Office Light Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.873856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.873856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.873856+00:00\",\"context\":{\"id\":\"01KNX1ZT893AWN6K2M11MV3ERN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_light_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Light Identify\"},\"last_changed\":\"2026-04-11T01:20:04.874061+00:00\",\"last_reported\":\"2026-04-11T01:20:04.874061+00:00\",\"last_updated\":\"2026-04-11T01:20:04.874061+00:00\",\"context\":{\"id\":\"01KNX1ZT8ASG1YGAACYYQYE3R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.962611+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335365+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962611+00:00\",\"context\":{\"id\":\"01KP1B3JHJZYW9EBJ4AWSDTZRK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.962790+00:00\",\"last_reported\":\"2026-04-12T17:20:12.335470+00:00\",\"last_updated\":\"2026-04-12T17:16:22.962790+00:00\",\"context\":{\"id\":\"01KP1B3JHJX5963QPVDCTY8BSE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885076+00:00\",\"last_reported\":\"2026-04-13T08:05:05.339347+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885076+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Node status\"},\"last_changed\":\"2026-04-11T01:20:04.877345+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877345+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877345+00:00\",\"context\":{\"id\":\"01KNX1ZT8DE9PHC57XAEXT1T86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Ping\"},\"last_changed\":\"2026-04-11T01:20:04.877525+00:00\",\"last_reported\":\"2026-04-11T01:20:04.877525+00:00\",\"last_updated\":\"2026-04-11T01:20:04.877525+00:00\",\"context\":{\"id\":\"01KNX1ZT8D4ED1MERMMYMD4SYS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"state\":\"2026-03-14T11:46:37+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Motion Sensor 2 Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.878137+00:00\",\"last_reported\":\"2026-04-11T01:20:04.878137+00:00\",\"last_updated\":\"2026-04-11T01:20:04.878137+00:00\",\"context\":{\"id\":\"01KNX1ZT8EDF763QSN7S8H29EG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Front Door Lock Node status\"},\"last_changed\":\"2026-04-11T01:20:04.881352+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881352+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881352+00:00\",\"context\":{\"id\":\"01KNX1ZT8HAW24FWBPZPNTZ4R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Ping\"},\"last_changed\":\"2026-04-11T01:20:04.881533+00:00\",\"last_reported\":\"2026-04-11T01:20:04.881533+00:00\",\"last_updated\":\"2026-04-11T01:20:04.881533+00:00\",\"context\":{\"id\":\"01KNX1ZT8HMF8M1KRHF8PZQRPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_last_seen\",\"state\":\"2026-04-12T05:30:07+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Front Door Lock Last seen\"},\"last_changed\":\"2026-04-12T05:30:07.713141+00:00\",\"last_reported\":\"2026-04-12T05:30:07.713141+00:00\",\"last_updated\":\"2026-04-12T05:30:07.713141+00:00\",\"context\":{\"id\":\"01KP02PCF1Y68Y5V64K5CBQGE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Node status\"},\"last_changed\":\"2026-04-12T11:17:27.341531+00:00\",\"last_reported\":\"2026-04-12T11:17:27.341531+00:00\",\"last_updated\":\"2026-04-12T11:17:27.341531+00:00\",\"context\":{\"id\":\"01KP0PJBND1GYBK6T96JQY9K68\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Ping\"},\"last_changed\":\"2026-04-11T01:20:04.893286+00:00\",\"last_reported\":\"2026-04-11T01:20:04.893286+00:00\",\"last_updated\":\"2026-04-11T01:20:04.893286+00:00\",\"context\":{\"id\":\"01KNX1ZT8XX3K7QY4AH1WEQQVC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"state\":\"2026-04-12T17:22:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Upstairs Hallway Last seen\"},\"last_changed\":\"2026-04-12T17:22:23.038128+00:00\",\"last_reported\":\"2026-04-12T17:22:23.538197+00:00\",\"last_updated\":\"2026-04-12T17:22:23.038128+00:00\",\"context\":{\"id\":\"01KP1BEJ5YZ0GQNVZ96T7V0YKT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Controller Node status\"},\"last_changed\":\"2026-04-11T01:20:04.897206+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897206+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897206+00:00\",\"context\":{\"id\":\"01KNX1ZT91GMT8BGAJJ5B5N21G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_controller_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Controller Ping\"},\"last_changed\":\"2026-04-11T01:20:04.897388+00:00\",\"last_reported\":\"2026-04-11T01:20:04.897388+00:00\",\"last_updated\":\"2026-04-11T01:20:04.897388+00:00\",\"context\":{\"id\":\"01KNX1ZT9167REXFBYDVGJ1EPH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_controller_last_seen\",\"state\":\"2026-04-12T02:00:23+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Controller Last seen\"},\"last_changed\":\"2026-04-12T02:00:23.042485+00:00\",\"last_reported\":\"2026-04-12T02:00:23.542105+00:00\",\"last_updated\":\"2026-04-12T02:00:23.042485+00:00\",\"context\":{\"id\":\"01KNZPPAR2WVJHZY6QYGBP2XHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Node status\"},\"last_changed\":\"2026-04-11T01:20:04.903434+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903434+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903434+00:00\",\"context\":{\"id\":\"01KNX1ZT970H8GZG8WJHZ5WQ83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.903602+00:00\",\"last_reported\":\"2026-04-11T01:20:04.903602+00:00\",\"last_updated\":\"2026-04-11T01:20:04.903602+00:00\",\"context\":{\"id\":\"01KNX1ZT97J7A69E8G81XQ2DCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"state\":\"2025-09-13T16:43:06+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Multi Sensor Last seen\"},\"last_changed\":\"2026-04-11T01:20:04.904181+00:00\",\"last_reported\":\"2026-04-11T01:20:04.904181+00:00\",\"last_updated\":\"2026-04-11T01:20:04.904181+00:00\",\"context\":{\"id\":\"01KNX1ZT98ECFE5NF9T7S8VCWK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Jenni Office Node status\"},\"last_changed\":\"2026-04-12T05:27:35.057832+00:00\",\"last_reported\":\"2026-04-12T05:27:35.057832+00:00\",\"last_updated\":\"2026-04-12T05:27:35.057832+00:00\",\"context\":{\"id\":\"01KP02HQCHG5T74RTGCJVDBX83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Ping\"},\"last_changed\":\"2026-04-11T01:20:04.910477+00:00\",\"last_reported\":\"2026-04-11T01:20:04.910477+00:00\",\"last_updated\":\"2026-04-11T01:20:04.910477+00:00\",\"context\":{\"id\":\"01KNX1ZT9E60HC2RTE5GBD6528\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_last_seen\",\"state\":\"2026-04-12T17:51:33+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Jenni Office Last seen\"},\"last_changed\":\"2026-04-12T17:51:33.093895+00:00\",\"last_reported\":\"2026-04-12T17:51:33.845190+00:00\",\"last_updated\":\"2026-04-12T17:51:33.093895+00:00\",\"context\":{\"id\":\"01KP1D3Z7592VMRNG0NDK918W9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"state\":\"asleep\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Node status\"},\"last_changed\":\"2026-04-12T07:10:34.289244+00:00\",\"last_reported\":\"2026-04-12T07:10:34.289244+00:00\",\"last_updated\":\"2026-04-12T07:10:34.289244+00:00\",\"context\":{\"id\":\"01KP08E9SHN638B4D931D5V42R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Ping\"},\"last_changed\":\"2026-04-11T01:20:04.914217+00:00\",\"last_reported\":\"2026-04-11T01:20:04.914217+00:00\",\"last_updated\":\"2026-04-11T01:20:04.914217+00:00\",\"context\":{\"id\":\"01KNX1ZT9JMTNBH7T5DD0CBWSB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"state\":\"2026-04-12T17:50:47+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Downstairs Hallway Motion Sensor ", - "offset_ms": 139 - }, - { - "direction": "recv", - "type": "text", - "payload": "Last seen\"},\"last_changed\":\"2026-04-12T17:50:47.029444+00:00\",\"last_reported\":\"2026-04-12T17:50:47.280674+00:00\",\"last_updated\":\"2026-04-12T17:50:47.029444+00:00\",\"context\":{\"id\":\"01KP1D2J7NNBV9J7T04CEE3WV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Node status\"},\"last_changed\":\"2026-04-11T01:20:04.918861+00:00\",\"last_reported\":\"2026-04-11T01:20:04.918861+00:00\",\"last_updated\":\"2026-04-11T01:20:04.918861+00:00\",\"context\":{\"id\":\"01KNX1ZT9PEPSQXGXS1APGDSBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Ping\"},\"last_changed\":\"2026-04-11T01:20:04.919043+00:00\",\"last_reported\":\"2026-04-11T01:20:04.919043+00:00\",\"last_updated\":\"2026-04-11T01:20:04.919043+00:00\",\"context\":{\"id\":\"01KNX1ZT9Q5X61YDFX4NPZBFCJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"state\":\"2026-04-12T17:44:27+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Garage Light Switch Last seen\"},\"last_changed\":\"2026-04-12T17:44:27.807544+00:00\",\"last_reported\":\"2026-04-12T17:44:27.807544+00:00\",\"last_updated\":\"2026-04-12T17:44:27.807544+00:00\",\"context\":{\"id\":\"01KP1CPZWZXQ3PB6NP5YC961DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"state\":\"alive\",\"attributes\":{\"friendly_name\":\"fish tank power strip Node status\"},\"last_changed\":\"2026-04-11T01:20:04.924502+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924502+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924502+00:00\",\"context\":{\"id\":\"01KNX1ZT9WTBCA2D0CBNX3RNCK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_ping\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Ping\"},\"last_changed\":\"2026-04-11T01:20:04.924675+00:00\",\"last_reported\":\"2026-04-11T01:20:04.924675+00:00\",\"last_updated\":\"2026-04-11T01:20:04.924675+00:00\",\"context\":{\"id\":\"01KNX1ZT9W5M5Y9QBH3P2P55NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"state\":\"2026-04-12T17:53:17+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"fish tank power strip Last seen\"},\"last_changed\":\"2026-04-12T17:53:17.165565+00:00\",\"last_reported\":\"2026-04-12T17:53:17.415038+00:00\",\"last_updated\":\"2026-04-12T17:53:17.165565+00:00\",\"context\":{\"id\":\"01KP1D74VDXQHDGAWYWNX3N7R3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.936899+00:00\",\"last_reported\":\"2026-04-11T01:20:04.936899+00:00\",\"last_updated\":\"2026-04-11T01:20:04.936899+00:00\",\"context\":{\"id\":\"01KNX1ZTA85H1F0DP74J4QYKBC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_firmware\",\"state\":\"on\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.5.0\",\"in_progress\":false,\"latest_version\":\"1.6.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.937564+00:00\",\"last_reported\":\"2026-04-11T01:20:04.937564+00:00\",\"last_updated\":\"2026-04-11T01:20:04.937564+00:00\",\"context\":{\"id\":\"01KNX1ZTA9GAV198GSK1699YQS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938108+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938108+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938108+00:00\",\"context\":{\"id\":\"01KNX1ZTAACSTMRHV3G5PFHDME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_room_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4.4.1\",\"in_progress\":false,\"latest_version\":\"4.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Room Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.938629+00:00\",\"last_reported\":\"2026-04-11T01:20:04.938629+00:00\",\"last_updated\":\"2026-04-11T01:20:04.938629+00:00\",\"context\":{\"id\":\"01KNX1ZTAA31B4HE46V1Q5E9NW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_porch_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Back Porch Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940175+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940175+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940175+00:00\",\"context\":{\"id\":\"01KNX1ZTAC9YFWQ3SZK7RS7W5E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bathroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bathroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.940645+00:00\",\"last_reported\":\"2026-04-11T01:20:04.940645+00:00\",\"last_updated\":\"2026-04-11T01:20:04.940645+00:00\",\"context\":{\"id\":\"01KNX1ZTAC3NZMRNWYC9R1Y8QR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.941223+00:00\",\"last_reported\":\"2026-04-11T01:20:04.941223+00:00\",\"last_updated\":\"2026-04-11T01:20:04.941223+00:00\",\"context\":{\"id\":\"01KNX1ZTADQT2KJ749KFE950XW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bedroom 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.564505+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541838+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564505+00:00\",\"context\":{\"id\":\"01KP1B3J54GJ6Y47R9P0PK5CBA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bedroom_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.564617+00:00\",\"last_reported\":\"2026-04-12T17:20:12.541911+00:00\",\"last_updated\":\"2026-04-12T17:16:22.564617+00:00\",\"context\":{\"id\":\"01KP1B3J54D70SZHNDJJ8HRSVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bedroom_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bedroom 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:53:13.885433+00:00\",\"last_reported\":\"2026-04-13T08:05:05.544352+00:00\",\"last_updated\":\"2026-04-13T04:53:13.885433+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Matter Bath Toilet Restart\"},\"last_changed\":\"2026-04-12T17:16:04.539981+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585339+00:00\",\"last_updated\":\"2026-04-12T17:16:04.539981+00:00\",\"context\":{\"id\":\"01KP1B30HVA0RMGRNWMJ54ZRFF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.matter_bath_toilet_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Matter Bath Toilet Identify\"},\"last_changed\":\"2026-04-12T17:16:04.540149+00:00\",\"last_reported\":\"2026-04-12T17:20:14.585415+00:00\",\"last_updated\":\"2026-04-12T17:16:04.540149+00:00\",\"context\":{\"id\":\"01KP1B30HWYNVYFR50A3Q2WT52\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.matter_bath_toilet\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Matter Bath Toilet\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.277242+00:00\",\"last_reported\":\"2026-04-13T08:05:01.642082+00:00\",\"last_updated\":\"2026-04-13T04:50:41.277242+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.257640+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346550+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257640+00:00\",\"context\":{\"id\":\"01KP1B3QQ171RD90SS0EWVC4NA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.257786+00:00\",\"last_reported\":\"2026-04-12T17:20:08.346626+00:00\",\"last_updated\":\"2026-04-12T17:16:28.257786+00:00\",\"context\":{\"id\":\"01KP1B3QQ1KQ55GZNCNAQNKTJF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.425179+00:00\",\"last_reported\":\"2026-04-13T08:05:01.248919+00:00\",\"last_updated\":\"2026-04-13T06:58:01.425179+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.living_room_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:55.307039+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356897+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307039+00:00\",\"context\":{\"id\":\"01KP1B2QHB8JVXF827HZHJ9MT9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:55.307220+00:00\",\"last_reported\":\"2026-04-12T17:20:13.356975+00:00\",\"last_updated\":\"2026-04-12T17:15:55.307220+00:00\",\"context\":{\"id\":\"01KP1B2QHBMAPNXC1XSSWW7967\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.011864+00:00\",\"last_reported\":\"2026-04-13T08:04:58.380233+00:00\",\"last_updated\":\"2026-04-13T04:45:22.011864+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.408216+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388802+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408216+00:00\",\"context\":{\"id\":\"01KP1B2JR8YWZS21PJ06DV8A9M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.408385+00:00\",\"last_reported\":\"2026-04-12T17:20:10.388876+00:00\",\"last_updated\":\"2026-04-12T17:15:50.408385+00:00\",\"context\":{\"id\":\"01KP1B2JR8NC774PZXVA5Y4TDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.397053+00:00\",\"last_reported\":\"2026-04-13T08:05:05.445737+00:00\",\"last_updated\":\"2026-04-13T04:44:25.397053+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:24.701756+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587695+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701756+00:00\",\"context\":{\"id\":\"01KP1B3M7XYZ8YVE8VR06AXXR5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:24.701910+00:00\",\"last_reported\":\"2026-04-12T17:20:14.587766+00:00\",\"last_updated\":\"2026-04-12T17:16:24.701910+00:00\",\"context\":{\"id\":\"01KP1B3M7XS942SBY1C1PGE4X0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:", - "offset_ms": 140 - }, - { - "direction": "recv", - "type": "text", - "payload": "50:41.309057+00:00\",\"last_reported\":\"2026-04-13T08:05:01.652119+00:00\",\"last_updated\":\"2026-04-13T04:50:41.309057+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 5 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.617739+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487353+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617739+00:00\",\"context\":{\"id\":\"01KP1B3N4HBC5QH39BCETFP2HS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 5 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.617904+00:00\",\"last_reported\":\"2026-04-12T17:20:14.487426+00:00\",\"last_updated\":\"2026-04-12T17:16:25.617904+00:00\",\"context\":{\"id\":\"01KP1B3N4H6VA4XP433Y1GT6PS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_5\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 5\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.308832+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551801+00:00\",\"last_updated\":\"2026-04-13T04:50:41.308832+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.228657+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287314+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228657+00:00\",\"context\":{\"id\":\"01KP1B2JJMP03QRDVYJJNZSV2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.228828+00:00\",\"last_reported\":\"2026-04-12T17:20:10.287411+00:00\",\"last_updated\":\"2026-04-12T17:15:50.228828+00:00\",\"context\":{\"id\":\"01KP1B2JJMMVS9JHZZGJBNKN65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.395111+00:00\",\"last_reported\":\"2026-04-13T08:05:03.298196+00:00\",\"last_updated\":\"2026-04-13T04:44:25.395111+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 3 Restart\"},\"last_changed\":\"2026-04-12T17:16:28.229749+00:00\",\"last_reported\":\"2026-04-12T17:20:08.242874+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229749+00:00\",\"context\":{\"id\":\"01KP1B3QP5X5HGWXTM0V2ADYA8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_3_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 3 Identify\"},\"last_changed\":\"2026-04-12T17:16:28.229919+00:00\",\"last_reported\":\"2026-04-12T17:20:08.243048+00:00\",\"last_updated\":\"2026-04-12T17:16:28.229919+00:00\",\"context\":{\"id\":\"01KP1B3QP52VTMZ52GVXDC8SVA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_3\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 3\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.423132+00:00\",\"last_reported\":\"2026-04-13T08:05:01.344973+00:00\",\"last_updated\":\"2026-04-13T06:58:01.423132+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.dining_room_light_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Dining Room Light 2 Restart\"},\"last_changed\":\"2026-04-12T17:15:50.410890+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406013+00:00\",\"last_updated\":\"2026-04-12T17:15:50.410890+00:00\",\"context\":{\"id\":\"01KP1B2JRAAT0J1EVXJE8DSH0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.dining_room_light_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room Light 2 Identify\"},\"last_changed\":\"2026-04-12T17:15:50.411031+00:00\",\"last_reported\":\"2026-04-12T17:20:15.406092+00:00\",\"last_updated\":\"2026-04-12T17:15:50.411031+00:00\",\"context\":{\"id\":\"01KP1B2JRBRXBVAWMGWFMJ4N22\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.dining_room_light_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Dining Room Light 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:44:25.396228+00:00\",\"last_reported\":\"2026-04-13T08:05:05.444152+00:00\",\"last_updated\":\"2026-04-13T04:44:25.396228+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"button.master_shower_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Shower Restart\"},\"last_changed\":\"2026-04-12T17:16:04.320245+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380547+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320245+00:00\",\"context\":{\"id\":\"01KP1B30B0N1SA8XJSR8E6NT5B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_shower_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Shower Identify\"},\"last_changed\":\"2026-04-12T17:16:04.320419+00:00\",\"last_reported\":\"2026-04-12T17:20:14.380628+00:00\",\"last_updated\":\"2026-04-12T17:16:04.320419+00:00\",\"context\":{\"id\":\"01KP1B30B0MF9RNEHCZBFAY5FA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_shower\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Shower\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.279667+00:00\",\"last_reported\":\"2026-04-13T08:05:01.349976+00:00\",\"last_updated\":\"2026-04-13T04:50:41.279667+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.562693+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196554+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562693+00:00\",\"context\":{\"id\":\"01KP1B3J52JY0MRHV12V71GE5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.562857+00:00\",\"last_reported\":\"2026-04-12T17:20:14.196635+00:00\",\"last_updated\":\"2026-04-12T17:16:22.562857+00:00\",\"context\":{\"id\":\"01KP1B3J52FH5E2XZAB053HW0E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306816+00:00\",\"last_reported\":\"2026-04-13T08:05:01.245066+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306816+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 6 Restart\"},\"last_changed\":\"2026-04-12T17:16:25.755118+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382396+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755118+00:00\",\"context\":{\"id\":\"01KP1B3N8VV2S38TQAGE19T0QA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_6_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 6 Identify\"},\"last_changed\":\"2026-04-12T17:16:25.755268+00:00\",\"last_reported\":\"2026-04-12T17:20:14.382467+00:00\",\"last_updated\":\"2026-04-12T17:16:25.755268+00:00\",\"context\":{\"id\":\"01KP1B3N8VMWF8S94SVJ94WSCF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_6\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 6\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306634+00:00\",\"last_reported\":\"2026-04-13T08:05:01.346596+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306634+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Stairs Light 1 Restart\"},\"last_changed\":\"2026-04-12T17:15:53.581752+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563252+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581752+00:00\",\"context\":{\"id\":\"01KP1B2NVDCH4SK8S5ZNQCT3NN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.stairs_light_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Stairs Light 1 Identify\"},\"last_changed\":\"2026-04-12T17:15:53.581924+00:00\",\"last_reported\":\"2026-04-12T17:20:13.563327+00:00\",\"last_updated\":\"2026-04-12T17:15:53.581924+00:00\",\"context\":{\"id\":\"01KP1B2NVD5YKX9ZH025BPCMRD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.stairs_light_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Stairs Light 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T06:58:01.429140+00:00\",\"last_reported\":\"2026-04-13T08:05:01.551151+00:00\",\"last_updated\":\"2026-04-13T06:58:01.429140+00:00\",\"context\":{\"id\":\"01KP2T415WZQKB8SX5KCDVS2VC\",\"parent_id\":null,\"user_id\":\"f3ba209d20d24000ac21fb92e0803890\"}},{\"entity_id\":\"button.master_bath_2_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 2 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.454527+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383056+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454527+00:00\",\"context\":{\"id\":\"01KP1B3J1PH31S9KZPJ62NAP6H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 2 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.454669+00:00\",\"last_reported\":\"2026-04-12T17:20:14.383110+00:00\",\"last_updated\":\"2026-04-12T17:16:22.454669+00:00\",\"context\":{\"id\":\"01KP1B3J1P9DKDFTM7776TRB25\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_2\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 2\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.306391+00:00\",\"last_reported\":\"2026-04-13T08:05:01.351219+00:00\",\"last_updated\":\"2026-04-13T04:50:41.306391+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.living_room_1_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Living Room 1 Restart\"},\"last_changed\":\"2026-04-12T17:16:29.217345+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268230+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217345+00:00\",\"context\":{\"id\":\"01KP1B3RN1SK79DZTZQCSASWYH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.living_room_1_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room 1 Identify\"},\"last_changed\":\"2026-04-12T17:16:29.217514+00:00\",\"last_reported\":\"2026-04-12T17:20:09.268320+00:00\",\"last_updated\":\"2026-04-12T17:16:29.217514+00:00\",\"context\":{\"id\":\"01KP1B3RN1JZPP1DBDEPDPH4FZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.living_room_1\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Living Room 1\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:45:22.037001+00:00\",\"last_reported\":\"2026-04-13T08:05:02.269361+00:00\",\"last_updated\":\"2026-04-13T04:45:22.037001+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Master Bath 4 Restart\"},\"last_changed\":\"2026-04-12T17:16:22.451524+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485533+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451524+00:00\",\"context\":{\"id\":\"01KP1B3J1KSZAFPZ61QDT71E9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bath_4_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath 4 Identify\"},\"last_changed\":\"2026-04-12T17:16:22.451695+00:00\",\"last_reported\":\"2026-04-12T17:20:14.485605+00:00\",\"last_updated\":\"2026-04-12T17:16:22.451695+00:00\",\"context\":{\"id\":\"01KP1B3J1KNJ7G7JSCTPZ5QGF1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bath_4\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_pulse\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Master Bath 4\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:50:41.312640+00:00\",\"last_reported\":\"2026-04-13T08:05:01.449514+00:00\",\"last_updated\":\"2026-04-13T04:50:41.312640+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"button.mariah_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Mariah Light Restart\"},\"last_changed\":\"2026-04-12T17:16:07.602324+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598214+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602324+00:00\",\"context\":{\"id\":\"01KP1B33HJWBSCNCMRTPZGDD3A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Light Identify\"},\"last_changed\":\"2026-04-12T17:16:07.602491+00:00\",\"last_reported\":\"2026-04-12T17:20:07.598296+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602491+00:00\",\"context\":{\"id\":\"01KP1B33HJ5T0Z9XXTJ657G4WX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Mariah Light\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:32:19.598323+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633747+00:00\",\"last_updated\":\"2026-04-13T04:32:19.598323+00:00\",\"context\":{\"id\":\"01KP2HS8MEKD7VC7CXHHPA9FYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.mariah_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Mariah Light Theme\"},\"last_changed\":\"2026-04-12T17:16:07.602819+00:00\",\"last_reported\":\"2026-04-13T08:05:07.633781+00:00\",\"last_updated\":\"2026-04-12T17:16:07.602819+00:00\",\"context\":{\"id\":\"01KP1B33HJF58ZSWZM9C54WHX6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Entry Light Restart\"},\"last_changed\":\"2026-04-12T17:15:49.427189+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496220+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427189+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ7PBS75AM8ZMMK59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.entry_light_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Entry Light Identify\"},\"last_changed\":\"2026-04-12T17:15:49.427382+00:00\",\"last_reported\":\"2026-04-12T17:20:07.496309+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427382+00:00\",\"context\":{\"id\":\"01KP1B2HSKZ2C6EFM1DFHWZ24T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.entry_light\",\"state\":\"off\",\"attributes\":{\"min_color_temp_kelvin\":1500,\"max_color_temp_kelvin\":9000,\"min_mireds\":111,\"max_mireds\":666,\"effect_list\":[\"effect_colorloop\",\"effect_flame\",\"effect_pulse\",\"effect_morph\",\"effect_sky\",\"effect_stop\"],\"supported_color_modes\":[\"color_temp\",\"hs\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"color_temp_kelvin\":null,\"color_temp\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"Entry Light\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:51:17.344563+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497526+00:00\",\"last_updated\":\"2026-04-12T17:51:17.344563+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"select.entry_light_theme\",\"state\":\"unknown\",\"attributes\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"friendly_name\":\"Entry Light Theme\"},\"last_changed\":\"2026-04-12T17:15:49.427735+00:00\",\"last_reported\":\"2026-04-13T08:05:05.497619+00:00\",\"last_updated\":\"2026-04-12T17:15:49.427735+00:00\",\"context\":{\"id\":\"01KP1B2HSKQCQS3BP2Y4CNCP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.cat_bathroom_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.40.1\",\"in_progress\":false,\"latest_version\":\"1.40.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Cat Bathroom Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966314+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966314+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966314+00:00\",\"context\":{\"id\":\"01KNX1ZTB6VRDBQTD62Q87SNMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.stairs_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Stairs Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.966845+00:00\",\"last_reported\":\"2026-04-11T01:20:04.966845+00:00\",\"last_updated\":\"2026-04-11T01:20:04.966845+00:00\",\"context\":{\"id\":\"01KNX1ZTB65P0H8DH224JEK9A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Right Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.967683+00:00\",\"last_reported\":\"2026-04-11T01:20:04.967683+00:00\",\"last_updated\":\"2026-04-11T01:20:04.967683+00:00\",\"context\":{\"id\":\"01KNX1ZTB7K92WHJPYD6JCDZBZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_lamp_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Lamp 1 office_lamp_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.147559+00:00\",\"last_reported\":\"2026-04-13T04:14:23.147559+00:00\",\"last_updated\":\"2026-04-13T04:14:23.147559+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Left Upstairs Hallway Lights Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.968911+00:00\",\"last_reported\":\"2026-04-11T01:20:04.968911+00:00\",\"last_updated\":\"2026-04-11T01:20:04.968911+00:00\",\"context\":{\"id\":\"01KNX1ZTB8PYJYSN2DRVS6J9E8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969374+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969374+00:00\",\"context\":{\"id\":\"01KNX1ZTB9ZPH512Z5JK3ET8V5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.32.1\",\"in_progress\":false,\"latest_version\":\"32.32.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.969805+00:00\",\"last_reported\":\"2026-04-11T01:20:04.969805+00:00\",\"last_updated\":\"2026-04-11T01:20:04.969805+00:00\",\"context\":{\"id\":\"01KNX1ZTB9KK6VAQ1A1YAZ7Q8P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.large_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Large Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.970259+00:00\",\"last_reported\":\"2026-04-11T01:20:04.970259+00:00\",\"last_updated\":\"2026-04-11T01:20:04.970259+00:00\",\"context\":{\"id\":\"01KNX1ZTBAQNNNM1875CCGTBEC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.small_garage_door_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.0.0\",\"in_progress\":false,\"latest_version\":\"1.0.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Small Garage Door Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974163+00:00\",\"context\":{\"id\":\"01KNX1ZTBEZSZWQ77K4ZTJMWC8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.90.2\",\"in_progress\":false,\"latest_version\":\"1.90.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Master Bedroom Ceiling Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.974839+00:00\",\"last_reported\":\"2026-04-11T01:20:04.974839+00:00\",\"last_updated\":\"2026-04-11T01:20:04.974839+00:00\",\"context\":{\"id\":\"01KNX1ZTBEDBA712KGTM3HPR06\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"10.40.2\",\"in_progress\":false,\"latest_version\":\"10.40.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Kitchen Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.975374+00:00\",\"last_", - "offset_ms": 142 - }, - { - "direction": "recv", - "type": "text", - "payload": "reported\":\"2026-04-11T01:20:04.975374+00:00\",\"last_updated\":\"2026-04-11T01:20:04.975374+00:00\",\"context\":{\"id\":\"01KNX1ZTBF2RP5Q95ARB7KWQYG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_light_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3.1\",\"in_progress\":false,\"latest_version\":\"1.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Light Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:04.979163+00:00\",\"last_reported\":\"2026-04-11T01:20:04.979163+00:00\",\"last_updated\":\"2026-04-11T01:20:04.979163+00:00\",\"context\":{\"id\":\"01KNX1ZTBKVWQ6MY3ZDXC5TKMM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Motion Sensor 2 Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.982731+00:00\",\"last_reported\":\"2026-04-11T01:20:04.982731+00:00\",\"last_updated\":\"2026-04-11T01:20:04.982731+00:00\",\"context\":{\"id\":\"01KNX1ZTBPGSV2H1NE5PKKVDDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Motion Sensor 2 Motion detection\"},\"last_changed\":\"2026-04-11T01:20:04.983031+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983031+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983031+00:00\",\"context\":{\"id\":\"01KNX1ZTBQT1HJXRH8HVYRJ8XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"state\":\"45.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Motion Sensor 2 Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.983767+00:00\",\"last_reported\":\"2026-04-11T01:20:04.983767+00:00\",\"last_updated\":\"2026-04-11T01:20:04.983767+00:00\",\"context\":{\"id\":\"01KNX1ZTBQB17VJVQM1FY5RXWY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"state\":\"on\",\"attributes\":{\"device_class\":\"door\",\"friendly_name\":\"Front Door Lock Current status of the door\"},\"last_changed\":\"2026-04-11T01:20:04.984031+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709617+00:00\",\"last_updated\":\"2026-04-11T01:20:04.984031+00:00\",\"context\":{\"id\":\"01KNX1ZTBRYSNF3KZ1CJ004DP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.front_door_lock\",\"state\":\"locked\",\"attributes\":{\"friendly_name\":\"Front Door Lock \",\"supported_features\":0},\"last_changed\":\"2026-04-12T05:30:04.487401+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709227+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487401+00:00\",\"context\":{\"id\":\"01KP02P500RG5PRMJ2Q5PDFNMQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"state\":\"Secured\",\"attributes\":{\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Front Door Lock Current lock mode\"},\"last_changed\":\"2026-04-12T05:30:04.487513+00:00\",\"last_reported\":\"2026-04-12T05:30:07.709303+00:00\",\"last_updated\":\"2026-04-12T05:30:04.487513+00:00\",\"context\":{\"id\":\"01KP02P9A70V2N4XP69865KY80\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Lock state\"},\"last_changed\":\"2026-04-11T01:20:04.987310+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987310+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987310+00:00\",\"context\":{\"id\":\"01KNX1ZTBVY1FH0AZF4PJ5V6SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock Lock jammed\"},\"last_changed\":\"2026-04-11T01:20:04.987566+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987566+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987566+00:00\",\"context\":{\"id\":\"01KNX1ZTBV9BJTWEDX22WA7ZXR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Access Control Keypad state\"},\"last_changed\":\"2026-04-11T01:20:04.987875+00:00\",\"last_reported\":\"2026-04-11T01:20:04.987875+00:00\",\"last_updated\":\"2026-04-11T01:20:04.987875+00:00\",\"context\":{\"id\":\"01KNX1ZTBVVYMVPCP01ND7AEHH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Front Door Lock Keypad temporary disabled\"},\"last_changed\":\"2026-04-11T01:20:04.988107+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988107+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988107+00:00\",\"context\":{\"id\":\"01KNX1ZTBWJPDX8RT6RFCHTDTN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Home Security Sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.988409+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988409+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988409+00:00\",\"context\":{\"id\":\"01KNX1ZTBW88ABMM8WP6J2TY1Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"Front Door Lock Intrusion\"},\"last_changed\":\"2026-04-11T01:20:04.988647+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988647+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988647+00:00\",\"context\":{\"id\":\"01KNX1ZTBWM088FCS9A5C9Y5ZB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:04.988950+00:00\",\"last_reported\":\"2026-04-11T01:20:04.988950+00:00\",\"last_updated\":\"2026-04-11T01:20:04.988950+00:00\",\"context\":{\"id\":\"01KNX1ZTBW8Z7BMTBE0TVPW0MH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:04.989232+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989232+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989232+00:00\",\"context\":{\"id\":\"01KNX1ZTBXY5YPYTTYHDDFQP4D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:04.989372+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989372+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989372+00:00\",\"context\":{\"id\":\"01KNX1ZTBXH08NFM60NYRZ94M2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Front Door Lock Idle System Hardware status\"},\"last_changed\":\"2026-04-11T01:20:04.989666+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989666+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989666+00:00\",\"context\":{\"id\":\"01KNX1ZTBX55FT1ZWCH856MBRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"state\":\"off\",\"attributes\":{\"device_class\":\"problem\",\"friendly_name\":\"Front Door Lock System hardware failure\"},\"last_changed\":\"2026-04-11T01:20:04.989909+00:00\",\"last_reported\":\"2026-04-11T01:20:04.989909+00:00\",\"last_updated\":\"2026-04-11T01:20:04.989909+00:00\",\"context\":{\"id\":\"01KNX1ZTBXFS16K86TVJSX4DGT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_battery_level\",\"state\":\"51.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Front Door Lock Battery level\"},\"last_changed\":\"2026-04-11T01:20:04.990589+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990589+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990589+00:00\",\"context\":{\"id\":\"01KNX1ZTBYT9C14JZSMKK246K3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.front_door_lock_indicator_value\",\"state\":\"0.0\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Front Door Lock Indicator value\"},\"last_changed\":\"2026-04-11T01:20:04.990847+00:00\",\"last_reported\":\"2026-04-11T01:20:04.990847+00:00\",\"last_updated\":\"2026-04-11T01:20:04.990847+00:00\",\"context\":{\"id\":\"01KNX1ZTBY97ZVAAYGG4NFEBCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Basic\"},\"last_changed\":\"2026-04-12T17:22:23.413425+00:00\",\"last_reported\":\"2026-04-12T17:22:23.413425+00:00\",\"last_updated\":\"2026-04-12T17:22:23.413425+00:00\",\"context\":{\"id\":\"01KP1BEJHN1SC6AG1B2RN76M2W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"state\":\"66.01\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Upstairs Hallway Air temperature\"},\"last_changed\":\"2026-04-12T15:49:45.042899+00:00\",\"last_reported\":\"2026-04-12T15:49:45.042899+00:00\",\"last_updated\":\"2026-04-12T15:49:45.042899+00:00\",\"context\":{\"id\":\"01KP164YEJKWDF5XGY1F2053GN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"state\":\"1.39\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Upstairs Hallway Illuminance\"},\"last_changed\":\"2026-04-12T15:49:45.151801+00:00\",\"last_reported\":\"2026-04-12T15:49:45.151801+00:00\",\"last_updated\":\"2026-04-12T15:49:45.151801+00:00\",\"context\":{\"id\":\"01KP164YHZX5D433Y7PR6CWZH8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"state\":\"54.79\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Upstairs Hallway Humidity\"},\"last_changed\":\"2026-04-12T15:49:45.096872+00:00\",\"last_reported\":\"2026-04-12T15:49:45.096872+00:00\",\"last_updated\":\"2026-04-12T15:49:45.096872+00:00\",\"context\":{\"id\":\"01KP164YG8VW6T96RBEVTE3KTS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:04.993302+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993302+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993302+00:00\",\"context\":{\"id\":\"01KNX1ZTC1V25BMBA63KHCT459\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Upstairs Hallway Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:04.993536+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993536+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993536+00:00\",\"context\":{\"id\":\"01KNX1ZTC1EKFX04PGSQAHW9GM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Upstairs Hallway Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:04.993817+00:00\",\"last_reported\":\"2026-04-11T01:20:04.993817+00:00\",\"last_updated\":\"2026-04-11T01:20:04.993817+00:00\",\"context\":{\"id\":\"01KNX1ZTC1MKG2NG04SW408G3E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Upstairs Hallway Motion detection\"},\"last_changed\":\"2026-04-12T17:22:23.469566+00:00\",\"last_reported\":\"2026-04-12T17:22:23.469566+00:00\",\"last_updated\":\"2026-04-12T17:22:23.469566+00:00\",\"context\":{\"id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Upstairs Hallway Battery level\"},\"last_changed\":\"2026-04-12T11:27:28.290691+00:00\",\"last_reported\":\"2026-04-12T11:27:28.290691+00:00\",\"last_updated\":\"2026-04-12T11:27:28.290691+00:00\",\"context\":{\"id\":\"01KP0Q4PH22T00W4ER0QKC1837\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_controller\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Controller \"},\"last_changed\":\"2026-04-11T01:20:04.995247+00:00\",\"last_reported\":\"2026-04-11T01:20:04.995247+00:00\",\"last_updated\":\"2026-04-11T01:20:04.995247+00:00\",\"context\":{\"id\":\"01KNX1ZTC31ZE2JPW6S69JW1JD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.large_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage-variant\",\"friendly_name\":\"Large Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T22:42:13.888742+00:00\",\"last_reported\":\"2026-04-11T22:42:13.891153+00:00\",\"last_updated\":\"2026-04-11T22:42:13.888742+00:00\",\"context\":{\"id\":\"01KNZBBG80N7DB2KFR5KPPQ69B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.small_garage_door_switch\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"icon\":\"mdi:garage\",\"friendly_name\":\"Small Garage Door Switch\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.998763+00:00\",\"last_reported\":\"2026-04-11T01:20:04.998763+00:00\",\"last_updated\":\"2026-04-11T01:20:04.998763+00:00\",\"context\":{\"id\":\"01KNX1ZTC674FKB3SPZABE4EDJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.garage_controller_basic_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"brightness\"],\"color_mode\":null,\"brightness\":null,\"friendly_name\":\"Garage Controller Basic (3)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:04.999032+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999032+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999032+00:00\",\"context\":{\"id\":\"01KNX1ZTC79HR7BXJYVPV06MZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"state\":\"68.7\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Garage Multi Sensor Air temperature\"},\"last_changed\":\"2026-04-11T01:20:04.999321+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999321+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999321+00:00\",\"context\":{\"id\":\"01KNX1ZTC770XYZ6JJ741425ZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Garage Multi Sensor Humidity\"},\"last_changed\":\"2026-04-11T01:20:04.999593+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999593+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999593+00:00\",\"context\":{\"id\":\"01KNX1ZTC7A18439YYAQT9MBZ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"state\":\"71.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Garage Multi Sensor Illuminance\"},\"last_changed\":\"2026-04-11T01:20:04.999856+00:00\",\"last_reported\":\"2026-04-11T01:20:04.999856+00:00\",\"last_updated\":\"2026-04-11T01:20:04.999856+00:00\",\"context\":{\"id\":\"01KNX1ZTC79YD40KKRVZNQGCV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.003218+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003218+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003218+00:00\",\"context\":{\"id\":\"01KNX1ZTCB4DH2T2YQ1Z8FEYJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Garage Multi Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.003355+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003355+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003355+00:00\",\"context\":{\"id\":\"01KNX1ZTCBB9X92W3TFKR8164N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.003656+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003656+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003656+00:00\",\"context\":{\"id\":\"01KNX1ZTCB9K5BXT9JYVKS8QCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Garage Multi Sensor Motion detection\"},\"last_changed\":\"2026-04-11T01:20:05.003885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.003885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.003885+00:00\",\"context\":{\"id\":\"01KNX1ZTCBDFNXVSMXF8MD9TB3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Idle Power Management Battery maintenance status\"},\"last_changed\":\"2026-04-11T01:20:05.004170+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004170+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004170+00:00\",\"context\":{\"id\":\"01KNX1ZTCCSMXX4AREPVZWHJFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery soon\"},\"last_changed\":\"2026-04-11T01:20:05.004405+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004405+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004405+00:00\",\"context\":{\"id\":\"01KNX1ZTCCE4QN9XXJDRE5BTJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Replace battery now\"},\"last_changed\":\"2026-04-11T01:20:05.004526+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004526+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004526+00:00\",\"context\":{\"id\":\"01KNX1ZTCCX15VTSRG8KKTX3MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"state\":\"30.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Garage Multi Sensor Battery level\"},\"last_changed\":\"2026-04-11T01:20:05.004841+00:00\",\"last_reported\":\"2026-04-11T01:20:05.004841+00:00\",\"last_updated\":\"2026-04-11T01:20:05.004841+00:00\",\"context\":{\"id\":\"01KNX1ZTCCQRYRM6CK768JK62Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Multi Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.005068+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005068+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005068+00:00\",\"context\":{\"id\":\"01KNX1ZTCD6ZZTXV62KRTVKYJR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_multi_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Multi Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.005333+00:00\",\"last_reported\":\"2026-04-11T01:20:05.005333+00:00\",\"last_updated\":\"2026-04-11T01:20:05.005333+00:00\",\"context\":{\"id\":\"01KNX1ZTCDW0P93G4XY38HP8KY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_basic\",\"state\":\"0.0\",\"attributes\":{\"friendly_name\":\"Jenni Office Basic\"},\"last_changed\":\"2026-04-12T17:51:33.020385+00:00\",\"last_reported\":\"2026-04-12T17:51:33.020385+00:00\",\"last_updated\":\"2026-04-12T17:51:33.020385+00:00\",\"context\":{\"id\":\"01KP1D3Z4WGYACBA6FASAZR8E3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_air_temperature\",\"state\":\"65.14\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Jenni Office Air temperature\"},\"last_changed\":\"2026-04-12T16:17:47.866381+00:00\",\"last_reported\":\"2026-04-12T16:17:47.866381+00:00\",\"last_updated\":\"2026-04-12T16:17:47.866381+00:00\",\"context\":{\"id\":\"01KP17R9TTXBG5HTFGM1C9FWTV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_illuminance\",\"state\":\"79.4\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"friendly_name\":\"Jenni Office Illuminance\"},\"last_changed\":\"2026-04-12T16:48:46.298787+00:00\",\"last_reported\":\"2026-04-12T16:48:46.298787+00:00\",\"last_updated\":\"2026-04-12T16:48:46.298787+00:00\",\"context\":{\"id\":\"01KP19H0PTFBZCK3FM69V4FD07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_humidity\",\"state\":\"56.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Jenni Office Humidity\"},\"last_changed\":\"2026-04-12T16:17:48.456207+00:00\",\"last_reported\":\"2026-04-12T16:17:48.456207+00:00\",\"last_updated\":\"2026-04-12T16:17:48.456207+00:00\",\"context\":{\"id\":\"01KP17RAD8W7VGY38E3FF0YY1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.007", - "offset_ms": 144 - }, - { - "direction": "recv", - "type": "text", - "payload": "871+00:00\",\"last_reported\":\"2026-04-11T01:20:05.007871+00:00\",\"last_updated\":\"2026-04-11T01:20:05.007871+00:00\",\"context\":{\"id\":\"01KNX1ZTCF17HH9644K22HE2N4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Jenni Office Tampering, product cover removed\"},\"last_changed\":\"2026-04-11T01:20:05.008077+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008077+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008077+00:00\",\"context\":{\"id\":\"01KNX1ZTCGDB093BN1TRHD6BD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Jenni Office Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.008343+00:00\",\"last_reported\":\"2026-04-11T01:20:05.008343+00:00\",\"last_updated\":\"2026-04-11T01:20:05.008343+00:00\",\"context\":{\"id\":\"01KNX1ZTCGZAK9ACN9K53TARD0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Jenni Office Motion detection\"},\"last_changed\":\"2026-04-12T17:51:33.615736+00:00\",\"last_reported\":\"2026-04-12T17:51:33.615736+00:00\",\"last_updated\":\"2026-04-12T17:51:33.615736+00:00\",\"context\":{\"id\":\"01KP1D3ZQFPW3QWA8XV8TB217Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jenni_office_battery_level\",\"state\":\"100.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Jenni Office Battery level\"},\"last_changed\":\"2026-04-12T05:38:45.091476+00:00\",\"last_reported\":\"2026-04-12T05:38:45.091476+00:00\",\"last_updated\":\"2026-04-12T05:38:45.091476+00:00\",\"context\":{\"id\":\"01KP0365Q3F5V0PT2Y4Q5NT58Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Cover status\"},\"last_changed\":\"2026-04-11T01:20:05.010805+00:00\",\"last_reported\":\"2026-04-11T01:20:05.010805+00:00\",\"last_updated\":\"2026-04-11T01:20:05.010805+00:00\",\"context\":{\"id\":\"01KNX1ZTCJREXYXVEV028QZ0K2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"state\":\"off\",\"attributes\":{\"device_class\":\"tamper\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Tampering, product cover removed\"},\"last_changed\":\"2026-04-12T05:38:53.404392+00:00\",\"last_reported\":\"2026-04-12T05:38:53.404392+00:00\",\"last_updated\":\"2026-04-12T05:38:53.404392+00:00\",\"context\":{\"id\":\"01KP036DTWE0F70YDQFMN7K37V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Idle Home Security Motion sensor status\"},\"last_changed\":\"2026-04-11T01:20:05.011287+00:00\",\"last_reported\":\"2026-04-11T01:20:05.011287+00:00\",\"last_updated\":\"2026-04-11T01:20:05.011287+00:00\",\"context\":{\"id\":\"01KNX1ZTCKDNFH73KK6PEEANVS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Motion detection\"},\"last_changed\":\"2026-04-12T17:50:47.032422+00:00\",\"last_reported\":\"2026-04-12T17:50:47.032422+00:00\",\"last_updated\":\"2026-04-12T17:50:47.032422+00:00\",\"context\":{\"id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains disconnected\"},\"last_changed\":\"2026-04-11T01:20:05.012178+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012178+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012178+00:00\",\"context\":{\"id\":\"01KNX1ZTCM3VS0P2NFDV9EFRW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"plug\",\"friendly_name\":\"Downstairs Hallway Motion Sensor AC mains re-connected\"},\"last_changed\":\"2026-04-11T01:20:05.012301+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012301+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012301+00:00\",\"context\":{\"id\":\"01KNX1ZTCMC29PDZGWJ4G4K7P9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"state\":\"84.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Battery level\"},\"last_changed\":\"2026-04-12T07:10:36.545481+00:00\",\"last_reported\":\"2026-04-12T07:10:36.545481+00:00\",\"last_updated\":\"2026-04-12T07:10:36.545481+00:00\",\"context\":{\"id\":\"01KP08EC01FXEK4T1T84SD431G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.012834+00:00\",\"last_reported\":\"2026-04-11T01:20:05.012834+00:00\",\"last_updated\":\"2026-04-11T01:20:05.012834+00:00\",\"context\":{\"id\":\"01KNX1ZTCMGYS70418R48JRYDT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Downstairs Hallway Motion Sensor Identify\"},\"last_changed\":\"2026-04-11T01:20:05.013052+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013052+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013052+00:00\",\"context\":{\"id\":\"01KNX1ZTCNGC8EBE1Z9TYJ9F67\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.garage_light_switch\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Garage Light Switch \"},\"last_changed\":\"2026-04-12T17:44:27.576847+00:00\",\"last_reported\":\"2026-04-12T17:44:27.576847+00:00\",\"last_updated\":\"2026-04-12T17:44:27.576847+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_001\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 001\"},\"last_changed\":\"2026-04-11T01:20:05.013793+00:00\",\"last_reported\":\"2026-04-11T01:20:05.013793+00:00\",\"last_updated\":\"2026-04-11T01:20:05.013793+00:00\",\"context\":{\"id\":\"01KNX1ZTCNP41JQJZXGDYNWRKH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.garage_light_switch_scene_002\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"KeyHeldDown\",\"KeyPressed\",\"KeyPressed2x\",\"KeyPressed3x\",\"KeyPressed4x\",\"KeyPressed5x\",\"KeyReleased\"],\"event_type\":null,\"friendly_name\":\"Garage Light Switch Scene 002\"},\"last_changed\":\"2026-04-11T01:20:05.014024+00:00\",\"last_reported\":\"2026-04-11T01:20:05.014024+00:00\",\"last_updated\":\"2026-04-11T01:20:05.014024+00:00\",\"context\":{\"id\":\"01KNX1ZTCPSV63AT9DQPYFVE4V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.garage_light_switch_indicator_value\",\"state\":\"unknown\",\"attributes\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Garage Light Switch Indicator value\"},\"last_changed\":\"2026-04-11T01:20:05.016246+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016246+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016246+00:00\",\"context\":{\"id\":\"01KNX1ZTCR4QTKB7J1SXZHY131\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.garage_light_switch_identify\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Garage Light Switch Identify\"},\"last_changed\":\"2026-04-11T01:20:05.016435+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016435+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016435+00:00\",\"context\":{\"id\":\"01KNX1ZTCRCHK490MZ3SH34YMC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip \"},\"last_changed\":\"2026-04-11T01:20:05.016635+00:00\",\"last_reported\":\"2026-04-11T01:20:05.016635+00:00\",\"last_updated\":\"2026-04-11T01:20:05.016635+00:00\",\"context\":{\"id\":\"01KNX1ZTCRW5N08JQ1BF2DS4CP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W]\"},\"last_changed\":\"2026-04-12T17:53:01.263849+00:00\",\"last_reported\":\"2026-04-12T17:53:01.263849+00:00\",\"last_updated\":\"2026-04-12T17:53:01.263849+00:00\",\"context\":{\"id\":\"01KP1D6NAF2G1M6VAY4A8QGECV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"state\":\"14.94\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh]\"},\"last_changed\":\"2026-04-12T17:53:17.264612+00:00\",\"last_reported\":\"2026-04-12T17:53:17.264612+00:00\",\"last_updated\":\"2026-04-12T17:53:17.264612+00:00\",\"context\":{\"id\":\"01KP1D74YG4PT4P9XMY5BZ3E6B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V]\"},\"last_changed\":\"2026-04-11T01:20:05.017606+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017606+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017606+00:00\",\"context\":{\"id\":\"01KNX1ZTCS05D936S4KN2M7RK2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A]\"},\"last_changed\":\"2026-04-11T01:20:05.017885+00:00\",\"last_reported\":\"2026-04-11T01:20:05.017885+00:00\",\"last_updated\":\"2026-04-11T01:20:05.017885+00:00\",\"context\":{\"id\":\"01KNX1ZTCSFBNJZVV9CRBBBWJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values\"},\"last_changed\":\"2026-04-11T01:20:05.018090+00:00\",\"last_reported\":\"2026-04-11T01:20:05.018090+00:00\",\"last_updated\":\"2026-04-11T01:20:05.018090+00:00\",\"context\":{\"id\":\"01KNX1ZTCTYDXGMTV87CH176JH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Idle Power Management Over-load status\"},\"last_changed\":\"2026-04-11T01:20:05.022226+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022226+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022226+00:00\",\"context\":{\"id\":\"01KNX1ZTCYXX1D96M2CJMMTP2C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"safety\",\"friendly_name\":\"fish tank power strip Over-load detected\"},\"last_changed\":\"2026-04-11T01:20:05.022446+00:00\",\"last_reported\":\"2026-04-11T01:20:05.022446+00:00\",\"last_updated\":\"2026-04-11T01:20:05.022446+00:00\",\"context\":{\"id\":\"01KNX1ZTCY3F5FZF4H69135N9S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_1\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023046+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023046+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023046+00:00\",\"context\":{\"id\":\"01KNX1ZTCZ8QX3FT9K83FXFHWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"state\":\"1.72\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (1)\"},\"last_changed\":\"2026-04-12T17:53:17.168218+00:00\",\"last_reported\":\"2026-04-12T17:53:17.168218+00:00\",\"last_updated\":\"2026-04-12T17:53:17.168218+00:00\",\"context\":{\"id\":\"01KP1D74VG9PB9VKZBJGTGJRGC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"state\":\"4.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (1)\"},\"last_changed\":\"2026-04-12T17:53:00.165841+00:00\",\"last_reported\":\"2026-04-12T17:53:00.165841+00:00\",\"last_updated\":\"2026-04-12T17:53:00.165841+00:00\",\"context\":{\"id\":\"01KP1D6M85EG0JF3VH6F6PBMGB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.023867+00:00\",\"last_reported\":\"2026-04-11T01:20:05.023867+00:00\",\"last_updated\":\"2026-04-11T01:20:05.023867+00:00\",\"context\":{\"id\":\"01KNX1ZTCZFSKWZ69MA1WN2BZZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024134+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024134+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024134+00:00\",\"context\":{\"id\":\"01KNX1ZTD058MFA8DGTJ0HN7CS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (1)\"},\"last_changed\":\"2026-04-11T01:20:05.024342+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024342+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024342+00:00\",\"context\":{\"id\":\"01KNX1ZTD0EWRZZZH3XSF02S5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_2\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (2)\"},\"last_changed\":\"2026-04-11T01:20:05.024549+00:00\",\"last_reported\":\"2026-04-11T01:20:05.024549+00:00\",\"last_updated\":\"2026-04-11T01:20:05.024549+00:00\",\"context\":{\"id\":\"01KNX1ZTD0DFH8TYW4TVY8AP9Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"state\":\"12.41\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (2)\"},\"last_changed\":\"2026-04-12T17:48:23.163774+00:00\",\"last_reported\":\"2026-04-12T17:48:23.163774+00:00\",\"last_updated\":\"2026-04-12T17:48:23.163774+00:00\",\"context\":{\"id\":\"01KP1CY5QVQT11PBVJDYPGFQWW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (2)\"},\"last_changed\":\"2026-04-12T17:51:26.165876+00:00\",\"last_reported\":\"2026-04-12T17:51:26.165876+00:00\",\"last_updated\":\"2026-04-12T17:51:26.165876+00:00\",\"context\":{\"id\":\"01KP1D3RENSYWY11ZXJQB2ABX4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025424+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025424+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025424+00:00\",\"context\":{\"id\":\"01KNX1ZTD1TESYKAZ41ZM42PFC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025692+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025692+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025692+00:00\",\"context\":{\"id\":\"01KNX1ZTD1W1D41AH6P358F2MS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (2)\"},\"last_changed\":\"2026-04-11T01:20:05.025898+00:00\",\"last_reported\":\"2026-04-11T01:20:05.025898+00:00\",\"last_updated\":\"2026-04-11T01:20:05.025898+00:00\",\"context\":{\"id\":\"01KNX1ZTD1FYKNTZ88D7QCYZZP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_3\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026097+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026097+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026097+00:00\",\"context\":{\"id\":\"01KNX1ZTD2AG4GAEFCTA3F5YND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (3)\"},\"last_changed\":\"2026-04-12T17:53:01.166214+00:00\",\"last_reported\":\"2026-04-12T17:53:01.166214+00:00\",\"last_updated\":\"2026-04-12T17:53:01.166214+00:00\",\"context\":{\"id\":\"01KP1D6N7EXT2495ZK4Q7EN9SD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"state\":\"0.26\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (3)\"},\"last_changed\":\"2026-04-12T17:48:44.163602+00:00\",\"last_reported\":\"2026-04-12T17:48:44.163602+00:00\",\"last_updated\":\"2026-04-12T17:48:44.163602+00:00\",\"context\":{\"id\":\"01KP1CYT83K8X6WJSP9R4C888H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.026904+00:00\",\"last_reported\":\"2026-04-11T01:20:05.026904+00:00\",\"last_updated\":\"2026-04-11T01:20:05.026904+00:00\",\"context\":{\"id\":\"01KNX1ZTD29W6YQKFV16XQX068\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027238+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027238+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027238+00:00\",\"context\":{\"id\":\"01KNX1ZTD30DSDKY7CQE41DG4M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (3)\"},\"last_changed\":\"2026-04-11T01:20:05.027452+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027452+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027452+00:00\",\"context\":{\"id\":\"01KNX1ZTD34D00B50GJ3EN6C13\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_4\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (4)\"},\"last_changed\":\"2026-04-11T01:20:05.027652+00:00\",\"last_reported\":\"2026-04-11T01:20:05.027652+00:00\",\"last_updated\":\"2026-04-11T01:20:05.027652+00:00\",\"context\":{\"id\":\"01KNX1ZTD3AV871VK6JS3JHMQB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (4)\"},\"last_changed\":\"2026-04-12T17:51:03.251730+00:00\",\"last_reported\":\"2026-04-12T17:51:03.251730+00:00\",\"last_updated\":\"2026-04-12T17:51:03.251730+00:00\",\"context\":{\"id\":\"01KP1D322KT5P4VWK81WH3C9D5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"state\":\"0.4\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (4)\"},\"last_changed\":\"2026-04-12T17:48:49.163927+00:00\",\"last_reported\":\"2026-04-12T17:48:49.163927+00:00\",\"last_updated\":\"2026-04-12T17:48:49.163927+00:00\",\"context\":{\"id\":\"01KP1CYZ4BH5", - "offset_ms": 146 - }, - { - "direction": "recv", - "type": "text", - "payload": "75MJ5Q7Z0GAWG3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028636+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028636+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028636+00:00\",\"context\":{\"id\":\"01KNX1ZTD4D8TBNQ328EGR4E0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (4)\"},\"last_changed\":\"2026-04-11T01:20:05.028948+00:00\",\"last_reported\":\"2026-04-11T01:20:05.028948+00:00\",\"last_updated\":\"2026-04-11T01:20:05.028948+00:00\",\"context\":{\"id\":\"01KNX1ZTD4Q4F7YSZTGRT8VDNS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (4)\"},\"last_changed\":\"2026-04-11T01:20:05.029251+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029251+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029251+00:00\",\"context\":{\"id\":\"01KNX1ZTD5MHYCAQJJ0PVF1N8S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_5\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (5)\"},\"last_changed\":\"2026-04-11T01:20:05.029449+00:00\",\"last_reported\":\"2026-04-11T01:20:05.029449+00:00\",\"last_updated\":\"2026-04-11T01:20:05.029449+00:00\",\"context\":{\"id\":\"01KNX1ZTD52EZGPTRTNADHJQ5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"state\":\"0.15\",\"attributes\":{\"state_class\":\"total_increasing\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"fish tank power strip Electric Consumption [kWh] (5)\"},\"last_changed\":\"2026-04-12T17:49:01.163841+00:00\",\"last_reported\":\"2026-04-12T17:49:01.163841+00:00\",\"last_updated\":\"2026-04-12T17:49:01.163841+00:00\",\"context\":{\"id\":\"01KP1CZAVB92FY47ZG7DHHFYVJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"fish tank power strip Electric Consumption [W] (5)\"},\"last_changed\":\"2026-04-12T17:51:13.165740+00:00\",\"last_reported\":\"2026-04-12T17:51:13.165740+00:00\",\"last_updated\":\"2026-04-12T17:51:13.165740+00:00\",\"context\":{\"id\":\"01KP1D3BRDM1CS749EXHWCKRKN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"fish tank power strip Electric Consumption [V] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030252+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030252+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030252+00:00\",\"context\":{\"id\":\"01KNX1ZTD6WNXDA4R9C74T45ZF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"meter_type\":1,\"meter_type_name\":\"ELECTRIC\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"fish tank power strip Electric Consumption [A] (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030519+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030519+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030519+00:00\",\"context\":{\"id\":\"01KNX1ZTD60Z1YR665614D7GS6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (5)\"},\"last_changed\":\"2026-04-11T01:20:05.030726+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030726+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030726+00:00\",\"context\":{\"id\":\"01KNX1ZTD6JE28ET1ERE6DEBNG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_6\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"fish tank power strip (6)\"},\"last_changed\":\"2026-04-11T01:20:05.030925+00:00\",\"last_reported\":\"2026-04-11T01:20:05.030925+00:00\",\"last_updated\":\"2026-04-11T01:20:05.030925+00:00\",\"context\":{\"id\":\"01KNX1ZTD6N0ZVP4JZFR7FM85E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (6)\"},\"last_changed\":\"2026-04-11T01:20:05.031128+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031128+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031128+00:00\",\"context\":{\"id\":\"01KNX1ZTD77F5Z5N4RCXRJN521\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.fish_tank_power_strip_7\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"fish tank power strip (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031326+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031326+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031326+00:00\",\"context\":{\"id\":\"01KNX1ZTD73A8VC1JMTKRB3BRG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"fish tank power strip Reset accumulated values (7)\"},\"last_changed\":\"2026-04-11T01:20:05.031528+00:00\",\"last_reported\":\"2026-04-11T01:20:05.031528+00:00\",\"last_updated\":\"2026-04-11T01:20:05.031528+00:00\",\"context\":{\"id\":\"01KNX1ZTD7CMA0F87PK3M0FYBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_2\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 2 office_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.180404+00:00\",\"last_reported\":\"2026-04-13T04:14:23.180404+00:00\",\"last_updated\":\"2026-04-13T04:14:23.180404+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.office_light_1\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 1 office_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.173576+00:00\",\"last_reported\":\"2026-04-13T04:14:23.173576+00:00\",\"last_updated\":\"2026-04-13T04:14:23.173576+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_1\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 1 front_porch_1\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.339986+00:00\",\"last_reported\":\"2026-04-13T05:30:01.339986+00:00\",\"last_updated\":\"2026-04-13T05:30:01.339986+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_porch_2\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 2 front_porch_2\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:01.547766+00:00\",\"last_reported\":\"2026-04-13T05:30:01.547766+00:00\",\"last_updated\":\"2026-04-13T05:30:01.547766+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_3\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 3 office_light_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.143228+00:00\",\"last_reported\":\"2026-04-13T04:14:23.143228+00:00\",\"last_updated\":\"2026-04-13T04:14:23.143228+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_4\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"front_porch_4\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034614+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034614+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034614+00:00\",\"context\":{\"id\":\"01KNX1ZTDAEEXA1XH13T3WPR51\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_1\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 1 mariah_light_1\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.034960+00:00\",\"last_reported\":\"2026-04-11T01:20:05.034960+00:00\",\"last_updated\":\"2026-04-11T01:20:05.034960+00:00\",\"context\":{\"id\":\"01KNX1ZTDAM79RM0WACQKXT56Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.office_light_4\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":204,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"rgbww_color\":[255,0,0,0,0],\"friendly_name\":\"Office Light 4 office_light_4\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:14:23.150242+00:00\",\"last_reported\":\"2026-04-13T04:14:23.150242+00:00\",\"last_updated\":\"2026-04-13T04:14:23.150242+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"light.front_porch_3\",\"state\":\"off\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"rgbww_color\":null,\"friendly_name\":\"Front Porch 3 front_porch_3\",\"supported_features\":40},\"last_changed\":\"2026-04-13T05:30:07.685554+00:00\",\"last_reported\":\"2026-04-13T05:30:07.685554+00:00\",\"last_updated\":\"2026-04-13T05:30:07.685554+00:00\",\"context\":{\"id\":\"01KP2N33E5R3Y6DEZ0AX0XKJFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.leks_lamp\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"color_mode\":\"rgbww\",\"brightness\":255,\"hs_color\":[26.939,19.216],\"rgb_color\":[255,228,206],\"xy_color\":[0.371,0.349],\"rgbww_color\":[255,255,255,255,255],\"friendly_name\":\"Leks Lamp leks_lamp\",\"supported_features\":40},\"last_changed\":\"2026-04-13T04:15:49.750634+00:00\",\"last_reported\":\"2026-04-13T04:15:49.750634+00:00\",\"last_updated\":\"2026-04-13T04:15:49.750634+00:00\",\"context\":{\"id\":\"01KP2GV1ZPDVCBRY8CPYP11ZNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.mariah_light_2\",\"state\":\"unavailable\",\"attributes\":{\"supported_color_modes\":[\"rgbww\"],\"friendly_name\":\"Mariah Light 2 mariah_light_2\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:05.036306+00:00\",\"last_reported\":\"2026-04-11T01:20:05.036306+00:00\",\"last_updated\":\"2026-04-11T01:20:05.036306+00:00\",\"context\":{\"id\":\"01KNX1ZTDCK5TD8WJFP6CX95Q7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_motion_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.3\",\"in_progress\":false,\"latest_version\":\"1.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Motion Sensor 2 Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.042281+00:00\",\"last_reported\":\"2026-04-11T01:20:05.042281+00:00\",\"last_updated\":\"2026-04-11T01:20:05.042281+00:00\",\"context\":{\"id\":\"01KNX1ZTDJV6117J0CV4DYQETX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.front_door_lock_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.3\",\"in_progress\":false,\"latest_version\":\"3.3\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Front Door Lock Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045013+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045013+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045013+00:00\",\"context\":{\"id\":\"01KNX1ZTDNKKCP6AJXM7KR842W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.upstairs_hallway_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"17.9\",\"in_progress\":false,\"latest_version\":\"17.9\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Upstairs Hallway Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.045681+00:00\",\"last_reported\":\"2026-04-11T01:20:05.045681+00:00\",\"last_updated\":\"2026-04-11T01:20:05.045681+00:00\",\"context\":{\"id\":\"01KNX1ZTDNGTRD92NF5QP5482N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_controller_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"1.4.1\",\"in_progress\":false,\"latest_version\":\"1.4.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Controller Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.046772+00:00\",\"last_reported\":\"2026-04-11T01:20:05.046772+00:00\",\"last_updated\":\"2026-04-11T01:20:05.046772+00:00\",\"context\":{\"id\":\"01KNX1ZTDPPMAMZWRQV3X7VB9W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_multi_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.0.2\",\"in_progress\":false,\"latest_version\":\"2.0.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Multi Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.047317+00:00\",\"last_reported\":\"2026-04-11T01:20:05.047317+00:00\",\"last_updated\":\"2026-04-11T01:20:05.047317+00:00\",\"context\":{\"id\":\"01KNX1ZTDQFSN76H9S9ER7NQEB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.jenni_office_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"32.2\",\"in_progress\":false,\"latest_version\":\"32.2\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Jenni Office Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.049963+00:00\",\"last_reported\":\"2026-04-11T01:20:05.049963+00:00\",\"last_updated\":\"2026-04-11T01:20:05.049963+00:00\",\"context\":{\"id\":\"01KNX1ZTDSMK83J5W8K28BXHA6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.20.0\",\"in_progress\":false,\"latest_version\":\"2.20.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Downstairs Hallway Motion Sensor Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.050632+00:00\",\"last_reported\":\"2026-04-11T01:20:05.050632+00:00\",\"last_updated\":\"2026-04-11T01:20:05.050632+00:00\",\"context\":{\"id\":\"01KNX1ZTDTRZZ2110P8RF31N8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.garage_light_switch_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"3.60.0\",\"in_progress\":false,\"latest_version\":\"3.60.0\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"Garage Light Switch Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.051827+00:00\",\"last_reported\":\"2026-04-11T01:20:05.051827+00:00\",\"last_updated\":\"2026-04-11T01:20:05.051827+00:00\",\"context\":{\"id\":\"01KNX1ZTDVMV6ZZNVZ3MGY4MWC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"2.3.1\",\"in_progress\":false,\"latest_version\":\"2.3.1\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/zwave_js/icon.png\",\"friendly_name\":\"fish tank power strip Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:05.052627+00:00\",\"last_reported\":\"2026-04-11T01:20:05.052627+00:00\",\"last_updated\":\"2026-04-11T01:20:05.052627+00:00\",\"context\":{\"id\":\"01KNX1ZTDW56RDS211G4529KSM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.adam_desk_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"adam_desk_lights Restart\"},\"last_changed\":\"2026-04-12T17:42:02.562786+00:00\",\"last_reported\":\"2026-04-12T17:50:12.628441+00:00\",\"last_updated\":\"2026-04-12T17:42:02.562786+00:00\",\"context\":{\"id\":\"01KP1CJJ22H839C862PS7FWR09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.adam_desk_lights\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":\"Solid\",\"color_mode\":\"rgb\",\"brightness\":201,\"hs_color\":[0.0,100.0],\"rgb_color\":[255,0,0],\"xy_color\":[0.701,0.299],\"friendly_name\":\"adam_desk_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-13T04:14:23.228776+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538173+00:00\",\"last_updated\":\"2026-04-13T04:14:23.228776+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Speed\"},\"last_changed\":\"2026-04-12T17:42:02.563010+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538378+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563010+00:00\",\"context\":{\"id\":\"01KP1CJJ23G71KG9JKRV01538M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.adam_desk_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"adam_desk_lights Intensity\"},\"last_changed\":\"2026-04-12T17:42:02.563045+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538451+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563045+00:00\",\"context\":{\"id\":\"01KP1CJJ2378025FE", - "offset_ms": 148 - }, - { - "direction": "recv", - "type": "text", - "payload": "AD8FS7ZQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"adam_desk_lights Live override\"},\"last_changed\":\"2026-04-12T17:42:02.563076+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538517+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563076+00:00\",\"context\":{\"id\":\"01KP1CJJ23V5330FDHE48EZ6XM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.057354+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538573+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057354+00:00\",\"context\":{\"id\":\"01KNX1ZTE1R6VV1CE2SSTA518F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"adam_desk_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.057620+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538621+00:00\",\"last_updated\":\"2026-04-11T01:20:05.057620+00:00\",\"context\":{\"id\":\"01KNX1ZTE1X60PV1Z777N1N0CF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.adam_desk_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"adam_desk_lights Color palette\"},\"last_changed\":\"2026-04-12T17:42:02.563195+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538852+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563195+00:00\",\"context\":{\"id\":\"01KP1CJJ23Q9EB85NBBY3V8SVD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"state\":\"3068\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Estimated current\"},\"last_changed\":\"2026-04-13T07:45:05.539108+00:00\",\"last_reported\":\"2026-04-13T08:05:00.538965+00:00\",\"last_updated\":\"2026-04-13T07:45:05.539108+00:00\",\"context\":{\"id\":\"01KP2WT7G3FBG1EZZ0Z4W72QWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"state\":\"204\",\"attributes\":{\"friendly_name\":\"adam_desk_lights LED count\"},\"last_changed\":\"2026-04-12T17:42:02.563274+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539027+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563274+00:00\",\"context\":{\"id\":\"01KP1CJJ23DZ4880F9B5P5ARVK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"state\":\"7000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"adam_desk_lights Max current\"},\"last_changed\":\"2026-04-12T17:42:02.563299+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539083+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563299+00:00\",\"context\":{\"id\":\"01KP1CJJ23VJZHVC1T5J14MJ3N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.adam_desk_lights_ip\",\"state\":\"10.0.0.187\",\"attributes\":{\"friendly_name\":\"adam_desk_lights IP\"},\"last_changed\":\"2026-04-12T17:42:02.563323+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539129+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563323+00:00\",\"context\":{\"id\":\"01KP1CJJ23M0SFZ1145S2NR9E4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"adam_desk_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:42:02.563348+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539176+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563348+00:00\",\"context\":{\"id\":\"01KP1CJJ23JCDZCPA3AR1TNK1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync send\"},\"last_changed\":\"2026-04-12T17:42:02.563372+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539225+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563372+00:00\",\"context\":{\"id\":\"01KP1CJJ23HJ8FJW97J3R4DHBV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"adam_desk_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:42:02.563395+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539265+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563395+00:00\",\"context\":{\"id\":\"01KP1CJJ23V6ZRECGQNBAKH217\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.adam_desk_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"adam_desk_lights Reverse\"},\"last_changed\":\"2026-04-12T17:42:02.563421+00:00\",\"last_reported\":\"2026-04-13T08:05:00.539320+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563421+00:00\",\"context\":{\"id\":\"01KP1CJJ23BPV7PKKK0ZVFMQ0F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.adam_desk_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"adam_desk_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:42:02.563489+00:00\",\"last_reported\":\"2026-04-12T17:50:12.630108+00:00\",\"last_updated\":\"2026-04-12T17:42:02.563489+00:00\",\"context\":{\"id\":\"01KP1CJJ23MM8489SRT4JEM3BB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.master_bed_lights_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"master_bed_lights Restart\"},\"last_changed\":\"2026-04-12T17:15:48.870672+00:00\",\"last_reported\":\"2026-04-12T17:20:09.480740+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870672+00:00\",\"context\":{\"id\":\"01KP1B2H86483YF0C6JVQPJ2NC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.master_bed_lights\",\"state\":\"off\",\"attributes\":{\"effect_list\":[\"Solid\",\"Blink\",\"Breathe\",\"Wipe\",\"Wipe Random\",\"Random Colors\",\"Sweep\",\"Dynamic\",\"Colorloop\",\"Rainbow\",\"Scan\",\"Scan Dual\",\"Fade\",\"Theater\",\"Theater Rainbow\",\"Running\",\"Saw\",\"Twinkle\",\"Dissolve\",\"Dissolve Rnd\",\"Sparkle\",\"Sparkle Dark\",\"Sparkle+\",\"Strobe\",\"Strobe Rainbow\",\"Strobe Mega\",\"Blink Rainbow\",\"Android\",\"Chase\",\"Chase Random\",\"Chase Rainbow\",\"Chase Flash\",\"Chase Flash Rnd\",\"Rainbow Runner\",\"Colorful\",\"Traffic Light\",\"Sweep Random\",\"Chase 2\",\"Aurora\",\"Stream\",\"Scanner\",\"Lighthouse\",\"Fireworks\",\"Rain\",\"Tetrix\",\"Fire Flicker\",\"Gradient\",\"Loading\",\"Rolling Balls\",\"Fairy\",\"Two Dots\",\"Fairytwinkle\",\"Running Dual\",\"RSVD\",\"Chase 3\",\"Tri Wipe\",\"Tri Fade\",\"Lightning\",\"ICU\",\"Multi Comet\",\"Scanner Dual\",\"Stream 2\",\"Oscillate\",\"Pride 2015\",\"Juggle\",\"Palette\",\"Fire 2012\",\"Colorwaves\",\"Bpm\",\"Fill Noise\",\"Noise 1\",\"Noise 2\",\"Noise 3\",\"Noise 4\",\"Colortwinkles\",\"Lake\",\"Meteor\",\"Meteor Smooth\",\"Railway\",\"Ripple\",\"Twinklefox\",\"Twinklecat\",\"Halloween Eyes\",\"Solid Pattern\",\"Solid Pattern Tri\",\"Spots\",\"Spots Fade\",\"Glitter\",\"Candle\",\"Fireworks Starburst\",\"Fireworks 1D\",\"Bouncing Balls\",\"Sinelon\",\"Sinelon Dual\",\"Sinelon Rainbow\",\"Popcorn\",\"Drip\",\"Plasma\",\"Percent\",\"Ripple Rainbow\",\"Heartbeat\",\"Pacifica\",\"Candle Multi\",\"Solid Glitter\",\"Sunrise\",\"Phased\",\"Twinkleup\",\"Noise Pal\",\"Sine\",\"Phased Noise\",\"Flow\",\"Chunchun\",\"Dancing Shadows\",\"Washing Machine\",\"Rotozoomer\",\"Blends\",\"TV Simulator\",\"Dynamic Smooth\",\"Spaceships\",\"Crazy Bees\",\"Ghost Rider\",\"Blobs\",\"Scrolling Text\",\"Drift Rose\",\"Distortion Waves\",\"Soap\",\"Octopus\",\"Waving Cell\",\"Pixels\",\"Pixelwave\",\"Juggles\",\"Matripix\",\"Gravimeter\",\"Plasmoid\",\"Puddles\",\"Midnoise\",\"Noisemeter\",\"Freqwave\",\"Freqmatrix\",\"GEQ\",\"Waterfall\",\"Freqpixels\",\"RSVD\",\"Noisefire\",\"Puddlepeak\",\"Noisemove\",\"Noise2D\",\"Perlin Move\",\"Ripple Peak\",\"Firenoise\",\"Squared Swirl\",\"RSVD\",\"DNA\",\"Matrix\",\"Metaballs\",\"Freqmap\",\"Gravcenter\",\"Gravcentric\",\"Gravfreq\",\"DJ Light\",\"Funky Plank\",\"RSVD\",\"Pulser\",\"Blurz\",\"Drift\",\"Waverly\",\"Sun Radiation\",\"Colored Bursts\",\"Julia\",\"RSVD\",\"RSVD\",\"RSVD\",\"Game Of Life\",\"Tartan\",\"Polar Lights\",\"Swirl\",\"Lissajous\",\"Frizzles\",\"Plasma Ball\",\"Flow Stripe\",\"Hiphotic\",\"Sindots\",\"DNA Spiral\",\"Black Hole\",\"Wavesins\",\"Rocktaves\",\"Akemi\"],\"supported_color_modes\":[\"rgb\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"hs_color\":null,\"rgb_color\":null,\"xy_color\":null,\"friendly_name\":\"master_bed_lights\",\"supported_features\":36},\"last_changed\":\"2026-04-12T17:15:48.870961+00:00\",\"last_reported\":\"2026-04-13T08:05:02.495839+00:00\",\"last_updated\":\"2026-04-12T17:15:48.870961+00:00\",\"context\":{\"id\":\"01KP1B2H86Z348QXAS8VFHEY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_speed\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Speed\"},\"last_changed\":\"2026-04-12T17:15:48.871140+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496025+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871140+00:00\",\"context\":{\"id\":\"01KP1B2H87PW920KEF85GP610M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.master_bed_lights_intensity\",\"state\":\"128\",\"attributes\":{\"min\":0,\"max\":255,\"step\":1,\"mode\":\"auto\",\"friendly_name\":\"master_bed_lights Intensity\"},\"last_changed\":\"2026-04-12T17:15:48.871239+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496094+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871239+00:00\",\"context\":{\"id\":\"01KP1B2H87ZSHCZBB7MFM72VCN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_live_override\",\"state\":\"0\",\"attributes\":{\"options\":[\"0\",\"1\",\"2\"],\"friendly_name\":\"master_bed_lights Live override\"},\"last_changed\":\"2026-04-12T17:15:48.871320+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496151+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871320+00:00\",\"context\":{\"id\":\"01KP1B2H8736G1VA82H8J839Z4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_playlist\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Playlist\"},\"last_changed\":\"2026-04-11T01:20:05.066066+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496198+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066066+00:00\",\"context\":{\"id\":\"01KNX1ZTEAN3TYGMCX1QSAEC8V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_preset\",\"state\":\"unavailable\",\"attributes\":{\"options\":[],\"friendly_name\":\"master_bed_lights Preset\"},\"last_changed\":\"2026-04-11T01:20:05.066206+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496241+00:00\",\"last_updated\":\"2026-04-11T01:20:05.066206+00:00\",\"context\":{\"id\":\"01KNX1ZTEAFD5QSJH98JRYE94S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.master_bed_lights_color_palette\",\"state\":\"Default\",\"attributes\":{\"options\":[\"* Color 1\",\"* Color Gradient\",\"* Colors 1&2\",\"* Colors Only\",\"* Random Cycle\",\"Analogous\",\"April Night\",\"Aqua Flash\",\"Atlantica\",\"Aurora\",\"Aurora 2\",\"Autumn\",\"Beach\",\"Beech\",\"Blink Red\",\"Breeze\",\"C9\",\"C9 2\",\"C9 New\",\"Candy\",\"Candy2\",\"Cloud\",\"Cyane\",\"Default\",\"Departure\",\"Drywet\",\"Fairy Reaf\",\"Fire\",\"Forest\",\"Grintage\",\"Hult\",\"Hult 64\",\"Icefire\",\"Jul\",\"Landscape\",\"Lava\",\"Light Pink\",\"Lite Light\",\"Magenta\",\"Magred\",\"Ocean\",\"Orange & Teal\",\"Orangery\",\"Party\",\"Pastel\",\"Pink Candy\",\"Rainbow\",\"Rainbow Bands\",\"Red & Blue\",\"Red Flash\",\"Red Reaf\",\"Red Shift\",\"Red Tide\",\"Retro Clown\",\"Rewhi\",\"Rivendell\",\"Sakura\",\"Semi Blue\",\"Sherbet\",\"Splash\",\"Sunset\",\"Sunset 2\",\"Temperature\",\"Tertiary\",\"Tiamat\",\"Toxy Reaf\",\"Vintage\",\"Yelblu\",\"Yelblu Hot\",\"Yellowout\",\"Yelmag\"],\"friendly_name\":\"master_bed_lights Color palette\"},\"last_changed\":\"2026-04-12T17:15:48.871680+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496478+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871680+00:00\",\"context\":{\"id\":\"01KP1B2H873DJ43N1N1R5YSGME\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"state\":\"120\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Estimated current\"},\"last_changed\":\"2026-04-12T17:15:48.871813+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496588+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871813+00:00\",\"context\":{\"id\":\"01KP1B2H876XQTCZZHJZ8VRV8J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_led_count\",\"state\":\"300\",\"attributes\":{\"friendly_name\":\"master_bed_lights LED count\"},\"last_changed\":\"2026-04-12T17:15:48.871904+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496644+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871904+00:00\",\"context\":{\"id\":\"01KP1B2H87SSK3HYWC35302P2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_max_current\",\"state\":\"8000\",\"attributes\":{\"unit_of_measurement\":\"mA\",\"device_class\":\"current\",\"friendly_name\":\"master_bed_lights Max current\"},\"last_changed\":\"2026-04-12T17:15:48.871990+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496696+00:00\",\"last_updated\":\"2026-04-12T17:15:48.871990+00:00\",\"context\":{\"id\":\"01KP1B2H87G6RNM7NY5RQRG8EJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bed_lights_ip\",\"state\":\"10.0.0.176\",\"attributes\":{\"friendly_name\":\"master_bed_lights IP\"},\"last_changed\":\"2026-04-12T17:15:48.872064+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496739+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872064+00:00\",\"context\":{\"id\":\"01KP1B2H88NXSANAA0H08M2WHY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_nightlight\",\"state\":\"off\",\"attributes\":{\"duration\":60,\"target_brightness\":0,\"friendly_name\":\"master_bed_lights Nightlight\"},\"last_changed\":\"2026-04-12T17:15:48.872137+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496786+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872137+00:00\",\"context\":{\"id\":\"01KP1B2H88VM3YVED2FEYQ0FPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_send\",\"state\":\"off\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync send\"},\"last_changed\":\"2026-04-12T17:15:48.872209+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496830+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872209+00:00\",\"context\":{\"id\":\"01KP1B2H886ZWMEJ6T6YXGB1D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"state\":\"on\",\"attributes\":{\"udp_port\":21324,\"friendly_name\":\"master_bed_lights Sync receive\"},\"last_changed\":\"2026-04-12T17:15:48.872277+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496869+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872277+00:00\",\"context\":{\"id\":\"01KP1B2H885WZ86J1C4VG2V8PC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.master_bed_lights_reverse\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"master_bed_lights Reverse\"},\"last_changed\":\"2026-04-12T17:15:48.872348+00:00\",\"last_reported\":\"2026-04-13T08:05:02.496921+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872348+00:00\",\"context\":{\"id\":\"01KP1B2H8873ZYR6PKYX44FPZT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bed_lights_firmware\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"0.15.4\",\"in_progress\":false,\"latest_version\":\"0.15.4\",\"release_summary\":null,\"release_url\":\"https://github.com/wled/WLED/releases/tag/v0.15.4\",\"skipped_version\":null,\"title\":\"WLED\",\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://brands.home-assistant.io/_/wled/icon.png\",\"friendly_name\":\"master_bed_lights Firmware\",\"supported_features\":3},\"last_changed\":\"2026-04-12T17:15:48.872544+00:00\",\"last_reported\":\"2026-04-12T17:20:09.482372+00:00\",\"last_updated\":\"2026-04-12T17:15:48.872544+00:00\",\"context\":{\"id\":\"01KP1B2H88QTTT3YMN5238NHDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_front_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015141627\",\"last_triggered\":\"2026-04-08T01:57:59.843482+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Front Door\"},\"last_changed\":\"2026-04-11T01:20:05.170712+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170712+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170712+00:00\",\"context\":{\"id\":\"01KNX1ZTHJZHY5T1KNH41QVHNX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_lock_back_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1629015238936\",\"last_triggered\":\"2025-12-24T19:31:40.948726+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Lock Back Door\"},\"last_changed\":\"2026-04-11T01:20:05.170875+00:00\",\"last_reported\":\"2026-04-11T01:20:05.170875+00:00\",\"last_updated\":\"2026-04-11T01:20:05.170875+00:00\",\"context\":{\"id\":\"01KNX1ZTHJWSFMBR5Y1V6DV5SY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_routine\",\"state\":\"on\",\"attributes\":{\"id\":\"1629617283234\",\"last_triggered\":\"2026-04-13T05:30:00.065197+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"SCHEDULE - Bed Time Routine\"},\"last_changed\":\"2026-04-11T01:20:05.170990+00:00\",\"last_reported\":\"2026-04-13T05:30:00.065260+00:00\",\"last_updated\":\"2026-04-13T05:30:00.065260+00:00\",\"context\":{\"id\":\"01KP2N2W00GRB9S9CAYGZZHCT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785091384\",\"last_triggered\":\"2026-04-13T05:30:00.436488+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.171102+00:00\",\"last_reported\":\"2026-04-13T05:30:00.438872+00:00\",\"last_updated\":\"2026-04-13T05:30:00.438872+00:00\",\"context\":{\"id\":\"01KP2N2WBM6HRHGNA9AGE4NHZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1629785279492\",\"last_triggered\":\"2026-04-12T14:00:00.201667+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Leksi Lamp - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.171210+00:00\",\"last_reported\":\"2026-04-12T14:00:00.204402+00:00\",\"last_updated\":\"2026-04-12T14:00:00.204402+00:00\",\"context\":{\"id\":\"01KP0ZVZY9MBGXPQH07CN0439T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950849970\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Cat Bathroom Door Closed\"},\"last_changed\":\"2026-04-11T01:20:05.171308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.171308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.171308+00:00\",\"context\":{\"id\":\"01KNX1ZTHKMZRBAB514QBS2YJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1631950974058\",\"last_triggered\":\"2026-04-12T18:34:55.006169+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.171407+00:00\",\"last_reported\":\"2026-04-12T18:34:55.006231+00:00\",\"last_updated\":\"2026-04-12T18:34:55.006231+00:00\",\"context\":{\"id\":\"01KP1FKC4XA5WXVZ6WJFWD31GK\",\"parent_id\":\"01KP1FKC4XTZ92VW588SGF1PJE\",\"user_id\":null}},{\"entity_id\":\"automation.motion_kitchen_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631951014424\",\"last_triggered\":\"2026-04-12T18:35:19.135698+00:00\",\"mode\":\"single\",\"current\":1,\"friendly_name\":\"MOTION - Kitchen Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171503+00:00\",\"last_reported\":\"2026-04-12T18:35:19.135758+00:00\",\"last_updated\":\"2026-04-12T18:35:19.135758+00:00\",\"context\":{\"id\":\"01KP1FM3PZDBWZWY466KXH99F1\",\"parent_id\":\"01KP1FKG5X86AJ6S63J31ZXHS2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952292117\",\"last_triggered\":\"2026-04-12T10:21:40.232115+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.171602+00:00\",\"last_reported\":\"2026-04-12T10:21:40.591963+00:00\",\"last_updated\":\"2026-04-12T10:21:40.591963+00:00\",\"context\":{\"id\":\"01KP0KC707RPK7TWMV9HNT52Y7\",\"parent_id\":\"01KP0KC707Q4BVS3S62C2B9V73\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952347170\",\"last_triggered\":\"2026-04-12T17:24:23.471716+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - Off\"},\"last_changed\":\"2026-04-11T01:20:05.171693+00:00\",\"last_reported\":\"2026-04-12T17:24:23.837742+00:00\",\"last_updated\":\"2026-04-12T17:24:23.837742+00:00\",\"context\":{\"id\":\"01KP1BJ7SFKZGP8SKSZPDC5E9M\",\"parent_id\":\"01KP1BEJKD1AV03VVP6TA42K9K\",\"user_id\":null}},{\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1631952450891\",\"last_triggered\":\"2026-04-12T17:22:02.294324+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Stair Chandelier - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.171781+00:00\",\"last_reported\":\"2026-04-12T17:22:02.735587+00:00\",\"last_updated\":\"2026-04-12T17:22:02.735587+00:00\",\"context\":{\"id\":\"01KP1BDXXN1P450VD08K20WQXK\",\"parent_id\":\"01KP1BDXXNJ8JAF11RCMA2X950\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1632895391373\",\"last_triggered\":\"2026-04-12T0", - "offset_ms": 151 - }, - { - "direction": "recv", - "type": "text", - "payload": "7:59:15.856216+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.172839+00:00\",\"last_reported\":\"2026-04-12T07:59:16.272915+00:00\",\"last_updated\":\"2026-04-12T07:59:16.272915+00:00\",\"context\":{\"id\":\"01KP0B7EWFGX6G39A4GG2JHJZC\",\"parent_id\":\"01KP0B7EWEMRY35VZVXNWHHW28\",\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate\",\"state\":\"on\",\"attributes\":{\"id\":\"1633315499530\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate\"},\"last_changed\":\"2026-04-11T01:20:05.172962+00:00\",\"last_reported\":\"2026-04-11T01:20:05.172962+00:00\",\"last_updated\":\"2026-04-11T01:20:05.172962+00:00\",\"context\":{\"id\":\"01KNX1ZTHM373DS05HJP04CZDH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633316964978\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173070+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173070+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173070+00:00\",\"context\":{\"id\":\"01KNX1ZTHNP696XG3ZTYMZD2ZR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317039614\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173215+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173215+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173215+00:00\",\"context\":{\"id\":\"01KNX1ZTHNX519NMZ7CVWXZ0J6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317101093\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173315+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173315+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173315+00:00\",\"context\":{\"id\":\"01KNX1ZTHNR0N6B5N8VCXNDD6M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_kids_dance_party\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317161375\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Kids Dance Party\"},\"last_changed\":\"2026-04-11T01:20:05.173406+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173406+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173406+00:00\",\"context\":{\"id\":\"01KNX1ZTHNZ27MYJWPMZ1F8MZA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633317518311\",\"last_triggered\":\"2026-02-13T06:43:40.904344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.173502+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173502+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173502+00:00\",\"context\":{\"id\":\"01KNX1ZTHNKP9VHQXM6X43J4RS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_kids_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633318458266\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Kids Room\"},\"last_changed\":\"2026-04-11T01:20:05.173596+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173596+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173596+00:00\",\"context\":{\"id\":\"01KNX1ZTHNCVZPBTWXWT99X0C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_show_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1633321371244\",\"last_triggered\":\"2022-01-20T02:40:03.895907+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Show Time\"},\"last_changed\":\"2026-04-11T01:20:05.173690+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173690+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173690+00:00\",\"context\":{\"id\":\"01KNX1ZTHNVYSKSWNFY9STBZYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_illuminate_living_room\",\"state\":\"on\",\"attributes\":{\"id\":\"1633323598789\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Illuminate Living Room\"},\"last_changed\":\"2026-04-11T01:20:05.173868+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173868+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173868+00:00\",\"context\":{\"id\":\"01KNX1ZTHNV8QDF5CRDMH42DNV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_red_alert\",\"state\":\"on\",\"attributes\":{\"id\":\"1633329926454\",\"last_triggered\":\"2022-03-22T13:04:07.757126+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Red Alert\"},\"last_changed\":\"2026-04-11T01:20:05.173979+00:00\",\"last_reported\":\"2026-04-11T01:20:05.173979+00:00\",\"last_updated\":\"2026-04-11T01:20:05.173979+00:00\",\"context\":{\"id\":\"01KNX1ZTHNRY7MM7NSKDFGKCDZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1637480683670\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"CUBE - Desk Lights\"},\"last_changed\":\"2026-04-11T01:20:05.174072+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174072+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174072+00:00\",\"context\":{\"id\":\"01KNX1ZTHPZ7NM9TTYR56BNCVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606004641\",\"last_triggered\":\"2026-04-13T03:24:29.982811+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - On - Dusk\"},\"last_changed\":\"2026-04-11T01:20:05.174158+00:00\",\"last_reported\":\"2026-04-13T03:24:29.988423+00:00\",\"last_updated\":\"2026-04-13T03:24:29.988423+00:00\",\"context\":{\"id\":\"01KP2DX2CYM9SJ063HZNBPHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606124541\",\"last_triggered\":\"2026-04-09T04:35:28.986411+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.174247+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174247+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174247+00:00\",\"context\":{\"id\":\"01KNX1ZTHP72RQ7EYJHJGEQGK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_restore\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606172266\",\"last_triggered\":\"2026-04-09T04:41:00.829184+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Restore\"},\"last_changed\":\"2026-04-11T01:20:05.174332+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174332+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174332+00:00\",\"context\":{\"id\":\"01KNX1ZTHPQMK0FK14ZWJQRMMW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1638606436231\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Porch Lights - Off - After Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.174418+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174418+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174418+00:00\",\"context\":{\"id\":\"01KNX1ZTHPSW77NB2N9Z06W7Z5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1639120832058\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights On\"},\"last_changed\":\"2026-04-11T01:20:05.174503+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174503+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174503+00:00\",\"context\":{\"id\":\"01KNX1ZTHP5XMHNWVSQHSA8HGZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.google_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1639715090770\",\"last_triggered\":\"2024-03-21T03:46:46.482526+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"GOOGLE - Master Lights Off\"},\"last_changed\":\"2026-04-11T01:20:05.174589+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174589+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174589+00:00\",\"context\":{\"id\":\"01KNX1ZTHP6BJX9S511STNS6G3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_close_garage_door_leave\",\"state\":\"on\",\"attributes\":{\"id\":\"1639718580516\",\"last_triggered\":\"2026-04-11T20:00:46.368381+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Close Garage Door - Leave\"},\"last_changed\":\"2026-04-11T01:20:05.174682+00:00\",\"last_reported\":\"2026-04-11T20:00:46.437461+00:00\",\"last_updated\":\"2026-04-11T20:00:46.437461+00:00\",\"context\":{\"id\":\"01KNZ23VS057C4XGV0W5N16W8D\",\"parent_id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"user_id\":null}},{\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"state\":\"on\",\"attributes\":{\"id\":\"1639724678294\",\"last_triggered\":\"2026-04-11T22:42:08.721440+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Open Garage Door - Arrive\"},\"last_changed\":\"2026-04-11T01:20:05.174767+00:00\",\"last_reported\":\"2026-04-11T22:42:08.794924+00:00\",\"last_updated\":\"2026-04-11T22:42:08.794924+00:00\",\"context\":{\"id\":\"01KNZBBB6HPWVS3H6HZ1Q83BMH\",\"parent_id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"user_id\":null}},{\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"state\":\"on\",\"attributes\":{\"id\":\"1641177479575\",\"last_triggered\":\"2026-04-10T13:55:00.134922+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\"},\"last_changed\":\"2026-04-11T01:20:05.174852+00:00\",\"last_reported\":\"2026-04-11T01:20:05.174852+00:00\",\"last_updated\":\"2026-04-11T01:20:05.174852+00:00\",\"context\":{\"id\":\"01KNX1ZTHPCN3C5C85F3ZHZKDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188755198\",\"last_triggered\":\"2026-04-13T01:55:37.214392+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.174936+00:00\",\"last_reported\":\"2026-04-13T01:55:37.723654+00:00\",\"last_updated\":\"2026-04-13T01:55:37.723654+00:00\",\"context\":{\"id\":\"01KP28TAKXFK497XN2BAKT55TC\",\"parent_id\":\"01KP28H5MW15G9QT8B0SZBF7K4\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641188941984\",\"last_triggered\":\"2026-04-13T04:44:53.831513+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bath Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175020+00:00\",\"last_reported\":\"2026-04-13T04:44:54.208096+00:00\",\"last_updated\":\"2026-04-13T04:44:54.208096+00:00\",\"context\":{\"id\":\"01KP2JG967WMCM5SSVA21T6VZR\",\"parent_id\":\"01KP2JG966ZJMDPZYDJVK74EYQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1641190435073\",\"last_triggered\":\"2026-04-13T04:51:30.608840+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.175112+00:00\",\"last_reported\":\"2026-04-13T04:51:30.984227+00:00\",\"last_updated\":\"2026-04-13T04:51:30.984227+00:00\",\"context\":{\"id\":\"01KP2JWCNFBMNJYX2FCKFMTNY9\",\"parent_id\":\"01KP2JWCNFYXWN5JYGN4GZ6B71\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"state\":\"on\",\"attributes\":{\"id\":\"1641191518035\",\"last_triggered\":\"2026-04-11T19:33:14.738131+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Door Open 10 Min\"},\"last_changed\":\"2026-04-11T01:20:05.175200+00:00\",\"last_reported\":\"2026-04-11T19:33:45.014714+00:00\",\"last_updated\":\"2026-04-11T19:33:45.014714+00:00\",\"context\":{\"id\":\"01KNZ0JCDP6HBJAM1YXTAF443J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"state\":\"on\",\"attributes\":{\"id\":\"1641192891526\",\"last_triggered\":\"2026-04-12T14:00:00.230902+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\"},\"last_changed\":\"2026-04-11T01:20:05.175289+00:00\",\"last_reported\":\"2026-04-12T14:00:00.232158+00:00\",\"last_updated\":\"2026-04-12T14:00:00.232158+00:00\",\"context\":{\"id\":\"01KP0ZVZZ67MN3HX3A0R2CZT94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.presence_set_away\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225378269\",\"last_triggered\":\"2026-04-11T20:00:46.367229+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Away\"},\"last_changed\":\"2026-04-11T01:20:05.175377+00:00\",\"last_reported\":\"2026-04-11T20:00:46.367696+00:00\",\"last_updated\":\"2026-04-11T20:00:46.367696+00:00\",\"context\":{\"id\":\"01KNZ23VRZ7ZND25H5NGTJAK1T\",\"parent_id\":\"01KNZ23VRR1N7NW6ED6E1BEZVB\",\"user_id\":null}},{\"entity_id\":\"automation.presence_set_home\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225411475\",\"last_triggered\":\"2026-04-11T22:42:08.717900+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"PRESENCE - Set Home\"},\"last_changed\":\"2026-04-11T01:20:05.175463+00:00\",\"last_reported\":\"2026-04-11T22:42:08.719138+00:00\",\"last_updated\":\"2026-04-11T22:42:08.719138+00:00\",\"context\":{\"id\":\"01KNZBBB6D6PYGH0RNPER8S2HR\",\"parent_id\":\"01KNZBBB6CKD9J7SACAK7EX7RX\",\"user_id\":null}},{\"entity_id\":\"automation.auto_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225671056\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175550+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175550+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175550+00:00\",\"context\":{\"id\":\"01KNX1ZTHQGF578VQ3Z3REB7T4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641225729228\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175634+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175634+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175634+00:00\",\"context\":{\"id\":\"01KNX1ZTHQT6VWERE4HCTHM4J7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_large_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226072324\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Large Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175724+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175724+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175724+00:00\",\"context\":{\"id\":\"01KNX1ZTHQ051YX2S021VVWWQH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.iboff_close_small_garage_door\",\"state\":\"on\",\"attributes\":{\"id\":\"1641226100136\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"IBOFF - Close Small Garage Door\"},\"last_changed\":\"2026-04-11T01:20:05.175806+00:00\",\"last_reported\":\"2026-04-11T01:20:05.175806+00:00\",\"last_updated\":\"2026-04-11T01:20:05.175806+00:00\",\"context\":{\"id\":\"01KNX1ZTHQG7WE36CVWRPN0NYE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_nap_time_over\",\"state\":\"on\",\"attributes\":{\"id\":\"1643176701270\",\"last_triggered\":\"2026-04-13T03:24:12.896802+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Nap Time Over\"},\"last_changed\":\"2026-04-11T01:20:05.175890+00:00\",\"last_reported\":\"2026-04-13T03:24:23.653184+00:00\",\"last_updated\":\"2026-04-13T03:24:23.653184+00:00\",\"context\":{\"id\":\"01KP2DWW7584VB77DVC49MWP6D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"state\":\"on\",\"attributes\":{\"id\":\"1652512982739\",\"last_triggered\":\"2026-04-13T05:30:00.162170+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\"},\"last_changed\":\"2026-04-11T01:20:05.175986+00:00\",\"last_reported\":\"2026-04-13T05:30:00.165841+00:00\",\"last_updated\":\"2026-04-13T05:30:00.165841+00:00\",\"context\":{\"id\":\"01KP2N2W317YYN3ND4ADPYDCTC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bath_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1681343760386\",\"last_triggered\":\"2026-04-13T04:50:40.965173+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"Master Bath Lights Motion Off\"},\"last_changed\":\"2026-04-11T01:20:05.176071+00:00\",\"last_reported\":\"2026-04-13T04:50:41.315624+00:00\",\"last_updated\":\"2026-04-13T04:50:41.315624+00:00\",\"context\":{\"id\":\"01KP2JTW642086NZ0DSKWG0H05\",\"parent_id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"user_id\":null}},{\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"state\":\"on\",\"attributes\":{\"id\":\"1685999337743\",\"last_triggered\":null,\"mode\":\"restart\",\"current\":0,\"friendly_name\":\"AUTO - Scaredy Cat Lights\"},\"last_changed\":\"2026-04-11T01:20:05.176159+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176159+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176159+00:00\",\"context\":{\"id\":\"01KNX1ZTHR27JXD117S3EVP0TZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1698022261893\",\"last_triggered\":\"2026-04-12T10:10:35.082864+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176248+00:00\",\"last_reported\":\"2026-04-12T10:10:35.179880+00:00\",\"last_updated\":\"2026-04-12T10:10:35.179880+00:00\",\"context\":{\"id\":\"01KP0JQXEAEJGC3KQ00FKADN2R\",\"parent_id\":\"01KP0JQXE9M8J771W7EKZDT5B8\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1698131438659\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176330+00:00\",\"last_reported\":\"2026-04-11T01:20:05.176330+00:00\",\"last_updated\":\"2026-04-11T01:20:05.176330+00:00\",\"context\":{\"id\":\"01KNX1ZTHRTEQC5E1G2KZJABYD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902139116\",\"last_triggered\":\"2026-04-13T04:44:24.969704+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176420+00:00\",\"last_reported\":\"2026-04-13T04:44:25.400897+00:00\",\"last_updated\":\"2026-04-13T04:44:25.400897+00:00\",\"context\":{\"id\":\"01KP2JFD09W9ESWWTWENFCM8QM\",\"parent_id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"user_id\":null}},{\"entity_id\":\"automation.motion_dining_room_lights_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1707902226266\",\"last_triggered\":\"2026-04-13T04:43:47.484762+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Dining Room Lights - On\"},\"last_changed\":\"2026-04-11T01:20:05.176508+00:00\",\"last_reported\":\"2026-04-13T04:43:47.959255+00:00\",\"last_updated\":\"2026-04-13T04:43:47.959255+00:00\",\"context\":{\"id\":\"01KP2JE8CW7ZWCMS9Z7HHQGZB8\",\"parent_id\":\"01KP2JE8CVWQZAXM1NMDKKX7WH\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966121423\",\"last_triggered\":\"2026-04-13T04:45:21.6258", - "offset_ms": 153 - }, - { - "direction": "recv", - "type": "text", - "payload": "89+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - Off\"},\"last_changed\":\"2026-04-11T01:20:05.176600+00:00\",\"last_reported\":\"2026-04-13T04:45:22.038855+00:00\",\"last_updated\":\"2026-04-13T04:45:22.038855+00:00\",\"context\":{\"id\":\"01KP2JH4ASJ6ZGCCF3YCNFCRJ8\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966772353\",\"last_triggered\":\"2026-04-13T04:39:45.215615+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.176684+00:00\",\"last_reported\":\"2026-04-13T04:39:45.737483+00:00\",\"last_updated\":\"2026-04-13T04:39:45.737483+00:00\",\"context\":{\"id\":\"01KP2J6VSYY3ZDAZ270CRGKSKN\",\"parent_id\":\"01KP2J6VSY8W0AXZ2SVE2C1TSY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1708966888905\",\"last_triggered\":\"2026-04-13T01:06:27.224951+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room Lamps - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.176772+00:00\",\"last_reported\":\"2026-04-13T01:06:27.604688+00:00\",\"last_updated\":\"2026-04-13T01:06:27.604688+00:00\",\"context\":{\"id\":\"01KP2609RRT72HEXRF2NG0MK5T\",\"parent_id\":\"01KP2609RRSJXDWTC250WQ3JTK\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709059722839\",\"last_triggered\":\"2026-04-13T04:53:13.462870+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176865+00:00\",\"last_reported\":\"2026-04-13T04:53:13.888156+00:00\",\"last_updated\":\"2026-04-13T04:53:13.888156+00:00\",\"context\":{\"id\":\"01KP2JZH3PPBH4AHV4FD2QHJPT\",\"parent_id\":\"01KP2JYKT4JPXAGZT9CCGEE16J\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"state\":\"on\",\"attributes\":{\"id\":\"1709189535560\",\"last_triggered\":\"2026-04-12T10:10:52.281438+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Bed Lights - Off - Not Bed\"},\"last_changed\":\"2026-04-11T01:20:05.176950+00:00\",\"last_reported\":\"2026-04-12T10:10:52.325811+00:00\",\"last_updated\":\"2026-04-12T10:10:52.325811+00:00\",\"context\":{\"id\":\"01KP0JRE7REYCW7J4W5RWSFQ1W\",\"parent_id\":\"01KP0JQZJYD4X4ZBXDNERV6H2A\",\"user_id\":null}},{\"entity_id\":\"automation.motion_play_area_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1710749651371\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Play Area Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177038+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177038+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177038+00:00\",\"context\":{\"id\":\"01KNX1ZTHSA525WZVKEKKJ4F91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_back_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836786749\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Back Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177176+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177176+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177176+00:00\",\"context\":{\"id\":\"01KNX1ZTHS3Q70H48RS8WEXD1V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_front_door_left_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1720836943690\",\"last_triggered\":\"2026-04-07T21:42:55.234816+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Front Door Left Open\"},\"last_changed\":\"2026-04-11T01:20:05.177279+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177279+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177279+00:00\",\"context\":{\"id\":\"01KNX1ZTHS9SXYYQSNK2CDJBT5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1724140995216\",\"last_triggered\":\"2026-04-13T04:14:23.111735+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177372+00:00\",\"last_reported\":\"2026-04-13T04:14:23.235067+00:00\",\"last_updated\":\"2026-04-13T04:14:23.235067+00:00\",\"context\":{\"id\":\"01KP2GRDC75RK8M9AJE8ZWTGT5\",\"parent_id\":\"01KP2GRDC6QFM092HQ1DW15M5S\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141048676\",\"last_triggered\":\"2026-04-12T16:32:05.110710+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177460+00:00\",\"last_reported\":\"2026-04-12T16:32:05.247233+00:00\",\"last_updated\":\"2026-04-12T16:32:05.247233+00:00\",\"context\":{\"id\":\"01KP18JEZPVZT03EWSPZS16916\",\"parent_id\":\"01KP18JEZMBZD75KNBM3WT8TJQ\",\"user_id\":null}},{\"entity_id\":\"automation.motion_office_lights_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1724141102872\",\"last_triggered\":\"2026-04-13T03:55:02.515887+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Office Lights - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177547+00:00\",\"last_reported\":\"2026-04-13T03:55:02.599961+00:00\",\"last_updated\":\"2026-04-13T03:55:02.599961+00:00\",\"context\":{\"id\":\"01KP2FMZZKR605N4VKTYR8A9RN\",\"parent_id\":\"01KP2F2P1J6C7JTB45T3EC021F\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238624495\",\"last_triggered\":\"2026-04-13T04:18:19.111286+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.177630+00:00\",\"last_reported\":\"2026-04-13T04:18:19.114053+00:00\",\"last_updated\":\"2026-04-13T04:18:19.114053+00:00\",\"context\":{\"id\":\"01KP2GZKV6V2RCXDY9TDMDBMMB\",\"parent_id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238682447\",\"last_triggered\":\"2026-04-12T05:08:00.485249+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177720+00:00\",\"last_reported\":\"2026-04-12T05:08:00.488290+00:00\",\"last_updated\":\"2026-04-12T05:08:00.488290+00:00\",\"context\":{\"id\":\"01KP01DWB46HV670EBAGGPBKRH\",\"parent_id\":\"01KP01DWB3MP7GHJKDN7GVH4ZC\",\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"state\":\"on\",\"attributes\":{\"id\":\"1725238993576\",\"last_triggered\":\"2026-04-10T04:02:20.039782+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - On - Beanbag\"},\"last_changed\":\"2026-04-11T01:20:05.177807+00:00\",\"last_reported\":\"2026-04-11T01:20:05.177807+00:00\",\"last_updated\":\"2026-04-11T01:20:05.177807+00:00\",\"context\":{\"id\":\"01KNX1ZTHSD7PFW0K867DWJS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_mariah_room_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1725239208837\",\"last_triggered\":\"2026-04-13T04:12:37.824074+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Mariah Room Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.177890+00:00\",\"last_reported\":\"2026-04-13T04:12:38.148021+00:00\",\"last_updated\":\"2026-04-13T04:12:38.148021+00:00\",\"context\":{\"id\":\"01KP2GN6HZNNSV3RZ959QMTETK\",\"parent_id\":\"01KP2GHHBYKJN6YJ2G5Y00P2RA\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927396308\",\"last_triggered\":\"2026-04-12T13:10:12.527561+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.177982+00:00\",\"last_reported\":\"2026-04-12T13:10:12.850163+00:00\",\"last_updated\":\"2026-04-12T13:10:12.850163+00:00\",\"context\":{\"id\":\"01KP0X0T9FDQ3TWF2KPHH61RE9\",\"parent_id\":\"01KP0X0T9FG0395D8E09CCBRW2\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927687152\",\"last_triggered\":\"2026-04-12T17:49:36.049369+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - On - Day\"},\"last_changed\":\"2026-04-11T01:20:05.178068+00:00\",\"last_reported\":\"2026-04-12T17:49:36.383586+00:00\",\"last_updated\":\"2026-04-12T17:49:36.383586+00:00\",\"context\":{\"id\":\"01KP1D0CXH59BHMB2WFYA8JQ2A\",\"parent_id\":\"01KP1D0CXGHWTXX7VP5BJP8NVY\",\"user_id\":null}},{\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1730927783620\",\"last_triggered\":\"2026-04-12T17:51:17.034143+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Downstairs Hallway Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.481700+00:00\",\"last_reported\":\"2026-04-12T17:51:17.345475+00:00\",\"last_updated\":\"2026-04-12T17:51:17.345475+00:00\",\"context\":{\"id\":\"01KP1D3FH906D1RYXKE1NS9XP4\",\"parent_id\":\"01KP1D2J7RSFTZTT63JE07PEHP\",\"user_id\":null}},{\"entity_id\":\"automation.notify_garage_lights_left_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1732174695099\",\"last_triggered\":\"2026-04-12T18:50:37.443344+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Garage Lights Left On\"},\"last_changed\":\"2026-04-11T01:20:05.482023+00:00\",\"last_reported\":\"2026-04-12T18:50:37.444678+00:00\",\"last_updated\":\"2026-04-12T18:50:37.444678+00:00\",\"context\":{\"id\":\"01KP1GG4G3AH2AF8HDYY6V6GQB\",\"parent_id\":\"01KP1FXTJ0EH9NC3HXXS8EPKB9\",\"user_id\":null}},{\"entity_id\":\"automation.cube_desk_z2mqtt\",\"state\":\"on\",\"attributes\":{\"id\":\"1733166130068\",\"last_triggered\":\"2026-04-11T17:52:22.965010+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"CUBE - Desk Z2MQTT\"},\"last_changed\":\"2026-04-11T01:20:05.482280+00:00\",\"last_reported\":\"2026-04-11T17:52:23.981385+00:00\",\"last_updated\":\"2026-04-11T17:52:23.981385+00:00\",\"context\":{\"id\":\"01KNYTRRXHMAF3ANEBAW3ZGN5X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354191063\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - Off\"},\"last_changed\":\"2026-04-11T01:20:05.482500+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482500+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482500+00:00\",\"context\":{\"id\":\"01KNX1ZTVA0BM4GFRYYZB48DEF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_garage_light_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1736354261558\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Garage Light - On\"},\"last_changed\":\"2026-04-11T01:20:05.482706+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482706+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482706+00:00\",\"context\":{\"id\":\"01KNX1ZTVAKCN07Z0WXT8Q9972\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"state\":\"on\",\"attributes\":{\"id\":\"1740257477923\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"NOTIFY - Solar ECU Unavailable\"},\"last_changed\":\"2026-04-11T01:20:05.482905+00:00\",\"last_reported\":\"2026-04-11T01:20:05.482905+00:00\",\"last_updated\":\"2026-04-11T01:20:05.482905+00:00\",\"context\":{\"id\":\"01KNX1ZTVAE0ZNJPZ8P94AGHH6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1759386477130\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - On\"},\"last_changed\":\"2026-04-11T01:20:05.483117+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483117+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483117+00:00\",\"context\":{\"id\":\"01KNX1ZTVBQSWKP97Y43XRSH82\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_band_day_off\",\"state\":\"on\",\"attributes\":{\"id\":\"1761667192807\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Band Day - Off\"},\"last_changed\":\"2026-04-11T01:20:05.483308+00:00\",\"last_reported\":\"2026-04-11T01:20:05.483308+00:00\",\"last_updated\":\"2026-04-11T01:20:05.483308+00:00\",\"context\":{\"id\":\"01KNX1ZTVBX0BGR8M8P5T5VM2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"state\":\"on\",\"attributes\":{\"id\":\"1762452936157\",\"last_triggered\":\"2026-04-13T04:50:21.625932+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Living Room TV - Off - Idle\"},\"last_changed\":\"2026-04-11T01:20:05.483516+00:00\",\"last_reported\":\"2026-04-13T04:50:21.629154+00:00\",\"last_updated\":\"2026-04-13T04:50:21.629154+00:00\",\"context\":{\"id\":\"01KP2JT99SNXPGXXSFGG13YXNP\",\"parent_id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912170361\",\"last_triggered\":\"2026-04-12T17:44:27.523683+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - Off - Timeout\"},\"last_changed\":\"2026-04-11T01:20:05.483737+00:00\",\"last_reported\":\"2026-04-12T17:44:27.578541+00:00\",\"last_updated\":\"2026-04-12T17:44:27.578541+00:00\",\"context\":{\"id\":\"01KP1CPZM36AF1MD1QN3BY2GZ7\",\"parent_id\":\"01KP1CDTN1VHCWXTZEWQCRJDZZ\",\"user_id\":null}},{\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"state\":\"on\",\"attributes\":{\"id\":\"1771912391140\",\"last_triggered\":\"2026-04-12T01:59:01.211511+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Garage Light - On - Door Open\"},\"last_changed\":\"2026-04-11T01:20:05.483920+00:00\",\"last_reported\":\"2026-04-12T01:59:01.332395+00:00\",\"last_updated\":\"2026-04-12T01:59:01.332395+00:00\",\"context\":{\"id\":\"01KNZPKTTVXT42BPXFERK3R8TC\",\"parent_id\":\"01KNZPKTTRQC5PQ247GPWP8PBW\",\"user_id\":null}},{\"entity_id\":\"automation.motion_master_lights_on_night\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000001\",\"last_triggered\":\"2026-04-08T10:07:00.095269+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"MOTION - Master Lights - On - Night\"},\"last_changed\":\"2026-04-11T01:20:05.484103+00:00\",\"last_reported\":\"2026-04-11T01:20:05.484103+00:00\",\"last_updated\":\"2026-04-11T01:20:05.484103+00:00\",\"context\":{\"id\":\"01KNX1ZTVCN46Y1M8MXK1PGQ6R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_nap_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000002\",\"last_triggered\":\"2026-04-13T04:56:44.731355+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Nap Detection\"},\"last_changed\":\"2026-04-11T01:20:05.484296+00:00\",\"last_reported\":\"2026-04-13T04:56:45.155418+00:00\",\"last_updated\":\"2026-04-13T04:56:45.155418+00:00\",\"context\":{\"id\":\"01KP2K5ZDT3EFWBWQYV8TM65ER\",\"parent_id\":\"01KP2JWTERKQJPDH4YX6B1C4WD\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000003\",\"last_triggered\":\"2026-04-12T13:21:57.323498+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - On\"},\"last_changed\":\"2026-04-11T01:20:05.484484+00:00\",\"last_reported\":\"2026-04-12T13:21:57.324903+00:00\",\"last_updated\":\"2026-04-12T13:21:57.324903+00:00\",\"context\":{\"id\":\"01KP0XPAJB96M67W4NB6R65GKP\",\"parent_id\":\"01KP0XPAJ92GJ01Z6KSZG26R4V\",\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000004\",\"last_triggered\":\"2026-04-11T14:00:00.408394+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\"},\"last_changed\":\"2026-04-11T01:20:05.484665+00:00\",\"last_reported\":\"2026-04-11T14:00:00.409899+00:00\",\"last_updated\":\"2026-04-11T14:00:00.409899+00:00\",\"context\":{\"id\":\"01KNYDF94QQXS8A69N34S7DPZ2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"state\":\"on\",\"attributes\":{\"id\":\"1774112000005\",\"last_triggered\":\"2026-04-13T04:12:42.947759+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\"},\"last_changed\":\"2026-04-11T01:20:05.484853+00:00\",\"last_reported\":\"2026-04-13T04:12:42.949135+00:00\",\"last_updated\":\"2026-04-13T04:12:42.949135+00:00\",\"context\":{\"id\":\"01KP2GNBJ3GR49YXKR97Q59FGJ\",\"parent_id\":\"01KP2GNBJ2E6PHHZK5MCPV747Q\",\"user_id\":null}},{\"entity_id\":\"automation.track_tracker_one_log_press\",\"state\":\"on\",\"attributes\":{\"id\":\"1775869806572\",\"last_triggered\":null,\"mode\":\"single\",\"current\":0,\"friendly_name\":\"TRACK - Tracker One - Log Press\"},\"last_changed\":\"2026-04-11T01:20:05.485027+00:00\",\"last_reported\":\"2026-04-11T01:20:05.485027+00:00\",\"last_updated\":\"2026-04-11T01:20:05.485027+00:00\",\"context\":{\"id\":\"01KNX1ZTVDK3JVT5NR038844W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211861\",\"last_triggered\":\"2026-04-12T19:10:45.101739+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"AUTO - Fish Fed - Latch On\"},\"last_changed\":\"2026-04-11T01:20:05.485755+00:00\",\"last_reported\":\"2026-04-12T19:10:45.103079+00:00\",\"last_updated\":\"2026-04-12T19:10:45.103079+00:00\",\"context\":{\"id\":\"01KP1HMZVDW9DB43682EE3K6JF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.schedule_fish_fed_reset\",\"state\":\"on\",\"attributes\":{\"id\":\"1775870211862\",\"last_triggered\":\"2026-04-13T07:00:00.093011+00:00\",\"mode\":\"single\",\"current\":0,\"friendly_name\":\"SCHEDULE - Fish Fed - Reset\"},\"last_changed\":\"2026-04-11T01:20:05.486368+00:00\",\"last_reported\":\"2026-04-13T07:00:00.094491+00:00\",\"last_updated\":\"2026-04-13T07:00:00.094491+00:00\",\"context\":{\"id\":\"01KP2T7NEWQNQZM4AFM7033VMV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.zigb", - "offset_ms": 155 - }, - { - "direction": "recv", - "type": "text", - "payload": "ee2mqtt_bridge_connection_state\",\"state\":\"on\",\"attributes\":{\"device_class\":\"connectivity\",\"friendly_name\":\"Zigbee2MQTT Bridge Connection state\"},\"last_changed\":\"2026-04-11T01:20:06.424908+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424908+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424908+00:00\",\"context\":{\"id\":\"01KNX1ZVRRCT263ZBXHP5JDW76\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"state\":\"off\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:21:03.728604+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728604+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728604+00:00\",\"context\":{\"id\":\"01KNX21KQGYBH6R1YC2PE20ZGJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"state\":\"off\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728561+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728561+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728561+00:00\",\"context\":{\"id\":\"01KNX21KQGQDM8CZDCYA2G4NF7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"moisture\",\"friendly_name\":\"Kitchen Sink Water Sensor Moisture\"},\"last_changed\":\"2026-04-11T01:20:06.427776+00:00\",\"last_reported\":\"2026-04-11T01:20:06.427776+00:00\",\"last_updated\":\"2026-04-11T01:20:06.427776+00:00\",\"context\":{\"id\":\"01KNX1ZVRV4095142ESXGP25MN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:20:06.423517+00:00\",\"last_reported\":\"2026-04-11T01:20:06.423517+00:00\",\"last_updated\":\"2026-04-11T01:20:06.423517+00:00\",\"context\":{\"id\":\"01KNX1ZVRQ7MQGJ6EHTX2H6YFM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"restart\",\"friendly_name\":\"Zigbee2MQTT Bridge Restart\"},\"last_changed\":\"2026-04-11T01:20:06.428925+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428925+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428925+00:00\",\"context\":{\"id\":\"01KNX1ZVRWECSCHYBVVHE0C2GD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Reset total energy\"},\"last_changed\":\"2026-04-11T01:20:06.424717+00:00\",\"last_reported\":\"2026-04-11T01:20:06.424717+00:00\",\"last_updated\":\"2026-04-11T01:20:06.424717+00:00\",\"context\":{\"id\":\"01KNX1ZVRRVT3B91N36GNRD4QB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.under_cabinet_lighting\",\"state\":\"on\",\"attributes\":{\"effect_list\":[\"blink\",\"breathe\",\"okay\",\"channel_change\",\"finish_effect\",\"stop_effect\"],\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":\"brightness\",\"brightness\":255,\"friendly_name\":\"Under Cabinet Lighting\",\"supported_features\":44},\"last_changed\":\"2026-04-12T18:49:32.294427+00:00\",\"last_reported\":\"2026-04-12T18:49:32.294427+00:00\",\"last_updated\":\"2026-04-12T18:49:32.294427+00:00\",\"context\":{\"id\":\"01KP1GE4RCJJY85HS7BW2HE6EF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"number.desk_cube_last_side\",\"state\":\"2\",\"attributes\":{\"min\":0.0,\"max\":6.0,\"step\":1.0,\"mode\":\"box\",\"assumed_state\":true,\"friendly_name\":\"desk_cube last side\"},\"last_changed\":\"2026-04-11T01:20:33.717843+00:00\",\"last_reported\":\"2026-04-11T01:20:33.717843+00:00\",\"last_updated\":\"2026-04-11T01:20:33.717843+00:00\",\"context\":{\"id\":\"01KNX20PDNPBZ97Z4Z00Y93JVG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn off\"},\"last_changed\":\"2026-04-11T01:21:03.732011+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732011+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732011+00:00\",\"context\":{\"id\":\"01KNX21KQMP4AJV3HVDX0YRDBX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"state\":\"0\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"s\",\"friendly_name\":\"Freezer Power Monitor Countdown to turn on\"},\"last_changed\":\"2026-04-11T01:21:03.732045+00:00\",\"last_reported\":\"2026-04-11T01:21:03.732045+00:00\",\"last_updated\":\"2026-04-11T01:21:03.732045+00:00\",\"context\":{\"id\":\"01KNX21KQMVESAGM2YH1N8GMAG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power rise threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731649+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731649+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731649+00:00\",\"context\":{\"id\":\"01KNX21KQKW0AZXA8BCPCVJ4P8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"state\":\"3200\",\"attributes\":{\"min\":0.0,\"max\":65535.0,\"step\":1.0,\"mode\":\"auto\",\"unit_of_measurement\":\"w\",\"friendly_name\":\"Freezer Power Monitor Power drop threshold\"},\"last_changed\":\"2026-04-11T01:21:03.731850+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731850+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731850+00:00\",\"context\":{\"id\":\"01KNX21KQKFHD04MR2181J8YTD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"state\":\"info\",\"attributes\":{\"options\":[\"error\",\"warning\",\"info\",\"debug\"],\"friendly_name\":\"Zigbee2MQTT Bridge Log level\"},\"last_changed\":\"2026-04-11T01:20:06.433150+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433150+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433150+00:00\",\"context\":{\"id\":\"01KNX1ZVS11TV0M6H9P06VHXWP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"state\":\"on\",\"attributes\":{\"options\":[\"off\",\"on\",\"toggle\",\"previous\"],\"icon\":\"mdi:power-settings\",\"friendly_name\":\"Freezer Power Monitor Power-on behavior\"},\"last_changed\":\"2026-04-11T01:21:03.731971+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731971+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731971+00:00\",\"context\":{\"id\":\"01KNX21KQKHYF7TF8T6CDM8RP0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"state\":\"2.7.2\",\"attributes\":{\"icon\":\"mdi:zigbee\",\"friendly_name\":\"Zigbee2MQTT Bridge Version\"},\"last_changed\":\"2026-04-11T01:20:06.433018+00:00\",\"last_reported\":\"2026-04-11T01:20:06.433018+00:00\",\"last_updated\":\"2026-04-11T01:20:06.433018+00:00\",\"context\":{\"id\":\"01KNX1ZVS1YY5QNRPEAQ0T94GE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_battery\",\"state\":\"77\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"desk_cube Battery\"},\"last_changed\":\"2026-04-12T22:00:09.365740+00:00\",\"last_reported\":\"2026-04-12T22:00:09.365740+00:00\",\"last_updated\":\"2026-04-12T22:00:09.365740+00:00\",\"context\":{\"id\":\"01KP1VB5WNSWXWN85QAMPV49XZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_angle\",\"state\":\"unknown\",\"attributes\":{\"unit_of_measurement\":\"°\",\"friendly_name\":\"desk_cube Action angle\"},\"last_changed\":\"2026-04-11T18:23:01.941555+00:00\",\"last_reported\":\"2026-04-11T18:23:01.941555+00:00\",\"last_updated\":\"2026-04-11T18:23:01.941555+00:00\",\"context\":{\"id\":\"01KNYWGWSNJ097067WG28HSBKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_device_temperature\",\"state\":\"71.6\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"desk_cube Temperature\"},\"last_changed\":\"2026-04-13T05:25:28.900026+00:00\",\"last_reported\":\"2026-04-13T05:25:28.900026+00:00\",\"last_updated\":\"2026-04-13T05:25:28.900026+00:00\",\"context\":{\"id\":\"01KP2MTK649CYMA21KF9FNCWYC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_from_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action from side\"},\"last_changed\":\"2026-04-11T01:20:06.426411+00:00\",\"last_reported\":\"2026-04-11T01:20:06.426411+00:00\",\"last_updated\":\"2026-04-11T01:20:06.426411+00:00\",\"context\":{\"id\":\"01KNX1ZVRT95EWPQ3BFG9NJQN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action side\"},\"last_changed\":\"2026-04-11T01:20:06.428311+00:00\",\"last_reported\":\"2026-04-11T01:20:06.428311+00:00\",\"last_updated\":\"2026-04-11T01:20:06.428311+00:00\",\"context\":{\"id\":\"01KNX1ZVRWMQ3G6WFGDFNJ88VM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_action_to_side\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"desk_cube Action to side\"},\"last_changed\":\"2026-04-11T01:20:06.425007+00:00\",\"last_reported\":\"2026-04-11T01:20:06.425007+00:00\",\"last_updated\":\"2026-04-11T01:20:06.425007+00:00\",\"context\":{\"id\":\"01KNX1ZVRSVSR821WXXTBNKZQT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.desk_cube_side\",\"state\":\"2\",\"attributes\":{\"friendly_name\":\"desk_cube Side\"},\"last_changed\":\"2026-04-11T01:21:03.724556+00:00\",\"last_reported\":\"2026-04-11T01:21:03.724556+00:00\",\"last_updated\":\"2026-04-11T01:21:03.724556+00:00\",\"context\":{\"id\":\"01KNX21KQCGY7E7REJP6QJ15MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Master Bath Cabinet Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.728662+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728662+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728662+00:00\",\"context\":{\"id\":\"01KNX21KQGQQVQ1MJXRSYCVMAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_battery\",\"state\":\"10\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Freezer Sensor Battery\"},\"last_changed\":\"2026-04-13T03:02:30.948315+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948315+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948315+00:00\",\"context\":{\"id\":\"01KP2CMT94Y14XKNK7TMVBMV0D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_temperature\",\"state\":\"7.07\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Freezer Sensor Temperature\"},\"last_changed\":\"2026-04-13T07:46:41.998513+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998513+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998513+00:00\",\"context\":{\"id\":\"01KP2WX5PEB37SVVV2QJZ0P1B6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_humidity\",\"state\":\"29.69\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Freezer Sensor Humidity\"},\"last_changed\":\"2026-04-13T07:46:41.998284+00:00\",\"last_reported\":\"2026-04-13T07:46:41.998284+00:00\",\"last_updated\":\"2026-04-13T07:46:41.998284+00:00\",\"context\":{\"id\":\"01KP2WX5PE05G4T05QR7Y1DJSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_pressure\",\"state\":\"29.7425991807774\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"inHg\",\"device_class\":\"atmospheric_pressure\",\"friendly_name\":\"Freezer Sensor Atmospheric pressure\"},\"last_changed\":\"2026-04-13T07:44:29.525988+00:00\",\"last_reported\":\"2026-04-13T07:44:29.525988+00:00\",\"last_updated\":\"2026-04-13T07:44:29.525988+00:00\",\"context\":{\"id\":\"01KP2WS4AN1WCF8ZG80DZ28DFY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_sensor_voltage\",\"state\":\"2865\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Sensor Voltage\"},\"last_changed\":\"2026-04-13T03:02:30.948576+00:00\",\"last_reported\":\"2026-04-13T03:02:30.948576+00:00\",\"last_updated\":\"2026-04-13T03:02:30.948576+00:00\",\"context\":{\"id\":\"01KP2CMT94BGKGN5D75FRKBKF9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_power\",\"state\":\"80.9\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Freezer Power Monitor Power\"},\"last_changed\":\"2026-04-13T04:39:35.116773+00:00\",\"last_reported\":\"2026-04-13T04:39:35.116773+00:00\",\"last_updated\":\"2026-04-13T04:39:35.116773+00:00\",\"context\":{\"id\":\"01KP2J6HYCX9QD0WWXGE49818S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"state\":\"123.2\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Freezer Power Monitor Voltage\"},\"last_changed\":\"2026-04-13T05:04:33.081607+00:00\",\"last_reported\":\"2026-04-13T05:04:33.081607+00:00\",\"last_updated\":\"2026-04-13T05:04:33.081607+00:00\",\"context\":{\"id\":\"01KP2KM8SS0GDXX5Q5SZBNDGEM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"state\":\"60\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"friendly_name\":\"Freezer Power Monitor Frequency\"},\"last_changed\":\"2026-04-11T01:21:03.731890+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731890+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731890+00:00\",\"context\":{\"id\":\"01KNX21KQKH4S7VBKQK8XA3QNA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_current\",\"state\":\"0.72\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"A\",\"device_class\":\"current\",\"friendly_name\":\"Freezer Power Monitor Current\"},\"last_changed\":\"2026-04-13T04:22:23.066394+00:00\",\"last_reported\":\"2026-04-13T04:22:23.066394+00:00\",\"last_updated\":\"2026-04-13T04:22:23.066394+00:00\",\"context\":{\"id\":\"01KP2H722TXG9JGSD78A0K8M7Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"state\":\"7.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Freezer Power Monitor Energy\"},\"last_changed\":\"2026-04-13T07:33:09.138437+00:00\",\"last_reported\":\"2026-04-13T07:33:09.138437+00:00\",\"last_updated\":\"2026-04-13T07:33:09.138437+00:00\",\"context\":{\"id\":\"01KP2W4BWJ3T9KRR43Q04YE7HY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Fish Fed Battery\"},\"last_changed\":\"2026-04-11T01:21:03.734061+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734061+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734061+00:00\",\"context\":{\"id\":\"01KNX21KQPFWQBPK39V1W6EQTZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.fish_fed_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Fish Fed Voltage\"},\"last_changed\":\"2026-04-11T02:47:40.872233+00:00\",\"last_reported\":\"2026-04-11T02:47:40.872905+00:00\",\"last_updated\":\"2026-04-11T02:47:40.872233+00:00\",\"context\":{\"id\":\"01KNX70728X6RSY9RW2S6J09M5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Tracker One Battery\"},\"last_changed\":\"2026-04-11T01:21:03.736643+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736643+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736643+00:00\",\"context\":{\"id\":\"01KNX21KQR8YH591T5EMJ50Q4E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.tracker_one_voltage\",\"state\":\"3100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"mV\",\"device_class\":\"voltage\",\"friendly_name\":\"Tracker One Voltage\"},\"last_changed\":\"2026-04-11T18:55:03.867122+00:00\",\"last_reported\":\"2026-04-11T18:55:03.867122+00:00\",\"last_updated\":\"2026-04-11T18:55:03.867122+00:00\",\"context\":{\"id\":\"01KNYYBHNVTVVWJ1ZW963KB09N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"state\":\"100\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"battery\",\"friendly_name\":\"Kitchen Sink Water Sensor Battery\"},\"last_changed\":\"2026-04-11T01:21:03.737759+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737759+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737759+00:00\",\"context\":{\"id\":\"01KNX21KQSYK18C7GEX6KGKFD7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"state\":\"off\",\"attributes\":{\"icon\":\"mdi:human-greeting-proximity\",\"friendly_name\":\"Zigbee2MQTT Bridge Permit join\"},\"last_changed\":\"2026-04-11T01:20:06.432850+00:00\",\"last_reported\":\"2026-04-11T01:20:06.432850+00:00\",\"last_updated\":\"2026-04-11T01:20:06.432850+00:00\",\"context\":{\"id\":\"01KNX1ZVS04RENDXDCDN7NBYRY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_desk_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Desk Plug\"},\"last_changed\":\"2026-04-11T01:21:03.725814+00:00\",\"last_reported\":\"2026-04-11T01:21:03.725814+00:00\",\"last_updated\":\"2026-04-11T01:21:03.725814+00:00\",\"context\":{\"id\":\"01KNX21KQDBB0W3KMC2JCH9GWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.vr_cabinet_plug\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"VR Cabinet Plug\"},\"last_changed\":\"2026-04-11T01:21:03.726883+00:00\",\"last_reported\":\"2026-04-11T01:21:03.726883+00:00\",\"last_updated\":\"2026-04-11T01:21:03.726883+00:00\",\"context\":{\"id\":\"01KNX21KQE100784658AP2HRWM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"state\":\"off\",\"attributes\":{\"friendly_name\":\"Under Cabinet Lighting Do not disturb\"},\"last_changed\":\"2026-04-11T01:21:03.727568+00:00\",\"last_reported\":\"2026-04-11T01:21:03.727568+00:00\",\"last_updated\":\"2026-04-11T01:21:03.727568+00:00\",\"context\":{\"id\":\"01KNX21KQF72055NG48YP8N70W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor\"},\"last_changed\":\"2026-04-11T01:21:03.731727+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731727+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731727+00:00\",\"context\":{\"id\":\"01KNX21KQKGPNE3NEXEKH2WXK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"state\":\"on\",\"attributes\":{\"friendly_name\":\"Freezer Power Monitor Metering only mode\"},\"last_changed\":\"2026-04-11T01:21:03.731694+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731694+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731694+00:00\",\"context\":{\"id\":\"01KNX21KQKP1KDAH19Y3TQVESY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percen", - "offset_ms": 157 - }, - { - "direction": "recv", - "type": "text", - "payload": "tage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Master Bath Cabinet Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.728481+00:00\",\"last_reported\":\"2026-04-11T01:21:03.728481+00:00\",\"last_updated\":\"2026-04-11T01:21:03.728481+00:00\",\"context\":{\"id\":\"01KNX21KQGW4QQZ8X1VFQHAANB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.freezer_power_monitor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"47\",\"in_progress\":false,\"latest_version\":\"47\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Freezer Power Monitor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.731492+00:00\",\"last_reported\":\"2026-04-11T01:21:03.731492+00:00\",\"last_updated\":\"2026-04-11T01:21:03.731492+00:00\",\"context\":{\"id\":\"01KNX21KQKGB529BR2AXXPQR5H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.fish_fed\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Fish Fed\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.734142+00:00\",\"last_reported\":\"2026-04-11T01:21:03.734142+00:00\",\"last_updated\":\"2026-04-11T01:21:03.734142+00:00\",\"context\":{\"id\":\"01KNX21KQP15PGZV2NDM2QKJ59\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.tracker_one\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"8704\",\"in_progress\":false,\"latest_version\":\"8704\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Tracker One\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.736573+00:00\",\"last_reported\":\"2026-04-11T01:21:03.736573+00:00\",\"last_updated\":\"2026-04-11T01:21:03.736573+00:00\",\"context\":{\"id\":\"01KNX21KQR0W0Y79VTPJ861CFE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.kitchen_sink_water_sensor\",\"state\":\"off\",\"attributes\":{\"auto_update\":false,\"display_precision\":0,\"installed_version\":\"4098\",\"in_progress\":false,\"latest_version\":\"4098\",\"release_summary\":null,\"release_url\":null,\"skipped_version\":null,\"title\":null,\"update_percentage\":null,\"device_class\":\"firmware\",\"entity_picture\":\"https://github.com/Koenkk/zigbee2mqtt/raw/master/images/logo.png\",\"friendly_name\":\"Kitchen Sink Water Sensor\",\"supported_features\":5},\"last_changed\":\"2026-04-11T01:21:03.737676+00:00\",\"last_reported\":\"2026-04-11T01:21:03.737676+00:00\",\"last_updated\":\"2026-04-11T01:21:03.737676+00:00\",\"context\":{\"id\":\"01KNX21KQS2GDP3F86PVKR5XG6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446357+00:00\",\"context\":{\"id\":\"01KP2Y5C8PPE38QF5PGXRKSC0S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Range Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.430576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432426+00:00\",\"last_updated\":\"2026-04-13T02:17:39.430576+00:00\",\"context\":{\"id\":\"01KP2A2NV6YM702T22N2KKRZWB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dryer Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.458899+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432503+00:00\",\"last_updated\":\"2026-04-13T02:34:39.458899+00:00\",\"context\":{\"id\":\"01KP2B1SZ2RM01X1Y68YHA0TPP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Washer Power Minute Average\"},\"last_changed\":\"2026-04-13T05:45:39.432839+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432563+00:00\",\"last_updated\":\"2026-04-13T05:45:39.432839+00:00\",\"context\":{\"id\":\"01KP2NZHB8SMX74JG7TY5GZT5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1min\",\"state\":\"2.68637988567352\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bath GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446756+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446756+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446756+00:00\",\"context\":{\"id\":\"01KP2Y5C8P71QJ98QHGGZA7CRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"state\":\"65.1771557569504\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dining Room Outlets Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446865+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446865+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446865+00:00\",\"context\":{\"id\":\"01KP2Y5C8P9PVCBWV8K22VN50C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1min\",\"state\":\"62.0263044039408\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Microwave Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.446959+00:00\",\"last_reported\":\"2026-04-13T08:08:39.446959+00:00\",\"last_updated\":\"2026-04-13T08:08:39.446959+00:00\",\"context\":{\"id\":\"01KP2Y5C8P0AXJFGZF43QJPGSW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 1 Power Minute Average\"},\"last_changed\":\"2026-04-13T02:34:39.459337+00:00\",\"last_reported\":\"2026-04-13T08:04:39.432913+00:00\",\"last_updated\":\"2026-04-13T02:34:39.459337+00:00\",\"context\":{\"id\":\"01KP2B1SZ3K5NGQNNJND62JMV3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"state\":\"88.8780977249145\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Outlets 2 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447107+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447107+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447107+00:00\",\"context\":{\"id\":\"01KP2Y5C8QBN67WZ4MYV7FBJTH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Jacuzzi Tub Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437798+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433057+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437798+00:00\",\"context\":{\"id\":\"01KP0V550XK45DH7DVGYMQGK4S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.437911+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433144+00:00\",\"last_updated\":\"2026-04-12T12:37:37.437911+00:00\",\"context\":{\"id\":\"01KP0V550XVR5ZV1P2AD31EYBY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438023+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433198+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438023+00:00\",\"context\":{\"id\":\"01KP0V550Y1AVYMT7ARYW0R21A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438134+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433248+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438134+00:00\",\"context\":{\"id\":\"01KP0V550YQK2V0BS5KDCQB4W4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438245+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433297+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438245+00:00\",\"context\":{\"id\":\"01KP0V550YHWDGQNXVCY57HWQ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438353+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433345+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438353+00:00\",\"context\":{\"id\":\"01KP0V550Y1XHPEXYQHYNJT44R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438467+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433392+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438467+00:00\",\"context\":{\"id\":\"01KP0V550Y8M9R3KFNA4HYW85J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025_secondary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.438576+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433437+00:00\",\"last_updated\":\"2026-04-12T12:37:37.438576+00:00\",\"context\":{\"id\":\"01KP0V550YS0614XR9HYMYHPA5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1min\",\"state\":\"2366.77776743571\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447585+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447585+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447585+00:00\",\"context\":{\"id\":\"01KP2Y5C8QHF50SDMRB8NZHHDC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarA Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440016+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433573+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440016+00:00\",\"context\":{\"id\":\"01KP2C88DGE38YZ6F1RPFV2RPJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1min\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"SolarB Power Minute Average\"},\"last_changed\":\"2026-04-13T02:55:39.440099+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433624+00:00\",\"last_updated\":\"2026-04-13T02:55:39.440099+00:00\",\"context\":{\"id\":\"01KP2C88DGRRRDEWMSBP9XENE3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"1025 _primary Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439025+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433672+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439025+00:00\",\"context\":{\"id\":\"01KP0V550ZF1DJZPPMCFAEJNPZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1min\",\"state\":\"1131.91472167969\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"AC Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447819+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447819+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447819+00:00\",\"context\":{\"id\":\"01KP2Y5C8Q8W197CTFKB9M50EE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1min\",\"state\":\"412.7560643514\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Furnace Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.447902+00:00\",\"last_reported\":\"2026-04-13T08:08:39.447902+00:00\",\"last_updated\":\"2026-04-13T08:08:39.447902+00:00\",\"context\":{\"id\":\"01KP2Y5C8QE5M0HFPZ6H1SSGBD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Disposal Power Minute Average\"},\"last_changed\":\"2026-04-12T12:37:37.439359+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433893+00:00\",\"last_updated\":\"2026-04-12T12:37:37.439359+00:00\",\"context\":{\"id\":\"01KP0V550ZFA2QA1ZFB78PBXJJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Dishwasher Power Minute Average\"},\"last_changed\":\"2026-04-13T02:17:39.432228+00:00\",\"last_reported\":\"2026-04-13T08:04:39.433948+00:00\",\"last_updated\":\"2026-04-13T02:17:39.432228+00:00\",\"context\":{\"id\":\"01KP2A2NV8SEDQ2VVNX1RR0B4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"state\":\"35.1117570241292\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Kitchen Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448088+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448088+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448088+00:00\",\"context\":{\"id\":\"01KP2Y5C8RB8NX5D2WKK3DZT4K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1min\",\"state\":\"138.454404830933\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage Lights Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448170+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448170+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448170+00:00\",\"context\":{\"id\":\"01KP2Y5C8RXNC9NSFFAM0JGYR4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1min\",\"state\":\"28.9889353990555\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Entry Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448274+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448274+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448274+00:00\",\"context\":{\"id\":\"01KP2Y5C8R0SD7E6QXWGP8EV70\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1min\",\"state\":\"130.305599784851\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Loft Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448357+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448357+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448357+00:00\",\"context\":{\"id\":\"01KP2Y5C8RADZFPSYRST9FG29Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Upstairs Bath Power Minute Average\"},\"last_changed\":\"2026-04-13T05:09:39.442551+00:00\",\"last_reported\":\"2026-04-13T08:04:39.434357+00:00\",\"last_updated\":\"2026-04-13T05:09:39.442551+00:00\",\"context\":{\"id\":\"01KP2KXKZJNDDFRXTFTW60ADV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1min\",\"state\":\"219.144525273641\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Living Room Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448492+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448492+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448492+00:00\",\"context\":{\"id\":\"01KP2Y5C8R7XEVVR3RB46K1GKQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"state\":\"83.3701566378276\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 2 + Master Bed Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448571+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448571+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448571+00:00\",\"context\":{\"id\":\"01KP2Y5C8RAHGB6QPJ0NTBZRJ5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"state\":\"85.5368425369263\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Bed 3 and 4 Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448649+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448649+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448649+00:00\",\"context\":{\"id\":\"01KP2Y5C8R5M9QKZKTGAMKBAGF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1min\",\"state\":\"132.202325693766\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Garage GFCI Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448727+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448727+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448727+00:00\",\"context\":{\"id\":\"01KP2Y5C8RFAGGQR5DKCQYHJE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"state\":\"218.767937771479\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448804+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448804+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448804+00:00\",\"context\":{\"id\":\"01KP2Y5C8RMDTDT7H3XJG4YXV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"state\":\"2616.5532709837\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"TotalUsage Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448882+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448882+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448882+00:00\",\"context\":{\"id\":\"01KP2Y5C8R1FT91BVXYSA70RSY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1min\",\"state\":\"-249.775503547987\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"friendly_name\":\"Balance Power Minute Average\"},\"last_changed\":\"2026-04-13T08:08:39.448961+00:00\",\"last_reported\":\"2026-04-13T08:08:39.448961+00:00\",\"last_updated\":\"2026-04-13T08:08:39.448961+00:00\",\"context\":{\"id\":\"01KP2Y5C8RR9WD0Y3X0ESPP7HD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796216+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796216+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796216+00:00\",\"context\":{\"id\":\"01KP2VCFWCYR4XV18TT3X46CAB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1mon\",\"state\":\"5.61100904589812\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.776900+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796465+00:00\",\"last_updated\":\"2026-04-13T02:20:06.776900+00:00\",\"context\":{\"id\":\"01KP2A75QRVG7D6XQYGB2EYZTM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1mon\",\"state\":\"0.0878266281498803\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785288+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796591+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785288+00:00\",\"context\":{\"id\":\"01KP2DN1C1R73YK3PFTT5D65B1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1mon\",\"state\":\"10.7126449770224\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy This Month\"},\"last_changed\":\"2026-04-13T06:20:06.774533+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796693+00:00\",\"last_updated\":\"2026-04-13T06:20:06.774533+00:00\",\"context\":{\"id\":\"01KP2QYM7PDX1WXPM1976FYX4X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"state\":\"3.79834586543825\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796790+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796790+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796790+00:00\",\"context\":{\"id\":\"01KP2VCFWCE9T8G0SG9DHGTC6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"state\":\"44.7717431226261\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.796931+00:00\",\"last_reported\":\"2026-04-13T07:20:06.796931+00:00\",\"last_updated\":\"2026-04-13T07:20:06.796931+00:00\",\"context\":{\"id\":\"01KP2VCFWC485JNWP9TJ19XHYA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1mon\",\"state\":\"3.80284679783331\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797064+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797064+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797064+00:00\",\"context\":{\"id\":\"01KP2VCFWDX9NW8GW0796S169X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"state\":\"0.387957856954204\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.785963+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797229+00:00\",\"last_updated\":\"2026-04-13T03:20:06.785963+00:00\",\"context\":{\"id\":\"01KP2DN1C15VSTZ1EHYG7SHBBG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"state\":\"25.5248710381979\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.797325+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797325+00:00\",\"last_updated\":\"2026-04-13T07:20:06.797325+00:00\",\"context\":{\"id\":\"01KP2VCFWDY6HH0RVZMPCRRW12\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"state\":\"0.01893096728007\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy This Month\"},\"last_changed\":\"2026-04-11T20:20:06.747979+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797452+00:00\",\"last_updated\":\"2026-04-11T20:20:06.747979+00:00\",\"context\":{\"id\":\"01KNZ378YV2S20ZFER10NGA30R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.751", - "offset_ms": 160 - }, - { - "direction": "recv", - "type": "text", - "payload": "849+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797544+00:00\",\"last_updated\":\"2026-04-11T09:20:06.751849+00:00\",\"context\":{\"id\":\"01KNXXES2ZJZ5WQP7BJ2Z2ZJMH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752022+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797633+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752022+00:00\",\"context\":{\"id\":\"01KNXXES307YATEPF5FMREB9V2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752194+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797719+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752194+00:00\",\"context\":{\"id\":\"01KNXXES30FKJR2S1SPFP6T7A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752366+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797805+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752366+00:00\",\"context\":{\"id\":\"01KNXXES30TK5Q5NZ2X7MNJXDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752539+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797889+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752539+00:00\",\"context\":{\"id\":\"01KNXXES30X6ES90603VQ1VSKD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752709+00:00\",\"last_reported\":\"2026-04-13T07:20:06.797970+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752709+00:00\",\"context\":{\"id\":\"01KNXXES30MMJSZXJZVPAN6VHX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.752884+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798054+00:00\",\"last_updated\":\"2026-04-11T09:20:06.752884+00:00\",\"context\":{\"id\":\"01KNXXES3024MRWES1YJJF2J2T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"state\":\"94.7161762994003\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798140+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798140+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798140+00:00\",\"context\":{\"id\":\"01KP2VCFWE53C87A53W0R2H9GB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1mon\",\"state\":\"-137.128895172321\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798267+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798267+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798267+00:00\",\"context\":{\"id\":\"01KP2VCFWEYDNEHX5WF7FMEJR7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1mon\",\"state\":\"277.564326621422\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787158+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798395+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787158+00:00\",\"context\":{\"id\":\"01KP2DN1C3MDWSAT8V54NVEMSR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1mon\",\"state\":\"274.218772338214\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy This Month\"},\"last_changed\":\"2026-04-13T03:20:06.787286+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798485+00:00\",\"last_updated\":\"2026-04-13T03:20:06.787286+00:00\",\"context\":{\"id\":\"01KP2DN1C3F4HZVV4BVFNZB8Q4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.753773+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798570+00:00\",\"last_updated\":\"2026-04-11T09:20:06.753773+00:00\",\"context\":{\"id\":\"01KNXXES31EA7MWE2FB8JG70XE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1mon\",\"state\":\"42.4204015917757\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798655+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798655+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798655+00:00\",\"context\":{\"id\":\"01KP2VCFWEE6MQP2K4E3QWYHFA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1mon\",\"state\":\"24.269994413539\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.798782+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798782+00:00\",\"last_updated\":\"2026-04-13T07:20:06.798782+00:00\",\"context\":{\"id\":\"01KP2VCFWEPQYMRA9ZDB0KSK9H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1mon\",\"state\":\"0.00300132414923774\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754089+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798907+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754089+00:00\",\"context\":{\"id\":\"01KNXXES3225PV1EDKFKZW665Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1mon\",\"state\":\"7.09089989823407\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy This Month\"},\"last_changed\":\"2026-04-13T02:20:06.779679+00:00\",\"last_reported\":\"2026-04-13T07:20:06.798997+00:00\",\"last_updated\":\"2026-04-13T02:20:06.779679+00:00\",\"context\":{\"id\":\"01KP2A75QVSX3XR473465QZ3MC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"state\":\"3.13701995789952\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799083+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799083+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799083+00:00\",\"context\":{\"id\":\"01KP2VCFWF29GT0NE6FMSAH0FY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1mon\",\"state\":\"6.71274923824549\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799209+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799209+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799209+00:00\",\"context\":{\"id\":\"01KP2VCFWFCAYEECK79TD5K41W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1mon\",\"state\":\"17.7501362563901\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799334+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799334+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799334+00:00\",\"context\":{\"id\":\"01KP2VCFWFYHHHTAYCMRJ4NX64\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1mon\",\"state\":\"38.5848635244724\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799459+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799459+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799459+00:00\",\"context\":{\"id\":\"01KP2VCFWFQ0KS2SRQ1DDZ8KDB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"state\":\"2.57527186970751\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy This Month\"},\"last_changed\":\"2026-04-13T05:20:06.850775+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799584+00:00\",\"last_updated\":\"2026-04-13T05:20:06.850775+00:00\",\"context\":{\"id\":\"01KP2MGRP23RSX7TAXANG461XK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1mon\",\"state\":\"75.3186580910894\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799678+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799678+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799678+00:00\",\"context\":{\"id\":\"01KP2VCFWFT9BJB0HXCNKKYN7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"state\":\"16.7215697092374\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799803+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799803+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799803+00:00\",\"context\":{\"id\":\"01KP2VCFWFW5VZFR9KN5K9A4EM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"state\":\"43.8771751275677\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.799928+00:00\",\"last_reported\":\"2026-04-13T07:20:06.799928+00:00\",\"last_updated\":\"2026-04-13T07:20:06.799928+00:00\",\"context\":{\"id\":\"01KP2VCFWFPH032SRV5P54C8P2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"state\":\"34.8625037632349\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800051+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800051+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800051+00:00\",\"context\":{\"id\":\"01KP2VCFWGK8M5D6KJ3X9KJKT3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"state\":\"414.654203787315\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800146+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800146+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800146+00:00\",\"context\":{\"id\":\"01KP2VCFWG4G4AM7GE2FXVKX1X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"state\":\"6.61378272237234\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800185+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800185+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800185+00:00\",\"context\":{\"id\":\"01KP2VCFWGYCZ9XGHNPFPQSV43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754786+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800223+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754786+00:00\",\"context\":{\"id\":\"01KNXXES32KE939Y1YS4PDD3KK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-11T09:20:06.754838+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800251+00:00\",\"last_updated\":\"2026-04-11T09:20:06.754838+00:00\",\"context\":{\"id\":\"01KNXXES32T4RV3XGQXFZNDVM6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"state\":\"236.096583229252\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy This Month\"},\"last_changed\":\"2026-04-13T07:20:06.800279+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800279+00:00\",\"last_updated\":\"2026-04-13T07:20:06.800279+00:00\",\"context\":{\"id\":\"01KP2VCFWG3W4ZCB9RY7X2RW2A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"state\":\"373.225478401573\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-01T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy This Month\"},\"last_changed\":\"2026-04-12T23:20:06.757871+00:00\",\"last_reported\":\"2026-04-13T07:20:06.800316+00:00\",\"last_updated\":\"2026-04-12T23:20:06.757871+00:00\",\"context\":{\"id\":\"01KP1ZXJV5EWVJNCAQ4AP54AV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_123_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162066+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162066+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162066+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP629HB0HKQQRA1D3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.range_1_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Range Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383802+00:00\",\"last_reported\":\"2026-04-13T08:05:05.162950+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383802+00:00\",\"context\":{\"id\":\"01KP2VAKX71TE8TS9C92DDZQN1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dryer_2_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dryer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.383967+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163074+00:00\",\"last_updated\":\"2026-04-13T07:19:05.383967+00:00\",\"context\":{\"id\":\"01KP2VAKX7YWHVX1NT3BY5XR3T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.washer_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Washer Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384102+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163178+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384102+00:00\",\"context\":{\"id\":\"01KP2VAKX8C0GDP4EGNYCYHES1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bath_gfci_4_1d\",\"state\":\"0.0104764005298085\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bath GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162641+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162641+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162641+00:00\",\"context\":{\"id\":\"01KP2Y4ASAWECWK0PPMVD5SJ29\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"state\":\"0.0434308521170086\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dining Room Outlets Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162785+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162785+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162785+00:00\",\"context\":{\"id\":\"01KP2Y4ASAZ0F14SSH0VTMRFYT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.microwave_6_1d\",\"state\":\"0.0642365242714352\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Microwave Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.162922+00:00\",\"last_reported\":\"2026-04-13T08:08:05.162922+00:00\",\"last_updated\":\"2026-04-13T08:08:05.162922+00:00\",\"context\":{\"id\":\"01KP2Y4ASAP2XR30Q09VNSQAK8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 1 Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.384619+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163692+00:00\",\"last_updated\":\"2026-04-13T07:19:05.384619+00:00\",\"context\":{\"id\":\"01KP2VAKX8E6SAK52C5FEX1EZ4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"state\":\"0.090309649957286\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Outlets 2 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163154+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163154+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163154+00:00\",\"context\":{\"id\":\"01KP2Y4ASBDEZ12E7GRF392F72\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Jacuzzi Tub Energy Today\"},\"last_changed\":\"2026-04-12T07:01:05.165766+00:00\",\"last_reported\":\"2026-04-13T08:05:05.163924+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165539+00:00\",\"context\":{\"id\":\"01KP2T9N0DJD0Q38HC3WZ80WGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_10_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166261+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164019+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165667+00:00\",\"context\":{\"id\":\"01KP2T9N0DK0362XPA8D77Q920\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_11_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166444+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164112+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165793+00:00\",\"context\":{\"id\":\"01KP2T9N0DKD3ZW21DKM08DK63\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166617+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164200+00:00\",\"last_updated\":\"2026-04-13T07:01:05.165918+00:00\",\"context\":{\"id\":\"01KP2T9N0DM4Y7ZQ29DB3GKMCC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_13_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166791+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164284+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166042+00:00\",\"context\":{\"id\":\"01KP2T9N0EKT93N5NP44EMNZEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_14_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.166968+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164371+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166164+00:00\",\"context\":{\"id\":\"01KP2T9N0EWR88HCRWJ8SYKV1R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_15_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167140+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164456+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166291+00:00\",\"context\":{\"id\":\"01KP2T9N0EQMYJN8M1GQ0KQQ96\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_16_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025_secondary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167313+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164541+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166416+00:00\",\"context\":{\"id\":\"01KP2T9N0EN6PFEHHZM1TZGQJK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"state\":\"0.208453426875538\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.163985+00:00\",\"last_reported\":\"2026-04-13T08:08:05.163985+00:00\",\"last_updated\":\"2026-04-13T08:08:05.163985+00:00\",\"context\":{\"id\":\"01KP2Y4ASBMZ97C9MPSGX81BWE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167665+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164770+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166675+00:00\",\"context\":{\"id\":\"01KP2T9N0EC49Y2JVYFMV0MS7F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.167839+00:00\",\"last_reported\":\"2026-04-13T08:05:05.164851+00:00\",\"last_updated\":\"2026-04-13T07:01:05.166798+00:00\",\"context\":{\"id\":\"01KP2T9N0EAA3R73RQ78KYMDCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_123_1d\",\"state\":\"1.31575471768697\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164291+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164291+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164291+00:00\",\"context\":{\"id\":\"01KP2Y4ASCBSK5M0ACCSQNZ06P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solara_1_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarA Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386047+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165048+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386047+00:00\",\"context\":{\"id\":\"01KP2VAKXAJNYR4ZJMFEZ72YEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.solarb_2_1d\",\"state\":\"-0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"SolarB Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386175+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165161+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386175+00:00\",\"context\":{\"id\":\"01KP2VAKXAZZRE06CWP98HEXAA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_3_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"1025 _primary Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.168540+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165240+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167305+00:00\",\"context\":{\"id\":\"01KP2T9N0F0HXPYR4YJ2VRWTZN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ac_4_1d\",\"state\":\"0.0774924132209354\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"AC Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164692+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164692+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164692+00:00\",\"context\":{\"id\":\"01KP2Y4ASCA48MYS8YC8JBRW62\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.furnace_5_1d\",\"state\":\"0.0499174159484439\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Furnace Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.164823+00:00\",\"last_reported\":\"2026-04-13T08:08:05.164823+00:00\",\"last_updated\":\"2026-04-13T08:08:05.164823+00:00\",\"context\":{\"id\":\"01KP2Y4ASCW7G5VTMKE9K03SHP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.disposal_6_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Disposal Energy Today\"},\"last_changed\":\"2026-04-11T08:22:05.169070+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165554+00:00\",\"last_updated\":\"2026-04-13T07:01:05.167688+00:00\",\"context\":{\"id\":\"01KP2T9N0FEHNGAGJH0XZ9Q6HQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dishwasher_7_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Dishwasher Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.386748+00:00\",\"last_reported\":\"2026-04-13T08:05:05.165636+00:00\",\"last_updated\":\"2026-04-13T07:19:05.386748+00:00\",\"context\":{\"id\":\"01KP2VAKXAJV0X20VKEPRMJV05\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"state\":\"0.0369516779740652\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Kitchen Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.1651", - "offset_ms": 162 - }, - { - "direction": "recv", - "type": "text", - "payload": "65+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165165+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165165+00:00\",\"context\":{\"id\":\"01KP2Y4ASDKHV1FS3150D4JQDY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_lights_9_1d\",\"state\":\"0.142541250500149\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage Lights Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165300+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165300+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165300+00:00\",\"context\":{\"id\":\"01KP2Y4ASD1MGVW1EFC5QXNEP1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.entry_10_1d\",\"state\":\"0.0192646030632655\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Entry Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165429+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165429+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165429+00:00\",\"context\":{\"id\":\"01KP2Y4ASDXW77P078W1V0NDYN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.loft_11_1d\",\"state\":\"0.134551687840356\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Loft Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165556+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165556+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165556+00:00\",\"context\":{\"id\":\"01KP2Y4ASDY2NAJX0AAZWMTDMT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Upstairs Bath Energy Today\"},\"last_changed\":\"2026-04-13T07:19:05.387368+00:00\",\"last_reported\":\"2026-04-13T08:05:05.166247+00:00\",\"last_updated\":\"2026-04-13T07:19:05.387368+00:00\",\"context\":{\"id\":\"01KP2VAKXBY1X8XD6EN4BR4GZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.living_room_13_1d\",\"state\":\"0.319402784368727\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Living Room Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165777+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165777+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165777+00:00\",\"context\":{\"id\":\"01KP2Y4ASDRRXMPP5W3H7QWZ5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"state\":\"0.0797205102729797\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 2 + Master Bed Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.165902+00:00\",\"last_reported\":\"2026-04-13T08:08:05.165902+00:00\",\"last_updated\":\"2026-04-13T08:08:05.165902+00:00\",\"context\":{\"id\":\"01KP2Y4ASDQVVDECJS49VXSPKS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"state\":\"0.0891875659645928\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Bed 3 and 4 Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166028+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166028+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166028+00:00\",\"context\":{\"id\":\"01KP2Y4ASE499D13Q32267V6C9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.garage_gfci_16_1d\",\"state\":\"0.148985884971619\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Garage GFCI Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166151+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166151+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166151+00:00\",\"context\":{\"id\":\"01KP2Y4ASEWPQ175R07H50TNKA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"state\":\"1.324072885157\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"TotalUsage Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166279+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166279+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166279+00:00\",\"context\":{\"id\":\"01KP2Y4ASEMX2K0KZWA62THBHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_balance_1d\",\"state\":\"0.00928549668629959\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"Balance Energy Today\"},\"last_changed\":\"2026-04-13T08:08:05.166412+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166412+00:00\",\"last_updated\":\"2026-04-13T08:08:05.166412+00:00\",\"context\":{\"id\":\"01KP2Y4ASEE9KPPTJ6DDQDXJ6X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"state\":\"1.24037032029046\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsFromGrid Energy Today\"},\"last_changed\":\"2026-04-13T08:06:05.371024+00:00\",\"last_reported\":\"2026-04-13T08:08:05.166538+00:00\",\"last_updated\":\"2026-04-13T08:06:05.371024+00:00\",\"context\":{\"id\":\"01KP2Y0NSVE0RRWQJW61283TQR\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total\",\"last_reset\":\"2026-04-13T00:00:00-07:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"friendly_name\":\"MainsToGrid Energy Today\"},\"last_changed\":\"2026-04-13T07:01:05.168767+00:00\",\"last_reported\":\"2026-04-13T08:05:05.167198+00:00\",\"last_updated\":\"2026-04-13T07:01:05.168767+00:00\",\"context\":{\"id\":\"01KP2T9N0GBH5FY4V49ECKQM71\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bedroom FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:53:14.846248+00:00\",\"last_reported\":\"2026-04-13T04:53:14.846248+00:00\",\"last_updated\":\"2026-04-13T04:53:14.846248+00:00\",\"context\":{\"id\":\"01KP2JZJEY8TC61A5CAQF9F8TW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom\"},\"last_changed\":\"2026-04-13T04:51:31.554561+00:00\",\"last_reported\":\"2026-04-13T04:51:31.554561+00:00\",\"last_updated\":\"2026-04-13T04:51:31.554561+00:00\",\"context\":{\"id\":\"01KP2JWDK2T71YK3AMEMCN7G0K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bed_occupied\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:bed\",\"friendly_name\":\"Master Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800793+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800793+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800793+00:00\",\"context\":{\"id\":\"01KP2WFNVR6BD2XKRN7QNBCZTY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Master Bedroom Not Bed\"},\"last_changed\":\"2026-04-13T07:39:19.800981+00:00\",\"last_reported\":\"2026-04-13T07:39:19.800981+00:00\",\"last_updated\":\"2026-04-13T07:39:19.800981+00:00\",\"context\":{\"id\":\"01KP2WFNVRESSNKW5WMGT2KRSK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bedroom FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.397240+00:00\",\"last_reported\":\"2026-04-12T17:15:52.397240+00:00\",\"last_updated\":\"2026-04-12T17:15:52.397240+00:00\",\"context\":{\"id\":\"01KP1B2MPD5CRAQYS0K0XEHMR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Master Bath FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:50:42.615542+00:00\",\"last_reported\":\"2026-04-13T04:50:42.615542+00:00\",\"last_updated\":\"2026-04-13T04:50:42.615542+00:00\",\"context\":{\"id\":\"01KP2JTXSQ9ZDR20YZYC4W6WAT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bath_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Master Bath Presence\"},\"last_changed\":\"2026-04-13T04:50:25.963458+00:00\",\"last_reported\":\"2026-04-13T04:50:25.963458+00:00\",\"last_updated\":\"2026-04-13T04:50:25.963458+00:00\",\"context\":{\"id\":\"01KP2JTDHBVEYVEATG82CZD93W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Master Bath FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.762665+00:00\",\"last_reported\":\"2026-04-12T17:15:51.762665+00:00\",\"last_updated\":\"2026-04-12T17:15:51.762665+00:00\",\"context\":{\"id\":\"01KP1B2M2JBNHB9Q5HE9JHN5C1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Living Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:47:46.378043+00:00\",\"last_reported\":\"2026-04-13T04:47:46.378043+00:00\",\"last_updated\":\"2026-04-13T04:47:46.378043+00:00\",\"context\":{\"id\":\"01KP2JNHPAS691GEDQK5CN2SEZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"", - "offset_ms": 165 - }, - { - "direction": "recv", - "type": "text", - "payload": "binary_sensor.living_room_motion_detection\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Living Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:40:21.623956+00:00\",\"last_reported\":\"2026-04-13T04:40:21.623956+00:00\",\"last_updated\":\"2026-04-13T04:40:21.623956+00:00\",\"context\":{\"id\":\"01KP2J7ZBQ5FA2Q609DHSFGRJS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_couch_occupied\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Small Couch Occupied\"},\"last_changed\":\"2026-04-13T03:16:42.865073+00:00\",\"last_reported\":\"2026-04-13T03:16:42.865073+00:00\",\"last_updated\":\"2026-04-13T03:16:42.865073+00:00\",\"context\":{\"id\":\"01KP2DET7HQM3ZXV2XBKHAQAYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.main_couch_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Main Couch Presence\"},\"last_changed\":\"2026-04-13T04:40:08.929275+00:00\",\"last_reported\":\"2026-04-13T04:40:08.929275+00:00\",\"last_updated\":\"2026-04-13T04:40:08.929275+00:00\",\"context\":{\"id\":\"01KP2J7JZ1NN5E16AS9D1FNFB4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.massage_chair_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Massage Chair Presence\"},\"last_changed\":\"2026-04-12T19:11:18.224173+00:00\",\"last_reported\":\"2026-04-12T19:11:18.224173+00:00\",\"last_updated\":\"2026-04-12T19:11:18.224173+00:00\",\"context\":{\"id\":\"01KP1HP06GM0R53QPFPGR60FX1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Living Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.148657+00:00\",\"last_reported\":\"2026-04-12T17:15:52.148657+00:00\",\"last_updated\":\"2026-04-12T17:15:52.148657+00:00\",\"context\":{\"id\":\"01KP1B2MEMN36RPK963VHNTT5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"state\":\"13\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Dining Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:44:27.609799+00:00\",\"last_reported\":\"2026-04-13T04:44:27.609799+00:00\",\"last_updated\":\"2026-04-13T04:44:27.609799+00:00\",\"context\":{\"id\":\"01KP2JFFJSXM8KNN0HMS3SWP86\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612381+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612381+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612381+00:00\",\"context\":{\"id\":\"01KP2JFGJ42HTTHHQ35MYMA5A0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.dining_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Dining Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:04.968072+00:00\",\"last_reported\":\"2026-04-13T04:44:04.968072+00:00\",\"last_updated\":\"2026-04-13T04:44:04.968072+00:00\",\"context\":{\"id\":\"01KP2JESF80K0HHW72N1AWMY7D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Kitchen Motion Detected\"},\"last_changed\":\"2026-04-13T04:44:28.612189+00:00\",\"last_reported\":\"2026-04-13T04:44:28.612189+00:00\",\"last_updated\":\"2026-04-13T04:44:28.612189+00:00\",\"context\":{\"id\":\"01KP2JFGJ46H7Y3GZB7BR72F7M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Dining Room FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:52.434834+00:00\",\"last_reported\":\"2026-04-12T17:15:52.434834+00:00\",\"last_updated\":\"2026-04-12T17:15:52.434834+00:00\",\"context\":{\"id\":\"01KP1B2MQJ0NG9AFB3ZQ9ES09M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Office FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T03:32:09.585871+00:00\",\"last_reported\":\"2026-04-13T03:32:09.585871+00:00\",\"last_updated\":\"2026-04-13T03:32:09.585871+00:00\",\"context\":{\"id\":\"01KP2EB37HCHSQ4QN7J2HENMT0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Office Motion Detection\"},\"last_changed\":\"2026-04-13T06:02:05.737952+00:00\",\"last_reported\":\"2026-04-13T06:02:05.737952+00:00\",\"last_updated\":\"2026-04-13T06:02:05.737952+00:00\",\"context\":{\"id\":\"01KP2PXMH9W03RNPSHYSDZWC83\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.adam_desk_presence\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Adam Desk Presence\"},\"last_changed\":\"2026-04-13T08:04:17.367376+00:00\",\"last_reported\":\"2026-04-13T08:04:17.367376+00:00\",\"last_updated\":\"2026-04-13T08:04:17.367376+00:00\",\"context\":{\"id\":\"01KP2XXCAQ7Y0QRJG8K7G6NM17\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Leksi Desk Presence\"},\"last_changed\":\"2026-04-12T23:49:35.960997+00:00\",\"last_reported\":\"2026-04-12T23:49:35.960997+00:00\",\"last_updated\":\"2026-04-12T23:49:35.960997+00:00\",\"context\":{\"id\":\"01KP21KJJRBKG4ZSEZQ0A3RBGP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Desk Presence\"},\"last_changed\":\"2026-04-13T02:02:09.119210+00:00\",\"last_reported\":\"2026-04-13T02:02:09.119210+00:00\",\"last_updated\":\"2026-04-13T02:02:09.119210+00:00\",\"context\":{\"id\":\"01KP2969AZABHMX051GENR62K5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Office FP2 Identify\"},\"last_changed\":\"2026-04-12T17:15:51.725861+00:00\",\"last_reported\":\"2026-04-12T17:15:51.725861+00:00\",\"last_updated\":\"2026-04-12T17:15:51.725861+00:00\",\"context\":{\"id\":\"01KP1B2M1DK63H969R6BBSDK7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"lx\",\"device_class\":\"illuminance\",\"friendly_name\":\"Mariah Room FP2 Light Sensor Light Level\"},\"last_changed\":\"2026-04-13T04:32:12.295372+00:00\",\"last_reported\":\"2026-04-13T04:32:12.295372+00:00\",\"last_updated\":\"2026-04-13T04:32:12.295372+00:00\",\"context\":{\"id\":\"01KP2HS1G7RS98TQHZAGRT54VT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Motion Detection\"},\"last_changed\":\"2026-04-13T04:18:19.110508+00:00\",\"last_reported\":\"2026-04-13T04:18:19.110508+00:00\",\"last_updated\":\"2026-04-13T04:18:19.110508+00:00\",\"context\":{\"id\":\"01KP2GZKV6159RM91KCYYC381Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bean Bag\"},\"last_changed\":\"2026-04-13T02:28:37.283895+00:00\",\"last_reported\":\"2026-04-13T02:28:37.283895+00:00\",\"last_updated\":\"2026-04-13T02:28:37.283895+00:00\",\"context\":{\"id\":\"01KP2APR93BXN4C881JVR2XDPX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.mariah_room_bed\",\"state\":\"on\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Mariah Room Bed\"},\"last_changed\":\"2026-04-13T04:19:48.500934+00:00\",\"last_reported\":\"2026-04-13T04:19:48.500934+00:00\",\"last_updated\":\"2026-04-13T04:19:48.500934+00:00\",\"context\":{\"id\":\"01KP2H2B4MY5BA6BMTCN59F2DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\"},\"last_changed\":\"2026-04-13T04:19:49.414188+00:00\",\"last_reported\":\"2026-04-13T04:19:49.414188+00:00\",\"last_updated\":\"2026-04-13T04:19:49.414188+00:00\",\"context\":{\"id\":\"01KP2H2C16GWEYV3MZMZSFAQ41\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.mariah_room_fp2_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Mariah Room FP2 Identify\"},\"last_changed\":\"2026-04-13T02:28:37.284371+00:00\",\"last_reported\":\"2026-04-13T02:28:37.284371+00:00\",\"last_updated\":\"2026-04-13T02:28:37.284371+00:00\",\"context\":{\"id\":\"01KP2APR94JAXQJZM9CN189JH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_temperature_display_units\",\"state\":\"fahrenheit\",\"attributes\":{\"options\":[\"celsius\",\"fahrenheit\"],\"friendly_name\":\"Thermostat Temperature Display Units\"},\"last_changed\":\"2026-04-12T17:16:20.676248+00:00\",\"last_reported\":\"2026-04-12T17:16:20.676248+00:00\",\"last_updated\":\"2026-04-12T17:16:20.676248+00:00\",\"context\":{\"id\":\"01KP1B3GA4MGPRQCF885MEWEE5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.thermostat_current_mode\",\"state\":\"sleep\",\"attributes\":{\"options\":[\"home\",\"sleep\",\"away\"],\"friendly_name\":\"Thermostat Current Mode\"},\"last_changed\":\"2026-04-13T06:30:24.534967+00:00\",\"last_reported\":\"2026-04-13T06:30:24.534967+00:00\",\"last_updated\":\"2026-04-13T06:30:24.534967+00:00\",\"context\":{\"id\":\"01KP2RHFGP4RJ55KENZDYBBS2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_temperature\",\"state\":\"68.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"°F\",\"device_class\":\"temperature\",\"friendly_name\":\"Thermostat Current Temperature\"},\"last_changed\":\"2026-04-13T08:07:11.942835+00:00\",\"last_reported\":\"2026-04-13T08:07:11.942835+00:00\",\"last_updated\":\"2026-04-13T08:07:11.942835+00:00\",\"context\":{\"id\":\"01KP2Y2PT6JJ40VYMVW0G61NJX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.thermostat_current_humidity\",\"state\":\"59.0\",\"attributes\":{\"state_class\":\"measurement\",\"unit_of_measurement\":\"%\",\"device_class\":\"humidity\",\"friendly_name\":\"Thermostat Current Humidity\"},\"last_changed\":\"2026-04-13T08:07:41.947541+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947541+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947541+00:00\",\"context\":{\"id\":\"01KP2Y3M3VX5FAK6WGREBSEB4P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_motion\",\"state\":\"off\",\"attributes\":{\"device_class\":\"motion\",\"friendly_name\":\"Thermostat Motion\"},\"last_changed\":\"2026-04-13T06:07:04.781442+00:00\",\"last_reported\":\"2026-04-13T06:07:04.781442+00:00\",\"last_updated\":\"2026-04-13T06:07:04.781442+00:00\",\"context\":{\"id\":\"01KP2Q6RJD8N1PQFFJ77HFAXCW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"state\":\"off\",\"attributes\":{\"device_class\":\"occupancy\",\"friendly_name\":\"Thermostat Occupancy\"},\"last_changed\":\"2026-04-13T06:32:06.573553+00:00\",\"last_reported\":\"2026-04-13T06:32:06.573553+00:00\",\"last_updated\":\"2026-04-13T06:32:06.573553+00:00\",\"context\":{\"id\":\"01KP2RMK5D5E7XJ7AYVR8TMX6E\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_identify\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"identify\",\"friendly_name\":\"Thermostat Identify\"},\"last_changed\":\"2026-04-12T17:16:20.675996+00:00\",\"last_reported\":\"2026-04-12T17:16:20.675996+00:00\",\"last_updated\":\"2026-04-12T17:16:20.675996+00:00\",\"context\":{\"id\":\"01KP1B3GA305JZ2MR435J4M1A7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.thermostat_clear_hold\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Thermostat Clear Hold\"},\"last_changed\":\"2026-04-12T17:16:20.677013+00:00\",\"last_reported\":\"2026-04-12T17:19:42.578911+00:00\",\"last_updated\":\"2026-04-12T17:16:20.677013+00:00\",\"context\":{\"id\":\"01KP1B3GA552PPTAE86KBXKTQA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"climate.thermostat_2\",\"state\":\"cool\",\"attributes\":{\"hvac_modes\":[\"off\",\"heat\",\"cool\",\"heat_cool\"],\"min_temp\":45,\"max_temp\":92,\"min_humidity\":20,\"max_humidity\":50,\"fan_modes\":[\"on\",\"auto\"],\"current_temperature\":68,\"temperature\":68,\"target_temp_high\":null,\"target_temp_low\":null,\"current_humidity\":59.0,\"humidity\":36.0,\"fan_mode\":\"auto\",\"hvac_action\":\"cooling\",\"friendly_name\":\"Thermostat\",\"supported_features\":399},\"last_changed\":\"2026-04-12T17:16:20.676879+00:00\",\"last_reported\":\"2026-04-13T08:07:41.947269+00:00\",\"last_updated\":\"2026-04-13T08:07:41.947269+00:00\",\"context\":{\"id\":\"01KP2Y3M3VMSX4X8418AH35J3V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Smart Motion Human\"},\"last_changed\":\"2026-04-11T01:20:13.153977+00:00\",\"last_reported\":\"2026-04-11T01:20:13.153977+00:00\",\"last_updated\":\"2026-04-11T01:20:13.153977+00:00\",\"context\":{\"id\":\"01KNX202B1Q2JPH3JA6J635WKB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"sound\",\"friendly_name\":\"Front Door Button Pressed\"},\"last_changed\":\"2026-04-11T01:20:13.154425+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154425+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154425+00:00\",\"context\":{\"id\":\"01KNX202B23D6VMPS9MVS0KR73\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_invite\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Invite\"},\"last_changed\":\"2026-04-11T01:20:13.154790+00:00\",\"last_reported\":\"2026-04-11T01:20:13.154790+00:00\",\"last_updated\":\"2026-04-11T01:20:13.154790+00:00\",\"context\":{\"id\":\"01KNX202B2F8XXVDNQK3JXGV9T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_door_status\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"door\",\"friendly_name\":\"Front Door Door Status\"},\"last_changed\":\"2026-04-11T01:20:13.155129+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155129+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155129+00:00\",\"context\":{\"id\":\"01KNX202B3A4F9XN39GZZBKCS9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"state\":\"off\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"device_class\":\"motion\",\"friendly_name\":\"Front Door Call No Answered\"},\"last_changed\":\"2026-04-11T01:20:13.155456+00:00\",\"last_reported\":\"2026-04-11T01:20:13.155456+00:00\",\"last_updated\":\"2026-04-11T01:20:13.155456+00:00\",\"context\":{\"id\":\"01KNX202B3DP8M2H3FZKE1MMFK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.759859+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943755+00:00\",\"last_updated\":\"2026-04-12T17:42:04.759859+00:00\",\"context\":{\"id\":\"01KP1CJM6QAXW00SC1AP8EPB30\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_smart_motion_detection\",\"state\":\"on\",\"attributes\":{\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:motion-sensor\",\"friendly_name\":\"Front Door Smart Motion Detection\"},\"last_changed\":\"2026-04-12T17:42:04.760062+00:00\",\"last_reported\":\"2026-04-13T08:05:00.943862+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760062+00:00\",\"context\":{\"id\":\"01KP1CJM6RYMR1R9E3G922J387\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_infrared\",\"state\":\"off\",\"attributes\":{\"effect_list\":null,\"supported_color_modes\":[\"brightness\"],\"effect\":null,\"color_mode\":null,\"brightness\":null,\"id\":\"None\",\"integration\":\"dahua\",\"icon\":\"mdi:weather-night\",\"friendly_name\":\"Front Door Infrared\",\"supported_features\":4},\"last_changed\":\"2026-04-12T17:42:04.760255+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944010+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760255+00:00\",\"context\":{\"id\":\"01KP1CJM6RBJZDJVAJVF382CTK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.front_door_ring_light\",\"state\":\"on\",\"attributes\":{\"supported_color_modes\":[\"onoff\"],\"color_mode\":\"onoff\",\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Ring Light\",\"supported_features\":0},\"last_changed\":\"2026-04-12T17:42:04.760414+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944124+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760414+00:00\",\"context\":{\"id\":\"01KP1CJM6RFPBG1G6ANHTBPKVZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_main\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_main?token=20b51976462b21555889be47a7f1e15029d620f6a6997197a11e1f073e1e58fe\",\"friendly_name\":\"Front Door Main\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760546+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155472+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155472+00:00\",\"context\":{\"id\":\"01KP2XYR2B2P3FKZ17VEGAGYG7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub\",\"state\":\"idle\",\"attributes\":{\"access_token\":\"52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"motion_detection\":true,\"id\":\"None\",\"integration\":\"dahua\",\"entity_picture\":\"/api/camera_proxy/camera.front_door_sub?token=52781c62c590c2224a1f234710d9cd4ad65766478f7cff8c87a2de8c1b4de870\",\"friendly_name\":\"Front Door Sub\",\"supported_features\":2},\"last_changed\":\"2026-04-12T17:42:04.760670+00:00\",\"last_reported\":\"2026-04-13T08:05:02.155707+00:00\",\"last_updated\":\"2026-04-13T08:05:02.155707+00:00\",\"context\":{\"id\":\"01KP2XYR2BZW94MWT4VGPKMFHD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_security_light\",\"state\":\"Off\",\"attributes\":{\"options\":[\"Off\",\"On\",\"Strobe\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Security Light\"},\"last_changed\":\"2026-04-12T17:42:04.760781+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944386+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760781+00:00\",\"context\":{\"id\":\"01KP1CJM6RP6PMVMCV4TB4RWWX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.front_door_preset_position\",\"state\":\"Manual\",\"attributes\":{\"options\":[\"Manual\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\"],\"id\":\"None\",\"integration\":\"dahua\",\"friendly_name\":\"Front Door Preset Position\"},\"last_changed\":\"2026-04-12T17:42:04.760872+00:00\",\"last_reported\":\"2026-04-13T08:05:00.944442+00:00\",\"last_updated\":\"2026-04-12T17:42:04.760872+00:00\",\"context\":{\"id\":\"01KP1CJM6RBFWZ71F4Y9YZYT7X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_current_power\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Current Power\"},\"last_changed\":\"2026-04-13T", - "offset_ms": 169 - }, - { - "direction": "recv", - "type": "text", - "payload": "02:35:54.307857+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306096+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307105+00:00\",\"context\":{\"id\":\"01KP2XEGP307V1QX3H0NN4PTXE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_today_energy\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Today Energy\"},\"last_changed\":\"2026-04-13T07:08:55.305849+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306203+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307314+00:00\",\"context\":{\"id\":\"01KP2XEGP389T24Z09SKRAQT9P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_lifetime_energy\",\"state\":\"21939.9\",\"attributes\":{\"state_class\":\"total_increasing\",\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"kWh\",\"device_class\":\"energy\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Lifetime Energy\"},\"last_changed\":\"2026-04-13T02:14:54.309124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306272+00:00\",\"l", - "offset_ms": 183 - }, - { - "direction": "recv", - "type": "text", - "payload": "ast_updated\":\"2026-04-13T07:56:10.307426+00:00\",\"context\":{\"id\":\"01KP2XEGP3QGQ1GG3E1WK2G24H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters\",\"state\":\"19\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters\"},\"last_changed\":\"2026-04-12T09:32:07.307928+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307518+00:00\",\"context\":{\"id\":\"01KP2XEGP3B9QHENJGS3YPXHQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.ecu_inverters_online\",\"state\":\"0\",\"attributes\":{\"ecu_id\":\"216200104730\",\"Firmware\":\"ECU_R_PRO_2.1.29\",\"Timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-13T03:07:24.307022+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306374+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307612+00:00\",\"context\":{\"id\":\"01KP2XEGP3PCXMY26BQFHT3WZG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645235 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307125+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306443+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307712+00:00\",\"context\":{\"id\":\"01KP2XEGP3DQJYVTHD5RK56FK6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645235 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307216+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306502+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307803+00:00\",\"context\":{\"id\":\"01KP2XEGP3DTDKYS56ATFGXVCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645235 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307289+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306546+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307878+00:00\",\"context\":{\"id\":\"01KP2XEGP3S21MH98YAYWK1NXJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_signal\",\"state\":\"92\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645235 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.307752+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306588+00:00\",\"last_updated\":\"2026-04-13T07:56:10.307948+00:00\",\"context\":{\"id\":\"01KP2XEGP3ZM21NBK0RA4Q4MKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306630+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308021+00:00\",\"context\":{\"id\":\"01KP2XEGP4CJN13R57XB7SEHXZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645235\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645235 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.308823+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306669+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308090+00:00\",\"context\":{\"id\":\"01KP2XEGP4QYDRGX68WF4503HF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645251 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307571+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306708+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308156+00:00\",\"context\":{\"id\":\"01KP2XEGP4J7T4PQRT7SK84ZAQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645251 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.307641+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306749+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308226+00:00\",\"context\":{\"id\":\"01KP2XEGP4PKC3Z12QE1SMF116\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645251 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.307712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306787+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308296+00:00\",\"context\":{\"id\":\"01KP2XEGP4HTSRXHYT9C8HZZ14\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645251 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.307178+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306824+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308367+00:00\",\"context\":{\"id\":\"01KP2XEGP4ZRP3B5FXCPJYW62H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.307824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308439+00:00\",\"context\":{\"id\":\"01KP2XEGP4D8JJ477G4NF0YZ4J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645251\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645251 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.307892+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306901+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308509+00:00\",\"context\":{\"id\":\"01KP2XEGP47SK4NHB1NYX559F7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645255 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.307988+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306938+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308574+00:00\",\"context\":{\"id\":\"01KP2XEGP4KHJT2Y7VDWTF7ECN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645255 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.306976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308646+00:00\",\"context\":{\"id\":\"01KP2XEGP47S24E53F64N6Q6G8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645255 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308127+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307015+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308713+00:00\",\"context\":{\"id\":\"01KP2XEGP499F73D4YGENVDV2Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645255 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308589+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307053+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308779+00:00\",\"context\":{\"id\":\"01KP2XEGP4AB0D7GG3SEJ6KXVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:35:54.309606+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307092+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308849+00:00\",\"context\":{\"id\":\"01KP2XEGP4NHPZEM5B5SWCFJN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645255\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645255 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.308299+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307129+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308921+00:00\",\"context\":{\"id\":\"01KP2XEGP4R6ZPEC1F0PS2W8DV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645714 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307165+00:00\",\"last_updated\":\"2026-04-13T07:56:10.308985+00:00\",\"context\":{\"id\":\"01KP2XEGP4JM6XMSF4DQQMNAYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645714 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308477+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307205+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309052+00:00\",\"context\":{\"id\":\"01KP2XEGP50J24GYCNY20EW968\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645714 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308543+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307242+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309148+00:00\",\"context\":{\"id\":\"01KP2XEGP51HYA1EY3VVT7ZTT8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_signal\",\"state\":\"82\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645714 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.308995+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307278+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309214+00:00\",\"context\":{\"id\":\"01KP2XEGP5J6ABEF6S2SEJJRR9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.308619+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307315+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309278+00:00\",\"context\":{\"id\":\"01KP2XEGP5NQSY9CM4XK7KFRJM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645714\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645714 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:35:54.310076+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307352+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309344+00:00\",\"context\":{\"id\":\"01KP2XEGP53W7JWKMVG62NGKZQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645722 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.308797+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307386+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309405+00:00\",\"context\":{\"id\":\"01KP2XEGP55T4ZB7CWVA25DV07\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645722 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.308863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307423+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309472+00:00\",\"context\":{\"id\":\"01KP2XEGP5HC174259HZVCAHKF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645722 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.308927+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307459+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309535+00:00\",\"context\":{\"id\":\"01KP2XEGP5FT87KAW994JEQYNT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645722 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.309437+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307497+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309600+00:00\",\"context\":{\"id\":\"01KP2XEGP54DT756TV5EG69TH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309000+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307534+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309667+00:00\",\"context\":{\"id\":\"01KP2XEGP5YZ89WYYF2Z6KC706\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645722\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645722 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309067+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307570+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309735+00:00\",\"context\":{\"id\":\"01KP2XEGP53128S284JJ24879Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646825 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309213+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307606+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309798+00:00\",\"context\":{\"id\":\"01KP2XEGP5JCZETN83WQY6EC0C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646825 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309280+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307643+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309866+00:00\",\"context\":{\"id\":\"01KP2XEGP52JH6HF99PP8BRYK3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646825 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307680+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309929+00:00\",\"context\":{\"id\":\"01KP2XEGP5YAMXTPRYM9T4RFAD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646825 Signal\"},\"last_changed\":\"2026-04-12T23:11:08.308971+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307716+00:00\",\"last_updated\":\"2026-04-13T07:56:10.309994+00:00\",\"context\":{\"id\":\"01KP2XEGP5VH1Z9D58P7SCSVWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309421+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307754+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310061+00:00\",\"context\":{\"id\":\"01KP2XEGP6KX3HP4RT7R8NTTHW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646825\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646825 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309486+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310126+00:00\",\"context\":{\"id\":\"01KP2XEGP6AJZ5SARE5Q6377D9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646861 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309605+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307827+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310187+00:00\",\"context\":{\"id\":\"01KP2XEGP6Q3FJ2Z9HB47J9W4Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646861 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.309670+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310253+00:00\",\"context\":{\"id\":\"01KP2XEGP6WVEXQW53ABCJ0STM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646861 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.309735+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307899+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310319+00:00\",\"context\":{\"id\":\"01KP2XEGP6G5PKQES78A0484FQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_signal\",\"state\":\"83\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646861 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310239+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310383+00:00\",\"context\":{\"id\":\"01KP2XEGP6MMDH1Q2FD7XW207V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.309803+00:00\",\"last_reported\":\"2026-04-13T08:01:25.307970+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310452+00:00\",\"context\":{\"id\":\"01KP2XEGP6KZFFAA9B0EEVTTXB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646861\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646861 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.309868+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308006+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310517+00:00\",\"context\":{\"id\":\"01KP2XEGP6E7J6V6KV760F7BGW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646863 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.309991+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310582+00:00\",\"context\":{\"id\":\"01KP2XEGP6439MJYCXZTFKD4C8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646863 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310058+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308078+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310650+00:00\",\"context\":{\"id\":\"01KP2XEGP6S0CAAHS99AJBT60R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646863 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310124+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308112+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310714+00:00\",\"context\":{\"id\":\"01KP2XEGP6JE849EPREXS0359D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_signal\",\"state\":\"89\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646863 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.310638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310776+00:00\",\"context\":{\"id\":\"01KP2XEGP675AWWJS25VQZSA6F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310195+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308184+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310839+00:00\",\"context\":{\"id\":\"01KP2XEGP65KM9D9957QV6G0Y7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646863\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646863 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310260+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308220+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310902+00:00\",\"context\":{\"id\":\"01KP2XEGP6940VJWX9TA7P8ACX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646866 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310378+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308255+00:00\",\"last_updated\":\"2026-04-13T07:56:10.310965+00:00\",\"context\":{\"id\":\"01KP2XEGP628V1CCJH4DHXQA7N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646866 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310445+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308291+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311035+00:00\",\"context\":{\"id\":\"01KP2XEGP7FVPQNMAV0E0AMC9B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646866 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310511+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308328+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311116+00:00\",\"context\":{\"id\":\"01KP2XEGP7MC4D1P2NT64FZWA7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646866 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.311034+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308363+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311183+00:00\",\"context\":{\"id\":\"01KP2XEGP7KQJ8D8ZPTMKK4S2V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310575+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308401+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311249+00:00\",\"context\":{\"id\":\"01KP2XEGP7M72PA7X0HSTDA012\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646866\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646866 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.310637+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308438+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311314+00:00\",\"context\":{\"id\":\"01KP2XEGP7XJX59ARBSB08WGD4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646875 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.310763+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308474+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311379+00:00\",\"context\":{\"id\":\"01KP2XEGP782G0FZ39KQDAGP65\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646875 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.310827+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308511+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311446+00:00\",\"context\":{\"id\":\"01KP2XEGP78WCRZ31H0MQ3HAV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646875 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.310890+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308547+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311510+00:00\",\"context\":{\"id\":\"01KP2XEGP70JJ83PBV1QKAGKR0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646875 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.309555+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308581+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311574+00:00\",\"context\":{\"id\":\"01KP2XEGP7N", - "offset_ms": 185 - }, - { - "direction": "recv", - "type": "text", - "payload": "Q4AXANF6DZVCYW0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.310940+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308618+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311638+00:00\",\"context\":{\"id\":\"01KP2XEGP74B1Z11X0BKXYTGT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646875\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646875 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311002+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308653+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311701+00:00\",\"context\":{\"id\":\"01KP2XEGP70ARYE9JT0ZEPBC6A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646883 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.309615+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308689+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311763+00:00\",\"context\":{\"id\":\"01KP2XEGP789H7H3WM0SGRB0EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646883 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.309638+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308726+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311831+00:00\",\"context\":{\"id\":\"01KP2XEGP70K0HYB791PKD81XD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646883 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.309659+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308762+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311895+00:00\",\"context\":{\"id\":\"01KP2XEGP79S25WJ7MB7M7WB7B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_signal\",\"state\":\"81\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646883 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.310863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308796+00:00\",\"last_updated\":\"2026-04-13T07:56:10.311959+00:00\",\"context\":{\"id\":\"01KP2XEGP7KG0EKBKVBRJ0NYV6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 1\"},\"last_changed\":\"2026-04-11T01:20:16.928139+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308833+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312027+00:00\",\"context\":{\"id\":\"01KP2XEGP89MWG3ZAJ08VVRNTA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646883\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646883 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311372+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308868+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312095+00:00\",\"context\":{\"id\":\"01KP2XEGP8Y4PKRF27DWA248P7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646115 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.311513+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308903+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312157+00:00\",\"context\":{\"id\":\"01KP2XEGP8BYFKR2BVGR0956NH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646115 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.311582+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308940+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312214+00:00\",\"context\":{\"id\":\"01KP2XEGP8361VJPKHYBREZJN5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646115 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.311651+00:00\",\"last_reported\":\"2026-04-13T08:01:25.308976+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312233+00:00\",\"context\":{\"id\":\"01KP2XEGP8CPTDKC77EC3KQG0H\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_signal\",\"state\":\"79\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646115 Signal\"},\"last_changed\":\"2026-04-13T02:46:24.311245+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309010+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312253+00:00\",\"context\":{\"id\":\"01KP2XEGP8WJZTCKDFJZNZBJ9D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.311685+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309047+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312274+00:00\",\"context\":{\"id\":\"01KP2XEGP8K6SGZSX25WY8XSQ8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646115\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646115 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.311704+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309083+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312293+00:00\",\"context\":{\"id\":\"01KP2XEGP81C4JQYAJDRJ77M09\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646133 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313302+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309149+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312312+00:00\",\"context\":{\"id\":\"01KP2XEGP8KA742RRRQP2DVK5G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646133 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313417+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309187+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312330+00:00\",\"context\":{\"id\":\"01KP2XEGP8GPPNXZK55GFH299S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646133 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313506+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309223+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312349+00:00\",\"context\":{\"id\":\"01KP2XEGP8GX3KGHEZDMZTKYM9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646133 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.317419+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309257+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312369+00:00\",\"context\":{\"id\":\"01KP2XEGP8T21MGTJ3DA4J623Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312268+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309293+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312389+00:00\",\"context\":{\"id\":\"01KP2XEGP8A6NZNJNRBSG862T6\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646133\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646133 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312321+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309329+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312916+00:00\",\"context\":{\"id\":\"01KP2XEGP8K1QFBT2XQAWBMW99\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646710 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.313790+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309362+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312951+00:00\",\"context\":{\"id\":\"01KP2XEGP891PFZTT4ZZ16HQS0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646710 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.313863+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309399+00:00\",\"last_updated\":\"2026-04-13T07:56:10.312979+00:00\",\"context\":{\"id\":\"01KP2XEGP8RNV7AJ4XN2704NXN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646710 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.313929+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309434+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313003+00:00\",\"context\":{\"id\":\"01KP2XEGP9RFFABD7ABAV3A96S\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646710 Signal\"},\"last_changed\":\"2026-04-13T02:51:39.310033+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313025+00:00\",\"context\":{\"id\":\"01KP2XEGP9KT4RZ0S84E4XCHEA\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312448+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309505+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313047+00:00\",\"context\":{\"id\":\"01KP2XEGP944F9DY8YJZKKGSY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646710\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646710 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312469+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309542+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313069+00:00\",\"context\":{\"id\":\"01KP2XEGP90VSXES9NVT1QQXZJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646832 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310094+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309578+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313098+00:00\",\"context\":{\"id\":\"01KP2XEGP9850KXRXVG6HFABKK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646832 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310115+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309615+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313121+00:00\",\"context\":{\"id\":\"01KP2XEGP9ABWZVWCDX1W58PRB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646832 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310135+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309649+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313142+00:00\",\"context\":{\"id\":\"01KP2XEGP90SKNHCW2M90RX29Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_signal\",\"state\":\"91\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646832 Signal\"},\"last_changed\":\"2026-04-13T01:27:39.308098+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309684+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313163+00:00\",\"context\":{\"id\":\"01KP2XEGP9VQ54S75GB6G82C79\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312574+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309721+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313184+00:00\",\"context\":{\"id\":\"01KP2XEGP96GDW9Q6PQ594QR43\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646832\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646832 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.931123+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309758+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313204+00:00\",\"context\":{\"id\":\"01KP2XEGP9GBFE1BH5REC4VYFT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645939 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.314583+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309792+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313223+00:00\",\"context\":{\"id\":\"01KP2XEGP9H8ZK2GJH2MZEPZZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645939 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.314649+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309828+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313243+00:00\",\"context\":{\"id\":\"01KP2XEGP9VSW67STNWRRTJS5T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645939 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.314712+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309863+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313263+00:00\",\"context\":{\"id\":\"01KP2XEGP9KY6Y3SYKD8RGHZ5V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645939 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.318614+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309897+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313283+00:00\",\"context\":{\"id\":\"01KP2XEGP9AVD5NADP68DJ00MY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312698+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309934+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313303+00:00\",\"context\":{\"id\":\"01KP2XEGP9GCJ77MJV9Y1GA9TN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645939\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645939 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312719+00:00\",\"last_reported\":\"2026-04-13T08:01:25.309971+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313322+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZSGJC1ZNXE057GHN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646859 Temperature\"},\"last_changed\":\"2026-04-13T02:51:39.310326+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310004+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313341+00:00\",\"context\":{\"id\":\"01KP2XEGP9D2DCWFYWQJCK3DVY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646859 Frequency\"},\"last_changed\":\"2026-04-13T02:51:39.310346+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310040+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313360+00:00\",\"context\":{\"id\":\"01KP2XEGP98CXWMD2SQW8ENAW2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646859 Voltage\"},\"last_changed\":\"2026-04-13T02:51:39.310366+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310076+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313381+00:00\",\"context\":{\"id\":\"01KP2XEGP99KEXSJD8A7SS7NHS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_signal\",\"state\":\"78\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646859 Signal\"},\"last_changed\":\"2026-04-13T02:41:09.315673+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310110+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313400+00:00\",\"context\":{\"id\":\"01KP2XEGP97321P1NE6TAQH8QX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312824+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310147+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313419+00:00\",\"context\":{\"id\":\"01KP2XEGP95P446NSKHNH6VZH1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646859\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646859 Power Ch 2\"},\"last_changed\":\"2026-04-11T01:20:16.932525+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310183+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313439+00:00\",\"context\":{\"id\":\"01KP2XEGP943DN34978WKCG6EZ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000646131 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315350+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310217+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313458+00:00\",\"context\":{\"id\":\"01KP2XEGP933VRSJ9REW3PE8R1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000646131 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315415+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310253+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313477+00:00\",\"context\":{\"id\":\"01KP2XEGP9G0VSCYF7007KXX1Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000646131 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315482+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310290+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313497+00:00\",\"context\":{\"id\":\"01KP2XEGP9T6RPQY3CTJMD743Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_signal\",\"state\":\"75\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000646131 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319410+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310325+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313516+00:00\",\"context\":{\"id\":\"01KP2XEGP9ZX10JFV898TXQW94\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.312948+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310361+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313536+00:00\",\"context\":{\"id\":\"01KP2XEGP9RB8FNDVS841GXG8R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000646131\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000646131 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.312968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310396+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313555+00:00\",\"context\":{\"id\":\"01KP2XEGP9JRSS0PMZ73RA7B0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"state\":\"unknown\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"°C\",\"device_class\":\"temperature\",\"friendly_name\":\"Inverter 702000645958 Temperature\"},\"last_changed\":\"2026-04-13T03:07:24.315731+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310430+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313574+00:00\",\"context\":{\"id\":\"01KP2XEGP9T8A4KSAQ37GT5DMD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"state\":\"0.0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"Hz\",\"device_class\":\"frequency\",\"icon\":\"mdi:sine-wave\",\"friendly_name\":\"Inverter 702000645958 Frequency\"},\"last_changed\":\"2026-04-13T03:07:24.315796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310468+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313594+00:00\",\"context\":{\"id\":\"01KP2XEGP9HG8T9J5CS9RDB462\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"V\",\"device_class\":\"voltage\",\"friendly_name\":\"Inverter 702000645958 Voltage\"},\"last_changed\":\"2026-04-13T03:07:24.315859+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310504+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313614+00:00\",\"context\":{\"id\":\"01KP2XEGP9GX02K5VT92VPFFK9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_signal\",\"state\":\"76\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"%\",\"device_class\":\"signal_strength\",\"icon\":\"mdi:signal\",\"friendly_name\":\"Inverter 702000645958 Signal\"},\"last_changed\":\"2026-04-13T02:56:54.319796+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310539+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313633+00:00\",\"context\":{\"id\":\"01KP2XEGP9W6W95C8C4M99EMVB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 1\"},\"last_changed\":\"2026-04-13T02:30:39.313069+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310575+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313654+00:00\",\"context\":{\"id\":\"01KP2XEGP95DNQGEY40238K477\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"state\":\"0\",\"attributes\":{\"state_class\":\"measurement\",\"ecu_id\":\"216200104730\",\"inverter_uid\":\"702000645958\",\"last_update\":\"2026-04-13 00:45:00\",\"unit_of_measurement\":\"W\",\"device_class\":\"power\",\"icon\":\"mdi:solar-power\",\"friendly_name\":\"Inverter 702000645958 Power Ch 2\"},\"last_changed\":\"2026-04-13T02:30:39.313104+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310613+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313674+00:00\",\"context\":{\"id\":\"01KP2XEGP9Z7933KMKYQVMN8DB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:cached\",\"friendly_name\":\"ECU Using Cached Data\"},\"last_changed\":\"2026-04-12T09:32:07.316762+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310668+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313702+00:00\",\"context\":{\"id\":\"01KP2XEGP9W94S7X9XEWA2S1YQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.ecu_restart\",\"state\":\"off\",\"attributes\":{\"ecu_id\":\"216200104730\",\"firmware\":\"ECU_R_PRO_2.1.29\",\"timezone\":\"US/Pacific\",\"last_update\":\"2026-04-13 00:45:00\",\"icon\":\"mdi:restart\",\"friendly_name\":\"ECU Restart\"},\"last_changed\":\"2026-04-11T01:20:16.934408+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310709+00:00\",\"last_updated\":\"2026-04-13T07:56:10.313724+00:00\",\"context\":{\"id\":\"01KP2XEGP9M7NSBKXPG61PE6FE\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_query_device\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:reload\",\"friendly_name\":\"ECU Query Device\"},\"last_changed\":\"2026-04-11T01:20:16.934829+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934829+00:00\",\"context\":{\"id\":\"01KNX206164T68XY6Q1XR5Y4C2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.ecu_inverters_online\",\"state\":\"on\",\"attributes\":{\"icon\":\"mdi:power\",\"friendly_name\":\"ECU Inverters Online\"},\"last_changed\":\"2026-04-11T01:20:16.934968+00:00\",\"last_reported\":\"2026-04-13T08:01:25.310810+00:00\",\"last_updated\":\"2026-04-11T01:20:16.934968+00:00\",\"context\":{\"id\":\"01KNX20616NW6GAFAFTA0BWGV8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.updater\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"update\",\"friendly_name\":\"Updater\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935756+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935756+00:00\",\"last_updated\":\"2026-", - "offset_ms": 187 - }, - { - "direction": "recv", - "type": "text", - "payload": "04-11T01:20:16.935756+00:00\",\"context\":{\"id\":\"01KNX2061715HNDNV7RAJ71YN2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"light.play_room_lights\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_color_modes\":[\"rgbww\"],\"icon\":\"mdi:lightbulb-group\",\"friendly_name\":\"Play Room Lights\",\"supported_features\":40},\"last_changed\":\"2026-04-11T01:20:16.935802+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935802+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935802+00:00\",\"context\":{\"id\":\"01KNX206175B0R6D5101NZCE4R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Kids Room Motion White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935838+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935838+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935838+00:00\",\"context\":{\"id\":\"01KNX20617PCQ4N1TKDKQ6N985\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"automation.master_bath_lights_off_motion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Bath Lights Off Motion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935863+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935863+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935863+00:00\",\"context\":{\"id\":\"01KNX20617PV907SE4PTNS60SG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"camera.front_door_sub_2\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Front Door Sub_2\",\"supported_features\":2},\"last_changed\":\"2026-04-11T01:20:16.935889+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935889+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935889+00:00\",\"context\":{\"id\":\"01KNX20617QHVVNN4WQ3XDEFBN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"switch.front_door_disarming\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"icon\":\"mdi:alarm-check\",\"friendly_name\":\"Front Door Disarming\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935912+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935912+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935912+00:00\",\"context\":{\"id\":\"01KNX206179AJFMCV7X3Z6GWFH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935932+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935932+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935932+00:00\",\"context\":{\"id\":\"01KNX20617T5HJTM1K7AD45F1M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_back_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Back Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935951+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935951+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935951+00:00\",\"context\":{\"id\":\"01KNX20617PDFTCRQEW8F1F8XJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935971+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935971+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935971+00:00\",\"context\":{\"id\":\"01KNX2061733Z4BVKZ5JKAJY3C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.stair_chandelier_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Stair Chandelier White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.935988+00:00\",\"last_reported\":\"2026-04-11T01:20:16.935988+00:00\",\"last_updated\":\"2026-04-11T01:20:16.935988+00:00\",\"context\":{\"id\":\"01KNX20617SX9SJRD0EXSV976Y\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_red\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Red\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936006+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936006+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936006+00:00\",\"context\":{\"id\":\"01KNX20618D7HCEQ4AW3NVDYVF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_white\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp White\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936023+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936023+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936023+00:00\",\"context\":{\"id\":\"01KNX20618MPHAGX4HNK1MCAET\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.leksi_lamp_green\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Leksi Lamp Green\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936039+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936039+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936039+00:00\",\"context\":{\"id\":\"01KNX206184CSMWEBJ0PH4JMZK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.lock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Lock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936056+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936056+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936056+00:00\",\"context\":{\"id\":\"01KNX20618Z2GKPHK58RWXBSVT\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.unlock_front_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Unlock Front Door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936073+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936073+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936073+00:00\",\"context\":{\"id\":\"01KNX20618Z11TH2GV5P98ZF1K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.master_lights_white_1pct\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Master Lights White 1%\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936095+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936095+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936095+00:00\",\"context\":{\"id\":\"01KNX20618VQE5MS1TP72CFPQQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.dead_zwave_devices\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dead ZWave Devices\",\"supported_features\":0,\"unit_of_measurement\":\"entities\"},\"last_changed\":\"2026-04-11T01:20:16.936113+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936113+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936113+00:00\",\"context\":{\"id\":\"01KNX20618AWX0JK3J7YPTRT9R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.porch_lights_halloween\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Porch Lights Halloween\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936146+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936146+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936146+00:00\",\"context\":{\"id\":\"01KNX20618FP3AFPWN38HP8GB8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Power status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936209+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936209+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936209+00:00\",\"context\":{\"id\":\"01KNX20618980ZMP3JRKE1S8VX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.front_door_idle_system_software_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Software status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936229+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936229+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936229+00:00\",\"context\":{\"id\":\"01KNX20618GMAQZBJQN5JA6Q1B\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936248+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936248+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936248+00:00\",\"context\":{\"id\":\"01KNX20618T6MVRE7E8THQ4MJH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936274+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936274+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936274+00:00\",\"context\":{\"id\":\"01KNX20618CZVKSZY11W9HEWNY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936298+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936298+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936298+00:00\",\"context\":{\"id\":\"01KNX2061852QY9RRS6T6X8NZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936317+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936317+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936317+00:00\",\"context\":{\"id\":\"01KNX2061819ST6N8S1HZ1GATC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936338+00:00\",\"context\":{\"id\":\"01KNX20618FACQK6SH428KZR0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936355+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936355+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936355+00:00\",\"context\":{\"id\":\"01KNX20618WZYXJFM1H6402QQX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Power has been applied\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936374+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936374+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936374+00:00\",\"context\":{\"id\":\"01KNX2061870C3MCGKAX3XK6YB\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System software failure (with failure code)\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936393+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936393+00:00\",\"last_", - "offset_ms": 189 - }, - { - "direction": "recv", - "type": "text", - "payload": "updated\":\"2026-04-11T01:20:16.936393+00:00\",\"context\":{\"id\":\"01KNX206184ASJZ3B5V5SK7MPW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936411+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936411+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936411+00:00\",\"context\":{\"id\":\"01KNX20618ABNNMQF8KBRX7FC7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936428+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936428+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936428+00:00\",\"context\":{\"id\":\"01KNX20618RZ5E1DVZ0HM59B5J\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936450+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936450+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936450+00:00\",\"context\":{\"id\":\"01KNX20618XX7MY4SSKP4T6YP2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936466+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936466+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936466+00:00\",\"context\":{\"id\":\"01KNX20618TGA61FWJNM5B6KYV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936482+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936482+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936482+00:00\",\"context\":{\"id\":\"01KNX206186DQK8R34B0BV9W7R\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936499+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936499+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936499+00:00\",\"context\":{\"id\":\"01KNX20618AC6HAPQSA2193R26\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936518+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936518+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936518+00:00\",\"context\":{\"id\":\"01KNX20618BES690P9AWAEFRAX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936539+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936539+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936539+00:00\",\"context\":{\"id\":\"01KNX20618ETX374GPXGK2C445\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936556+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936556+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936556+00:00\",\"context\":{\"id\":\"01KNX20618J073M3KX0KEY15PN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936572+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936572+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936572+00:00\",\"context\":{\"id\":\"01KNX20618ZB463ZYH4E72EJ8A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936589+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936589+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936589+00:00\",\"context\":{\"id\":\"01KNX20618VYP94MRD2603SRSV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936605+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936605+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936605+00:00\",\"context\":{\"id\":\"01KNX206185HX3SR3J4ZZHYR5W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936622+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936622+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936622+00:00\",\"context\":{\"id\":\"01KNX206188NQSFT6K9ZBWHB6C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936642+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936642+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936642+00:00\",\"context\":{\"id\":\"01KNX20618TWC6W4DTFR0NAYVN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936662+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936662+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936662+00:00\",\"context\":{\"id\":\"01KNX206182TMNMAS1Y9H4GAY9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936678+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936678+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936678+00:00\",\"context\":{\"id\":\"01KNX206180SGY2Q9V5CN6EK24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936695+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936695+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936695+00:00\",\"context\":{\"id\":\"01KNX20618HRHKP3DTBEBJ3B6G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936711+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936711+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936711+00:00\",\"context\":{\"id\":\"01KNX206189B115VXYG7MN938D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936728+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936728+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936728+00:00\",\"context\":{\"id\":\"01KNX20618RD3KA6QCEK9EJ5AW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936748+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936748+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936748+00:00\",\"context\":{\"id\":\"01KNX20618K10K6V7J86MB3JPY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936768+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936768+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936768+00:00\",\"context\":{\"id\":\"01KNX20618Q0H7731KPNQ417NX\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936785+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936785+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936785+00:00\",\"context\":{\"id\":\"01KNX20618TH6FS47WG8ERRZTG\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936801+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936801+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936801+00:00\",\"context\":{\"id\":\"01KNX206189AEK584QT9WY3MZ0\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936816+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936816+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936816+00:00\",\"context\":{\"id\":\"01KNX20618AG7TFCWBKNEPCD5F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936833+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936833+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936833+00:00\",\"context\":{\"id\":\"01KNX20618NY136AP4GD5MR8JM\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936849+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936849+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936849+00:00\",\"context\":{\"id\":\"01KNX206182VDBE09Y43KPYSRW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936870+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936870+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936870+00:00\",\"context\":{\"id\":\"01KNX20618GYFH675CGA8R781Z\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936891+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936891+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936891+00:00\",\"context\":{\"id\":\"01KNX20618K1TD6C29FK90YKP3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"door\",\"friendly_name\":\"Current status of the door\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936921+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936921+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936921+00:00\",\"context\":{\"id\":\"01KNX20618VWDDYXAP55HJNY2G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"Lock jammed\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936941+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936941+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936941+00:00\",\"context\":{\"id\":\"01KNX206185VYHT3KSPF5NAY16\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Lock state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936959+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936959+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936959+00:00\",\"context\":{\"id\":\"01KNX20618KRFTQHDJ1V6HCDAN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.back_door_lock_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Battery level\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.936981+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936981+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936981+00:00\",\"context\":{\"id\":\"01KNX20618C54ZWEF8R05EMA2D\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.936999+00:00\",\"last_reported\":\"2026-04-11T01:20:16.936999+00:00\",\"last_updated\":\"2026-04-11T01:20:16.936999+00:00\",\"context\":{\"id\":\"01KNX20618EF0WW8YAFMBCR2NY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"number.back_door_lock_indicator_value\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"auto\",\"friendly_name\":\"Indicator value\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937020+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937020+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937020+00:00\",\"context\":{\"id\":\"01KNX20619E5YN23M40FHT7T6P\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"lock.back_door_lock\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937040+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937040+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937040+00:00\",\"context\":{\"id\":\"01KNX20619ACWPF0NHRA055WBF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.back_door_lock_firmware\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"firmware\",\"friendly_name\":\"Firmware\",\"supported_features\":21},\"last_changed\":\"2026-04-11T01:20:16.937057+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937057+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937057+00:00\",\"context\":{\"id\":\"01KNX20619VESSDXM79G6HHTD5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937114+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937114+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937114+00:00\",\"context\":{\"id\":\"01KNX20619B1ZB36A9MZAJ0FE8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_charging_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Charging status\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937135+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937135+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937135+00:00\",\"context\":{\"id\":\"01KNX20619YY4GTRXSAYSJ9SWD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Rechargeable\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937153+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937153+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937153+00:00\",\"context\":{\"id\":\"01KNX20619K1GGDQ9TV2D8CS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Used as backup\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937176+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937176+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937176+00:00\",\"context\":{\"id\":\"01KNX20619KXSE61A4KWG9XKX2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Overheating\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937192+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937192+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937192+00:00\",\"context\":{\"id\":\"01KNX20619K7RBZ9G2EYAD2TPC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Fluid is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937208+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937208+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937208+00:00\",\"context\":{\"id\":\"01KNX20619MQNH3YWF4NBR6D91\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"state_class\":\"measurement\",\"device_class\":\"battery\",\"friendly_name\":\"Recharge or replace\",\"supported_features\":0,\"unit_of_measurement\":\"%\"},\"last_changed\":\"2026-04-11T01:20:16.937226+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937226+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937226+00:00\",\"context\":{\"id\":\"01KNX20619N616WGCNB3D28TYQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery is disconnected\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937243+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937243+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937243+00:00\",\"context\":{\"id\":\"01KNX206197TW167W1JQHAXNCS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Battery temperature is low\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937263+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937263+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937263+00:00\",\"context\":{\"id\":\"01KNX20619H8GKC8AVP8YKY30V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"options\":[\"Unsecured\",\"UnsecuredWithTimeout\",\"InsideUnsecured\",\"InsideUnsecuredWithTimeout\",\"OutsideUnsecured\",\"OutsideUnsecuredWithTimeout\",\"Unknown\",\"Secured\"],\"friendly_name\":\"Current lock mode\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937292+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937292+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937292+00:00\",\"context\":{\"id\":\"01KNX206191DX33D07G1RZEM58\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery soon\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937316+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937316+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937316+00:00\",\"context\":{\"id\":\"01KNX20619ZESVZ127WQMHCEWV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Power Management Battery maintenance status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937338+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937338+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937338+00:00\",\"context\":{\"id\":\"01KNX20619DKX85SGKN39K2SZY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.living_room_tv\",\"state\":\"off\",\"attributes\":{\"assumed_state\":true,\"device_class\":\"tv\",\"friendly_name\":\"Living room TV\",\"supported_features\":153529},\"last_changed\":\"2026-04-13T08:07:41.195626+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198076+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195626+00:00\",\"context\":{\"id\":\"01KP2Y3KCBSAVG5H20FYRW3HPV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.living_room_tv\",\"state\":\"off\",\"attributes\":{\"activity_list\":[],\"current_activity\":\"com.sony.dtv.tvx\",\"friendly_name\":\"Living room TV\",\"supported_features\":4},\"last_changed\":\"2026-04-13T08:07:41.195802+00:00\",\"last_reported\":\"2026-04-13T08:07:41.198154+00:00\",\"last_updated\":\"2026-04-13T08:07:41.195802+00:00\",\"context\":{\"id\":\"01KP2Y3KCB1807E3ZNXT61JWPQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.dining_room_lights_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Dining Room Lights Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937392+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937392+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937392+00:00\",\"context\":{\"id\":\"01KNX20619A2JCNSMWCWGXQKCV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Replace battery now\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937418+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937418+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937418+00:00\",\"context\":{\"id\":\"01KNX206196SJB5R372Z4TAWN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Keypad temporary disabled\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937439+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937439+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937439+00:00\",\"context\":{\"id\":\"01KNX20619RAQT1EJG076AC74T\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Access Control Keypad state\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937456+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937456+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937456+00:00\",\"context\":{\"id\":\"01KNX20619YRCDE55HHHZ79NRJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"safety\",\"friendly_name\":\"Intrusion\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937473+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937473+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937473+00:00\",\"context\":{\"id\":\"01KNX20619B92NR4FWF0VV7173\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Home Security Sensor status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937489+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937489+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937489+00:00\",\"context\":{\"id\":\"01KNX20619GM2HKG8PNSATX2DC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"problem\",\"friendly_name\":\"System hardware failure\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937505+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937505+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937505+00:00\",\"context\":{\"id\":\"01KNX20619JC878R08R6EZ1YN7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle System Hardware status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937525+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937525+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937525+00:00\",\"context\":{\"id\":\"01KNX20619FGRHMFTMHQ8VVY0X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937549+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937549+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937549+00:00\",\"context\":{\"id\":\"01KNX20619T0JVRFG93M4Y1NW9\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"media_player.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"tv\",\"supported_features\":153529},\"last_changed\":\"2026-04-11T01:20:16.937569+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937569+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937569+00:00\",\"context\":{\"id\":\"01KNX20619456FN6RQH2RX4B0N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"remote.kids_tv\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"supported_features\":4},\"last_changed\":\"2026-04-11T01:20:16.937587+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937587+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937587+00:00\",\"context\":{\"id\":\"01KNX20619P10SK8VDVYSBZBAP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zwave_controller_basic\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Basic\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937629+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937629+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937629+00:00\",\"context\":{\"id\":\"01KNX20619ZQRDWD7AT1EX3ZR8\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937661+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937661+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937661+00:00\",\"context\":{\"id\":\"01KNX20619M08XEZKDGH6N572F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"update.layout_card_update\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"layout-card update\",\"supported_features\":23},\"last_changed\":\"2026-04-11T01:20:16.937684+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937684+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937684+00:00\",\"context\":{\"id\":\"01KNX20619JZZKQF9EB60ZX0PD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_morning_wa", - "offset_ms": 192 - }, - { - "direction": "recv", - "type": "text", - "payload": "ke_up\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Morning Wake Up\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937704+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937704+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937704+00:00\",\"context\":{\"id\":\"01KNX20619YMZQBT9KVGQRYXND\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"script.mariah_room_light_off\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Mariah Room Light Off\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937726+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937726+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937726+00:00\",\"context\":{\"id\":\"01KNX20619NKZV7Z7H49CQMGGH\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"friendly_name\":\"Idle Water Alarm Water temperature alarm status\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937745+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937745+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937745+00:00\",\"context\":{\"id\":\"01KNX20619V2NGWJHMPEDHJ30G\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"No data\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937762+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937762+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937762+00:00\",\"context\":{\"id\":\"01KNX20619EVXTEMYBCTE7DG04\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Below low threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937779+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937779+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937779+00:00\",\"context\":{\"id\":\"01KNX20619VNF5RPJ68F72G7SV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"moisture\",\"friendly_name\":\"Above high threshold\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937799+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937799+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937799+00:00\",\"context\":{\"id\":\"01KNX2061905VM5SMR6QNC76RK\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937822+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937822+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937822+00:00\",\"context\":{\"id\":\"01KNX2061935QCKGXT6B13J1XP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937856+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937856+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937856+00:00\",\"context\":{\"id\":\"01KNX20619QY996YPGFPVZR6MF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"battery\",\"friendly_name\":\"Low battery level\",\"supported_features\":0},\"last_changed\":\"2026-04-11T01:20:16.937877+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937877+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937877+00:00\",\"context\":{\"id\":\"01KNX20619CX8S5E83M9054YNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"state\":\"unavailable\",\"attributes\":{\"restored\":true,\"device_class\":\"duration\",\"friendly_name\":\"Permit join timeout\",\"supported_features\":0,\"unit_of_measurement\":\"s\"},\"last_changed\":\"2026-04-11T01:20:16.937896+00:00\",\"last_reported\":\"2026-04-11T01:20:16.937896+00:00\",\"last_updated\":\"2026-04-11T01:20:16.937896+00:00\",\"context\":{\"id\":\"01KNX20619Y80M2N4DEFCGHYA2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"state\":\"on\",\"attributes\":{\"device_class\":\"presence\",\"friendly_name\":\"Garage Parking Car in Garage\"},\"last_changed\":\"2026-04-12T20:12:14.609843+00:00\",\"last_reported\":\"2026-04-12T20:12:14.609843+00:00\",\"last_updated\":\"2026-04-12T20:12:14.609843+00:00\",\"context\":{\"id\":\"01KP1N5JWH03AADFD0YMJQX9NS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:19.501928+00:00\",\"last_reported\":\"2026-04-13T08:05:19.501928+00:00\",\"last_updated\":\"2026-04-13T08:05:19.501928+00:00\",\"context\":{\"id\":\"01KP2XZ90DKDXBHXR103CKC1CF\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-13T08:05:14.537421+00:00\",\"last_reported\":\"2026-04-13T08:05:14.537775+00:00\",\"last_updated\":\"2026-04-13T08:05:14.537421+00:00\",\"context\":{\"id\":\"01KP2XZ459K7QQA0MA4QD8HRNJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-13T08:05:15.337629+00:00\",\"last_reported\":\"2026-04-13T08:05:15.337972+00:00\",\"last_updated\":\"2026-04-13T08:05:15.337629+00:00\",\"context\":{\"id\":\"01KP2XZ4Y9NBR686QMKFK3CYTF\",\"parent_id\":null,\"user_id\":null}}]}", - "offset_ms": 195 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_trigger_service_with_response.json b/cassettes/test_endpoints/test_websocket_trigger_service_with_response.json deleted file mode 100644 index 6f922206..00000000 --- a/cassettes/test_endpoints/test_websocket_trigger_service_with_response.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:57.839612+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"get_services\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"cloud\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}},\"anomaly\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}},\"group\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"", - "offset_ms": 18 - }, - { - "direction": "recv", - "type": "text", - "payload": "required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"script\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"person\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"overseerr\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"mqtt\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}},\"file\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}},\"zwave_js\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"lifx\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}},\"template\":{\"reload\":{\"fields\":{}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"opensprinkler\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"ecobee\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"calendar\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"roku\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"emporia_vue\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}},\"dahua\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recordi", - "offset_ms": 20 - }, - { - "direction": "recv", - "type": "text", - "payload": "ng. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}}", - "offset_ms": 21 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"domain\": \"weather\", \"service\": \"get_forecasts\", \"service_data\": {\"entity_id\": \"weather.forecast_home\", \"type\": \"hourly\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"home_assistant_error\",\"message\":\"Service call requested response data but did not match any entities\"}}", - "offset_ms": 30 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"domain\": \"weather\", \"service\": \"get_forecasts\", \"service_data\": {\"entity_id\": \"weather.forecast_home\", \"type\": \"hourly\"}, \"return_response\": false, \"id\": 4, \"type\": \"call_service\"}", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"service_validation_error\",\"message\":\"Validation error: The action requires responses and must be called with return_response=True\",\"translation_key\":\"service_lacks_response_request\",\"translation_placeholders\":{\"return_response\":\"return_response=True\"},\"translation_domain\":\"homeassistant\"}}", - "offset_ms": 36 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_async_list_entity_registry.json b/cassettes/test_entity_registry/test_async_list_entity_registry.json deleted file mode 100644 index d9e8de4a..00000000 --- a/cassettes/test_entity_registry/test_async_list_entity_registry.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:00.176893+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config/entity_registry/list\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.updater\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48544df94cdd8858d51e4825d887b87f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Updater\",\"platform\":\"updater\",\"translation_key\":null,\"unique_id\":\"updater\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.adam\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af3cc6ab1d311d80445a2911bab8a736\",\"labels\":[],\"modified_at\":1774112250.228571,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"collection\":{\"hash\":\"8ea23eafe65450db9d5d7917f1e1808a\"}},\"original_name\":\"Adam\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"adam\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"52fc2b39306eecd553aa2d1275b23f13\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.logan_s_landing\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc17bdf0b19aac327302b5ed8e37842\",\"labels\":[],\"modified_at\":1776067736.245874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Logan's Landing\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"home\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.remote_ui\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"662f53bf96ef56470f84c30f01b8db1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Remote UI\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-remote-ui-connectivity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.jenni\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"867ce61cfc7ab736b355b85c14411b09\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"jenni\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1566df05da78124d095f06fd3478d69d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Front Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015141627\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ff73de8af671e02bdb687bc221a551\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Back Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015238936\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stair_chandelier\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73856bdb53725526e8e63e078c9ebebe\",\"labels\":[],\"modified_at\":1775870416.949593,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.stair_chandelier\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a4c91300d5c0eebf9260967a60a018\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_routine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70c959e47b0e9e5e4b826c5900cad954\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Routine\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629617283234\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9bd88b769429a941a9478debe90a70a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785091384\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.wake_up_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f995f568522466041f6955cdbcc536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Wake Up Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"wake_up_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c348fbb7c91293d0d89150a1e883d05c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785279492\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f204a6e1edd3b3c13d9dc6e48613dd20\",\"labels\":[],\"modified_at\":1741730439.823744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Cat Bathroom Door Closed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950849970\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b4711ee4a97eb0c7c20e508d9b5c2afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950974058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2cc79375b1f971d1a5e8e393733e821\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631951014424\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8e2a310dc06849858f204cad33666aa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952292117\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37007cf65958ceae04ddd495d3be6771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952347170\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6221addad0ec6c1d678b405921c56c42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952450891\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_lamps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ead5a9e4369bbe20f36cdc5cdbb169bf\",\"labels\":[],\"modified_at\":1775870416.945327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.living_room_lamps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05c094b96331a2e72fa623591306c435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb5b70bdb5e625b89f9c05075b86919\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Occupancy\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-occupancy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d2c826662df9e49d3b4c59696b2198d\",\"labels\":[],\"modified_at\":1728721845.856414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":\"ecobee\",\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3bc3484981e75dcef88140475f41ad\",\"labels\":[],\"modified_at\":1768937324.405202,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"289469882a9d4c390942a2c28d21e837\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73aca607e21724f9c52d8d593ec4d76a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7ebb8f03146939f38815de610add87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895391373\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3381c206b02ec2b698ffba1019a5e8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Kids Room Motion White\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895431041\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_off_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54fa204f71e05ab0e55d9f4409aa6ac2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off Motion\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895565944\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":\"user\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_motion_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b122a6403b1e6102b774c5f91d37a109\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Door Motion Alarm\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b041853caeba17cf928939638155c248\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Human\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_human\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0247c03858e81ac316c24dbea6f0bd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Button Pressed\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_button_pressed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_invite\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b490d78c9b4cbaafadf0c893b801a05c\",\"labels\":[],\"modified_at\":1730406829.425846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Invite\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_invite\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_door_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bcca1ae5fefcacfd0ef6dcb4d8b7b11d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Door Status\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_door_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0f14d3b72d1f98e8ed47fbecd5b419\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Call No Answered\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_call_no_answered\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_infrared\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e21d212136e8f6167e23615634933ebf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Infrared\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_infrared\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_main\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dc52219ced77a446fe360690a4cc784a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Main\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Main\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28587a1f49ec36f599f8f42020999c28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d86893f808d91f26b6859f432eac7d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Red Alert\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"red_alert\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0c880ea25f8f95f5f4149b3b3dbde52a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Illuminate\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c375ec26f63adaba2a3600d0884e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Show Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"show_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212fbb3cd5dfca24ca5dfee46fa297da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Kids Room\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_kids_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"abf611beb1cf6771f05cea144108c5a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.kid_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0296bfaeadf38a3c2c643aa0fa317ffc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kid Dance Party\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"kid_dance_party\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ad4a44c058301709a2c85029eb3a928\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633315499530\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72c0da4ff910be4448a82584819265d5\",\"labels\":[],\"modified_at\":1758172744.684397,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633316964978\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33ec4ea4e5c89927fda1517f3c16fbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317039614\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30cd2b7857a2400001b3c24d6828ffcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317101093\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_kids_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ac91a924370b63b79e242b921321b50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Kids Dance Party\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317161375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb22ada93ef655ba18e9b9e9168627e4\",\"labels\":[],\"modified_at\":1758172743.683117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317518311\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf072fca0aaa7e3cb0d7edf9000ec1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633318458266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39ea7e6d5efb9cb8e90240ca9498b48d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633321371244\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_living_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a338e143092fc0aac6088733d8f992\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Living Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633323598789\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64928aa007ddb8ca5083b35e7f8ccd60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Red Alert\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633329926454\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1412ca1484c26fc0f1b15b903c39c979\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b549da1714cb046914a04ae5f9df208\",\"labels\":[],\"modified_at\":1768937324.521669,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:0F:FC-light-front_porch_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f1a54ce97cc4d298e3ebede755c053\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f32cf07f4683f55bcab89798695a46\",\"labels\":[],\"modified_at\":1768937324.493498,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:23:60-light-front_porch_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4473c2dbc00d6320702cda169c7a91c8\",\"labels\":[],\"modified_at\":1775870416.945947,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Porch Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.front_porch_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c474f9af1ecc77455a800c66b4682d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cf5e19c579425ff2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb03e342c2822bb15c887a38425c17d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1637480683670\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea302a8d7dd8f0aad892f4ab3a0129ed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - On - Dusk\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606004641\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b408a1694e51a832ebd0110266ae9b95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606124541\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_restore\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67d608cf2a32ab837f3f638603121f6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Restore\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606172266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c47fb544830a808c164453e004ccaa80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Off - After Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606436231\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2911270340373d6692ced07821d91a\",\"labels\":[],\"modified_at\":1775870416.946362,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.master_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_ceiling_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1a9fe62dd87298be3e20bf76dc5ede2\",\"labels\":[],\"modified_at\":1775870416.947281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_ceiling_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f184a5dcee5c41d074c34bcf6f0788a\",\"labels\":[],\"modified_at\":1775870416.947891,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Office Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_master\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23f3071c3353df3f910d738281ccebf0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Master\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_master\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec4945d179a66d50aeda49d07fd8d1d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights Off\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edc8c107b4d7bdde4ea4ea619fbb029a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639120832058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"712ed0c3c619a6f18ead981897ff48cf\",\"labels\":[],\"modified_at\":1745898587.722042,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639715090770\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d82e452611e452407b78b0ef3b5ca41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.jenni_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a3c8889231a5bf5d75dea1ab9619b42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"jenni_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_close_garage_door_leave\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22831cf5534857f869f81216a62334ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Close Garage Door - Leave\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639718580516\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"524e32ae2138f47b68e69030d244bbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Open Garage Door - Arrive\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639724678294\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_security_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"066e17ebc66789db48cf2e304ed5379d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Security Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_security_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3002756754c22bdc89b0046fb4d2cbb8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85dcc97f2bb788c39ebc5175f6c653dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub_2\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.nap_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"944bf3860f83ebc3f9fab66742d581b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Nap Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"nap_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae5f17c250b517908480297107e4f3", - "offset_ms": 29 - }, - { - "direction": "recv", - "type": "text", - "payload": "7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641177479575\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb7ed0ee5f58ab9e7d2801bfdfee8fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188755198\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a1917bd219066d9a31dddd40526ac3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188941984\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.adult_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1fbc8990624c59d6baebd252a9927d20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Adult Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"adult_bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7dda3951af520ed7aa14de0528021459\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641190435073\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"143a15957bf22bdb04ac5c7772a2ce51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Door Open 10 Min\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641191518035\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time_persistent\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ebdc4128b00a85d18f09c1a3f4df0da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time Persistent\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time_persistent\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7e1d8b9bd1cf3e328c05b5577a8cd13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641192891526\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2af5d760ba8ab63f823839e9455f953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b578d45bd122395c5de1934f8f46e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Away\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225378269\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_home\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a8af2ebb3869fa92d132d3d3d00ac804\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Home\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225411475\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51ccecfcf007db71262f1935420252e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Large Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d1ebd3722f10011fa664fec57ed37472\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Small Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"471dfdb1b7068471e0e1fcfea1e471ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225671056\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e582eb57efe5d94969905cf1bff8f81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225729228\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"651aa5c71d4b4b596f4a13407ce60767\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226072324\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cdb6f8074feda911c7b4db1a1e0478e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226100136\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b91da8b1552452b28294bcc304b4f8bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pause Master Bedroom Lights\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"pause_master_bedroom_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"timer.garage_door_closed_recently\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"90320387b4e4ec3a3c7cbd84dbc5ad90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Garage Door Closed Recently\",\"platform\":\"timer\",\"translation_key\":null,\"unique_id\":\"garage_door_closed_recently\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_nap_time_over\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f25dc80c5eb3444609b559695bcff2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Nap Time Over\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1643176701270\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_disarming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"889c9705fedda7305ea5fc7107f5a56e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Disarming\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_disarming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_ring_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01c245ad5b42f3410ceadf17493c617d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Ring Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_ring_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_smart_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d98b2a6e9c31c4c5aebe6deef37adab3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2e11abfde42f19a5057b1b585c72c3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1652512982739\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e04623ca1cdd79fb8087c8cadfc8a27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"468809c6fd06ce648ffd4890de5cc742\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4f4ac0f275a156c8d2384faebbeb939\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandalier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6571da15bd6e6aaf28760a38252de8f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stairs_chandalier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b323727cf823f62522377f2dd6b67c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1124603e90858bd2a7c8eeaa4ef0c908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91edb81063054b8b29e5bc0aee5ca722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a55fd0624053c3fc70a102047121f57f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68111fcc2532b27a80ba3cc01980d288\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0fe65477af3a205470a1ccced0b63d2a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42f50125299f3927c531c18b669aaa60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"261cda58fa35c9826e2e8a9e46548ff6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4bbd43bfe7fd1687e3f9474bf5306d86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48c6d2458f235bc19dff653c6f3bfbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"134f2a9c097befabd5c7d358e36a7a6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3dfacb9c1a377c0cc5390b71bd2955e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16ffd02c1f172e132bc50ed2bf793eaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8487a8d303943a19ac5668fa6c21f68b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73d67204eb476a06333ef8f4adfe5ef7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24288404b3c7dd6c44ff56181d1124e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"864b5cd1631ecb4437a6a0a50c7257e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"722bcebdf2dd4b683a717d50365989dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2caeff606e9499afc9924c3338e29c0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Large Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_christmas\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e869294cbe465647705bafc2c47d8477\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Christmas\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_christmas\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85e9eb0070a496e7fa87eba9e56abbd3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0989c392a71f038b4ce8fe25569ac13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37cbb875f4dfc9ba34dd3b3e17930562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a1e6bfae1dfa193385ec058c31f2fb9d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Small Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e487877af8428842b8d8007616674a62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aa3800e7a126f118ae9b7666deaa2314\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56cd7bf3d052edfdad8981918cd6267\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fddd2acbdfde2f3570dba13d43190b0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6a231953d122e3658bdd77cdcd797f16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24022be80cfdf60a4115c7bad5b035ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec52255713718153f0196eae444e4fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89ea19ac476812b23f5fa073e720b4a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eef0de05d0aa24da9c82355406167041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7940e0e30fc1e1fcc4c9b7a48565002\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_fade_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663c860aed914fba5858948be314cbe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White Fade On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_fade_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6be2f831d75032a3ad7b684508d65e16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.notify_phones_about_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ece1f2275efa510e2dd20151a04ed9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Notify Phones About Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"notify_phones_about_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_meeting\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"372e3957cccc5cb8619ea55b6ad0795b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Meeting\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_meeting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"754734721fc9477df34eeb036bb991bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f7c8ae1fc9b54bf0123181ee762641\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dead_zwave_devices\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ca6ff31d8ab85a686150917f46387b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Dead ZWave Devices\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"dead_zwave_devices\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f63024643aed08b3bfac6124ecf6ad55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Detected Activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59f0788b350cff3ed3e4c80681032694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11670cf20ba415249941c61df360a87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6349ef75a1840deb307830662b0981ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4516a2d3d10614f0276006803376821c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9a1de4c001b65b023873dc67b2e1aeb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e26c607d067a78c441b7f9cc75dba4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f9b0a9b9747f274c8ec2c4049f13188\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2591a8696175650360ecb04c34ebde3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Standby Bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c29b2793fa42375476a4961a9cb9f3c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4c4aa34addf089c6e0d44c3dbb69fd8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Ringer Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b402edad0d1f3609fe2ea219651b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Audio Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabac057a1daed31e37304dddb21888c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_mic_muted\",\"", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d03380fb776af8c689f558f3d81ec56c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mic Muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c849b40230913371f3ae86450152296\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb4b92f25deb1c26c4d3a75796804cd6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Music Active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63c6ddd0e2c380c423406f865ab4466b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aece69b417cbd569b31f9e3f03cbaa5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"08d4816026b16e5765055bcb256faaaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"167a38f51480e27d6f32ea9bd21cffe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b36dc595459a5eb7754d1bd53f679d9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fa664a57085896e92fe622bcfad9ffd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level System\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4947061539f7e448c220cbbe3d9791ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79866ed9f3d374f668978f602c522936\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"754c6b6be3ff40167959413eee71a769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bf324078f46e09e10914ddd9ad39ea18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f2ae98f237b3a3c18efcfb76a44309\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Is Charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d588b0f08c94af014bcad08dfd9c82bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Charger Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af35ad533bc818679f6142f0fba98ae9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4eeb5c4fc5a9c4740e441917048cb56c\",\"labels\":[],\"modified_at\":1768937323.674991,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 6 Battery Temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e620a9902d2503fadcb5049f62bd3a\",\"labels\":[],\"modified_at\":1768937323.675654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 6 Battery Power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0bea36868dc2852f26e606cb5585978b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7c392d0e5b5805c04c01a8de1d19c6a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f5694e88652fbe7b4aea3571cd3ad68e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 BLE Transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0c86f94983c08b0aee46a117de5db3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Do Not Disturb Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4925d0a68fae8a6820872b19a33e5e86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Work Profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6e361c77027c92ca103f02ee555a17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Geocoded Location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"61959a38850d543f21bb0e1569e0ede8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e12b5bf1dc6312d8adfe9566a8cddbc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4213bef8495768305cd59cdf35ca4b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e97bb579088e5ea424b616dd154aa791\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f66c0118c076670fb52aaffa7ba1997\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Used App\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2f9ae155ba2acb94d2e58ff2481cd0dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4984eeb61df82c1962b1568de93ae1e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Update Trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c379a58d167afdca3215f4bdad404860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Light Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed4aca22759c17dad01d4267be06c9c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093eab6b381d30ac54b915f31a1ffe6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Update Interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5b1fcf09cfe62058415e538ad489578\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e7c731edc371565fad28bffa63f26fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data Roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3345b994bae95f98a977b05251d2c18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"36a81e770148fbf8c3501c4034d8b519\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"393daf81b19a2e000076de43a50e0d5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a86d523635b1107073a00863ea200833\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Link Speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf293b8e7370ea8c4cede0e10f834424\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5dcf1e1bbef07ef59ddfe608cbc0132d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aea0472231ddd7b05ac99a683af7c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Signal Strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"660adb553e2a9af427c52f135747f7f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Public IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"176bca32b338d93754f9c7be44fa07f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Network Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0285447de022be2a252f35fa4ad7fd5d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Next Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586470a0e2dff113e76d335d791c7cd8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4359e632b04270993df87c3fe628cf32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Removed Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c9addd802bcc76b59bad7b47f376a6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Active Notification Count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"422e2b7d93661fb5bf555757d9aff815\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Media Session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4816202ee229e1793e3f4118768d562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Phone State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6c47cf4f550f86dd82efbe37e4d94c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"978bf765161185ef6cfd1d543281d100\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3da6d97d96132bbaf358275ffac29b85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c969863cd8081060eb057eea1b261e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Doze Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"859d0df2447518ce6d43471eeb66ff04\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Power Save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ada0b3b5277c155272a320fdb3d308e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Pressure Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbfa1364f9833d410ae76130415c30f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Proximity Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a8b1e9e42181e7f2598315ecbfcd15c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Steps Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2dfe5cda59186cdf2870eb4805567d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Internal Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ed6c593bbd2acc4ff1fff9f30bd8655f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 External Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"60436b2e4c4506cbf65bbe328d971eb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Time Zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a2fadec84d4c8c45bb51cb557092dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c088aa9a3a0892284a692665a13625e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4a8a05e4ae43df88bc2ba18d31bc976\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db3a97e3ec912bb7ef3afb01868c097b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5a96bfeab8ef33995d19d1c286975ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f0f857a8968c9cf06c05d1eb7ed8e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"599fa49165ca52cdaa308a9291244c32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69bbcb02486b22633b2e78f73ed39657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"zone.school\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df94776e25d1b4c511664437c6d8cd8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"School\",\"platform\":\"zone\",\"translation_key\":null,\"unique_id\":\"school\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec6368556983ccd7323a40edadf2e38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Beacon Monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2160869c0d0023d5de9f7280cff177e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Accent Color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9f2220a04f3d0be4796b6fee9d9b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Screen Brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98521848d3efe121dc305c63a3ae9482\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_hallloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd0dc4211c81c4003e1b7c52010f64b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea4b856a58974c9350f0dc8531733eb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e7b49dcd25a0e17a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"752981de05fcf25b9881f49201d2d259\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e583b4572c572a970b8e4f79740d1d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84d1e072ec6a946787dd954f39def970\",\"labels\":[],\"modified_at\":1733904291.14561,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f441123d912ddae3e6d32aa9719fa8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd925eb2c0373b46333f9982693cc539\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8add6e050c44b030b775c0900d7d955b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca4da0e5938f0ad9b79786aebfc94261\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6da88d50b1815e413cb3c18effddca46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b9ee129cb84e064e54f6b6f2a68bfd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b56def15f41aad4941106a5a95a55bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7427f7c8df98d3cbaba16fb1cbf5f27e\",\"labels\":[],\"modified_at\":1769764244.706022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d92a1c422ab0a536d81c42d8ae646da5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ca15e3b72854b67b5f6bd20861d12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6c4b3a155edb068cee9c57e4b9114bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2600df00617c34fd4a6f7085fa9ad2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9d033d4f9202f91a6b56293e16399cc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d704b74e9a8a5a2a3bbabbc7aceac39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fba7cd65763c03f75099ea4f8f2df62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4048c62fc405ce5317c7353ddecc8db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44607a13e9e0906a7b252b2367029b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ffff734debf22a5da1f04227ed7ce61\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7851ce9b8b45d02c259b100099695bcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e75244fd4d702e9e24eed421f19f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80553ce4ab17b8e3a3c8a0e9f2333369\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df84eb0485292a8dd0738dd75af58ea6\",\"labels\":[],\"modified_at\":1772660779.072245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"962b89bb2e91c9e72416f05984d53a0e\",\"labels\":[],\"modified_at\":1751875652.892459,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a32c673dec6f143954907e9d833d05c1\",\"labels\":[],\"modified_at\":1751875652.921495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d73b8b9674d497ee18d5fc04803bfaae\",\"labels\":[],\"modified_at\":1769764245.433226,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc442861fb551a6a06c1f1789d3a8d47\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8176790314abc637bb78fce1af28dd95\",\"labels\":[],\"modified_at\":1768937323.679914,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"°C\"},\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 7 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5b470b4aa7c1d7e469ff00bf06256925\",\"labels\":[],\"modified_at\":1769764245.566513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 7 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cfe1476f76e9b5e40c2665623a580dcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c501a24867cf1e75b62a7d084fe6153b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"241a1502ecaf8436b468ad0986728e9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"976abf783a6596bb6e4ad93e5eef6ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aafd4d0f25e0058e7691e4b900fd888d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9432ea9dde7dafb7f04fa0fb66caf0d4\",\"labels\":[],\"modified_at\":1733904292.9764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9742771b1ceab90f1b14f82fe2f991\",\"labels\":[],\"modified_at\":1769764246.412117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9140026578f8696f95b3a23e7b4b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2eb9199ce7a259686aa22ed1201bcd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aefcada6f1ae5cd573ecafaed1f82cc9\",\"labels\":[],\"modified_at\":1726775504.304137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"327a9df8b4a560f9869c8a795aa427d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b8aa5d978c603d98ee826e002c5a51f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1935dba47b0942142c6137d75189c165\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b24892dd730b588b3ef58a9c5f6433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"683870d1b12dbfbe9958d3bbbd483be2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05628de07b292547de3074d0fecb63c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b52583e588d331b5489ad61d42d1b894\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea6754e922d43ed5faefd1c37aff673\",\"labels\":[],\"modified_at\":1726996801.234221,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67a5374ec1ce04d4b1fc7f504a5f5ceb\",\"labels\":[],\"modified_at\":1726775486.464706,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9989c20892e290c5f68ba8011da7480\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ac9c525c7baa10637bfa0bfcf5221a8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d33788e0c059d59c257f087a1473354\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6858fb1bfe673ad16c733d32e0e2eea5\",\"labels\":[],\"modified_at\":1736454087.142562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f8ecd430a0259a766ff87dd14850905\",\"labels\":[],\"modified_at\":1736454087.172581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ede90797f1d7ac76694a6f43d9bc8c45\",\"labels\":[],\"modified_at\":1736454087.212097,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"baa0e4cb851227a8feaf9d6df17e9fe3\",\"labels\":[],\"modified_at\":1736454087.244039,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212276650f0469c6b78f1aa1555eb08e\",\"labels\":[],\"modified_at\":1736454087.284983,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2c26aa9370eb6b26b415452c8a", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "a37fa6\",\"labels\":[],\"modified_at\":1736454087.322599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5559192d4b1724258755211fd6c0eb2d\",\"labels\":[],\"modified_at\":1736454087.355909,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f2f1af76340c415aee598869f15f6b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ba5e415bd21554388b021818724eebb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49817327a16217538f7b5d10768914e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f382990d6af13a6f0f40861b861e446a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"acbdc6c80e798bd40e688481d54f3dfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b15ae82de7ad1a7193e870c8a928e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c39f19cdbc833df680ac7b7aeae2a1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"343e97cbda69dad188ebbf6b8c98cbbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95999d30a8740282d4530ca4dcc83763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8dc6554bf62986c588c250443bbd9a30\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501fe56c13dba2403f8e9f6305853d85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45103882a134b44b710984e492b782d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89602f6616e58d5fe6968e27e9de7f75\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f509ed5dc970c87935cd8abb4447cbdf\",\"labels\":[],\"modified_at\":1768937323.68247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Pixel 7 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce994d74c8d3dacc5f2b3f3ad1c4c862\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b81c76adf96efe95f486bca48df59198\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea6b5d6c0a7555063714d5e8fb0966b9\",\"labels\":[],\"modified_at\":1726996802.141611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e86041c03757821fbe478098482d762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f7c6db6916cfc8884490f24662d6d6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"179461930c9335bff09691616b8a316c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d7bf3b13d2aa43a53bff5d32eb3b6a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b76e1c633c646f74498a1b4022d4aabd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ccd80680e8a746bace2ed530127ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"51f7f20cb4853fc0b780e3f12cf45927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:c4:36_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f0afd1ec6dd2925c7d3aa877f10716\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:a3:c8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab1ff41ba82a1e9a081c62b4a4e05baa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lamp_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc50d543f3d0de8dce6f30e83abaa051\",\"labels\":[],\"modified_at\":1768937324.522894,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_lamp_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:33:BF-light-office_lamp_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74f90347b451e99fe4564a5f9034b2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04350d1332ac239890df047ed24bd6ec\",\"labels\":[],\"modified_at\":1775870416.948326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Dining Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.dining_room_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_base_station_power_switch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd59869adefb3c2668706287d79ad134\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"VR Base Station Power Switch\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"switch.vr_base_stations\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"554456bc549d0c50d8ad023679b633b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn Off VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"974317cf2fdad27a6ff88ffdfe415537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn On VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067739.720447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94b349a8c075517a154253fb630c014c\",\"labels\":[],\"modified_at\":1775360982.274551,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f55335bb75f173f6fd401e50a1e6ebb\",\"labels\":[],\"modified_at\":1775360982.275026,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8424b92182bb8b52c940680327e1b956\",\"labels\":[],\"modified_at\":1775360982.275471,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86c88fab85fb335a99f5bbc40d5f6157\",\"labels\":[],\"modified_at\":1775360982.275902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00578db2e0fd380276579a29772a6ad2\",\"labels\":[],\"modified_at\":1775360982.276323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"091e225f048950d7bc9b58b427089acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d4ccd77c43917949c6f8998592f6d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72f6d099f1b60f2bef38928d26cd8c1b\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Lights Motion Off\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1681343760386\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.scaredy_cat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"875026434592cfe2277e6b60284b69ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Scaredy Cat\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"scaredy_cat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d709cb65d0bf72bdd756ad8e1f4ed26e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1c060ca1926ddc648dccc6a4ed79a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Scaredy Cat Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1685999337743\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0468ec0ea3a7c492de483fe1e2a6f3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bc61ccd7457d16d4521b75efa4de5263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"090f0966fdfe9202896f95e917094db9\",\"labels\":[],\"modified_at\":", - "offset_ms": 33 - }, - { - "direction": "recv", - "type": "text", - "payload": "0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33efabd658a938a3c84616668b943ad1\",\"labels\":[],\"modified_at\":1728721845.865992,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b46c1986a992590e543ab83dcc22be\",\"labels\":[],\"modified_at\":1728721845.86621,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47716215f6c1e4e0c958a2bd847d04b7\",\"labels\":[],\"modified_at\":1728721845.866372,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c0f16bdb9a7af253322e7f2c68037a1\",\"labels\":[],\"modified_at\":1728721845.866525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_not_accepted\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32047f8c6fedd304c0195365947e01c5\",\"labels\":[],\"modified_at\":1728721845.866674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages not accepted\",\"platform\":\"zwave_js\",\"translation_key\":\"nak\",\"unique_id\":\"4182894947.1.statistics_nak\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_collisions\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8508325f21df882e069374d85c2412c\",\"labels\":[],\"modified_at\":1728721845.866818,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Collisions\",\"platform\":\"zwave_js\",\"translation_key\":\"can\",\"unique_id\":\"4182894947.1.statistics_can\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5d1890f3771adcfbc650417995884fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeoutACK\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67397fab6dfc1efeb76db69e09cd2518\",\"labels\":[],\"modified_at\":1728721845.866966,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.1.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_callbacks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cb0ec827d35594d68324c943295da67\",\"labels\":[],\"modified_at\":1728721845.867108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out callbacks\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_callback\",\"unique_id\":\"4182894947.1.statistics_timeout_callback\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"682c4418ccc9d59ab4766feb2876d337\",\"labels\":[],\"modified_at\":1768937324.461784,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79be22754c52e9d3ba249c79d09b8c3d\",\"labels\":[],\"modified_at\":1768937324.462018,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b9e078797343e12caf9f44a0b0f5b23\",\"labels\":[],\"modified_at\":1768937324.462198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96bd4450ea3aa2dc0fefa5cdcca29ec6\",\"labels\":[],\"modified_at\":1768937324.462371,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d30b0a3a5acb331ecf9bd7faecf3c553\",\"labels\":[],\"modified_at\":1768937324.462545,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67ff38d870a2330331c2b8ce6d626c9d\",\"labels\":[],\"modified_at\":1768937324.462722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f177b710b34d34badf49d64727b08927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.4.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a73d8ed5443f8307691ac47b75cb6513\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.5.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad589416f84ee0a4bae7247f7101e698\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.6.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08fbadd4e068fb26c4d98b53f492e322\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.13.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb6e3d9400e10748fbb5b95f4d2c14df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.14.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9657d799395ad95f249170d72f4515ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.16.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be10ca3bcb5bc1051a357c059873eeb5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.17.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e9cf7a82a0f823c8cd07af1e9828c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.18.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a463e1a6b3777f832e1c78e3c725c8a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.20.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d13a24ca75cc9b0a0413f9f7c0f7c5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.24.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48d8ac6919beb5fd1f7b6715fbe12b43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.25.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f233496fe9a9cdb2df78bff33a2b836f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.26.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d6f8217dc1118036bf98bcd10f4133\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.28.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80029cb154657f9d9c91b39ba1e31549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.29.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46570cdf00c69acca5931fa450785a9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.30.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35b093dc4c64641b23021740e8cd27a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.36.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a65fc8863f070a02d939d1b8306a2d8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.37.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53ee574e53ebda2b8e3f989a3ba13fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.38.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30654040cc3e65801967d3b7cb69b1df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.39.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"544683dd8a7cc50d1bd208a73f4e3307\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.40.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ebe35465fe37aac78f69ed1222d264c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.66.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab0c922ac84db0b313a9c93dc22c6ee1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.4.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8385c6cfa7f0c4997be41b6a49a4b8de\",\"labels\":[],\"modified_at\":1728721845.982674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e386cb6e210fc89df0fab411faf5afd4\",\"labels\":[],\"modified_at\":1728721845.982907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9c808db283e54ab2446bab6fb1cc994\",\"labels\":[],\"modified_at\":1728721845.983117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba1e80a8483cdfc2899d23b81aed739c\",\"labels\":[],\"modified_at\":1728721845.983281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f42d47a34b6f9e3f87ae053978ee85\",\"labels\":[],\"modified_at\":1728721845.983435,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.4.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9be484fd8a2b1135e0eb46e741acd273\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.4.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"693765a84e9f3e3dcad716f4eeec22eb\",\"labels\":[],\"modified_at\":1768937324.528833,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.4.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"012352a68babdcf20b6cf95f876e926f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.5.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f672471b5c978420e5f1dba57dc4733\",\"labels\":[],\"modified_at\":1728721846.000478,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c4b943d6fb6f596b29d6d977e0e46f3\",\"labels\":[],\"modified_at\":1728721846.000702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9873f4f992eed491065ac7a2f339a7bc\",\"labels\":[],\"modified_at\":1728721846.000876,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69032bd476a7b17eade17059e08180a4\",\"labels\":[],\"modified_at\":1728721846.001035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb63ebe968c8197ed6fd472701949976\",\"labels\":[],\"modified_at\":1728721846.001179,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.5.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69dbe60b2c6ede995a5e608d08544cf1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.5.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46b8ead388ec6b9bbd189354e8d592ac\",\"labels\":[],\"modified_at\":1768937324.530131,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.5.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4cda4cccf1bf41fafadcd00681b40751\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.6.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3da25ea5b1606150ef66a9080137bdcf\",\"labels\":[],\"modified_at\":1728721846.008122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69e11426422fa9379fb37cc8b90b0100\",\"labels\":[],\"modified_at\":1728721846.008333,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6068bcf6b64da799f454a39f75d219d\",\"labels\":[],\"modified_at\":1728721846.008489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e19fe563fa9afb307a1d1ec0af6a47\",\"labels\":[],\"modified_at\":1728721846.008639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7c137d08211c63fc135d56ad8079b20\",\"labels\":[],\"modified_at\":1728721846.008782,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.6.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632b4444df9edd83dc36ddefc3105924\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.6.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b89faa5aa8c37389c327d33c0bed5f5e\",\"labels\":[],\"modified_at\":1768937324.535509,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.6.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c48a9484b52fe684114f779a2fb5404\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.13.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4c6df2834c4defdd486be1e9a612c07\",\"labels\":[],\"modified_at\":1728721846.026245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"511e3b988f5150cf206ecff8b0a48afe\",\"labels\":[],\"modified_at\":1728721846.026539,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e77fec708cbd9dafd349afe5a826a6f\",\"labels\":[],\"modified_at\":1728721846.026691,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d788a6b3695255083009f04d3dbf84a0\",\"labels\":[],\"modified_at\":1728721846.026831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bf7f721885b7646b04081641fc9b9d8\",\"labels\":[],\"modified_at\":1728721846.02697,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.13.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4461e4c669a848b9ef3223240813573e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.13.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"308b0682ae88de559074a6de7c53834e\",\"labels\":[],\"modified_at\":1768937324.541059,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.13.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_room_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"705c92b125e5de1380f3c18794369bf2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.14.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6521456f61c04ec8fe7b1e5b097d37\",\"labels\":[],\"modified_at\":1728721846.034872,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00c3b60e2e3cec4899e63d54e900e047\",\"labels\":[],\"modified_at\":1728721846.035075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec9cb65a35afed1951ae88b782595f5\",\"labels\":[],\"modified_at\":1728721846.035255,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"231a387ade3bdaa4a66853272db8b0ea\",\"labels\":[],\"modified_at\":1728721846.035404,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb1ecee5163bce8480c0fd35a09c6769\",\"labels\":[],\"modified_at\":1728721846.035575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.14.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"85069e58b15d22ef66a4bd97c6129f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.14.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c8fb660cd92b5d242ab5d679ccd7b33\",\"labels\":[],\"modified_at\":1768937324.546124,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.14.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c336a49feefaaa0e9faa1a38535c422\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.16.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d93c331bf5198470ef4ce4f524c52272\",\"labels\":[],\"modified_at\":1728721846.042608,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e863df09902ad83c56a2841cb51f576\",\"labels\":[],\"modified_at\":1728721846.042868,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"798ee7f183a63fe89f1e942c636b3bf9\",\"labels\":[],\"modified_at\":1728721846.043022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42ae2ffc8bde328a61b8ae4373aa5eb9\",\"labels\":[],\"modified_at\":1728721846.043158,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ea12c6f7d52404e2147b808e1242b41\",\"labels\":[],\"modified_at\":1728721846.043281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.16.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7ce0933d67d34e56e76dd1709593328b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.16.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dca82438215fb7fafede9cce49acda\",\"labels\":[],\"modified_at\":1768937324.551074,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.16.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"304e4ebde63c0b6724afd5e92cd59f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.17.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cdf393e8f27ba0fa618069c16022a026\",\"labels\":[],\"modified_at\":1728721846.051416,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40c570bea89d10e15145cb64ee1f7ab9\",\"labels\":[],\"modified_at\":1728721846.051615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b2edd3fbab7394bab0c14cbe7637c5\",\"labels\":[],\"modified_at\":1728721846.051761,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4353c6bd553ecb2277ca7b997c50c85f\",\"labels\":[],\"modified_at\":1728721846.051897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83be3dae9ec35473d348b3c5133411d5\",\"labels\":[],\"modified_at\":1728721846.052036,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.17.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3adf44d744835c998ccc919bce886ec9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.17.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7e70ca5aba67a4a230b2722299052e\",\"labels\":[],\"modified_at\":1768937324.557331,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.17.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a07cf5d4224ba6239a13744c18dd235\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.18.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7caa0248d8ee1076f41ddb3cc2c89f8e\",\"labels\":[],\"modified_at\":1728721846.057035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001bf6da6163b4586b7f7d920b182c3\",\"labels\":[],\"modified_at\":1728721846.057227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"407a6b9aee48fb0bb041de319bdc8731\",\"labels\":[],\"modified_at\":1728721846.057394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"474a984405d6ad3fa524af6f21852079\",\"labels\":[],\"modified_at\":1728721846.057527,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc3da0f80245bad1dd0b080c05f60ce\",\"labels\":[],\"modified_at\":1728721846.057654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.18.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"338d555606471bf4656042ddeac2dd42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.18.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"debf128d126cc42f9d9678a177a3d7ce\",\"labels\":[],\"modified_at\":1768937324.561345,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.18.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da1541fbce94275ba5cbca676f2702f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.20.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e4917ca0de8cb75740c3cf980a2b1f\",\"labels\":[],\"modified_at\":1728721846.06327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bac1b4c13d182d12c16822efc7415f3c\",\"labels\":[],\"modified_at\":1728721846.063447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04070ea7d7a035faa87209770e527115\",\"labels\":[],\"modified_at\":1728721846.063587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e29111b9581f147ea8a636aa9ca50c\",\"labels\":[],\"modified_at\":1728721846.063714,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77c23d9ce3ce745eab3994897b4c2d7b\",\"labels\":[],\"modified_at\":1728721846.063839,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.20.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9831210a5f148ffec0c960a3cef41eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.20.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ad24989273058ab1e0afede3384b0f9\",\"labels\":[],\"modified_at\":1768937324.565645,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.20.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52d9aa715f3b1cefbfb68ebd33ff9b74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.24.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05d8bcc97db99a59b495eb3c76a683c2\",\"labels\":[],\"modified_at\":1728721846.070907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe6722a9cc2ab68e12b30784f31b1428\",\"labels\":[],\"modified_at\":1728721846.071086,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2bb1f0bb2a2687cc1a615a13447f6c3\",\"labels\":[],\"modified_at\":1728721846.071316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c2e48f0bdf3f152646733a2065a7869\",\"labels\":[],\"modified_at\":1728721846.071476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8793d6ce94921703ff9d4ef6d283102\",\"labels\":[],\"modified_at\":1728721846.071605,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.24.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b971039f576f806395a3bfe630bed910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.24.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3ba969b6fccae3a10caf0bd81dacb57\",\"labels\":[],\"modified_at\":1768937324.570316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.24.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e199fcdf8a82e3cd5b2aaee7e98b3ed3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.25.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d118bd28fcac0c0e418c5fa26c908ae\",\"labels\":[],\"modified_at\":1728721846.079745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d036715c2c04cea631fb5ef537052fe8\",\"labels\":[],\"modified_at\":1728721846.079932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57325db8a7fb10afd15751aa94309c1c\",\"labels\":[],\"modified_at\":1728721846.080103,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0b56df69f1ed80a097a437a7234a8e9\",\"labels\":[],\"modified_at\":1728721846.080229,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887eef5e7ba55d9e0936e56bc66c567e\",\"labels\":[],\"modified_at\":1728721846.080355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.25.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afc9d72e408779d20b34dc1f01ad3536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.25.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcda026ec929142ce3cbfa14747dfaf4\",\"labels\":[],\"modified_at\":1768937324.576948,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.25.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1583858de49ba4c0a4b4ff2ee0c29d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.26.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f5033b58cce7dc54c076c8d180392f0\",\"labels\":[],\"modified_at\":1728721846.088895,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43147453f1b24bccb5c5f5e5e62f7068\",\"labels\":[],\"modified_at\":1728721846.089144,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4387dbeacfa284722783b317dacae2b\",\"labels\":[],\"modified_at\":1728721846.089304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d1c22a4b346df44287e85024006f90\",\"labels\":[],\"modified_at\":1728721846.08945,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"535c8d77519ba41280c4a64ec64bcb51\",\"labels\":[],\"modified_at\":1728721846.089582,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.26.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b08f4bb01195276c704b25cdd96196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.26.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b0af79a6c4a5379175d0900063ac555\",\"labels\":[],\"modified_at\":1768937324.583385,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.26.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abc77ab50d0d3573e9e10357e6b4092b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.28.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8cd26d45d0e80aab853b7d479f30848\",\"labels\":[],\"modified_at\":1728721846.098327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f324aa672663f6a659ee494545522e\",\"labels\":[],\"modified_at\":1728721846.098537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37fb21bcbda4df8298f567ba2d598434\",\"labels\":[],\"modified_at\":1728721846.098676,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c00a5c5168ae3d928deb75654328af4\",\"labels\":[],\"modified_at\":1728721846.098803,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8c544aed3196548a02205a35243f93\",\"labels\":[],\"modified_at\":1728721846.098936,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.28.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab6a89acdc4cc754d27d035797994522\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.28.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf69f70d06538e49a0517a65e09e86d0\",\"labels\":[],\"modified_at\":1768937324.589758,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.28.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a77e2f997e7096c9b763729289da0222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.29.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"570afd43cc017753eead4837bedc9bc8\",\"labels\":[],\"modified_at\":1728721846.105962,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa61e5c4f5406900003bcd53d7ea9d8d\",\"labels\":[],\"modified_at\":1728721846.106143,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1d9e9b71984b9ff29afff4c6bdc040d\",\"labels\":[],\"modified_at\":1728721846.106288,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a19383165b4ccf9d801c9c7f26f50ff1\",\"labels\":[],\"modified_at\":1728721846.106452,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3becb6b0af1994c2005db257d3c08b6c\",\"labels\":[],\"modified_at\":1728721846.106636,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.29.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19e1560eba677195d70fe919a6144950\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.29.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef43746b3d59b9ebed78786a6a0dfe9f\",\"labels\":[],\"modified_at\":1768937324.595077,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.29.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfb0c54c7cf85ab1e4adc409f895e19b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.30.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1fdfa3a2d14760b9475ad822051c5428\",\"labels\":[],\"modified_at\":1728721846.113654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e4b1a6e975cf9b1d9994e5c0fc96fe8\",\"labels\":[],\"modified_at\":1728721846.113904,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2940e9491fc8082f8a7566fd97155363\",\"labels\":[],\"modified_at\":1728721846.11411,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912541a2fa4cda4138a5d43e32b01c9b\",\"labels\":[],\"modified_at\":1728721846.114314,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09a2c2e79f06f78cac686eb78b5a0983\",\"labels\":[],\"modified_at\":1728721846.114484,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.30.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8184bb20bb3ac0aad8c150c92d9b60ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.30.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"595b480ffb15cb31f87e003a704469b6\",\"labels\":[],\"modified_at\":1768937324.600438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.30.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02636c3d8887bce10db55744cf1fb300\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.36.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3659d233ee1194e78d575c8259c79d75\",\"labels\":[],\"modified_at\":1728721846.119874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ab37c037a538751cc745fc318c53375\",\"labels\":[],\"modified_at\":1728721846.120105,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ebf0493baaeefaaf3727add303ef097\",\"labels\":[],\"modified_at\":1728721846.120293,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7aa05f5e8e60454c434e760f09ba7d0\",\"labels\":[],\"modified_at\":1728721846.120469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad7f8e9a7534ce6f62dea3787f34512\",\"labels\":[],\"modified_at\":1728721846.120604,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.36.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817b83fa9b3b611ef9148d3a1c7b9458\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.36.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"207b9f016771de3f0791a50db497c513\",\"labels\":[],\"modified_at\":1768937324.604321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.36.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32ed05ddcea53a4e1ab8ffe90200bb11\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.37.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fe4ae53649255d1e27d0064fd803ab9\",\"labels\":[],\"modified_at\":1728721846.126048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08e5d0574d23b7feab02b70f64bcaf5\",\"labels\":[],\"modified_at\":1728721846.126233,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e3ac4ad5973a9fc59e74f034b3f8a9d\",\"labels\":[],\"modified_at\":1728721846.126379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f451b1f3ff73499f3efa7843ba1fda53\",\"labels\":[],\"modified_at\":1728721846.126518,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a513a0bfadb8e062eb3d5ca06378ee1\",\"labels\":[],\"modified_at\":1728721846.126652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.37.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb48677e23288d884f9c18b559952cff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.37.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d2e87e3ea7659f4c1ec2f9581b248ab\",\"labels\":[],\"modified_at\":1768937324.608389,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.37.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5565c442b090e06c8f7eb6342f92e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.38.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6184498ceaf1572ecb710a88977504a\",\"labels\":[],\"modified_at\":1728721846.135332,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f8631a758d2f4b056f007426987b5d3\",\"labels\":[],\"modified_at\":1728721846.135525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8186ffa61a7c07f827a82f6ed999ef4b\",\"labels\":[],\"modified_at\":1728721846.135673,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4e9a80844eb2d564dc68cf1827019af\",\"labels\":[],\"modified_at\":1728721846.135808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0205fe39e1a0a4578c09918f54f68fb7\",\"labels\":[],\"modified_at\":1728721846.135937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.38.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a43cd34777a3876325239f0c80882549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.38.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cddfcbe8d05af4ead30b2c9a732e8d97\",\"labels\":[],\"modified_at\":1768937324.614863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.38.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa7663cdf3be9fb9aa633722f02fe95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.39.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"185eb8e01e811aa96f1055db2eba082f\",\"labels\":[],\"modified_at\":1728721846.146856,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7507b2bae3374108dd49ab35772c96e8\",\"labels\":[],\"modified_at\":1728721846.147069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11720db84f8dac252640168c91fae5b5\",\"labels\":[],\"modified_at\":1728721846.147219,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2415ed4c820427b452628be0746dcb0\",\"labels\":[],\"modified_at\":1728721846.147361,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"605baca0427b42514da2eaf78807a67f\",\"labels\":[],\"modified_at\":1728721846.1475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.39.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d2b90ddc8284b68e378215f59d0f6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.39.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f93c038fdf85ec4247f1559f1b415\",\"labels\":[],\"modified_at\":1768937324.622387,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.39.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5999ecfd025c3cc7800a4a89aa08edfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.40.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"917be806129eacb471d1ee0d0509698a\",\"labels\":[],\"modified_at\":1728721846.155502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94e074b915ef0ae11677a926f8f4e3d1\",\"labels\":[],\"modified_at\":1728721846.155744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84a23599661784c7f5dd79065fe6bc72\",\"labels\":[],\"modified_at\":1728721846.155897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e6d217bcbe4d21e0ac74a35882afd3d\",\"labels\":[],\"modified_at\":1728721846.156027,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d101cc55ce6cddcf624e76cbd806cc2\",\"labels\":[],\"modified_at\":1728721846.156151,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.40.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e96d40f2a5ff985cc298963049a9848c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.40.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a4374928a53f5685eb1db6dd22fa3d\",\"labels\":[],\"modified_at\":1768937324.628793,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.40.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db458cfaf86d76636a7d2bf0895309de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.66.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5270f9954244bb65705d47f9136e1aa2\",\"labels\":[],\"modified_at\":1728721846.230051,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82399c66db015194b4f3e070808696a1\",\"labels\":[],\"modified_at\":1728721846.230244,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471598b270ecac776090a8d2c01bda06\",\"labels\":[],\"modified_at\":1728721846.230396,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae71812be09a23822eafc01198f60890\",\"labels\":[],\"modified_at\":1728721846.230531,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e76593d32bda68336de64e105ec8f0cb\",\"labels\":[],\"modified_at\":1728721846.230667,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.66.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98d943f3a15d678a077164e12b0b6f8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.66.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"162a16ffb4efe6d9bec61e35df2cef00\",\"labels\":[],\"modified_at\":1768937324.632659,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.66.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db32b0a9239e3164b238a78d332fcc09\",\"labels\":[],\"modified_at\":1728721846.270694,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c11d0e40cda08b41a09ae52d89dd462\",\"labels\":[],\"modified_at\":1728721846.271147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20a58486d4ac94d1c4627100475635e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a37d873a73a470f8610b1d170620e9c8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c53aead1aed9f2d07387815e701ea7cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd37a59131eebc3d3efb87e3b9a180fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb13b83675e38a3d6fea9f88a7fd514c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d95d516b1ca9219bf2fca27f7f2908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b844ef9e2e6426121768a751759fe087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd47e78959ada5340c2f57306fa58db0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c37787e174ef03e1765d9bef617982bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60ead9b3b7d23ce46d5d7e26d8940d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d51696e440645ca3f4b8529e028f971d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"237fa206e122aa41369fa1c33d8d0a8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77483a0a861c0237c93f510811bd0c72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22e6ae4f8004df116af0e2b635af2c29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2648ad9b3ede6e6a150d9efb636b049c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2d88cfc6df1889a40731747606245be\",\"labels\":[],\"modified_at\":1728721846.274493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdea929adacbc2d74c59d113df4e814e\",\"labels\":[],\"modified_at\":1728721846.274952,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcabb74ebe7fa1ef4dfc174b377e74be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"139db407d0314d892e9399e794a94160\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9717997085ccceefc242700248840be7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e249ef83acfce3deefa5a3a95e68bbd\",\"labels\":[],\"modified_at\":1768937324.702562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f52e426d962ba92d279ea46fb81cfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a516cccd0dfde572f7ffe400ccc573ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69cc3fc9e5decb87fd544bd9c59b2d6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28b1032c218c390994d8cf969ce895d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02d8d11b76cfc3587daeee2a51de2670\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2abee3d97931b898d557d8b57204b5b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de10b3dccbd140d07b82ee3cbe00869a\",\"labels\":[],\"modified_at\":1728721846.285949,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"285d1906223aa890187af6f521ac5aa6\",\"labels\":[],\"modified_at\":1728721846.286414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9768e0fe86fe22a99d2bd1e6fa4a50a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad5520faefe19b4022eb20391dffd559\",\"labels\":[],\"modified_at\":1768937324.709538,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5816a5b2d76cec6a8f87bce0e5613c69\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66c6daf5be1551275842e31ca471799e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b103e540c009d00db923ae148d2ad3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3070f845f294440ea467f871f4e9758d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffe6be3b9f35cddc7519f62786d0eb4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b43884450e42b01a842b6373fab6954c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ff72dd6844c777f6523a15e4e86c4938\",\"labels\":[],\"modified_at\":1728721846.290665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a530ee6f5837210fe17a7eb90140108\",\"labels\":[],\"modified_at\":1728721846.291104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fbc10825a215ccf77771ac04d53a720\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0af0ae3d27d1b34515317f6f40dee262\",\"labels\":[],\"modified_at\":1728721846.294166,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74bdfa251036d94a97f241789a25b689\",\"labels\":[],\"modified_at\":1728721846.2946,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e698758cc618d42a7e6118d812ecf07d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2216fe6d827ae6564c3f5b55619314e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93cbf85dbce888c01dcd21f2d1c99370\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"183772562af3d9507f5f27c5b0ba0f38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c6433560756c9431e1df77c42b6d28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f6a57de7a98d6ac7b2e945d771fddb1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78debeb2eab74d07e95f30c8b4852e4a\",\"labels\":[],\"modified_at\":1768937324.729745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e70bb4917587f9b8a1d3bd96cadd5cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817943eab67fd9798445262f476064a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ca751c70c4d7fedf4bf8070434d7e6d\",\"labels\":[],\"modified_at\":1728721846.301652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44d8898092357555eefe4ecad44dee1f\",\"labels\":[],\"modified_at\":1728721846.302076,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf7330eb6dadaa91ec87c23ee00ae26a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c56e9d8fcf2d8ec59e77e00072f24838\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4446cf0c58d47c700287c9c21432bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffd7dbad382df41d7195eccfe18810d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e0906e8e3e7e8461a822528b1cc2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43b135c801d45745f3cf05c1bf20284d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a58405b84ac4e8dcaf4e760967791caf\",\"labels\":[],\"modified_at\":1768937324.733974,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f994629b2715d3c8dcf982027a8a780d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"762c0ea162380dc2056fd5704a2719ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7eaab4a2744c4902a408c6debc79cf37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d848e0323383acb9c5ddc423cbfd950a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"908ab6e73ada2695a0b1c8d01e975190\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d2852c957d65076fae9aa19748c9d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aeb0433e0d87026a6fbd8afc78aae33f\",\"labels\":[],\"modified_at\":1728721846.306497,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f989704f396de0f609d4b0351f2c0f9\",\"labels\":[],\"modified_at\":1728721846.306925,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a737baa4dc868142fb3dadc46322ab27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e14f8fb1c155d58e6f6f00768c1fbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"defadd1bbcba92ba76af88f17a4b6948\",\"labels\":[],\"modified_at\":1728721846.310189,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0014deb8f599a19a01599b67b85ba0cd\",\"labels\":[],\"modified_at\":1728721846.310607,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"904cf14860d4bd4c39b88c6ffc505eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2a2c87ca142a9691153c08e98c9484\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb608eabbcb86e1939bbfd47af08077\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1cc16282de895c102c625666255dd1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9654b1744b3eff83e9fe67c5f490209\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e48cf8e1095ef4f80ad4c5a40bfeedaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b5e2609b44518d7b650ed31366f9844\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"846632f2affb52790f552049838b285e\",\"labels\":[],\"modified_at\":1728721846.313113,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc5b74a375f77f6146ac469f4317556c\",\"labels\":[],\"modified_at\":1728721846.313655,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e31ea48aa516d44a0e74bd58e0bce5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2657140005056de27f2fd24f0f8c406e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f53dddb446efd5b75c2c104009de5a9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56a286889a09b67cb4f3da4901dcbaa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c06542330d8cd6459f5a6d000a45daad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17949bbabe2791d81f4839fe3e9110fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"523a483aa227e0b389baa33d916a600b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99761b8c80b75889a0e4d4e1e8d894ca\",\"labels\":[],\"modified_at\":1728721846.318031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d64a13fcd28fd09e1e1e8eb2cd8fa56\",\"labels\":[],\"modified_at\":1728721846.318493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70a2a1679ee20d747ff2a3a413f1e105\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f235f0b2abe04b471ec5b5e5dee4a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bc89c05c4c94a30db7238452914e215\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98571f78a667d1495fe0cf9836c9472c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e1e09dde3dbf7a35f9cd2d43962adf7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52c7ca7b64871829a52196f9006ab15f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8203802817bf1ad148be4fa89c851d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2584fd64a2409ee7a09a132954035e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98b7c7cf21f957af7621433d77abcb1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"beed0d43ff1aeede01dfb858e8c5970b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"921320ca502d44f294ef98cf28935e13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f3f60bb56320ae0aafa2079eb81f15e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d821dccb30962b1463ccc94505f53052\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e964cccf2a7ab8f0eb0eb913f676f05f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c84d95a9ef4cc438fc83d1cdbebba33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12ae7f7b84f0b2f02972e196ce9a93f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e42e6ff5ff57f588c006928612396ab9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d486aec5330d75337491301294bb4435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"346c374272b05752ac5fc931704ab571\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e36b9133e1d28872231dea0fb93528d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37d17dc9e2421530e61ab1fa54776f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9496b4f3a9d78224c587705a5efdbff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc277f4c90c74fb8271cce66304ddca1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b666349984f09005c3ea218b605990dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf1377a4d496a97ca0468993f9d02d34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b237c13f8ff2d948207447d610bf79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7e258cdb97757b5d1dcb2cfcb1ca601\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd811627fcc5a2efe088ba85498824a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a034873b733f7302c12f77357cb7d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a06a139b75a0038df888efc160b6d718\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f342fffebdbb3961b6c7cb1483bdea7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fbd66619e5a006f253944775dbbe19e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe112a32c778fc5e1a85b57ddc7caee2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"269d59ba2afbf01a89976e87a7aa1210\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fdd6e83c70df50995811a7b4e2a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"461339479072e6cfa6a97b02f9607e66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4359424baa64e986b59fa41d415ab1a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc8aa0c17996ff85c861eaf8d5b0cf84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21eabeec28b1aaccd01363d19dfa11ba\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb5accdf9f56c10d895bd732f109ea3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d7d60da7940314cd626bd834af5e727\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"388577ab65bace3f26ee0ac8154104c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b33e66f09619f185899bf4fd71502c5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"531f0295e3afb7186a34bc84e036e106\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb697eb52f8e49d6847614e6c87ec81f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6c5c1713703f37c2d0c9dc58ab71d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa66284a36aad4743c9457b43009c3d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2dbebd1dffc9b31aa00702afca47fa85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"742d317e9b1b93196a64e738fe81c3e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_tamper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5694abb63a3d7d0f1fef64ca7ced652\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Tamper)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Tamper\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11e92860f380e2aed665f5bfbbcc4c5e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Motion)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7db329966d8fcaf7bf8f2a1a041f7972\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b27167efcf1befafb40ba35f59517cd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48fa14c557be3aac0f57468322f7eb26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb55ba8a855d25dd7428036e0cd0558e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ade08beb8063bcea7d4994e3339ae993\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b9cdda5ff0c3b9cc4a989febec670ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8a2920baf84268bd89b048d09e651e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d8ce0431cacc919f6654e0d26866a2ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05eff5902e0611fb8f7bebfb06af26cc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"576780787e0d9a68a0bf4ca262fd2e15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c83da5113e06a426ab49e391daa6f61b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2219269962fa6d6e19aeb17527475e5a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5588863a4b18d8b348a74149bba2221\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec633310e97c80c59c6315eddbaffb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"95ba1e0f0980a5e81a9ef637b5ba7137\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e1a41099b9e58ae2ac48892f7d7a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_sensor_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a191ceeb0e05a37927f92d920b7e346\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e06c6e040bcfbfa49d9e4e0f15ae549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fa47306024f7160e82fb2166d71503a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44754edc6ab7eab6babc1a133ecdb743\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68a3fe093a4715fbb03c1f6ddbfd4315\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e025e5d17b85cc5f449e4d48ae663657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"130711c5025aa11d4938873aa2b2ef5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a640b780d8eed0ce27f6b553fb0cabe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f692df4d0a05b8ad1192c699fed5eda5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6353d49e24aa16d649ccc114e", - "offset_ms": 36 - }, - { - "direction": "recv", - "type": "text", - "payload": "07684\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc6a70fe7c7b6f1cbf485e3b2b3e6be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a088a5d0f5d09b2c15852d0c0e787b7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"964462020e6e73b0b0169f5a61eeb044\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22fb495535a4ebd7554ace311e87e8ab\",\"labels\":[],\"modified_at\":1768937324.754808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f062bd2af5cfe5046c59f564790afee9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47e5be29e488997e90937e83b9da396f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b7c79a5c504e2f3eef63f7237af33d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1562e743cda38cd488936d23e22b58f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99afb89d564e6c8b5f415c28ce8491b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4292496fbf98923806f65951145caf42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62c38c853703ab58d017fdffcfa06a03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35ac42b0024d325caa77eefbb92fd9b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5127f16f1631b5877cf467e2d58c1c7c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"55c1d4c91d596bd4191f48a726f50433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7407cd1518c4dcebc6ef6c5d8e7da423\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6415881cf9e2c0b61be6abfa112e5cf4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2725a94f79899b5a4970b5c4d3b9e418\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4704baadf1151fcb1af4eb70c654e09e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30ee61c6ac77872bef422f8ab9ac933a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0732e5ee938297a9f5b973ed48b06d3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24e11985867ee122b198a79d40d53bed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e0ad69f430a72ac40230febd6dcff06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73efe848e7f6628deb3e86f815638a6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e11e57268a63a858310fd24ac8994a26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3929bbaa3f8cd13a3aeef2e57952959\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42e94a93f2db059304acaaf69c17af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d643c40ce27169788c2810ecad316e60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_on_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"90198efa0dea712c09f423bc7fab9741\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: On Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_off_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21c9e490e8efe764f099f91b18f22c7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: Off Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_battery_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf3a65f5e9b1fbef950e3e779e92faab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bd57910353ffae53801fd8a4f1b5f0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"454f88037ba03f08b83dccfd939ddb4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b426c8fffa9d853c719d4ff70196f3e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6824baa7a41d44d33603b4c760879101\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f0b56e360639ff5daf69a28f3036e79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.office_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eafd82385841281bfe024783dda13491\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ce75698c6edf211b8ff2e161520b411\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b98a93997b7667b4711d2831983de8a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5734672a2c09d8f0f6f0e233752b945\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99e3d86cf2c0a6fc7015cbfe7d79a060\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc9e480f72433ef3b4ddfe4a5d6dfa3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bba437e48b66a4689e26bf8b75377b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5bd8a6289b290db5a819a7507404574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c540b165eb0ed98e6dcef5b988de2c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f131df2fc89b340d5ea5d8f7553075a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0b6740cab7d3dc04b516dde24dc616\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b37302459fe4a8e950d1cebd8a395e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e103d6684aeb59d2b23569b207ba4b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1360a0cf141f9ddedb50eac50ed00ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ac8de408549fc851b81f2ffacfb1b1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bathroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db63a6e036511328bd6ece0876ee562a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2b981534f8171df4c6da3f420af24f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.cat_bathroom_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"583b41419d24459b2457700e28653e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912457da9847cd4c455444e5e3f4b02b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d9f921b3ad910d1de65af1ca97cf54e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.large_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe738ced38fd9513231370dfbd42e0b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.small_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e39d012d9fc6092736ecec03677116f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_motion_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6db261bcc15334e1bd64fd2fa62f1cf8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f46c5e88175f5336c08f0ab4b7580be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5544ef469f053ffa8759c7294efa6ea2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4a34eaf48d2c692542296f0e8a7e5d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3c7cf072f2a8ee7bd8b5d3a2cd179fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46ea4278b577244adfc842379d0aef1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b396ff111d07c8a2336ffb8b9f73e25\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6128229fb9f940def07e9c96cf14fc6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1274c94252cb99885059e3bc453f9d55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bc4bd805d7619c9a1b04076c931616c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2984b5f884cac4f2c289443dc2062126\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff64a4970c47dd1e208dc6113f29e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2e22fcbf052b73b858a5895ddce0eac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2e19645094c9d18821b943096dbfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e205c1906cbc3351074944002bdd1128\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b64991bc065b8ccdcbbc057f446b1995\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c14062b8523902321eadf7b3b974257\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dbdb7cecb5c85ea349569e68c3b5db5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fb06bb52f2e78831d67c9bf81a0d07b\",\"labels\":[],\"modified_at\":1728721846.268738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7a0060798e93dae0faef390c32c1c1f\",\"labels\":[],\"modified_at\":1728721846.269198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bda4ab6b68f9cf6d154e58d087f0dfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"876da9cde9c3be1845863f537752d364\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c034573ffd52e5a3d3bda9ba303df881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04c854aaf4c81f1a2d429a4a710b960a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c51654eb9bcb7b8bde5f10aa2a6ac2b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37b229da70e600b50c4da7fdd12d386e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.back_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad8b88418744a70fe17230e705c04e4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2d44675bc66f37477a1df4661470f7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e093e8f61c9dde686aec60b62b160f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d1ca4fe6518f80345d12cdb048bca05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f5e73212ea9ec168cfe8f89cc5ecc5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"619631e25ad31c44d797b3373abc0121\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"41c5da359bd07253c5906ea3d1d5c9bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69ab1adac8e2d678e29ca7cfc3663b5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d18f196a4578f9f03c18c42a349f4942\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"828bed1781d3ed491bb52194aa5f52c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb03e8f944a74a8d6f22cacb69a179e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ceea1e88fa6359162498d39710e76608\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32c94f61cfaa021fec2a7c42c0187dcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f35b908065d262cbc20ce40e77913ec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6e4fba44f0f1074fdb8f59a099f984\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"698ef67888799c78702f6e5993f9b043\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0141219b641271db80532f3e4c208a8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6945bdd9b5c1286839ec2feda660167\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13524b9ae17c60833721f597a438923b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bff288f871c8d3234915db1df3aecac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_room_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0120415d97c3741ccebf80955941d0f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b225c98bbae007535c42703d08744762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c4ddfb2b2ea1632b65135e6b4696b1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"400140978e8261edd5986a6631c65408\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef58559c864967045bec692f21ffc889\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93b1acb4134dc4868cc73ba3a2b2719d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee02aeef4ca9d0bfbaa379d5510c5af2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08b5fb9ce8c93a2fdba273d6e9e2bc1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b3e485ee289f8b2389d5d8586ac10af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"295c55ea37ede32f5d0542f2084a8fdf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"af540de79c1a76846557cb5422a2440e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80c1b96899d7ba609ce43f5d3808e905\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e9642d047ce619369c413e6338734b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee3f22dd95d9b04f3bec4b329181605\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5263aec80e35c0827a946676a4aca38a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab751aacbd342317bd0a72094ab1e3d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"205523a60b2f2cb5043d22106d05b771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_room_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c71d1dd5aac2f57ef4e5d93a800dc49d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.back_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23eefb89f7598b1b12ddeb6aa9fa790b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54bb5483d9b560378be5ed481d8c6f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e010955d7518d31854c9e4aab3f27196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db9bfa3b546ed6770a643c10cd880ff1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7df987a19ef8c7183f8bc12db92dedf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9010dbccfdc1900b1f762399bfbfb817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3f2828ba1b43661dcea26810294801f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd7149d9366d9601a3da20992991bc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1033ca0a8c4bb87068b0b0ce5045202\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4b736f4e34f5b44cc71a6c173a28bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9d0afdbaee1c21cb97bf8ead789fd05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b7501814ada140ebbc75cba95bd508c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c14c404b2807aad042575bd543388bdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e509fce7fd82a687c5380cabdb85304\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f77247ea5f57e1024e9a33057575058\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e8e9d058603365d951ca1000c07f04f9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3b1909b7eb73dc73e68f2db669bacd1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc97dc24ca8dbf5b4cd695ec9f18062\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e458d225d20e0d47500ef79aacc1fe7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d1eff5533638de7fbabbea2304821f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dd61553487e0f10f1c0046b93c7421c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44fa78eab4837b85fd7e18b97b690646\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7fb980b446c6bba6e7fca57e53537b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"834c2fb0c37edbf7b9b7cf32759d7793\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17cf457e684ec08236fb7454df043269\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7cae94a92bf02857f8185574b9b2275\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dee0b93328e4119a8c1edde7101029e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbb5600871de8d1cf42b880a544aab10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce87e6ae3b11ea4e45fed434c0633010\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc5b08b6a1940f42619bd2cbaf4a6cac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7612f009094e943b1e129312251b6db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c69bb67dd0462ed5dd00def8ad53220e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1655d96ffffc5c9f04e400af601b4047\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2c82f032d22bc8734679d92ea0de83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12b3ea55e15328ea4d540058ed33d507\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74ce228c87059e06b84516671ac20763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a341d131322622995e0a4dcc4c2fb896\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6e47f1cc69120985b15d8613036a9bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b496ac89474549c88080fae26ab63448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d02dae110c56c726715e529953d922be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8220ab6bb0cc1fc23c6858361deeb46c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9c73a2a70d12be24ecb2bcaf74c1eb9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26e03526e28cfbb18f893ebcc3dfc0c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98a1532b78d15322829fff6448682702\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee8d5a14a38130a77623414ce6ee4fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bee0b4d100f784a89f713cf59ae7eda8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fceb8d7e9aae08b848cb5dc97b345c3d\",\"labels\":[],\"modified_at\":1768937324.720737,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6e6ad930ee7d37c2aeec57f725e8dbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77913513918309cf18ebe9a75f1af7bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9925ebcc60e4395ed603afbf5a139a72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.stairs_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"64ef85094caeca25ae98fa076d8c6ab2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.right_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63eb7490ebbdb77e4e07c750649c0110\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa8df4191c90e2069a0650185f007b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe3864550a3efb648fe327037ea10625\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8522f9d656d4ee8d60c972ef318b12e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"381daefc1183f93859612b03573ac4e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6dad265890c82659855a7c138b8ff20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2143f3dff81f749104e0882d5274088b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ba145ce3192c0052224a1909e8bfed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5cad207f07383af83050f38c418d4f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10ece451d2f337805ce9472f298d5025\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f40809067c9ee7888788e40620862448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b230d1dbc4c26ac2bd56e50bef6b57e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bceed13702f89123dd582c5438326a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba603234d4704fa0d097770442b26637\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9b570d6459263411f32ba20823378e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"540f56f2db42ef17ea074b6d12c6a8d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b882b539f37696ac5b0d72346094808\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e335a2340c99f5c831c30988019f4291\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1496ff3411098998299e6b70a8a6ac8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3e68f4e23f1a8c2db67c33fb020b7ad\",\"labels\":[],\"modified_at\":1768937324.724768,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57ec7dd098b7d22f35ef2adb35070c44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"580b0c98b0af40ef97ebe8526b5dd762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc7acfeb1f1383b3f1193746d7effa9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ffd52e582ef700cc04806eef2286427\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f104dff69eb4b8929dca5770b0071c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca88deb31ee64fe9db769663ff3ca08\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28846a193465e0feaf80158a9d92cd87\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df83d525d06cd5c6cb8935d53899ecb6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8aa35ed55a01305e566d54d73c674a13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4efd6b7a05ab072f70351db23b242817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96372675cb474b8a3a33403573ccd041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19d3b1945550830c400d18eec7936d10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"768825fc5893ae8c1a68cee71f34d430\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f0f3f4d2f6f41f46a7fc5883c19f7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f779f56acb8df9a45c5e26e1d34aaf94\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e88349529a6577002d4572cdcfa7ad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4113ed3a769b963fd4a00ddd0932f173\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc9935b81c48df8d37aee1e17845afbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05286428dda0b418578fa164c2ec2f41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7993ea69eaa97bcabc92f958925362ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9bb313fae31e282e00d2a262c1be84e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a33f6dc15ebeb5c65a8da89a90da3c76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eacc493fd250cbccb936a793286c7939\",\"labels\":[],\"modified_at\":1768937324.728547,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eddfdec1717ef07c1a822b3f1c6d417c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bbc32f88ebae70bf8372daf6ea6f84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"824e2082cd5cfa0b434b927daf025f91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f0851ad45568021e7ae5eab17e2673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"797330642b50fd7cc717526490b5cd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81aa7a7763b626a16c33da9baf51a380\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08710d667a90994008b9c2e51f4bbf49\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c7586cb4377fac8037833b67b9b555e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bff0a946287e8e81b4791204fb0c4b6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c91612079311a00400f01a0e5906a212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ba6d0c2e53883635ee9ac22d8e850f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede8b905bcee1104ef3416e5edadc25a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1ec16e8db40ca002ed689cad642b9f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05f81c05fdfc78fd9a4f8f4a1c8b8640\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53e8b9304e649c2f34dd0959606500ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b036c6bc350aaed23e9f86bc06cbd2c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a3739602f92462bbeac62fddc838fbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471c0a1606542b0d7f960c1d2922d7bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce49f041cf870cffd3f0df35ebb0b76c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048378228b0fc98e250dd66ec6ac6ad9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5e40022e450e73c4b5ab1198e302462\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d78bb4acc54d779836cde9c8c6a2f8f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79490028fdf09eeafcc7a7e0ad2d160f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f1ed32bba3d33dd34695c661fa72adc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51e3619b9800abefc65f0b522124c7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a1866797815d855c958561d455ffd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f0626cca53d88f5dcf005b18180e9305\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea487f330dfbaf833ebf624ed9896db3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.kitchen_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a635928a8b31bab1a27474ac2f6a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56e02b860edbebacfde760983dc798f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e605e68d92150816bc124ec684b725f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ff656e62d6fe3600aa3adbc8fb526a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec53255b3eaeab829b0d155c429e1d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a08806049e02892d2f6a3d53113f1db8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f3c6699a41458e7aec2b1989f540a80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0933863db47ac364ff1d232f8b46e9f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63481afc3a760089087eca73a0f651d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8957d79e5cb80b0c1a20820dc97b0a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a60f74fb0f1301397480c82b1d54ed5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b504e536735dfabc28835d2876bbb23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fbeb6d2c5a857c79c70e7bb0561fad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fc4e4d47d9a676285c15a975e1d3c36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97f291f24fbe5a30e18bb12dce1a6676\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d21bfd9435eda404f287c3abbad94d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0444d51382f134ceeb06a73d4f3a1cce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c05a4adf47ff0104122a9e4dbf7fadd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4aeaa7e71c122a5d88a3b1882ad8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b17374a4c0dcb067542fc6a74220221\",\"labels\":[],\"modified_at\":1768937324.749696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15c2353076b1bc70f96467ea60e93883\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_local_programming\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b8266fddd3dd1a3fc9c9044bd7f7d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Programming\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18011a3dcbe5a7f5c93c03f151658078\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2e6dbe9ad453568e0826d771078d367\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b381daedd22399332d0c23beca269986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.jenni_office_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1db1d985f5d174ebf175d27b918704de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e96da560109bfc549eb175d77df5239\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b773d9a25d7bd00ebb8c9b90fcfbd8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5deaf7bef811b681c4e8b76c77d2db39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a8dfa6c8c5decf4c4be882afc702163\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef6eb92baab404af7fd61ba41069d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e5b7d53a4b2adf058011f65f0e4ac19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c184dbdd6ad17f8784d17e874aa0d0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"967915145f0ef87b05cf3ec61ff92c4d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e7d97417712b18fdd39510f53345f54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9e05ed0d78214c146c191a7915fc2af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5524e4843b13f72a0b8d3c36529cecbd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"462517ea07b522dda3d29a5d77358b07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97bfc53818e1e5d2b0c76cd8c7ca68f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad2f5c181c586e3bc45dbfd170cc8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a205de2be1537a999eb4d266b7086c40\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da5602526297ba1f96d40f0e7ecc0f5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e10162dc3c84afe280c5a18dd51e9b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc24c82d16bd17b6b68e0b2f6f3f4ea6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001f6b44d64baa1ab159b150b478007\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e80550caccd4b20ad35acf4ca40d92e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6b3bb5ca29c4ba1a5f51a07c342319\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d442915fe41090821ed760f0fccea89e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae41e29abd52b9682303ac5e2c41635\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7de9997e9e1a3ef46e7bef4deb0a659\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0f95b7e389e44036f819bfaa12835a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9b9926bc3aead0f4952441c76387ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.front_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e18e30d8c73b2b7d8f56d6d8a72444c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5da04a067a75da78e01daf28eba1cebc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef81d350ae0a3120308f207a382754b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c93b8d9c39bfb59bb63bc28a67369b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c4bd8ae88880be45a949ba732dc061b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50561c8d822c3b26d448cccf525cd1b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b49703ed535bcef72a83f0289633087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bdd2faee34bb34a5f744a8881cbcc68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e5c2c80d8e6863d72a81c9dfe05218\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93d5ca265b8193cdc3e97680c6db647f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d95b3c17713874a2a9d757e5515f9a0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eff4988dfe92e73c693e77473291a68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aac4d6311ff78700b94194d61356c75c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4448f7a424cac4aa39698e8890b4d84c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adeeb59701ce2173bd76622bf5fc040a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8102a65d592a4a456c8cda46f495d8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ff20be2fc93225ec08b44330ce05f90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e23cb4f3bd96aff481106795ea4ac53c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c38948afd63807d9bea536058af2f4\",\"labels\":[],\"modified_at\":1728721846.364993,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dd9482ca71561ce5ec70dbb6aea6b3\",\"labels\":[],\"modified_at\":1728721846.365587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d299d44ce26d096fc59656441c155e91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ccf12162192b1db183d5e658ca8d5ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048c4c8a57e47dc7142d8ea6fa196a6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7984cbb544e0ef6af868a938894a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e58a5f4844984223a08cc57a1e2b5f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1eee0f58b4efc0fafbd2a40a8e11ed43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcd7f656cc785bc98cbe8849648c0967\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0bed885a5d924aba589b2583d05fd15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb6de87313ec6de004fa95b00aa6f927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d361feb6237b762704e0461d6fa7d83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b012aac779c2d71e28c4010032f7bcb0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8381ddf293ea7f56e0b6dc25d7a2f0de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ee4d83b710c21b6d1294eba54624b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eedec08306572ee3292cda66ec9bad50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ad3a714fdec28accbdd4c4e7de89a29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4db29e68a9831d8b83fbc34af4098986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b6a0c3b3f6f37b85e7d467dfca44c1ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea03c7aa1a8f7ee7ccad99b3c9ff4d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d565a0520b9f6299ef5cdcbeabfcda4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15cb859569c08f27db39dd118e8e87dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8507c90d370cbd16116be434d5246222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6474656dc92c4ffc2d68061062d4bd44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2ffa582700b450ce0892f6635734eef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dbad0e6f48a425781d17739f8795734\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6871d61691047f5f5f8a2003ab06bc35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2bf28252f61cd3cae9f59c22db2e929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status\",\"platform\":\"zwave_js\",\"translation_key\":\"controller_status\",\"unique_id\":\"4182894947.1.controller_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b6f1921f63105e65d33f275bbb06769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e2878_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.adam_desk_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7b32509cfd8e8b57f2135f982e8d34d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.adam_desk_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"744a5b039fbf04b72c13f42cb57c30a2\",\"labels\":[],\"modified_at\":1736355683.891054,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e2878_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4409a3f2be06b369227045d72f072caa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e2878_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b40a7ba376de7ec1f911de7228cc76f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e2878_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a23c6bc5a4861c4f54a86066cf26e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e2878_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e29a3d1eab9e6e7b39d4981814c1c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e2878_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9743c6abc46883a073a15fe1d32450b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e2878_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e52b7a6ef89176f6d30ae8b3bd7604\",\"labels\":[],\"modified_at\":1768937324.880394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e2878_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08d27aac87ed1eef797f4f56dbf0e5ef\",\"labels\":[],\"modified_at\":1768937324.881003,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e2878_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d396a6bef670fc54d085c5d175f16a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e2878_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e1f6a989fe00bcf10daa6fbdffd74c8\",\"labels\":[],\"modified_at\":1768937324.881525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e2878_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6852f43897d8fc7e5b971354177bc7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e2878_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2dd7622b83b59be4b859d62aae5fcfa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e2878_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"246aa304d51aacbe8c81d224279f1b60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e2878_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e787a2f31cb2b020e5a02ccecdb5194e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e2878_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c038f834fbc5de4047db5d693de5520f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e2878_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e318495a5de2c0ad46f0d9fcc212a1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e2878_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61cefcdb814557288d2f15616147ffe2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e2878_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a25d33a371e9d37b9e359fb3ab60102\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e2878_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"985029c1c4a205b9050eb47bfcb58278\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e2878_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88d63901ab44f88f1b109674d78fbe6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e2878_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da4ffaa9bcb00cf00f6048f46031c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e2878_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"596f907cc32b91ddcfc55730d567ad23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a1dc1ed378fd6ca5ea8531b3a2b0290\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"463d4f8bcc15b05ea1ac493576708a05\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48456beebaa2358ea71c3fdc9cf7ea53\",\"labels\":[],\"modified_at\":1768937324.522171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:08:8B-light-office_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"93c6c6544539cf899bad569ce9440560\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"260f603c708075690f0a0dc262c440cc\",\"labels\":[],\"modified_at\":1768937324.521066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:1A:86-light-office_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d4f33c22b2f134128499d170a9f81a2e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4316012718b14810c7ed8651d3e040ad\",\"labels\":[],\"modified_at\":1768937324.523393,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:05:0C-light-office_light_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c2328f12915a88e139203759aa099d80\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c58a3dcff1651522f7a004fa77854cf\",\"labels\":[],\"modified_at\":1768937324.525846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:07:3D-light-office_light_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fd4b4a826ba1ce85b11c2a14483964f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b81fb595012241623d52d08e29f7834\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c3957d10bb011bb12b3e6c41b598191\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd09a74fbce16b1ab27aa2b8ce22df44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26ef71b3733fe8af29953704041e8b92\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8f82b3e8f2771f0ab24c9839a858b0d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc545b29708c4c982c585913d9fa6f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e20e8_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bed_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63092158204e47a86900ac1d94b85d76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bed_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"765ce6a13ad4d227fd7d1df51c057076\",\"labels\":[],\"modified_at\":1736357560.669652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e20e8_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae1c3396e8bd72eb45ffd91d3d440d7e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e20e8_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887f889588a56f03619560b36016847b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e20e8_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd63c27148c664154b448d68dab14850\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e20e8_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c120e6c6942aca4361e8d3482d529b13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e20e8_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80be9a2f4eb93931f72869f82ee1a25d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e20e8_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b348375076eb71644edfa2d3a1a3fe5\",\"labels\":[],\"modified_at\":1768937324.888442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e20e8_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"14e92db25cdfa8cefc51b2e1ccc83517\",\"labels\":[],\"modified_at\":1775500964.404141,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e20e8_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f90598e2bc0b94fba4961f07483be83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e20e8_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2dc11642030b46b55567615c6b50cb5\",\"labels\":[],\"modified_at\":1775500964.40468,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e20e8_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a5a22be58f4439bfb5957f1b1ccdd5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e20e8_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab698dbf37373681bc08bbff54a7537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e20e8_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c22ea2a613d675a1479eb45f1993f33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e20e8_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b80991556b6a76854ca712e3dfc7496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e20e8_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed1e6c2b75bdc80fbfffad3c6cdb0aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e20e8_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99a6c55ed1a3ec824f83cd8b9306930c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e20e8_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66a0bbe3b51a4c4457e91b25d434b43f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e20e8_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a74556a0d4547c7c831b8f1e4753759\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e20e8_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7820433bb9beed63af31d3821944f306\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e20e8_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd7061bcac8bbe254b1298b5e4a41c1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e20e8_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1040da8c80ca7bbdcbed89aafe909b35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e20e8_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f6ee68ac821fe83edcd517dd51b7fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bed_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b80f0761cf4c725fabc1df8de30f0f4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bed Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bed_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d1ff20197a688334ed61ae0ef24610b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698022261893\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"375e166e0cda4a49184ddc7a3baaa4fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698131438659\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1516392955dea9d5c3987f65e1a21ae5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f262f6cf884c0de68c44d465232ef2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b77573023fd0e45cbd803efb780ad2c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3302b58f4523b9775deccc77aa05bf99\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a5224c58b24307c45e10299f3348cee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aacbb82d04534e5b5b389236a4c0f63b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0bd108d5e399f94d25c38981e1fa74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"717eec56b8ef81c8619737a303b154b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ced631fd54d05c61c0e74631e41c81e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7494f61b328a3fda8a55ab7a5fdf222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2e84cbdbcc51e4f48baf7214e76d722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71648192af447198dd4f8300ccc532e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ea641a89e1d849c3373b2c337c3a66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc0ff81ebe53c633db166a1af91cfaf5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e763fb2e22c28f390add28e636c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30be942857ce762791d50422aa7504d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"65a42c0fb4d243662d5cac0c4dd55944\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2abe6c30c0dfc40abca673632cc24f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b4dc28ae7f2524ca27c1706b5f16c88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f7707b0eabb9773200603b8bb1b32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20890daf170f69687407391661d973ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e0f4e90a3faba0db0361d78e006929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a82370728b30adefa3817e4cd46987b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79efb54b9582819a0637c7c994db3c02\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d5643409303cb984fe3b1510f5253f2\",\"labels\":[],\"modified_at\":1758660536.913726,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2c1ffa1fefe471a1db8c7975915cab\",\"labels\":[],\"modified_at\":1758660536.914575,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7f93fb1fc2ce5a89138f056d261f6c\",\"labels\":[],\"modified_at\":1758660536.915203,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ffc5c7999492de07a6ac08ddfbd6cd7\",\"labels\":[],\"modified_at\":1758660536.915773,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94f4819071ac098d75745bf9217ebafe\",\"labels\":[],\"modified_at\":1758660536.916339,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"762e6d3ba10d31145566124175888acb\",\"labels\":[],\"modified_at\":1758660536.916906,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b99d149c424b019412d5967bf59e2b03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8664760514c651576ea096f12a1f392\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1eff1ca3d5d08ce4e23061d9208cdf6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cf765d081c1063cc980327cd4b896b2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a7:98_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"250a48d09c2d5e25299e39b9a7a31a0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3f5c4f6251c9e5d461d24460a10568f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"810731b1b401be39f6e86bf0db1694e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aaabb95ae0d93dc3cb445aa90193ade\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:6d:d8:6c_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500bedb57e5c713e97640f8346c53669\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30a484b77d3b1466b9fbd3f5347769e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede974f57b59c7ba6453e2b9713b1b63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"408ef0bacefad7f762354332eb3df58d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:40:f0_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58e0d06d601277431a4397c287295dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b90fcb72d686e7f16f444e550870f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"562d26b904b539814c5ad4460facd881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82cfe763a98e9bf75c35410890e39def\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:e4:6e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"affe0aa48114f479c924abd9c9d5ae4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad9ecd3f5664ecafb765d2a1b1c52651\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16d12c6b79c955c505c8ecd86eaa19be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_4_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"298bf015afa9856b33dc43e85563138f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:ca:59_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5387707cbd7934a7f17ad2bfc2edaac6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd375e9778adf92ad651ebdbc6a2a4b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ccd49fabdd295c62319e1e568a8bb00\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_5_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4097f2af48e3dd76fdb6f8d500af3e93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:fc:44_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26b67877c9a2b2cb3a8215b88a6bf42d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d92c178e01c229bef991c42a015295c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"947a6a6c9d9b978f8a32ba22a2b3852a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_6_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1453d3b4b1b9be768f4db7b8b7ba4f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:56:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4db62557803ea897de2e45c2dbdcbb3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c25ec789c92b4385836706e4644e878\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"168cb748cc49f12a335dd8dfe3dcdc07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca28d3e1aaa9e4f900aa7ca1ca3f9aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:b5:89_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d255bd26c49c0b8316f7e69de655ab0f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"stt.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b596632825fe1076787e2e00a1d029d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-speech-to-text\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"tts.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2927fa130f0baaf124411cfe176ebead\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-text-to-speech\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e19a53d8400b62c1b8986a02b5b5b0a\",\"labels\":[],\"modified_at\":1728721845.983581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.4.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2df5dbf8c580bcacc36d1c0bda2dce\",\"labels\":[],\"modified_at\":1728721846.001319,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.5.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2992a8bf82bdea8f5b4f3edf59345\",\"labels\":[],\"modified_at\":1728721846.008929,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.6.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d534d2f4ef518b830eb886757e17e71\",\"labels\":[],\"modified_at\":1728721846.027127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.13.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"701f561124e85d69fe250c6f5ccddbc1\",\"labels\":[],\"modified_at\":1728721846.035759,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.14.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b8ba7d5ac2d0d7b15ded3b394797bb\",\"labels\":[],\"modified_at\":1728721846.043408,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.16.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"703ae656d9dc0a91ed9349e574913af1\",\"labels\":[],\"modified_at\":1728721846.052172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.17.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f933c2cb7825c0c98616a1cd0baf665\",\"labels\":[],\"modified_at\":1728721846.057779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.18.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b467e6ece5165bf28ef33e1806d567c\",\"labels\":[],\"modified_at\":1728721846.063963,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.20.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4deacb3773ea5ede7d53b9b0c4cc1b98\",\"labels\":[],\"modified_at\":1728721846.071734,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.24.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"907ff6d2edd7e5fe5373d1f1409792f2\",\"labels\":[],\"modified_at\":1728721846.080476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.25.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"862115a3de075173eb494c7860ed31df\",\"labels\":[],\"modified_at\":1728721846.089722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.26.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b423d803ad851f36a74255a889186bb\",\"labels\":[],\"modified_at\":1728721846.099062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.28.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47516de4224b0eef5c0d003c0513060d\",\"labels\":[],\"modified_at\":1728721846.1068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.29.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6f7dbe7caae310dd09d478d46a3028\",\"labels\":[],\"modified_at\":1728721846.114612,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.30.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6278dc427336c377caa1e58c30ff092\",\"labels\":[],\"modified_at\":1728721846.120738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.36.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f72a7429de924578f7b9c3fb6d781a7\",\"labels\":[],\"modified_at\":1728721846.126794,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.37.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4411a0bf4d7bb1ed0f6f11343dfcd199\",\"labels\":[],\"modified_at\":1728721846.136087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.38.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b6bd22bb44d0c9f184f996e2ae77d69\",\"labels\":[],\"modified_at\":1728721846.14763,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.39.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a26fddcd069cceb68a34e3461a6e0a03\",\"labels\":[],\"modified_at\":1728721846.156271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.40.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe7380af04fc4c2d01ce456a97f9ef8\",\"labels\":[],\"modified_at\":1728721846.230796,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.66.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e62d502703a6419c34e8edd95c486814\",\"labels\":[],\"modified_at\":1725239521.486838,\"name\":\"Dining Room FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7bb8fbf51788176cdb83547a004935fd\",\"labels\":[],\"modified_at\":1725239521.488668,\"name\":\"Dining Room FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"643d73eb1fbe0ddfcaa75370f3c8389e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a43b45ea88de4d9219e8d2841b42ea4e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3298e1c38a53b3c870fed75d6968c07\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f041b32270f9966ec39f26bc7e960f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46581f02785bb70fdee35529c92d263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6bffd588d27f8aad7cc650604b61c2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c74bfa7715f144957d804f646c4799bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights On White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25c3d5677fdc630832ee84427cd99536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902139116\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cbcd941a74a5a7396aad84ed9fc7dabf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902226266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3f98937a77978b4644ecd2e3b22e8c7d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.leks_lamp\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7fc3837a77f3b273d02c5bb1bf0170f\",\"labels\":[],\"modified_at\":1768937324.523879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"leks_lamp\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:E8-light-leks_lamp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c89435003eea4c6873d070c3c97fe473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3d27d28caa96a13c6ea25d0171638780\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1da40bd512b39f99dd627edb13c06403\",\"labels\":[],\"modified_at\":1768937324.524838,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:68-light-front_porch_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d054016a6b2f868c331522d5f2a024c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a43e095361249391c95d346bead29de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d6e9bd72ac413f4c9765807a7a8829e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d43bf2ed96db238ff6d5a3d55b74102c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5cfc016d624d22f58b972535e2c588e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:4c:4e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab8095363203057cbe0b359e78a434fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08f36a4038ba7e9ed484f4e40550a93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e32158757eb5aba850a4d85abb2be672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43eb4d024a7ef32436fc15eda451e656\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:92:15_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ddded55b837de9c9ba5d6b539445a14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4dc39ab3f597be7b5698f6d43b17afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4a3dfc05ea5897c3f4ca6d122a9e755\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d66b459d9b3468bce28a13faf238f788\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a1:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66bd7310f75118cb61fe4439c1b2dbaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e4f14bcbc3db07c23bde15014153663\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08167d99b04cd3119c18bc3a2a03dc54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78908f51b09bf8868105eeca61df8b51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:50:fc_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c312f3943f53f013a1698197beec7d9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be1582024ad1873d0529a0f5b617a21e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce297c2ac2bc5a14ebb49b8600041d2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0f550f0c1c6f6cdd1f2308b2e154000\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:d4:63_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de8b6bdb93fd71244574b16898e15903\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0197af3b4e34cdf7ec9a96ce8415728f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bd54501fcc95714cad1dcc1cd31f4a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"148c8043f4ec331449594ce281de74dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:9b:c1_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40777cf802aff4a5b6ed5e3d5c0883f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c03f2a67067cb61528fa31b6ad9b94dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33c056e4fecb95c459544ce4bd40bc90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8810cf2748e6123026bb56d1577b6b14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ba7328fddb154e27b647e31c8da72fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05c1a4ad242b4000e29be97d7bd1c3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"27cf5f296894b7daac381bf03d05ed66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"469441c2849c8da30a2a3175c2bd6d6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5a2de0bde5a2e1cfb2116303d6f5be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13c83850a4f8bfbe494ca9f383a652d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e979bf5003d332a9115b787a3d2dd2b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe12fde8dd7a18b5da9350bfc48afae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53fccaec9ce8f17e7d03d9dc4c33cc19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e27853184c40850e3134ef8116e8673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb7eeef067360dbb615665e6de5054b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0a5aed8a599743541e88238fe0839cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e632ddf5ed06b6df996980dcd58537b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.68.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2be995612da3708ee3aeabf4ad49d8da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.68.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47608e4f8a0b2cedbf2cfff1d12cb4d6\",\"labels\":[],\"modified_at\":1728721846.246357,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"538ed7a8af31562cd0d7c19f8a64c8e0\",\"labels\":[],\"modified_at\":1728721846.246572,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5fe7e5df6a5ce5a5694b4ef947580b6d\",\"labels\":[],\"modified_at\":1728721846.246723,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bbab6b72b677a179c8bc1228ec0fa29\",\"labels\":[],\"modified_at\":1728721846.246866,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f6ab96f4e24907de75d4f673141590\",\"labels\":[],\"modified_at\":1728721846.247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.68.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"830fd955b0b9dd786b18a7cee2c59bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.68.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee2102e9596641854623dacdf86a7c10\",\"labels\":[],\"modified_at\":1768937324.645237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.68.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab9f2342cbb08659c90acff506df3b8\",\"labels\":[],\"modified_at\":1728721846.247129,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.68.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b57a46d4c309703d4a6c50351952ca1f\",\"labels\":[],\"modified_at\":1768937324.765615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c4d6945336b15e0bba9b9345eea008b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"430cb36836ea27ca6cc4cce37605dad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519b5afe350cad9e05b31596d69a6e8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d050ee7382f25f72284e5cbadeff8d0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f44484b3ec3f6e65dc64ca21de50c405\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86bdfd735092c7fc659929e894fbc672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fdf886269a2fde49bd57cc2cbbd7fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"587df372365d29ba4d904980f49162ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c7888f5a2bca7dba8bd7f8db8e02292\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b273f3e4da902102c22068005d31362\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4923aba2eedfab503063be97268d349\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83882c656fefd0303211e999c22a2765\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17b020ebb60e265e372186ff5dec78fa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a821ce10588a5f5c21dca0d5a1caf1ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c2caa9b84384312cc3ee01843fcba18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df2245766365111ead8a1797d4aa1628\",\"labels\":[],\"modified_at\":1728721846.369908,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b21dcb9411ff471644d3bf7cc1f88d5\",\"labels\":[],\"modified_at\":1728721846.370379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b2a820515542e566358f93aea435a81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1598869d84f6256ea9af4669c9f1b726\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.upstairs_hallway_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2672687dfc897fee1ea56b169bb7c5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2119dc1ccc97edeb6e783ce5f0f7ad88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f562bfb09408687492fae4843c9aa192\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad9ecfe03131cd3738d0a0ce1ffc37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aab59415957dbb20b62b5aedb141e753\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e50482b2832b1c9478fd4d009eb8216e\",\"labels\":[],\"modified_at\":1737489134.76617,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966121423\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.night_tv_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2320f4922c41ae3049550a876bddadb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night TV Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"night_tv_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ae4f862e8267f53ba0ec595a391bd85\",\"labels\":[],\"modified_at\":1737489109.545107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966772353\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ce35a8be192434170cdc92d71e7ef8\",\"labels\":[],\"modified_at\":1737489123.678107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966888905\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a445cca6a8488132b472a230b330f318\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d07c497e4fb52fab5ac3b5d5dd718797\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41418b9d9c10e3c186e587bc21a21d95\",\"labels\":[],\"modified_at\":1725239498.826997,\"name\":\"Master Bedroom FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2995f0a20e4c3a95dc980037bc879f\",\"labels\":[],\"modified_at\":1725239498.828766,\"name\":\"Master Bedroom FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:bed\",\"id\":\"95df3f7dcf7e25696d4211430a78abd8\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"03dc995e582e7761e1a9f056d9a752d2\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"45e20dec6491a8436efbbf62938683e1\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom Not Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87bee964e12f4f43e8a77ca865687cf5\",\"labels\":[],\"modified_at\":1725149744.14575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709059722839\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b94ad5130258af70f3e44df53f10b5a\",\"labels\":[],\"modified_at\":1725239534.482943,\"name\":\"Master Bath FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69e5ff06047fee172494a676c9595b1b\",\"labels\":[],\"modified_at\":1725239534.484731,\"name\":\"Master Bath FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5bccd1e7de01b713e1b365a5823ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2080a737e85dba8c1c13d14ca844aa8f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49f9688732c5429b62c5cf2c39f5ebdd\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Presence\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"435b08e125fd43d1e5d67ed0d123fb6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709189535560\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_play_area_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"face7a647c70a0aef8bcc7901e21d7e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Play Area Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1710749651371\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_area_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09ad60b2d7e23af2bc93b52cb0ab7e50\",\"labels\":[],\"modified_at\":1775870416.948704,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Area Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_area_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.left_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1c843ff67b3c61ea82140a73d5ad090\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Left Upstairs Hallway Lights\",\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3cfa9649d5b814c5dff763cd6b76d9f\",\"labels\":[],\"modified_at\":1726995223.727702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b1734fd1032a711e2680a994926fa7d\",\"labels\":[],\"modified_at\":1726995223.730126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fea3aafb794c254c9981d05e2e69067\",\"labels\":[],\"modified_at\":1726995223.732286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f336d4a0a9c91ae0de81eb73b5e182\",\"labels\":[],\"modified_at\":1726995223.734449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f526bff502fe80b455c4e763a3a3db97\",\"labels\":[],\"modified_at\":1726995223.737066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43050533225ce62a16ed7cd33bd9e2d7\",\"labels\":[],\"modified_at\":1726995223.739279,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39cbc62a9910f6be46f1f17a716b402a\",\"labels\":[],\"modified_at\":1726995223.741579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913acb2bc62696d8db53f8508f1e1270\",\"labels\":[],\"modified_at\":1726995223.743703,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdb198312585d22902b2185c35214cfb\",\"labels\":[],\"modified_at\":1726995223.746068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a70affbb4ed972f8daec3166aa396f50\",\"labels\":[],\"modified_at\":1726995223.748907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"254c8b3136732d3bc8a34d91b8673ef8\",\"labels\":[],\"modified_at\":1726995223.751225,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e8694cb975a4e0c029556b1ba338d81\",\"labels\":[],\"modified_at\":1726995223.753406,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e0f89e58dac6a89d1cf0c76e956fc2\",\"labels\":[],\"modified_at\":1726995223.755504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"051e2e640e4c3291b09d55d3687c1471\",\"labels\":[],\"modified_at\":1726995223.757082,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f517ec7ef72b04193123c414c8c3f735\",\"labels\":[],\"modified_at\":1726995223.758519,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c26cf28b3b3dc9a6bf25c27fa43aae86\",\"labels\":[],\"modified_at\":1726995223.759977,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"971283eea4ef6a48d36d89350283bcec\",\"labels\":[],\"modified_at\":1726995223.761297,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9c3ea47b54daf6eb45abb3b17ad3724\",\"labels\":[],\"modified_at\":1726995223.780765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c44b3196aad16deed838f7a23fdb4098\",\"labels\":[],\"modified_at\":1726995223.783536,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5133e25e8f01dddbb6746b990b08f5ab\",\"labels\":[],\"modified_at\":1726995223.784321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9909d6d28676cc7831e49bde2470a7c8\",\"labels\":[],\"modified_at\":1726995223.785069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8482199ceba01d96d231e5f3a9dd368c\",\"labels\":[],\"modified_at\":1726995223.785825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23ee7b10cef9e4662e75be22310cefc2\",\"labels\":[],\"modified_at\":1726995223.78661,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd7c6e19c030f7196a8c11ba4b23fc41\",\"labels\":[],\"modified_at\":1726995223.787367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51d01dd8e96eb9b04bf64f2a2decc90\",\"labels\":[],\"modified_at\":1726995223.788115,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd490e9ecc4785dca9e2c059f36deffc\",\"labels\":[],\"modified_at\":1726995223.788879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7a4924a9ed506f1a7eb6ee0c5cbd0b8\",\"labels\":[],\"modified_at\":1726995223.789713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1a65aba3769dcf7d73471f08ee7487e\",\"labels\":[],\"modified_at\":1726995223.79048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9c01253348f061043bbdb1f1507a49c\",\"labels\":[],\"modified_at\":1726995223.791252,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d489d218083ad29b42fc36fef922cc13\",\"labels\":[],\"modified_at\":1726995223.792031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67713a70d56c5297ff28330a8713287b\",\"labels\":[],\"modified_at\":1726995223.79278,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9b7724b86925b6394800d7c6891b28f\",\"labels\":[],\"modified_at\":1726995223.793535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49962449d9f171c587ef0081e1cc465e\",\"labels\":[],\"modified_at\":1726995223.794287,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f4a5682eb43905036502e20f0d7cdf2\",\"labels\":[],\"modified_at\":1726995223.79504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4df9269002f04292ea5a51edd4f8c6\",\"labels\":[],\"modified_at\":1726995223.79579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dd1fa6fe3de99351f0c2e5b83f26c15\",\"labels\":[],\"modified_at\":1726995223.796556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69b62987fd5a78948f6cfdc65527fe6\",\"labels\":[],\"modified_at\":1726995223.811631,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"178c13bf6bbbb8549bf450a4b37821e5\",\"labels\":[],\"modified_at\":1726995223.81238,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60db789ceb739a57754a71f6a6341c62\",\"labels\":[],\"modified_at\":1726995223.815043,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaac7be99d399d761408d7db5905d168\",\"labels\":[],\"modified_at\":1726995223.815764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15733449911ed88087bdb00ce20a0bdf\",\"labels\":[],\"modified_at\":1726995223.816558,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"429e1e416e644ac2e44b56eef5823108\",\"labels\":[],\"modified_at\":1726995223.817315,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08656fa710c862cb6e1223682c8c5dc3\",\"labels\":[],\"modified_at\":1726995223.818008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1df54d5c58a731bbfab080b1a87906b6\",\"labels\":[],\"modified_at\":1726995223.818713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc787e9c0359d3254b83bd29ba368af\",\"labels\":[],\"modified_at\":1726995223.819405,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7d473447060f92cff978b9a385e9e68\",\"labels\":[],\"modified_at\":1726995223.820087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"055386324f02620a24c7ac18946b8bf3\",\"labels\":[],\"modified_at\":1726995223.820745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"76b3a961774fe3c039a138cfd39bb5b4\",\"labels\":[],\"modified_at\":1726995223.821464,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1d47fcf2e0a7f8584fd0e2f3c7df26\",\"labels\":[],\"modified_at\":1726995223.822171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6664341496258104260c74c65e71e362\",\"labels\":[],\"modified_at\":1726995223.822825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb8d289562757807719ada54917fd1b\",\"labels\":[],\"modified_at\":1726995223.823475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f21ff74ba7e2a3ef0d9c35584ff6eff1\",\"labels\":[],\"modified_at\":1726995223.824163,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5d811edc4036d76580e45069c0c9d4a\",\"labels\":[],\"modified_at\":1726995223.824852,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1dabea2c9416bad06dd40deacf241ca\",\"labels\":[],\"modified_at\":1726995223.825603,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49200ecce06beddd4ae77d277f4e14ff\",\"labels\":[],\"modified_at\":1726995223.82625,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd926acee83d1a62199e77a8dfb0aa05\",\"labels\":[],\"modified_at\":1726995223.826914,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5fd1ebd4c46c2508f368824f8e8152\",\"labels\":[],\"modified_at\":1726995223.828388,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2f8d02c9a7424a0357cba3b49eaebb\",\"labels\":[],\"modified_at\":1726995223.829147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_current_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2393f3fae020b53ab99954ca957c3a89\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Current Power\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_current_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_today_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d7106ff82fcb4a141f250d27a389e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Today Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_today_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_lifetime_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"96d9d3cb20150a5d688099ee3d59ebcd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Lifetime Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_lifetime_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1f5897cc45878de2eb2c5a5f1dff53bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad685a605a9e3440bda5246f75285600\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_online_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a1ff8defd768f741f55d65e9a7f1d5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"687378e33ac65e5d1c22ce92420ebe2f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a7c5493056d56a29653e33999a7ea9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d95ca2a85ce23754796fb7dfc047a34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18bc901d7dfcde1fde8bd62fae8a5113\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca63b9ad9d43371a52ac3613c109af07\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e07bc3bcceaeb880e71ed355f609b238\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd7571675990539e04f4f8a77406c490\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"211dbb3a7c69779aecea73e41f9c6473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"498fc8386aa58186c1fe7da679696211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e1ed71597a80a21a1881c86b442e6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3babf3437ebf12fd772a1aa54f4ab6f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e09f448a85712812e396a7f9cc1d393\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f9e1810e5a0c6896a04a053cc67f82a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f93e1a44de3fc2012749ef93295ddd9f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c20dea6e1ee110ac5ced5123e4947d32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"026a47e3e1d3993dc0ba1ad3c7446bf2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63dc709ee9f548ea607f688f93cf3234\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a06c4b37c7f1e33fe923bbd3149d2211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52154fde2fa3736366353ce80d9143fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5655856d7f5e8bd562dd95b8b8552212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7839750c868429f82ea60be31065090b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"345ca71bd27275be777e84858b01aeca\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f2714bb3fe47257fb7d75ed619377c4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca87da2f07b93a7514c465435b42fc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11ff9bdd285d12419a16b1c4046b164d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501f530e38c0a5ffb668116d0338b7e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79635f34cc537787519a607cef9c2b54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04f5ba7c71b00f927719dd6d1f76a24e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22a79eb3bd15b816fbd2353b874fb8c2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4e289027532937da275a2afe8a1e54b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c889610feda4c5d2919574a4a4b2e9fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6767893333bd2dd2faae401b17f6287\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9719fafdbf800c3e41c1247e9ddec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"709f79ac43c1de05cd9b92356daa783f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bbde1b266563b56db9b76c48b5e4c802\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cea749b7d0157bda9c8b3b8da7d0c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ddd7cef675562790ac794cf05db84eb7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3c559183ae7d9c9e8da0b9e9b52d2c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"361a1fc2a89ff20381d82750957d8e6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"99764c4bfbb97e8902e9a2ffbd269940\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6dd91fa0dddc72d17c5e9bc5febcb1bc\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d0458b6571acce21bda18fa4ed91f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"967c6fffba2e2da7a3df57bd136547a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"089c111078e7402a6d5d28aa89648473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d4c2fa1d9b5d9f01caeaceef8fa3b38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"456f0dd0f5c3770d056cc3764dc13d64\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77885fc4334d3e5779eaa71dac27688f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d0917ede83bd0ea1b545fb27ae2a4ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a36bcb574711bfe4e239bc12d85c031d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ccaf61f0c36aa89e2cc6b95d91fb0471\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05811a50db6dd93844c0b196d39d2acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"383a71bc0095d7e93746e6ea4f917198\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62cebac91c63149058b957314fb161b4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f283b802affc5a6ca5f1c7fc5de091\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee406fe27a3eec7c0c329ac2825c475a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"168791062da8f11816f49242dac4076e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"31ea3d07718bab198b5b9fc6af1dad97\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"305d5bd7a5ce07000c053958fcd55f12\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8835ef4f2b23d870d8155e9d6d5601\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fdd8ffe94c60d06b945af26a4352cb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"140d724fb5d154e0c3e6baab9f1b2c8a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"45d3fcce547a5c666959dfc27b70823c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"869b21114a648290559184a15408ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e821ed6d71bb8f39e7b129afe3af4d9d\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00d279b67b2610254703b2f54f7c19fb\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70fd486013d17ba726e8011eb3a73a3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d40dc815657ac375ec8fc97364d0587d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42be692b3321a3c3b636ca3c45f84b83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e32b957382e291736c3509dfdfd9aa4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"03f49ee636edc9301e014dade638cb4e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3846da42a87cde40ac6aea0bfc100b05\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"223c68438e658441b8a74c18d7440baf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c161128d74cde1b9df0ac526abe9a06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7b1a0a10460e1b2b3ede2e562a703f5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adc4e9307e5f4586c50c9b3d85f66b27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33f66484a0035b233ab171ed3b696fa6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"592ca6e323759a3be3e15662afff9297\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"893b80ec5dd05fb72fd00141fb518e32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d688d2d1bf1a31622070b2fb094c4cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4e72cd5d23acb39a4f9bc63cd0a21b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"da85884355ff3f4994596e259973be64\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2f84c45e7569a132689cdd9ed95b065\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a1f3186ff560113bb369dd97d7817da\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3db09b81e63e277131f85a8131a8025d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0b16c038d6c97b603911b86046cd25af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4eff38935461680017f59921787a34f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d18af827376be02cc0d3a1b6f9e01ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98977f8e3432f6e1ff5ebc307b85bf5c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4561d19a5716fbe7e1234f629b30767a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e9a028e3c404f0497df004b9975faad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f02043ae6d3212ba58eff7b1f7747496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1712170208fdab217e72e9ccd1bfd12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22e1a76aaf68da0ffb5403b0d2e2e274\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70909c374becd6dd73c82b4ff632b3c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0eae697b783ebba9efdb307f5ac8880a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c413014864a571a604089ceeb62ed55a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39450e87b48a58faf8da5a7a85133642\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5b1e2afd4751933180abf85fc4807f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a967fc1ae03d7238ecea72c0a0ee0d6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbe669bd0773be004f53e90bcb0df11a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56cddc0e777db2dbcc227171ce9f8054\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79b07b22b2ee648f66881c503ff3745d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d58f33bac449e9831ab4e1e98bc8409\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3859824896da3b25243af7a06a9ac8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39adcc1e155986621cc39a150c750070\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56317bf1aeaba04d33f714030392e692\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25113df24a5179f21d9e43126c27f58c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"466f741572070700ef6306949735069e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b12a0cd54325f7f91fee567870e913f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74e4b4ca3efba5d75a1727aa21c083fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"569cc4587b3157e2f58acd98ad72443d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74526ec1a4f846d0ddfaef484bc13493\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4203eae9736a10d438a8ee366d836774\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f8eb498aa41b793797942795f06c310e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Using Cached Data\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_data_from_cache\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_restart\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2bd4ab12752eaaa02b11c84a1e3290b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Restart\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_restart_ecu\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_query_device\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0ca0562ffcb02644dafae6227b475d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Query Device\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_query_device\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0a21329364115517cea604476281c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_inverters_online\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"cre", - "offset_ms": 40 - }, - { - "direction": "recv", - "type": "text", - "payload": "ated_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_003\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c5d8e19b2f7ef7dad358b83e242a65d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 003\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_confirm_configuration_change\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d25ae85a81c5a18a3965894f77da168e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator: Confirm Configuration Change\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e465c51bf88dbc32a6785a7b6dad1f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71fd02485d1c3201235dfebb5dcfe3b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e703e04564a595e11b85dc51d5afdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc9b9913efd0c2f8819a21443737e28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449a3a66c448b698823d287dee56c864\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_on_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"553ae2641fa529953c7c9c90ea018e2c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09447a340f5a951b315041b5dc38910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_scene_control_remote_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4108e95bdb9ab52a683d50b3c1eeb35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control: Remote 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed_dimmer_and_group_3_and_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96fb107556a5754998e6d4d86ade7860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed (Dimmer and Group 3 and 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24813797e3fe66e246880f75f276e964\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea0442a91f3c09d591f5ddfd39b6057b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0152622d192ee621b119886a52d711d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7d94a13fb61185a29df32572fff71f7\",\"labels\":[],\"modified_at\":1758660536.917488,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80eeb792b9601da317217fe3bdc1d46c\",\"labels\":[],\"modified_at\":1758660536.917716,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2068d0dc53aa2c783a1b70575e6d7755\",\"labels\":[],\"modified_at\":1758660536.917878,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d71e0683e8fa779d02db54bf283e7f92\",\"labels\":[],\"modified_at\":1758660536.91804,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1b34b38e43714428e109ed8d1c945\",\"labels\":[],\"modified_at\":1758660536.918202,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f895402c9d8d3bbe9eacb657e5a92be\",\"labels\":[],\"modified_at\":1758660536.918462,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.total_inverter_watts\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb73b03eeb9a43d362378e6ef0a89fb7\",\"labels\":[],\"modified_at\":1768937322.85093,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Total_Inverter_Watts\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"43febd2c80fd35383b1796826e76aad9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"notify.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de018507a30e449b6455fef4fe0fedc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980_notify_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ffbd90ab3bdee9a04e0e066a46c2d94\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eebcb05ee23fa77b122afde9ce221d20\",\"labels\":[],\"modified_at\":1768937324.525363,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:6F-light-mariah_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1dd305fbfb47d33a89aa39aa5305aa6c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bec4f47de87f948d86a066bb2ab2c70\",\"labels\":[],\"modified_at\":1768937324.526369,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:32:24-light-mariah_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a815fe83e1ed7dc52f51fbdcc13b71\",\"labels\":[],\"modified_at\":1726995223.830482,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e558dddb1abc1eeeaedc81b16c01f9e9\",\"labels\":[],\"modified_at\":1726995223.838912,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56d69a23bcd42abf56831b1b71694eb0\",\"labels\":[],\"modified_at\":1726995223.777968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"581ec35adc2c957a76a2c7fd60ef8633\",\"labels\":[],\"modified_at\":1726995223.807272,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e52835bcd7056629b1f1a99e20075585\",\"labels\":[],\"modified_at\":1726995223.837479,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47538b6ae63e2feeba44c44fae84ffa1\",\"labels\":[],\"modified_at\":1726995223.776542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2833708ebf6506c52dd79313ad59d26d\",\"labels\":[],\"modified_at\":1726995223.805802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1602432411104b1ff4945fed97b8e1a\",\"labels\":[],\"modified_at\":1726995223.763548,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c02d2d704d9242c0fbbed6a12f6213d\",\"labels\":[],\"modified_at\":1726995223.798062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d105430a04958aac57cef96114b7c07\",\"labels\":[],\"modified_at\":1726995223.831134,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9eae8ff171be93ebed91308be8af407\",\"labels\":[],\"modified_at\":1726995223.838195,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d811fdd8bfa49dab565b28ada1eac2ba\",\"labels\":[],\"modified_at\":1726995223.829815,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a920c156a1c4ac8ed2c8c7e1167e51\",\"labels\":[],\"modified_at\":1726995223.762419,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b11670409d6bdf9aacdf2aa240b77fda\",\"labels\":[],\"modified_at\":1726995223.797323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4aba70109c330d3dbe361ef2f93ae3b\",\"labels\":[],\"modified_at\":1726995223.765802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a56194f193842b6926637417fbce5d3\",\"labels\":[],\"modified_at\":1726995223.831809,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3566ef3b27ff4ad879bf2679940865a\",\"labels\":[],\"modified_at\":1726995223.7996,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9344a735c3f7b30f4f067902c5e8699e\",\"labels\":[],\"modified_at\":1726995223.842465,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d473f6cd0d1bd253b226a132ea261d92\",\"labels\":[],\"modified_at\":1726995223.810927,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa0f97c72bd513df9f4ae63f90bcde63\",\"labels\":[],\"modified_at\":1726995223.843171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555d62f0d7d846827fea1966f7a795f\",\"labels\":[],\"modified_at\":1726995223.782285,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b738544dccea104b025e9d0e05eb0a0\",\"labels\":[],\"modified_at\":1726995223.843932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3279a9c16bede20195a82db3a2d5ac6\",\"labels\":[],\"modified_at\":1726995223.813127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"edf1ee16bcab171c1c577c63ab97f10c\",\"labels\":[],\"modified_at\":1726995223.813846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d546166876e4b211dd195567284dc59\",\"labels\":[],\"modified_at\":1726995223.781575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"083bdec6d96d2f404c70507685f3dd3e\",\"labels\":[],\"modified_at\":1726995223.84177,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dca79ad23d502629a88f7013fa68932\",\"labels\":[],\"modified_at\":1726995223.810227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16aa1de89eab7ad3ed129eb4cc0ac3c6\",\"labels\":[],\"modified_at\":1726995223.771136,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e4964ba1e71db161a6472592eb9e740\",\"labels\":[],\"modified_at\":1726995223.80033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8570560d08e0567d3efebba878cdb6ab\",\"labels\":[],\"modified_at\":1726995223.832485,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4aebf740e9f7b9bd6c98c37d306197a6\",\"labels\":[],\"modified_at\":1726995223.778671,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fe20c2ae51615b00769343092fafd6a\",\"labels\":[],\"modified_at\":1726995223.807968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"068e413358fd64469c9a6e6f35b42a3d\",\"labels\":[],\"modified_at\":1726995223.839642,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aed56680f8f167daeb016cde5c2ba644\",\"labels\":[],\"modified_at\":1726995223.84033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fc85df1d90cebda5ab8b19c32436ae0\",\"labels\":[],\"modified_at\":1726995223.779376,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"021a49ce92e7476a582236b73b6e3535\",\"labels\":[],\"modified_at\":1726995223.802855,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6a40eac34dc70bf8dc5def5b0073fa\",\"labels\":[],\"modified_at\":1726995223.772679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c553fc274e111c629dd000aeec4c2b7\",\"labels\":[],\"modified_at\":1726995223.802104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df570e55b17fd5b868f21fdaaa452f90\",\"labels\":[],\"modified_at\":1726995223.83469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8e13752690827fa5e282140c5762e8\",\"labels\":[],\"modified_at\":1726995223.773442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b20b811f7244af9d9b23c2761c84b693\",\"labels\":[],\"modified_at\":1726995223.833935,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a5afa9a0787a0de471b3ee2c02657c1\",\"labels\":[],\"modified_at\":1726995223.808684,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8732cb4c313abb97189c10f0054108\",\"labels\":[],\"modified_at\":1726995223.775718,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed76a423a40fae6a4f24c824afc7805\",\"labels\":[],\"modified_at\":1726995223.833237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60203a103ce1b8ad003b1909fb4295b3\",\"labels\":[],\"modified_at\":1726995223.841088,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75a7375b9fceab8ece8c8d79beec2075\",\"labels\":[],\"modified_at\":1726995223.78008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d4429655a28d7c4d11c8ac748d6ec40\",\"labels\":[],\"modified_at\":1726995223.836044,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09fe4444cdc9cd9c1cb1d6365af990f\",\"labels\":[],\"modified_at\":1726995223.774958,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd10e1850ddc2620520d0c61a8bd97c6\",\"labels\":[],\"modified_at\":1726995223.804328,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4251e01f23bc9625e8a30bf7203a470a\",\"labels\":[],\"modified_at\":1726995223.835367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743fe98bbc2fed1b1af8b35cf2fb0ec9\",\"labels\":[],\"modified_at\":1726995223.774193,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6269259dcc0345571feab5284d7d09b9\",\"labels\":[],\"modified_at\":1726995223.803587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"524dd66763944a8be56ef44aa306ce9c\",\"labels\":[],\"modified_at\":1726995223.809514,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81b1a35be54fea6be3a192e4c82541f8\",\"labels\":[],\"modified_at\":1726995223.801083,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63bbd707bde7aeba07b3b5ecf5b7fa17\",\"labels\":[],\"modified_at\":1726995223.77192,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45170e964613947df7b4c57ebc0acd48\",\"labels\":[],\"modified_at\":1726995223.805066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8207f151f883386419a3a7979d3e5a37\",\"labels\":[],\"modified_at\":1726995223.83675,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e1e9be0c3cae58fefc0f6b8691e7327\",\"labels\":[],\"modified_at\":1726995223.764679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a81c4266cbdb0d23e04e4ae57619dceb\",\"labels\":[],\"modified_at\":1726995223.777271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6adb060e525a0b02802e9e8b6afa176\",\"labels\":[],\"modified_at\":1726995223.798783,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e88cf00ff5ffb15ab94f37a9aba66c0\",\"labels\":[],\"modified_at\":1726995223.806537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ede71d69993e45389dde366b477559a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.zwave_controller_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ada086edb92a8f505bced7c2559caac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8115e52cb16c7a28f096995d2b3b67e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f44e4ed83c8b09e72ec4ffd1df79953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f359fcdc3ab75ebc7bfb58acf0fe25e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46e839f2f5b0c124ad2a0b5c355967fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7b78974ef1f75948f492f64fd4859ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f780def514df1d90ed58dc922b80c574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.69.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_controller_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96d8fc5c5e35a76c655c9b71b67ef899\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.69.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a133bfa2a01f055c0c8d1bd38418a9\",\"labels\":[],\"modified_at\":1728721846.252105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e3e85a4be70951809ca9f5dfe3e4f27\",\"labels\":[],\"modified_at\":1728721846.252322,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6422ed2bc95eec7c77e8299c3132dd3b\",\"labels\":[],\"modified_at\":1728721846.252479,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e3039be25344df3c303f10d2af506\",\"labels\":[],\"modified_at\":1728721846.252618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"493c98ca3f5d28add9b1e76d9ea0fd2a\",\"labels\":[],\"modified_at\":1728721846.252884,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.69.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e9c3189a4b2c3bc9beaba32e4f6d17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.69.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba107fafd299fefa29cb886864a6b6ff\",\"labels\":[],\"modified_at\":1768937324.649113,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.69.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e97d839fc36f285ba34c95e0aedfb525\",\"labels\":[],\"modified_at\":1728721846.253026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.69.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_controller\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a09ee2d6dae31c200ed543531a11a022\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_status_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1aa247cfe4361de79507e8ccf24a9abd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf005657afa97b1d708b15d9ce67af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c16c9234ee62e39da6d416bd74c4bf36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9964c19a9f2c7334e16ed21f53a3b47f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89981bfb5fb0a71346ba5c4a7fd7f436\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4bee7cdfbbbb6c2df376f6acbc9f8e0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a4d1c9f055f635a8a634822ce0443b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6dc9f7340d74772ba42c3d47103bc06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57972bc34dc5d7e963a491a8f73724f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a2e8fc6466088be70d409688c666748\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f693ad03c26b3259e108bc893124dc78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf35e53c8dc9a7f47de20aa646f2a06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a5ec9e8137600e298bee781d72b83af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"284a0c5a0e4fbb0bcfedfc117d6d0cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae04ca93744aa073da36ab542919ff8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"049d7e26a1fd2ebae088bd47e33c28c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f3c6220aeebafd0398bd96fade2132\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be4b4db30be6b69c892b44b359c6b20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80d8ed745bc23622d5388e9075693bb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"306db4629c8a60e5464dd368235e8317\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c04dfad2dc4762af4bb76906a45d36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b439907fac4276ebd5799a625ec1ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb5b5d71754b964eebf3dabae76e6cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_dc_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b6fdcf38fa8ab2b6dee499c7d18e08f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.garage_controller_basic_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f54c77989f4d5e8568905b09f0c46f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"949433e099fb4164e0fafef364d9d3be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.large_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage-variant\",\"id\":\"7103f21d0a7b132c69440a9d6979648a\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Large Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.small_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage\",\"id\":\"efa8ffc287061c04b28a05e2d6789429\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Small Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_back_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"200b3bc82d4792b83862ab4c8cbb5d60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Back Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836786749\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_front_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25b6b2f05b818b741e6862688a763aff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Front Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836943690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x17\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c29cfef30f97af820f587cd0d380f6d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x17\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x87\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4dc3db0b7fb0e8835ad90f9649d49ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x87\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x87\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_water_valve_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b60d57c74b8a0fc026da3c5efe1ca529\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Water Valve unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Water Valve-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.neck_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b16d267f43e86640e991f613d652ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Neck Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"neck_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.migraine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e0cd7c0a5bad5564b84ba8e22f577d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Migraine\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"migraine\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.back\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a96f0af191e7ef39888e595237fc79d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Back\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"back\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.water_intake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81a9b155d2aa5e2ce0c7cb5dca44c82c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Water Intake\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"water_intake\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b24234ca56ac77e9c79f6e353a9de91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"648e83e3c8bf58cd2e4eff867c7f26fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc3f2404fff79b6deefc2d10c7d221fa\",\"labels\":[],\"modified_at\":1724358474.764135,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.mariah_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45abb940e65545be9eba91e9c7c27266\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:14:0f_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.joint_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78f692acbb46a9d5516120af473ee045\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Joint Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"joint_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de63e43f6a93586a800fa07684f40d6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724140995216\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b26a6c2d503838f2bd69b2b4425daae8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141048676\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68e5beb6d9c92149ac9c90cd78e98694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141102872\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.thermostat_aux_heat_only\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10172ebe8ddeadf985bb596b028dcae9\",\"labels\":[],\"modified_at\":1732123640.2771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Auxiliary heat only\",\"platform\":\"ecobee\",\"translation_key\":\"aux_heat_only\",\"unique_id\":\"511883021980_aux_heat_only\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":1724358474.76478,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.mariah_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4fed1642c4e2312aef35b63ec334976a\",\"labels\":[],\"modified_at\":1724358481.090975,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:14:0f_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543171,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_start_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20a9befee49729b0b2137b2abfa3f2da\",\"labels\":[],\"modified_at\":1724358911.543261,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric start date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_start_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543599,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_end_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65d71d7e1d0a884417f030f39de51b62\",\"labels\":[],\"modified_at\":1724358911.543669,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric end date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_end_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.98836,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.ha_floorplan_your_imagination_just_became_the_new_limit_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3784e07efac13a5e30236d87aea4fec0\",\"labels\":[],\"modified_at\":1724359451.989217,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.989902,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.dahua_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e20245435d618d476b342520dc05bde5\",\"labels\":[],\"modified_at\":1724359451.989949,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990389,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.emporia_vue_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33d53b6ba7f741c6d34066bffe189297\",\"labels\":[],\"modified_at\":1724359451.990431,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990856,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.average_sensor_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83923fd4d6f02182318adda6b96afc53\",\"labels\":[],\"modified_at\":1724359451.990901,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991326,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.lovelace_home_feed_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30d80177caf3df3331d797d783c5539a\",\"labels\":[],\"modified_at\":1724359451.991374,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991795,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.smartthinq_lge_sensors_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cd6da87bfe167df17bccc9b0bc3f160\",\"labels\":[],\"modified_at\":1724359451.991841,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.99502,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.fold_entity_row_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d2c850e540e1848f6d18f94e1d33df8\",\"labels\":[],\"modified_at\":1724359451.995069,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995516,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.card_tools_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa13dab5ed75447d38ec11bb05b39148\",\"labels\":[],\"modified_at\":1724359451.995558,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995977,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apsystems_ecu_r_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6355ba3eab69573857aa3095dfe8bb29\",\"labels\":[],\"modified_at\":1724359451.996022,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996442,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.hacs_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee6b6e287f399d2a0f069f2f3630f9de\",\"labels\":[],\"modified_at\":1724359451.996483,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996903,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.number_box_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4973abd138f62d11c94d23869d4332c6\",\"labels\":[],\"modified_at\":1724359451.996945,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997365,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.layout_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f6016a8e966604387a938ca589078bb\",\"labels\":[],\"modified_at\":1724359451.997407,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997831,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.opensprinkler_integration_for_home_assistant_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b81d07934da5c7e0354b8fcffd03768d\",\"labels\":[],\"modified_at\":1724359451.997883,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.998293,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.auto_entities_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7eaa56b622d4a80a22c66036a4e7bff\",\"labels\":[],\"modified_at\":1724359451.998341,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.000211,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"057af5b48646a036f034fd05c24730ac\",\"labels\":[],\"modified_at\":1728248033.394848,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00067,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.dahua_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39b3a5e25ed21ff451dd821e74135856\",\"labels\":[],\"modified_at\":1728765061.996176,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dahua update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00105,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.emporia_vue_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e29e7a00297a5a491404aa12c42c1323\",\"labels\":[],\"modified_at\":1726802997.261126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Emporia Vue update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001406,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.average_sensor_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"10b897f9ab5ff47d44ed99b8cad96a01\",\"labels\":[],\"modified_at\":1728269633.52911,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Average Sensor update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001753,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.lovelace_home_feed_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"692a965a89752f7152ac33da536bbed1\",\"labels\":[],\"modified_at\":1774138612.944037,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lovelace Home Feed Card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.0021,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3cb7c37711861e8a4f3c5450350f13c1\",\"labels\":[],\"modified_at\":1728226433.446449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SmartThinQ LGE Sensors update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.002442,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fold_entity_row_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f07711c04f71f779880758ee4fd3ca0\",\"labels\":[],\"modified_at\":1750126348.796186,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"fold-entity-row update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003037,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.card_tools_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8857ce93625614d4a532e41e988a77ca\",\"labels\":[],\"modified_at\":1774138612.945999,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"card-tools update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003384,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apsystems_ecu_r_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eb5eead0182826b4bd85b3cbbc8b855d\",\"labels\":[],\"modified_at\":1741914692.185678,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"APSystems ECU-R update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003737,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.hacs_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b4d63ea37ba5c94123db67da9a7b4a\",\"labels\":[],\"modified_at\":1725474380.986863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"HACS update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004085,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.number_box_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf9428ea6400cb62210ef5a817aa3f4\",\"labels\":[],\"modified_at\":1774138612.947972,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Number Box update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004425,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.layout_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9814393596a8063e564904eea508d5\",\"labels\":[],\"modified_at\":1724359470.337507,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"layout-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004773,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64aa16e9bfa85282bdb6b21e1f285a0c\",\"labels\":[],\"modified_at\":1728377633.939246,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler integration for Home Assistant update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.005134,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.auto_entities_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c1b0f1673df40ae25aff2e19e9bdb999\",\"labels\":[],\"modified_at\":1746450676.644499,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"auto-entities update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.878711,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d782eae7ac9b06c199b0499afff0d330\",\"labels\":[],\"modified_at\":1725237298.640764,\"name\":\"Living Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.880189,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a40c8c00fa4561861b93cac2ae12162\",\"labels\":[],\"modified_at\":1725237298.642678,\"name\":\"Living Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.620171,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95350dcc7aab2e2b8ad42eff96a3bbe9\",\"labels\":[],\"modified_at\":1725239509.709835,\"name\":\"Office FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.621822,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"457ea4d9622eaa89f01768b2d3cb13b7\",\"labels\":[],\"modified_at\":1725239509.711619,\"name\":\"Office FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9119d30965efa939f043665b8f522c7\",\"labels\":[],\"modified_at\":1725122973.950769,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d74e8506dabac922300249b97a64fd92\",\"labels\":[],\"modified_at\":1725122989.160884,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f75ee8a8e6a0e889e600b497c966f4be\",\"labels\":[],\"modified_at\":1725123000.642922,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.881487,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a80cd1fd55b60d92e924c5d0a86b57bf\",\"labels\":[],\"modified_at\":1725123140.792999,\"name\":\"Living Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.62291,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65796cc5504c6f97911d5984b7697240\",\"labels\":[],\"modified_at\":1725123172.764679,\"name\":\"Office Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.623792,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4870514fbeca2b830d674880c226e4b1\",\"labels\":[],\"modified_at\":1725123300.434383,\"name\":\"Adam Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.625331,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ae3bf2a8005788c86e4ed1db0e26deba\",\"labels\":[],\"modified_at\":1725123348.631538,\"name\":\"Leksi Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.626608,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"92cd99596879bed65510157a3e4440b8\",\"labels\":[],\"modified_at\":1725123370.960249,\"name\":\"Mariah Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.882516,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_couch_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df55257bb93d1c4d83ab27bb28cc7088\",\"labels\":[],\"modified_at\":1725128801.063257,\"name\":\"Small Couch Occupied\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.884521,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.main_couch_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d5054b087303392f4b4c1afa3087c65f\",\"labels\":[],\"modified_at\":1725211786.993681,\"name\":\"Main Couch Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.885552,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.massage_chair_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6166b7fcdd2cb9ddf567fd2ef3444519\",\"labels\":[],\"modified_at\":1725216435.355422,\"name\":\"Massage Chair Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.041669,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.mariah_room_fp2_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05362f331bbb95c88b007da2281c2835\",\"labels\":[],\"modified_at\":1725237352.484952,\"name\":\"Mariah Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.047465,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"572e2d9b32244570b0d0b314a4c0b609\",\"labels\":[],\"modified_at\":1725237352.487786,\"name\":\"Mariah Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.051823,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5970db3a2e7b0259e89db44e4cfa579\",\"labels\":[],\"modified_at\":1725237416.812842,\"name\":\"Mariah Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.055599,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff08f0de11c1b85bc8cd0d449bc0c733\",\"labels\":[],\"modified_at\":1725237437.467906,\"name\":\"Mariah Room Bean Bag\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.059074,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6bfab91f865d492c15136b5c01e3ea3\",\"labels\":[],\"modified_at\":1725237447.998816,\"name\":\"Mariah Room Bed\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2696\"},{\"area_id\":\"mariah_bedroom\",\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237505.317515,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"scene.mariah_in_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fb3c6924d403f71d58b0bb0dabf3c01\",\"labels\":[],\"modified_at\":1725237505.338758,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Mariah In Bed\",\"platform\":\"homeassistant\",\"translation_key\":null,\"unique_id\":\"1725237502868\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237787.837052,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_purple\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"624dd2844883b69d29ed148095cfedd4\",\"labels\":[],\"modified_at\":1725237787.837879,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Purple\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_purple\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237915.884351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d456942a6323ea80effd232373cc5b99\",\"labels\":[],\"modified_at\":1725237915.885773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238041.890769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"75cf52bb1c878e6bff34b625af14e080\",\"labels\":[],\"modified_at\":1725238103.797624,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up_initial\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238636.640793,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3b6a0b1778090f2e8c408dda4f83c35\",\"labels\":[],\"modified_at\":1725238636.641973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238624495\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238701.670496,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9999f46a955a0e9f9084655c2278aae\",\"labels\":[],\"modified_at\":1725238701.671689,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238682447\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239006.346545,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4ce3b7950ba257b7202c193ad300ec6\",\"labels\":[],\"modified_at\":1725239006.347468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Beanbag\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238993576\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239193.188985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f01bb92164b255a0efc6d56ad8e2d267\",\"labels\":[],\"modified_at\":1725239193.189985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off_motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239220.921769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7ab674921f77ca79b116b8ad3510f592\",\"labels\":[],\"modified_at\":1725239220.923107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725239208837\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725240282.042413,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7ca8c0f7712e5307b5d9763e9de9b94\",\"labels\":[],\"modified_at\":1725240282.04309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.352226,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45c2f5c4dc505611cb256120f1f2830\",\"labels\":[],\"modified_at\":1727942594.370094,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.395121,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"642124e3cca72e7af2215ef9a52ec5b8\",\"labels\":[],\"modified_at\":1727942594.403475,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.425326,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"784abe3673b46c36d82dd6392e364987\",\"labels\":[],\"modified_at\":1727942594.425962,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.45199,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"150bd1465c22a43804cecfd9a73b625d\",\"labels\":[],\"modified_at\":1727942594.452773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1728721845.869036,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b63b865295f97c1a420158b97b7759ea\",\"labels\":[],\"modified_at\":1728721845.869115,\"name\":null,\"options\":{},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeout_ack\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.793984,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385bc6fdb93d7ac940f95ec7929b93a2\",\"labels\":[],\"modified_at\":1729542987.794601,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.818634,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd8c93ee004038b3809d9bf5e9651e47\",\"labels\":[],\"modified_at\":1729542987.819224,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927412.116135,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"955ffcb77910a5ce5c785cbb4567a5f4\",\"labels\":[],\"modified_at\":1730927412.117253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927396308\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.917166,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"987472eb0c0a9d61f145fe1ffa7ec389\",\"labels\":[],\"modified_at\":1730927493.919085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.920247,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"252a7a535fed97b7201a3d818cbf6b41\",\"labels\":[],\"modified_at\":1730927493.923132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.925051,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.entry_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97c48c7149d9b2887c6c759a19330130\",\"labels\":[],\"modified_at\":1730927493.927034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.928963,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.entry_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500c84effc8332e2f1c41a3075838240\",\"labels\":[],\"modified_at\":1730927493.932234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:cb:b8_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.935595,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.entry_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743ad90a794f64c648bd1898865e94f4\",\"labels\":[],\"modified_at\":1730927493.936077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:cb:b8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927707.36645,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1265c862bfdaa5054cae39b5f86e369c\",\"labels\":[],\"modified_at\":1730927707.367325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927687152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927799.13572,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d209c365471b448fef5272375db2ff0\",\"labels\":[],\"modified_at\":1730927799.137491,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927783620\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.182084,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf28a6cb7c5941b7f5f4a22f00a9f0e\",\"labels\":[],\"modified_at\":1731010174.182936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.185823,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff2608f2319d6a14116e79184fb9de\",\"labels\":[],\"modified_at\":1731010174.186057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.188286,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02c6d610044ed99bb98012037e946b99\",\"labels\":[],\"modified_at\":1731010174.188925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Water Alarm Water temperature alarm status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.189509,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c63c08e0a24247681b3d434ba4fb34cb\",\"labels\":[],\"modified_at\":1731010174.19004,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"No data\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.190342,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abb7f974abebcb04c1b547a6286cded4\",\"labels\":[],\"modified_at\":1731010174.190851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Below low threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.191145,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f614798b9e419b24613abcca2ed35048\",\"labels\":[],\"modified_at\":1731010174.19163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Above high threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.764381,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac6c25ec61299c2cb06e3968752d2b33\",\"labels\":[],\"modified_at\":1732137151.765016,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.71.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.765454,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"470d94d96fdc410faa1a1d853ce54872\",\"labels\":[],\"modified_at\":1732137151.765996,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.71.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.766523,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bdd8a3d8d5649e3c59bcd0afe21a3233\",\"labels\":[],\"modified_at\":1732137151.766708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767048,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e664059fc7a8cd2a4c332b3dd7c088\",\"labels\":[],\"modified_at\":1732137151.767202,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767524,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167a34dc614f039f41fc040f39e15d2c\",\"labels\":[],\"modified_at\":1732137151.767682,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.76799,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b457d5cbaa8a6d30f5db0cfa9205e7c\",\"labels\":[],\"modified_at\":1732137151.768142,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768433,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"efb4c2b5944fd9687778e2300f221aba\",\"labels\":[],\"modified_at\":1732137151.76858,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.71.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768882,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e0206961390409df0866659ba3bde3c\",\"labels\":[],\"modified_at\":1732137151.769029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.71.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.769331,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45bfe6ad87c79146ddc2780321ecc45c\",\"labels\":[],\"modified_at\":1768937324.655714,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.71.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.770858,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7befa0f701f255251d4f0713e34362f\",\"labels\":[],\"modified_at\":1732137151.771513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.71.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.588866,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2668e06370022ffa63e0af58450c4deb\",\"labels\":[],\"modified_at\":1768937324.772972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.590101,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e406cccffc6c5b1a623fd47a73eba1f\",\"labels\":[],\"modified_at\":1732137162.590693,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.591473,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02301ae4db885a81128ada934ab4a086\",\"labels\":[],\"modified_at\":1732137162.592025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.592528,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6fee332c76665dc7ef1990beab6911\",\"labels\":[],\"modified_at\":1732137162.592694,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593141,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb96048cc18af78626c04d902a8e7007\",\"labels\":[],\"modified_at\":1732137162.593303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593752,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bded064f1e92e2734f097e5c6fc559b\",\"labels\":[],\"modified_at\":1732137162.593913,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.594349,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7628d05dcf62a79ba33c64966408e4a7\",\"labels\":[],\"modified_at\":1732137162.594936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.595438,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5f170a01f0cacbeb2fd47e3cedac5f\",\"labels\":[],\"modified_at\":1732137162.595608,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596071,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d11c36c8b1ae89a2329b8466196adb6\",\"labels\":[],\"modified_at\":1732137162.596235,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596681,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"322ec7947d8e42919a0133cd17e116f7\",\"labels\":[],\"modified_at\":1732137162.59686,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597312,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_minimum_reporting_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adf1bb1bfe2a4f11cadf90f298ff2d35\",\"labels\":[],\"modified_at\":1732137162.597473,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Minimum Reporting Frequency\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-172\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_battery_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0afe97af7c4e124df81a1ac9cc483560\",\"labels\":[],\"modified_at\":1732137162.598073,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-182\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.598509,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10efd918aa86083fadb425ff9a4a4a34\",\"labels\":[],\"modified_at\":1732137162.598687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-183\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.59912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3c5669678178150a506c354e6f1be9\",\"labels\":[],\"modified_at\":1732137162.599283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-184\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.599718,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_brightness_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913286fe33112a9c3d531a34472f5945\",\"labels\":[],\"modified_at\":1732137162.599878,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-185\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601005,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_multi_sensor_vibration_sensor_enable_or_disable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3db884502b02d5d6a290bdf2d41907c\",\"labels\":[],\"modified_at\":1732137162.601212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration sensor enable or disable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601721,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4f6c95db11d3ac17bca07d2264430a4\",\"labels\":[],\"modified_at\":1732137162.601885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602321,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e453c0781a8c76f1e73aefc41ad58342\",\"labels\":[],\"modified_at\":1732137162.602485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602937,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5581de38027d90f3ef0cb1cd2c41d2a0\",\"labels\":[],\"modified_at\":1732137162.603098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.60353,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_temperature_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2fedd7c6df14c4b5c04f34a712b7e8\",\"labels\":[],\"modified_at\":1732137162.603692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for temperature sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-173\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604137,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_humidity_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e70223c7a145435b2ed9e879cd97c40\",\"labels\":[],\"modified_at\":1732137162.604311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for humidity sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-174\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604784,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_light_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"126c174154d818c34882bf702cd2ecb1\",\"labels\":[],\"modified_at\":1732137162.604956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for light sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-175\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.605428,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f8387b33452ea29b9bf9b484030fe46\",\"labels\":[],\"modified_at\":1732137162.605656,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-201\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.606111,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e4b96482125c77b71a934b2d26f18e\",\"labels\":[],\"modified_at\":1732137162.607041,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-202\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.6076,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e78741347ca06e5ec1b6e8c3ba8b559\",\"labels\":[],\"modified_at\":1732137162.607783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-203\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.608276,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46015d5ffd1da337365d54035bbbec1f\",\"labels\":[],\"modified_at\":1732137162.608489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609037,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5515fb214b05e9d99121d850fdc2cc3e\",\"labels\":[],\"modified_at\":1732137162.609207,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609708,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36b46883ad9a46c08d9ace6a631f3ab0\",\"labels\":[],\"modified_at\":1732137162.609873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.610376,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e5ec6faa8b7d0368a1aaef25db69cfae\",\"labels\":[],\"modified_at\":1732137162.610934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.611673,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7eadc541b21bdc09a3ede440e16e781\",\"labels\":[],\"modified_at\":1732137162.612885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.61343,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2ee927581c1eeef7e93ff0d97ddee896\",\"labels\":[],\"modified_at\":1732137162.613993,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.614532,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dcdb2a7c64feec4cb475111ab74f4d8f\",\"labels\":[],\"modified_at\":1732137162.6151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.615626,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88ae53a601694ce99968bd1f2e333c08\",\"labels\":[],\"modified_at\":1732137162.61618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.616467,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0edb4b570f956fbd585e38c96895ee89\",\"labels\":[],\"modified_at\":1732137162.616941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.617512,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"813c7f2ffa0892c3422fa632fefc12fd\",\"labels\":[],\"modified_at\":1732137162.618824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.619386,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93dc4ae4941e37f57821eab3fd04fdcb\",\"labels\":[],\"modified_at\":1732137162.619911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.620392,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6557f3d6a9a2cf2d58f3637dab11b0fc\",\"labels\":[],\"modified_at\":1732137162.621174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.621782,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7728624fe2d08c453eb1f5570b13110\",\"labels\":[],\"modified_at\":1732137162.622362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.62405,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_multi_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e01d9271034ccc4742137810a44c7296\",\"labels\":[],\"modified_at\":1732137162.624683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.633871,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28458c3031c3f4c248b9a590649b56b8\",\"labels\":[],\"modified_at\":1752106041.646984,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 1 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_1_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.634984,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8233a76f8e5b57101fa68fa5d761e95d\",\"labels\":[],\"modified_at\":1752106041.647528,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 2 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_2_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.635932,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4306e274bbda0cdb3c63207a6f31f939\",\"labels\":[],\"modified_at\":1752106041.647924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_rain_delay_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.636864,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8cfc6b3d9aa316b1a16b51c6c90236c4\",\"labels\":[],\"modified_at\":1752106041.648321,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Paused\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_paused\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.637837,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_program_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d677537788a5eafcb8532c16cf717224\",\"labels\":[],\"modified_at\":1752106041.648738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_program_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.638843,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s01_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78da84e6aefcc386e0046bf1b665406b\",\"labels\":[],\"modified_at\":1752106041.649173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.640317,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef03c61878db30aef1069ae462af17\",\"labels\":[],\"modified_at\":1752106041.649602,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.641282,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s03_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e7f2050e9cf5b99317afc5bc8437b60b\",\"labels\":[],\"modified_at\":1752106041.649991,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.642249,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd1dcda93262483eb387ef6990169370\",\"labels\":[],\"modified_at\":1752106041.650391,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.643239,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s05_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabc42d8716a5866c0d562652bb54f56\",\"labels\":[],\"modified_at\":1752106041.650775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.644241,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s06_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4f5a122107cab3853f733992b28f8c9\",\"labels\":[],\"modified_at\":1752106041.651155,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.646097,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s07_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3293c0b56291ae6e9a7bd65e0abd60ab\",\"labels\":[],\"modified_at\":1752106041.65154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.647084,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s08_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44907512c87223c107c95f467afd32ac\",\"labels\":[],\"modified_at\":1752106041.651931,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.64834,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s01_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a38e3beb90e104dd21a41eb83801ef5\",\"labels\":[],\"modified_at\":1752106041.652574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S01 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.649353,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_lawn_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68796744a1de3fd9f2849c34c91293d8\",\"labels\":[],\"modified_at\":1752106041.653615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Lawn Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.650323,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s03_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7192a3ad6d844197c490a376e3f70b1\",\"labels\":[],\"modified_at\":1752106041.65404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S03 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.651977,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9199ba6acba78346f517315046715e7b\",\"labels\":[],\"modified_at\":1752106041.654442,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Flower Bed Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.652985,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s05_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ac557888704caa59ca96935fd70b6d\",\"labels\":[],\"modified_at\":1752106041.654835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S05 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.653945,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s06_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6edb59dd3e64c4913f7de4e938acd59\",\"labels\":[],\"modified_at\":1752106041.655236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S06 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.654928,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s07_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"43667b7d50dd98b035e656e0bab89356\",\"labels\":[],\"modified_at\":1752106041.655641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S07 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.656158,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s08_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf30ad107bbd19dba22c07d3614de624\",\"labels\":[],\"modified_at\":1752106041.656036,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S08 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.657793,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_interval_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab30ba1fa24ea82ab2abbc82c046d16f\",\"labels\":[],\"modified_at\":1752106041.656454,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Interval Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_interval_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.658844,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_starting_in_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70fc9278f25b33ebbc97bee258bc426\",\"labels\":[],\"modified_at\":1768937328.473047,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Starting In Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_starting_in_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.659895,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"532c0ab02f8bacd4922c9e8fb929b233\",\"labels\":[],\"modified_at\":1752106041.657319,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Count\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_count_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.660553,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82c9f077606745c02474ab5be55a620f\",\"labels\":[],\"modified_at\":1752106041.65765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Interval\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_interval_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.661207,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ff12afe9d9a6186ccedc30b97f98c5b\",\"labels\":[],\"modified_at\":1752106041.657982,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.662274,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start1_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5eaab58a3eaa4725ee1acc2c7d0af43\",\"labels\":[],\"modified_at\":1752106041.65843,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start1_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.663542,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start2_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"900d108248145e047c6222d5dab38a6d\",\"labels\":[],\"modified_at\":1752106041.658749,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start2_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.664261,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start3_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53547b2a17ba809162f4c80e4c95c494\",\"labels\":[],\"modified_at\":1752106041.659059,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start3_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.66517,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_restrictions\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98120ea7a8c6aec01a0b4c930f4d271a\",\"labels\":[],\"modified_at\":1752106041.659582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Restrictions\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_restrictions_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.666191,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86585bafecd310548350429db5de5ac4\",\"labels\":[],\"modified_at\":1752106041.659999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.667173,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_additional_start_time_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ecea61af97b2c0c60f95fe1aea7a1c\",\"labels\":[],\"modified_at\":1752106041.660415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Additional Start Time Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.668408,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_start_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c19fa2860614bd4a8f05e40abc011676\",\"labels\":[],\"modified_at\":1752106041.660824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670177,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start1_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41990b44f367572d2e3191a12b36cdcc\",\"labels\":[],\"modified_at\":1752106041.661229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start1_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670831,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start2_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd85f5a98d6ad86127c3b5823860fec6\",\"labels\":[],\"modified_at\":1752106041.661525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start2_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.671452,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start3_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a20cd58ad5a61fee98b1af89696b25\",\"labels\":[],\"modified_at\":1752106041.661818,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start3_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.672332,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_last_run\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dcb6bda0ee19761e85c6fade1412faef\",\"labels\":[],\"modified_at\":1752106041.662311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Last Run\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_last_run\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.673368,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5559a9931dd1e25341ea309e5a82f85\",\"labels\":[],\"modified_at\":1752106041.662722,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Stop Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_rdst\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.674302,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_water_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c8cf60018b734e890992bd9eed2ec34\",\"labels\":[],\"modified_at\":1752106041.663111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Water Level\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_water_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676033,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55cbcd1e26e5440341dfb0355bd8bcc7\",\"labels\":[],\"modified_at\":1752106041.663513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Flow Rate\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_flow_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676994,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_draw\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2fdebd9b4d3a941ed6738378fd82c4\",\"labels\":[],\"modified_at\":1752106041.663901,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Draw\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_current_draw\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.677946,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"004c2dddd6a671840404bde623b57bec\",\"labels\":[],\"modified_at\":1752106041.664278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_devt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.678559,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"928cbf681537aefdcec79f502a31c202\",\"labels\":[],\"modified_at\":1752106041.664568,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Pause End Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_pt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.679532,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s01_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7c0622cc402dd16d31691f5bbd346a0\",\"labels\":[],\"modified_at\":1752106041.664954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.680486,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_lawn_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec3d3107b963ae9e98697b474d274f97\",\"labels\":[],\"modified_at\":1752106041.665365,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.682227,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s03_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee3da72518ce48c980b2b30be13c8807\",\"labels\":[],\"modified_at\":1752106041.665741,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.683445,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_flower_bed_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e68cff1ef73136d91264bef3338e6b8e\",\"labels\":[],\"modified_at\":1752106041.66612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.684415,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s05_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3fa7d6a18fd72776a962c38ebab8505f\",\"labels\":[],\"modified_at\":1752106041.666497,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.685369,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s06_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0400d09413e1943988a75450678b1ebb\",\"labels\":[],\"modified_at\":1752106041.66687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.686365,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s07_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8eeb163f3069a24eb8b02be77dabfe38\",\"labels\":[],\"modified_at\":1752106041.667242,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.687354,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s08_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a67713de10858c8f5573df5bf7deff48\",\"labels\":[],\"modified_at\":1752106041.667621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.688636,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.opensprinkler_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a0dc8f5e507c1f6fde72f904788cdbb6\",\"labels\":[],\"modified_at\":1732137663.689179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"OpenSprinkler Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_controller_enabled\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.689659,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_program_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5814850390edeb9e2eeda752197bc5c\",\"labels\":[],\"modified_at\":1750061531.449132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.690656,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_monday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a2e95f50238ccb6e70e50e56b98b27\",\"labels\":[],\"modified_at\":1752106041.668769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Monday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_monday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691244,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_tuesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5359ae42aaef47628647352704d15ec6\",\"labels\":[],\"modified_at\":1752106041.669071,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Tuesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_tuesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691842,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_wednesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edd1e6010cbe67594ea1ee82924f6f8c\",\"labels\":[],\"modified_at\":1752106041.669369,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Wednesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_wednesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.692443,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_thursday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4472ffa505c8f15ca6ab865630355d4\",\"labels\":[],\"modified_at\":1752106041.669655,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Thursday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_thursday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693014,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_friday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1be9033a6ff2cb2f995d8ef74c0afa5b\",\"labels\":[],\"modified_at\":1752106041.669939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Friday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_friday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693609,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_saturday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4abfd9b07e0f49d65f187324b9feddd\",\"labels\":[],\"modified_at\":1752106041.670226,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Saturday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_saturday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.694193,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_sunday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4357c7a7797385e7b9355358ded32f94\",\"labels\":[],\"modified_at\":1752106041.670505,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Sunday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_sunday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.69484,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.front_program_use_weather\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5914f46ad2cfb68aad3c6706cb684a8\",\"labels\":[],\"modified_at\":1752106041.670809,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Use Weather\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_use_weather_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.696024,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s01_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee933341e59eab4e1de01dfb380d57d4\",\"labels\":[],\"modified_at\":1732137663.696604,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S01 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.697116,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_lawn_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27734f41473d59fab6ac03f37eb7bfb8\",\"labels\":[],\"modified_at\":1732137663.697653,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Lawn Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.698106,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s03_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cddda4b9abd4a2112b5d386fb355d349\",\"labels\":[],\"modified_at\":1732137663.698787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S03 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.699266,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aebefeb6ed4d1b726994cfd307f4cd2a\",\"labels\":[],\"modified_at\":1732137663.699922,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Flower Bed Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.700567,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s05_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1b9b1f74a2038ccf2d6ada0f37c6fa\",\"labels\":[],\"modified_at\":1732137663.701324,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S05 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.702531,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s06_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2dd24c218d32a94dd0335de195f7f2d2\",\"labels\":[],\"modified_at\":1732137663.70317,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S06 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.703647,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s07_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d911d53c2592a07306a7b6b3b3fa66\",\"labels\":[],\"modified_at\":1732137663.704181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S07 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.704672,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s08_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"35c35dbbf2e3f45e3f06fa1dbae6b749\",\"labels\":[],\"modified_at\":1732137663.705194,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S08 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.706649,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"text.front_program_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37e6efeffb3cda3c638bab8e88d2538f\",\"labels\":[],\"modified_at\":1752106041.673929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Name\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_text_program_name_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.709345,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"time.front_start_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3218db77bd10bc723c7584475171ab4f\",\"labels\":[],\"modified_at\":1752106041.675042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.71041,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start1_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd2cee6ac188f1157bc1dabe9135722f\",\"labels\":[],\"modified_at\":1752106041.67576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start1_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711008,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start2_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8099b78938edadefa49d3f10af5d3a33\",\"labels\":[],\"modified_at\":1752106041.67606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start2_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711572,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start3_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"960046c7225148a4e2e04959c16b02f6\",\"labels\":[],\"modified_at\":1752106041.676347,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start3_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.982321,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"176bdb7963a4d2e8e0993dd991c2d61a\",\"labels\":[],\"modified_at\":1732138416.983212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.73.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.983825,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3830b7b3aafeadc0f0a4a4cafdbba3c7\",\"labels\":[],\"modified_at\":1732138416.984423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.73.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.984956,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a40c07eeee574d0a58ea7e537b5dddb\",\"labels\":[],\"modified_at\":1732138416.985133,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.985534,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2445fa8e4bd61ebde86370bc8523e1\",\"labels\":[],\"modified_at\":1732138416.985692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986061,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f41c04d85d79bf9677d75b8c16c04b\",\"labels\":[],\"modified_at\":1732138416.986233,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986748,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"194631aec7814b1c0eeba1cf4e786d0a\",\"labels\":[],\"modified_at\":1732138416.986932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.98735,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae9b1ef37b45bab86290b6d49def769b\",\"labels\":[],\"modified_at\":1732138416.988081,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.73.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.988538,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98007b9b486441a51a5279bb7fed6b8a\",\"labels\":[],\"modified_at\":1732138416.988715,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.73.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.989091,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49dc7f599fdd1f2027fe2bcf95006dff\",\"labels\":[],\"modified_at\":1768937324.663851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.73.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.990462,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33557f07cdf75bc2412ad0a885c0bc44\",\"labels\":[],\"modified_at\":1732138416.991131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.73.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.790002,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72e8b62740080ea3f946f208f1fb7bc7\",\"labels\":[],\"modified_at\":1768937324.779845,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.791422,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d04acf192d2fd0fc6179ab20b4104f4\",\"labels\":[],\"modified_at\":1732138423.792057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.792664,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f328919b5fbd52d7e3554c431eaecda5\",\"labels\":[],\"modified_at\":1732138423.793293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.793874,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57f5ea17ee03c8aef502d38ef8bd6b1b\",\"labels\":[],\"modified_at\":1732138423.794042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.79457,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd876b6092259cb5ead6b986d88ee635\",\"labels\":[],\"modified_at\":1732138423.794748,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.795911,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555c9ad71f1f7fdd6ee1463b6969d21\",\"labels\":[],\"modified_at\":1732138423.796098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.796629,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec00430092b4eeab0664d84f21df0171\",\"labels\":[],\"modified_at\":1732138423.796797,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797307,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88dc5c6dce5ae4332a1d45a4f0cc4c99\",\"labels\":[],\"modified_at\":1732138423.797468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797983,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ac88bfe9cceaa214b06d93c173a4837\",\"labels\":[],\"modified_at\":1732138423.798146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.798681,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc6960dcb05013fd42b9c69458102c16\",\"labels\":[],\"modified_at\":1732138423.798846,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.799334,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07a1c78242bf060670017b91e7d94d35\",\"labels\":[],\"modified_at\":1732138423.799489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.800068,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"043056745e8987e49706de0b21d04793\",\"labels\":[],\"modified_at\":1732138423.800234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.804869,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"daf1f79fbd90cabfc5a34ad780956cdb\",\"labels\":[],\"modified_at\":1732138423.805095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.806501,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbb8694e79a2ad14cb64c8f8e5d47a2f\",\"labels\":[],\"modified_at\":1732138423.80718,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.807718,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7424d3a9e7da60ac2ba9d4adfd79a18\",\"labels\":[],\"modified_at\":1732138423.808298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.808844,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24c0c8ec26f7f4075cd8e45ffcde07a1\",\"labels\":[],\"modified_at\":1732138423.809401,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.809877,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22bf5cdc43c8ee4de64819afa890cc68\",\"labels\":[],\"modified_at\":1732138423.811783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.812418,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8312156799f26c4fd9c0c0e868d613df\",\"labels\":[],\"modified_at\":1732138423.81303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.81356,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cde146585342c60fa01d113994424977\",\"labels\":[],\"modified_at\":1732138423.814241,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.816756,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a15df092ba0c6a7154348a4898157ad4\",\"labels\":[],\"modified_at\":1732138423.817406,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.618014,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416b91acfddf3047384e7ee2ae08296c\",\"labels\":[],\"modified_at\":1732138684.618664,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.75.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.619114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22ca26c888e4f320444bfe76a2069291\",\"labels\":[],\"modified_at\":1732138684.619621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.75.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620099,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3617768155b9135fc6e5f44b7e21189c\",\"labels\":[],\"modified_at\":1732138684.620274,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620594,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"118bc1f4edbe3b8896b0d0a6751133e3\",\"labels\":[],\"modified_at\":1732138684.620752,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.621063,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c365245a707d6329e913801bd91ca5d1\",\"labels\":[],\"modified_at\":1732138684.621225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.62154,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75eb84dd5f8d9bc95ca286dc1eeca79d\",\"labels\":[],\"modified_at\":1732138684.621706,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622015,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2777138368a9abe7f9f042f0023f48b\",\"labels\":[],\"modified_at\":1732138684.622179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.75.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622502,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c57670c418667c196d39dca2483a5d14\",\"labels\":[],\"modified_at\":1732138684.622961,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.75.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.623544,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15d78da0a4398cd66194710995979ef2\",\"labels\":[],\"modified_at\":1768937324.668105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.75.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.624153,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b3ad094b6fb47d54160dc27a2402c7a\",\"labels\":[],\"modified_at\":1732138684.624744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.75.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.636665,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fa00abf3918f8fac60b707bed85cdd7\",\"labels\":[],\"modified_at\":1732138695.636933,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.637438,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa0f8a73745bfcdc301019929f9f395\",\"labels\":[],\"modified_at\":1732138695.637612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.63806,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4687608966a4d41618657f50e8d41a50\",\"labels\":[],\"modified_at\":1732138695.638228,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.638762,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfafac5c6126794a57742fe36400fea6\",\"labels\":[],\"modified_at\":1732138695.638934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.639408,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03f80773d857d3dacb7fd5e038bb1f31\",\"labels\":[],\"modified_at\":1732138695.639583,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640039,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a365309305395eecd9b2293a9b2ed220\",\"labels\":[],\"modified_at\":1732138695.640208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640663,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e34194de8abc885606521034b1889ed\",\"labels\":[],\"modified_at\":1732138695.640834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.641306,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_motion_untrigger_send_basic_cmd\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99cf610a23717a99dbfe052a0bb6ea34\",\"labels\":[],\"modified_at\":1775549231.59514,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ared\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.64198,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_configuration_param_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b0ce3efe64c82a980bac45f2c10a14\",\"labels\":[],\"modified_at\":1775549231.595476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Settings Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-254\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.642575,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df497c8d1113a36c54c4db878e0fca8b\",\"labels\":[],\"modified_at\":1732138695.642925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.643371,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbfd1827b608ec30e50a2c8d9ac1738a\",\"labels\":[],\"modified_at\":1732138695.6439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.644367,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"067ff38baebfeba542fc2d93fd6d846b\",\"labels\":[],\"modified_at\":1732138695.64489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.645399,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d4d2fb65ea95c82c89912955ce2d74f\",\"labels\":[],\"modified_at\":1732138695.645909,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.646344,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a746d156e0579cb6a0c282ec8423459d\",\"labels\":[],\"modified_at\":1732138695.646873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.647407,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afe52a71944a7bce54e82309066779eb\",\"labels\":[],\"modified_at\":1732138695.648124,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.648719,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ccfe4098bf64d024b3a4280d44249f06\",\"labels\":[],\"modified_at\":1732138695.648905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.649411,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e4dca10b749b4af9b227c82fb79d73f\",\"labels\":[],\"modified_at\":1732138695.649587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.650062,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ea778c5ee2223334224e979796972\",\"labels\":[],\"modified_at\":1732138695.650629,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.65114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e84349c9c3f7be88ffdb3b431a0ba7\",\"labels\":[],\"modified_at\":1732138695.652399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.653016,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"714c36211355e8c6eed8b0f405f1af18\",\"labels\":[],\"modified_at\":1732138695.653613,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.654109,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7baadd3ceacdd507c216212cb3b87068\",\"labels\":[],\"modified_at\":1732138695.654668,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.655381,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4c051cf51f0348ae219dc014e260222e\",\"labels\":[],\"modified_at\":1732138695.655966,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732139452.718891,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed7dbfad7f175f21a652c7d0d3330d8b\",\"labels\":[],\"modified_at\":1732139538.777695,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1732174703.971423,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_lights_left_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"924db9892cc5519731a5c110545b3061\",\"labels\":[],\"modified_at\":1732174703.972284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Lights Left On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1732174695099\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.375013,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b816b35414f8bc2d381fc987e434b35f\",\"labels\":[],\"modified_at\":1733163448.545247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Connection state\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_connection_state_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.41395,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_restart_required\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61f46e69a48027efacc7d58134f627a3\",\"labels\":[],\"modified_at\":1733163448.547781,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart required\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_required_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.45896,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bfd3f57c36e237bbb9ad6afb80870b6\",\"labels\":[],\"modified_at\":1733163448.551286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.504733,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba7340b4cbd21643896dea7f309921f9\",\"labels\":[],\"modified_at\":1733163448.643092,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Log level\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_log_level_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.548301,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25f4a31cb1ccecc4e9469f5ea9cc3e0e\",\"labels\":[],\"modified_at\":1733163448.646729,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.593799,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_coordinator_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b842f63a9b81e3a2af0ef251ecf7ab4\",\"labels\":[],\"modified_at\":1733163448.649525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Coordinator version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_coordinator_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.644285,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_network_map\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12df011646a6b17600d15ab9fa6fe99c\",\"labels\":[],\"modified_at\":1733163448.653364,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Network map\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_network_map_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.690207,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aca42208b299223d614f58e3feb2c840\",\"labels\":[],\"modified_at\":1733163448.656796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Permit join timeout\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_timeout_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.783081,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b33f74080c92f71e53d49d2fc60e406\",\"labels\":[],\"modified_at\":1733163448.659761,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.829562,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e381ec7dcd1341f5776bd0a2886f9209\",\"labels\":[],\"modified_at\":1733163448.662249,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.873645,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a31d7d3cbcf76b4365c2756f2418ca31\",\"labels\":[],\"modified_at\":1733163448.665131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action angle\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_angle_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.917858,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_device_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a754f3acf910cd43563ed2676eedb040\",\"labels\":[],\"modified_at\":1768937325.657919,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_device_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.961537,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_power_outage_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb5cc9dfece2a14128321a8c8ba0044c\",\"labels\":[],\"modified_at\":1733163448.672203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power outage count\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_power_outage_count_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.00603,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_from_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9624c92d6b8366ef9cd1804493185dab\",\"labels\":[],\"modified_at\":1733163448.674787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action from side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_from_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.049561,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac02738c9db3275fac7690e531555c11\",\"labels\":[],\"modified_at\":1733163448.67793,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.093516,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_to_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c008909747cd28dd536a03d115d711a\",\"labels\":[],\"modified_at\":1733163448.680929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action to side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_to_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.137499,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0e64fef54c101ab96c4081bad5a2ad8\",\"labels\":[],\"modified_at\":1733163448.683803,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.225948,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a932bc8c951ba62827fe0f990e2702db\",\"labels\":[],\"modified_at\":1733163448.686366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.313491,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_desk_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a28d2af38fd6ac7279788810b8f4d7\",\"labels\":[],\"modified_at\":1733163448.688208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.405348,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_cabinet_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f0bb80add1fa704cc495207b3f5d194\",\"labels\":[],\"modified_at\":1733163448.691535,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.740788,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df49492914ec67f302e0b6a69c122293\",\"labels\":[],\"modified_at\":1733163448.695336,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Permit join\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.27003,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_desk_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e62b257bc1586c7d6f6c0d9757293a\",\"labels\":[],\"modified_at\":1733163448.698409,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.357407,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_cabinet_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81a443a3981f42bf8049cb72eb3726f2\",\"labels\":[],\"modified_at\":1733163448.70122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1733166139.84886,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_z2mqtt\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad1ef16f58ed42f31138cf882cbd1923\",\"labels\":[],\"modified_at\":1733166139.849744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Z2MQTT\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1733166130068\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733166143.681489,\"device_id\":\"c4e6de4e26e939f7d433bf6d0a56df00\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.desk_cube_last_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42f966c6395b8ea360e7aa399ca72b13\",\"labels\":[],\"modified_at\":1733166143.682204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"last side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"desk_cube-e600b772e2d38b5b159093786d5bf1b2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.273786,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.thermostat_temperature_display_units\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3f00ecf5048b3f9e64a704e2ca9d92e0\",\"labels\":[],\"modified_at\":1733470323.274554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Temperature Display Units\",\"platform\":\"homekit_controller\",\"translation_key\":\"temperature_display_units\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.275631,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.thermostat_current_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6a708b72d19d3425a4bffde4773acf9\",\"labels\":[],\"modified_at\":1733470323.276196,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Current Mode\",\"platform\":\"homekit_controller\",\"translation_key\":\"ecobee_mode\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.276884,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"02eb281ddab89f579541da3c48364480\",\"labels\":[],\"modified_at\":1768937330.226836,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Thermostat Current Temperature\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.277912,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_humidity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aada76d6b800aa198307edc8f2f94b49\",\"labels\":[],\"modified_at\":1733470323.278441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Current Humidity\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.279066,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a34e9a572df91bb7a2bea56b6c7befc\",\"labels\":[],\"modified_at\":1733470323.279596,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Motion\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_56\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.280059,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a53e234c9a95713683719a42f1f7d16\",\"labels\":[],\"modified_at\":1733470323.280586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Occupancy\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_57\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.281426,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1dc2c5f590596a957c5d442d276f9551\",\"labels\":[],\"modified_at\":1775463025.83871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.282857,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.thermostat_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea789899d09226775d0daa530027b9d\",\"labels\":[],\"modified_at\":1733470323.283385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_1_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.28388,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.thermostat_clear_hold\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f25cd194cab996c6b0d11611f99101c\",\"labels\":[],\"modified_at\":1733470323.28457,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Clear Hold\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_48\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.854459,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0990beda4adbced67f9da8fbf14a5734\",\"labels\":[],\"modified_at\":1733904292.858855,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.892119,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e84579ecf7f13526a23c78731d3755\",\"labels\":[],\"modified_at\":1733904292.895779,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":1736319447.525713,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b9ac173954a17489fd6438677e48e78\",\"labels\":[],\"modified_at\":1741148806.093313,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Compressor minimum temperature\",\"platform\":\"ecobee\",\"translation_key\":\"compressor_protection_min_temp\",\"unique_id\":\"511883021980_compressor_protection_min_temp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.905972,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f04cd994bf4a7ca806e873689f0a05\",\"labels\":[],\"modified_at\":1736320519.906751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.79.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.907344,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e78e8aa7ecee5b3adb88cf6760e660\",\"labels\":[],\"modified_at\":1736320519.907957,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.79.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.908601,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aed21f201e4e9e49dc6e2fbfa6b269f\",\"labels\":[],\"modified_at\":1736320519.908898,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909112,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11d59ab7cf13cb711f9f6aa4d904b40f\",\"labels\":[],\"modified_at\":1736320519.909248,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909421,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea3a75a361da66c42a17ab240ac6619\",\"labels\":[],\"modified_at\":1736320519.909546,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909714,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9098616b205b24cbad4a88c83997e963\",\"labels\":[],\"modified_at\":1736320519.909949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.910119,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519aa11c201477c7828a3bc98fd1133d\",\"labels\":[],\"modified_at\":1736320519.910246,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.79.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911034,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bec59707ccd7dc529a90b1f098e5463\",\"labels\":[],\"modified_at\":1736320519.911218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.79.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911435,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef05212c0e42c4bfe401b3c4a440be4b\",\"labels\":[],\"modified_at\":1768937324.673569,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.79.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911768,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e515cf0760d43f4a81b2b3979145422\",\"labels\":[],\"modified_at\":1736320519.912168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.79.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.889798,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03c6b2e96c8518f922c1f7976a43224f\",\"labels\":[],\"modified_at\":1736320523.890247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.890604,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cfadce8334aa142551bb0271cb3a332f\",\"labels\":[],\"modified_at\":1736320523.890983,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891298,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e97ff3d04362f3398435b9c09280c19\",\"labels\":[],\"modified_at\":1736320523.891644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891976,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1be6ea19b6705198c44062cd8c886913\",\"labels\":[],\"modified_at\":1736320523.892111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892381,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1163e30b6367ba70cdb0bbe818bd86a\",\"labels\":[],\"modified_at\":1736320523.89251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892784,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003c87cfb9a0c7a08e1e6a9413bb72be\",\"labels\":[],\"modified_at\":1736320523.892915,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893181,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a74f8edd31d0d23fcb5d7911f5de558e\",\"labels\":[],\"modified_at\":1736320523.893314,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893609,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd4b36349b64e4afb0efbd8cae27ceb1\",\"labels\":[],\"modified_at\":1736320523.893743,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894017,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dce04321343b8f8650a1638e540c066\",\"labels\":[],\"modified_at\":1736320523.894147,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894415,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a26041ffe1d767c1eb6d43d5eaa1062\",\"labels\":[],\"modified_at\":1736320523.894549,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895246,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"335173b1290e32b28674d76b3139a7e3\",\"labels\":[],\"modified_at\":1736320523.895405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895685,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b023c61c1897b503e351ab61f1397b60\",\"labels\":[],\"modified_at\":1736320523.895824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896095,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18346fff64001fa0e036649a9ce026a3\",\"labels\":[],\"modified_at\":1736320523.896229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896493,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c84119a15d609af8e002b03a3113d945\",\"labels\":[],\"modified_at\":1736320523.896637,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896904,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be85935d305056837922385a2d2166d\",\"labels\":[],\"modified_at\":1736320523.897033,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897297,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba44272b6f19db495f0bad8e04150bdf\",\"labels\":[],\"modified_at\":1736320523.897427,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897689,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60c44e307fd48158ef5a870f6e1ea15f\",\"labels\":[],\"modified_at\":1736320523.897823,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898087,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"779e519eb982bf17eafbb4185d8a5538\",\"labels\":[],\"modified_at\":1736320523.898218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898501,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param017\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13eb4a7de3ff753f4f4551bb6b34c3fc\",\"labels\":[],\"modified_at\":1736320523.898633,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param017\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898906,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param018\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2aade9b24c3cf098837c05f198a84196\",\"labels\":[],\"modified_at\":1736320523.899034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param018\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.899325,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a75845967c301f447fdadd705ccd7bb\",\"labels\":[],\"modified_at\":1736320523.899681,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.900013,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cce3b69f3c06d161dec626b5790ce5b3\",\"labels\":[],\"modified_at\":1736320523.900352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.901702,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e73cbc35e18958125287a74471c3a7\",\"labels\":[],\"modified_at\":1736320523.902118,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c40ab8344787dc7d21e29d547af9168\",\"labels\":[],\"modified_at\":1736353596.37888,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"config_subentry_id\":null,\"created_at\":1736353647.022559,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9b5fcaa227f65f8d411267b0c87e17c\",\"labels\":[],\"modified_at\":1736353647.026856,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Garage Motion\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354201.335657,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9b4fba2f11f641562e2a0cf02f5193a8\",\"labels\":[],\"modified_at\":1736354201.33641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354191063\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354274.958347,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"830666f260932ede8c27eb30fa0f2acd\",\"labels\":[],\"modified_at\":1736354274.959061,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354261558\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356766.764731,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f39e4da6bae1a1fb17133e0994052d7\",\"labels\":[],\"modified_at\":1736356766.76768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"1e0e99c393cebaf6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.582007,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a426428dce7d3a5ad82a464d6c13626\",\"labels\":[],\"modified_at\":1736356803.582649,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.882889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"109baa4874d527c5dce0fa51e7ec766e\",\"labels\":[],\"modified_at\":1736356803.883446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.157783,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18486e2eea948c77d599307cb1afac40\",\"labels\":[],\"modified_at\":1736356804.158354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.504037,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8b32e5fb84db954de2baea306396bcdf\",\"labels\":[],\"modified_at\":1736356804.504525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.770611,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7076de51a9429320f8f79a3b02daee09\",\"labels\":[],\"modified_at\":1736356804.771166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.094326,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0957b1480c95f751131df14c11de93e7\",\"labels\":[],\"modified_at\":1736356805.094874,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.332161,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b9d7f3508915fa3d10cc3763c4c732b\",\"labels\":[],\"modified_at\":1736356805.332734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.632478,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"654a35e29ec254b14f7342b941c57ebc\",\"labels\":[],\"modified_at\":1736356805.905853,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.134424,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ab3ad53acb2fb31265c2beaf81a787\",\"labels\":[],\"modified_at\":1736356806.223628,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.408371,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4a6ac60b8a79e875715714e9d98b53\",\"labels\":[],\"modified_at\":1736356806.65203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.77282,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9a1414d4439efae40503ca6f2d0de1c1\",\"labels\":[],\"modified_at\":1736356806.918576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.0732,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad998071e0851fcdac692503e773cad\",\"labels\":[],\"modified_at\":1736356807.073755,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.47584,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d14678412ea3738987ba070e0d1dc47\",\"labels\":[],\"modified_at\":1736356807.476394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.789064,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b94f06998a4a37f7fa272ebb5d4a82\",\"labels\":[],\"modified_at\":1736356807.792482,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.131893,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3de7df881a6322e0971ccea176dddd43\",\"labels\":[],\"modified_at\":1736356808.132439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.44137,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0585654f850aa6c80809d8159b522c\",\"labels\":[],\"modified_at\":1736356808.441885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.789329,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"14f7490f06cca0ba2fd96f2482289589\",\"labels\":[],\"modified_at\":1736356808.789536,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.075127,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"157241e5f848a341290b22d44b2c6cc3\",\"labels\":[],\"modified_at\":1736356809.075701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.53918,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e11a13791aa5e28f584841a514467af6\",\"labels\":[],\"modified_at\":1736356809.539734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.885361,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b318f00270d6a9b45165c6e5a44f637\",\"labels\":[],\"modified_at\":1736356809.885939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.259692,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52087a4595d9da9fbde6eea04ad63196\",\"labels\":[],\"modified_at\":1736356810.260095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.533183,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fee843fda76fc8d65a653091ced38e8\",\"labels\":[],\"modified_at\":1736356810.533737,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.955986,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11f9a4558ce5421169edbeb2e555d5cd\",\"labels\":[],\"modified_at\":1736356810.956558,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.034081,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be48034f51cdaff9ee7e90fe0fef9d98\",\"labels\":[],\"modified_at\":1772683905.232172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.297521,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0819605111bcbcd4f7e39d21c88a07\",\"labels\":[],\"modified_at\":1772683905.835153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.540434,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e47ff59093cdd8c4b107074e038dcb3c\",\"labels\":[],\"modified_at\":1736399063.500589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.909769,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46db01c2adedfbe43630a5f6dccc6a99\",\"labels\":[],\"modified_at\":1745524780.005163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359657.453126,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3c001f67d93fb5258ae48c47210beb2\",\"labels\":[],\"modified_at\":1736399064.263031,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.581695,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ead35b09a45c83eee2915b09e240cf5\",\"labels\":[],\"modified_at\":1736399064.531165,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.882863,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"297937f666f3e5a757b1165cbc567ea3\",\"labels\":[],\"modified_at\":1736399064.803276,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.137825,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6389ef9fa7957cc4e8fd6626ea88768\",\"labels\":[],\"modified_at\":1736399065.081707,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.363443,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bedtime_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7af1d7a08626154d89c6fe3bcff2049a\",\"labels\":[],\"modified_at\":1736359659.36398,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bedtime mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bedtime_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.625494,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4b1ce8d630d3c1139af9939d53abb39\",\"labels\":[],\"modified_at\":1736359659.626054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.876657,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2de0b22a75bc9020376fa995d4f55f\",\"labels\":[],\"modified_at\":1736359659.877219,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.132724,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27be5d92b8d529284e3b279099754ea2\",\"labels\":[],\"modified_at\":1736399067.294751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.376811,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0d40b3310f8c0e746ca68a5444b0d1b\",\"labels\":[],\"modified_at\":1736399068.107397,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.60476,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d8083b32c92d976e8df45388ba480189\",\"labels\":[],\"modified_at\":1736359660.605316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359661.793629,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adaa4c83bc9bca3d19a9af0ec81a8eea\",\"labels\":[],\"modified_at\":1736399795.169023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.177957,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53eb4bdb941f55dbbd581722fbf5fcfa\",\"labels\":[],\"modified_at\":1736359662.178469,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.645451,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01129317545bbe3d974404fc7b754d4f\",\"labels\":[],\"modified_at\":1736359662.64603,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359663.612969,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41d3cf71221566d53676a59927079525\",\"labels\":[],\"modified_at\":1736399795.946725,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.24639,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9dc6b7eb95805f4edcd634365fed345\",\"labels\":[],\"modified_at\":1736359664.246953,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.510519,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7cb0a33d907765f791a568845f3ca99\",\"labels\":[],\"modified_at\":1736359664.51107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359665.204889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23e948de201d1840aef0bcac3f026dcc\",\"labels\":[],\"modified_at\":1736359665.205434,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359666.440523,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5707e58d3dc6e2aac0394c2fcb3b7819\",\"labels\":[],\"modified_at\":1736359666.441115,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359667.195641,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"814ba5368dd8ce19d270c59f3aa70d95\",\"labels\":[],\"modified_at\":1736359667.196212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359668.184418,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d79100a0ce88a95bb3508f92917c50e\",\"labels\":[],\"modified_at\":1736399797.665211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359669.14242,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09a91b37c035dc8468fb33c46d22b688\",\"labels\":[],\"modified_at\":1736399798.122323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.04832,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d6892d2d211d5450673f97825289382\",\"labels\":[],\"modified_at\":1736399798.705635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.992047,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"013180467fa74f25bf8aeac4685c0bb6\",\"labels\":[],\"modified_at\":1736399799.392385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359671.938631,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"beb1135710edcf430ee9c09b403bb4f5\",\"labels\":[],\"modified_at\":1736399799.790352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359672.866807,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6230302d762bf3ab79d12409c1231bbf\",\"labels\":[],\"modified_at\":1736399800.787298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359673.78006,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8be95f5af00e6d22af4f2e5ac47c6fdf\",\"labels\":[],\"modified_at\":1736399801.429003,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359674.698165,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72b59c954d688b0c5d56dc7515ecb8fe\",\"labels\":[],\"modified_at\":1736399802.363037,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359675.62217,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42c8a56ab854162a1745cb4a09dbdb4f\",\"labels\":[],\"modified_at\":1736399803.362446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359676.543017,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e317baaf0f76275291f5c2d076ee5e5\",\"labels\":[],\"modified_at\":1736359676.543581,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359677.44848,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"273ecd3a847f25375673692d0e17e105\",\"labels\":[],\"modified_at\":1736399805.439232,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359678.422497,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40b84792dccc1ab0c45ddb0dd47ace3f\",\"labels\":[],\"modified_at\":1736359678.423076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359679.312512,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7048d27edebd7601ca231221f6b27f69\",\"labels\":[],\"modified_at\":1736399807.564816,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359680.283382,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1743057c6757d698d0d65799731be65b\",\"labels\":[],\"modified_at\":1736359680.283927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359681.140505,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_on_body_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b75d2c31d19e391f5d178240a6c0209e\",\"labels\":[],\"modified_at\":1736359681.141105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 On body sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_on_body\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.090116,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2dead3b819e75b6b5211443a5ac78f4\",\"labels\":[],\"modified_at\":1736359682.090675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.9708,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34c63b944355c9e51b84ba3f6b774b6e\",\"labels\":[],\"modified_at\":1736359682.971298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359683.958379,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a7bf80c63ca3bee1b4879fb6b1ba99d\",\"labels\":[],\"modified_at\":1736359683.958927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359684.857759,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47ce2137b53c5b8f6d94331b3e025002\",\"labels\":[],\"modified_at\":1763328460.580366,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359685.654766,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ef2b4cd3a27c1b0051ac47549a23b72\",\"labels\":[],\"modified_at\":1736359685.655329,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359686.705391,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0a92448dcdd542b9e3e8a75fe04559a9\",\"labels\":[],\"modified_at\":1736359686.705956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359687.625097,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ab731ae8b74fd38f20f4fb6c43506c5\",\"labels\":[],\"modified_at\":1736359687.625639,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359688.516154,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_theater_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"703096c37b80a7d5fa418e41d4f81c31\",\"labels\":[],\"modified_at\":1736359688.516736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Theater mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_theater_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359689.529591,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b843d7d77fd0e55c1b9dbc9bcbc183f\",\"labels\":[],\"modified_at\":1736359689.530093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.333626,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab5205e7d9e3858de62ea0bb4794194c\",\"labels\":[],\"modified_at\":1736359690.334183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.652265,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fad870f9abcfa3727367793912e2f758\",\"labels\":[],\"modified_at\":1736359690.652862,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359691.299905,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wet_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6912d4a233b925946eb92a607354856e\",\"labels\":[],\"modified_at\":1736359691.300455,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wet mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wet_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359692.209767,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_activity_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6c82536cb995ebbba982c2ab021ced8\",\"labels\":[],\"modified_at\":1736399825.35309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Activity state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_activity_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359693.154691,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39a8afb6f701ab75cfc7fdb255e13a6f\",\"labels\":[],\"modified_at\":1736359693.155251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_floors\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359694.058948,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ff694331b621b1f0fda4e48e8bbcc53\",\"labels\":[],\"modified_at\":1736399827.024194,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.003274,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_calories\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d9e973ac42cfc50c48e30ad90288748\",\"labels\":[],\"modified_at\":1736399827.952805,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily calories\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_calories\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.81776,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2e45bb02534ec3078c8e0eea4344ca\",\"labels\":[],\"modified_at\":1736359695.818316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.856213,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e71d567db688d94b4e0e0f224fb9ce28\",\"labels\":[],\"modified_at\":1736803158.868554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.887145,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20c1bb2e7c3adbd94bfdfbdf8b652b8d\",\"labels\":[],\"modified_at\":1736803158.895143,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.925194,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"139f6cd0dd468aa9019150651d43f434\",\"labels\":[],\"modified_at\":1736803158.934833,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.958586,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d27e6bddb02baaf8770ba59450229223\",\"labels\":[],\"modified_at\":1736803158.959123,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.000035,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adad2dae764b1b4c5e4f1b8615f7c6ec\",\"labels\":[],\"modified_at\":1736803159.000571,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.020193,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"130892cbc52a3a5d41acf63fc52264a7\",\"labels\":[],\"modified_at\":1736803159.045045,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.05282,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4df84fa332afe1a1ba6e2afbe3e0c538\",\"labels\":[],\"modified_at\":1736803159.053349,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1737067561.611876,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_sensor_2_sensor_state_co2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bddd6f808427ba2a97adca93c8768213\",\"labels\":[],\"modified_at\":1737067561.612126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sensor state (CO2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-CO2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1740257490.056992,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de2bdae5c394ce75a2e72d945fd67d78\",\"labels\":[],\"modified_at\":1740257490.057769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Solar ECU Unavailable\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1740257477923\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.753328,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.under_cabinet_lighting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47a17625819d6de9a9a5a9fcb068dfd3\",\"labels\":[],\"modified_at\":1742764374.448547,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_light_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.742879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.under_cabinet_lighting_effect\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f83446880146584e49ffe7ca9d992136\",\"labels\":[],\"modified_at\":1742764374.450385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Effect\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_effect_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.780879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbc2aaaed253d3bbe2c0ea5e8596772d\",\"labels\":[],\"modified_at\":1742764374.496804,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Do not disturb\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_switch_do_not_disturb_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.829072,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.under_cabinet_lighting_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb2a38c1e988902be72a7518cea08f79\",\"labels\":[],\"modified_at\":1742764374.541366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467771.203002,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ef0cd9a1858bc9149e47113717459b5\",\"labels\":[],\"modified_at\":1745467771.203562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.019608,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_blood_glu", - "offset_ms": 45 - }, - { - "direction": "recv", - "type": "text", - "payload": "cose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9411a9c653ef38ea742ed08dc2a31067\",\"labels\":[],\"modified_at\":1745467772.03278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.047222,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37f7acf271e127f4e49d357bb0c5bb68\",\"labels\":[],\"modified_at\":1745467772.060087,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.227616,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc0faadddf515e78993cb2525101a9e9\",\"labels\":[],\"modified_at\":1745467772.228166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.295831,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2710c8eb328c4a060bfab6e1a34674fb\",\"labels\":[],\"modified_at\":1745467772.313176,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.391191,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7cc10320bf0eac221b1bbe0e37984f\",\"labels\":[],\"modified_at\":1745467772.408751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1745524781.207297,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"545c407bdcb5d35ec63d78f7a8878b00\",\"labels\":[],\"modified_at\":1745524781.207876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1745542172.503223,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18e492ba2733085e4e9f4ff0a5428df0\",\"labels\":[],\"modified_at\":1745542172.50526,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CO2 Alarm unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-CO2 Alarm-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.46243,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"747f703192d22d8ec8759bc94a1fce76\",\"labels\":[],\"modified_at\":1748219109.463014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.640996,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5198dc56db91ba7df5b10c7a015e581\",\"labels\":[],\"modified_at\":1748219109.655051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.685402,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb41fd2f446a5f8881e816b46c3f8feb\",\"labels\":[],\"modified_at\":1748219109.685973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.721723,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3d0012049fbeda8166b02790dc37b92\",\"labels\":[],\"modified_at\":1748219109.722298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.757491,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eba82b80d5619332290deb4a3efb5c84\",\"labels\":[],\"modified_at\":1748219109.758093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.785413,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5e763389817f6ec085e23be56ee54f5\",\"labels\":[],\"modified_at\":1748219109.792204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.110811,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee83713b4ec50e5a22b0f247fa5bc1c5\",\"labels\":[],\"modified_at\":1749590887.112776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.113208,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa86888ae5a955cc2ca0fb3ce1559700\",\"labels\":[],\"modified_at\":1749590887.11367,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.114151,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_shower\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"244d25b21371ef06dfbe70c38a8e3a27\",\"labels\":[],\"modified_at\":1749590887.11467,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.11557,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_shower_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"197264aec52c5bb54e81ebf28f841d6d\",\"labels\":[],\"modified_at\":1749590887.115711,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:82:fb:6a_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.694619,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"217b95c6b680c1836cdf60eb9da2f503\",\"labels\":[],\"modified_at\":1749590895.696348,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.697451,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003565fb8b8be878769578dc74c69752\",\"labels\":[],\"modified_at\":1749590895.699001,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.701685,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.matter_bath_toilet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a965f5cf56792192cef7e0ab7b9a31a7\",\"labels\":[],\"modified_at\":1749590895.703552,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.708213,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.matter_bath_toilet_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84160aed320a4e66dd6c9ad44039bd9b\",\"labels\":[],\"modified_at\":1749590895.708736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:83:1f:53_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"config_subentry_id\":null,\"created_at\":1750061075.141771,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49204eb2a92de917a9e42ff6f8f588f5\",\"labels\":[],\"modified_at\":1775870416.949195,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Master Bath Lights \",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180319,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_param027\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ea8e9374eae954b3bbd8d18020ca120\",\"labels\":[],\"modified_at\":1752102847.180555,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param027\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180971,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_separate_inputs_from_outputs\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca290e9cdd8d4d5d6b3073329b06547b\",\"labels\":[],\"modified_at\":1775490675.663286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Input Trigger\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.1822,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fb5086cf8fcc21f5e28d90e0db54c78\",\"labels\":[],\"modified_at\":1775490675.663838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"config_subentry_id\":null,\"created_at\":1759378690.394779,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"calendar.maya_school\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cca23ca8717983fe71c89426ca56c7b5\",\"labels\":[],\"modified_at\":1759378690.395441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maya school\",\"platform\":\"local_calendar\",\"translation_key\":null,\"unique_id\":\"01K6HJ8M54G71Y4477XK05AGBG\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386477.277947,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4097cd598a3a06c6f0daff8cad6ca79\",\"labels\":[],\"modified_at\":1759386477.279521,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1759386477130\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386507.028808,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be669aa5658d128e8ffcd6168710677f\",\"labels\":[],\"modified_at\":1759386579.806063,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387437.349538,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4820d645ddc7e05d31da79d542bdfe\",\"labels\":[],\"modified_at\":1759387437.351339,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"band day 2\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387072.988787,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_button.band_day_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3dc6766f5367c3f345af29958d10bc\",\"labels\":[],\"modified_at\":1768937321.234765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"collection\":{\"hash\":\"1b24d0ddf479ed85340a79f72c595317\"},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day 3\",\"platform\":\"input_button\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498155.515729,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_phone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c3949e0a3c86ebd635f939b4da67b68\",\"labels\":[],\"modified_at\":1760976737.49654,\"name\":\"Adam Phone\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"51e12b25d85b4b1e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.63507,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b25ffeb9832412e4729bc9a3554e791\",\"labels\":[],\"modified_at\":1774279284.833829,\"name\":\"Adam Phone Battery level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.848698,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bceafcf813f3d0c7f5875af49aa7014c\",\"labels\":[],\"modified_at\":1772691190.431663,\"name\":\"Adam Phone Battery state\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.380282,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52a1a4199f6226c81e7a9e280bf8a5c2\",\"labels\":[],\"modified_at\":1772691194.336662,\"name\":\"Adam Phone Charger type\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.561785,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f78b5a31c1f1797cecc8021a4bc283c\",\"labels\":[],\"modified_at\":1763016724.667262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.150666,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"753010fef896a676a949100adf1a5df3\",\"labels\":[],\"modified_at\":1760976737.499635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.996611,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093bf4d5f49f15e5238231d70b093df3\",\"labels\":[],\"modified_at\":1760976737.502342,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.632604,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b21e81370aec744ff4cef9a8bf0ef00\",\"labels\":[],\"modified_at\":1760976737.502738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.837407,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7107aad5e9b8e1943301af2a059e93ea\",\"labels\":[],\"modified_at\":1760976737.503069,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.908791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47c1557ded81eebf8aa0a96ac63d2841\",\"labels\":[],\"modified_at\":1760976737.503394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.362775,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29de90a8bd56b781a47d398184b68cb6\",\"labels\":[],\"modified_at\":1760976737.503709,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.387797,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b09b3df0b3a9f47a8e6eb4bb0725a8d\",\"labels\":[],\"modified_at\":1761859609.313035,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.086212,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"06c5550926c6fdd6b5ff1b6d10511768\",\"labels\":[],\"modified_at\":1760976737.504334,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.677976,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e02d2deb740d7a31ec1ac86e66289584\",\"labels\":[],\"modified_at\":1760976737.504647,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.113948,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e6cfd871a0249cfa6fcfa5cb067c22a\",\"labels\":[],\"modified_at\":1760976737.504954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.052956,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23b032cf9074ee4d0ccd20a2c7b170a8\",\"labels\":[],\"modified_at\":1760976737.505278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.298484,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"511534407bbe94e987b4e6b18616dbd7\",\"labels\":[],\"modified_at\":1760976737.505582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.564591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"630126c44d79334d10daaac76b3e6da6\",\"labels\":[],\"modified_at\":1760976737.505883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.859128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54186ed87499f0363a7a795031ac8091\",\"labels\":[],\"modified_at\":1760976737.506183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.072203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c107fd5dd3a23152c737aeacfb93f12e\",\"labels\":[],\"modified_at\":1760976737.506487,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.114625,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fc30dd8af197aa5604097778df128b90\",\"labels\":[],\"modified_at\":1760976737.506796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.74326,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a99fecae7b35c0c91c2d87db9221d854\",\"labels\":[],\"modified_at\":1760976737.507099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.11767,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa5f2c7ce053d4544cf8d6062e90490e\",\"labels\":[],\"modified_at\":1760976737.508044,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.804439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6473733425a0a0786d883979d5b4aa81\",\"labels\":[],\"modified_at\":1760976737.508353,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.173261,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_wi_fi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1794c62e4b88cb613114ae22f6763cc6\",\"labels\":[],\"modified_at\":1760976737.508622,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.044578,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42417c7948736cba9d2a5224ad710014\",\"labels\":[],\"modified_at\":1760976737.508885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.833075,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b941b110fe0ebe77e2578dbf0457db9a\",\"labels\":[],\"modified_at\":1760976737.509153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.523966,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"120365806cf1ad9034b62efe0f58c093\",\"labels\":[],\"modified_at\":1760976737.50941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.731496,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad43a289a78ae9decb7a8bb8636ec15b\",\"labels\":[],\"modified_at\":1760976737.509663,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.578065,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82b4fccab26e5f8d9dc5b863a430eabb\",\"labels\":[],\"modified_at\":1763016726.90644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.923363,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681210dd7cb2b664dfc7160e4b59f9e8\",\"labels\":[],\"modified_at\":1760976737.510166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.508973,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"76b86a4aaafcf69e892ab189d3a5a37d\",\"labels\":[],\"modified_at\":1760976737.51042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.354383,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1337823dd9fe63383689acfe28169998\",\"labels\":[],\"modified_at\":1763016726.688987,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.723152,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e043cb0b1e1d248cb65f41b026f07c34\",\"labels\":[],\"modified_at\":1760976737.510914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.143052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2be1edbc1804fca84d30e0ff2af37d3\",\"labels\":[],\"modified_at\":1763016727.38029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.53214,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f72f7f7a26dd97cc36f76faefadc3116\",\"labels\":[],\"modified_at\":1760976737.511404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.594056,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff782efae98210cfe14a22d3d01023bd\",\"labels\":[],\"modified_at\":1760976737.511651,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.047203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f003eadb014be21895e4c4dc182b09c1\",\"labels\":[],\"modified_at\":1760976737.511895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.846127,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9688273e8fc0f9d29c7fae09c089596d\",\"labels\":[],\"modified_at\":1760976737.512138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.422557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85a174f235fbda9b9cdd6ef97bdb64eb\",\"labels\":[],\"modified_at\":1760976737.512378,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.203052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8a9981a0cce9ee63b08edc8b74a776ca\",\"labels\":[],\"modified_at\":1760976737.512621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.726411,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ded137b29a2ac9791fc1f1d244796b0a\",\"labels\":[],\"modified_at\":1760976737.51286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.751762,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"750907f9a2ecaf511d6767527d52e002\",\"labels\":[],\"modified_at\":1760976737.513111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.94591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cd9c953d266dd30bc5eb3151a5f2f66\",\"labels\":[],\"modified_at\":1760976737.513705,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.654737,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ac1339b135ff5cb6054610e09599cd4b\",\"labels\":[],\"modified_at\":1760976737.513999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.100199,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6559562de9368b5176d4c2bab69341be\",\"labels\":[],\"modified_at\":1760976737.51426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.317375,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e5aa6887ffe1c9ba20be2f9dad865c9\",\"labels\":[],\"modified_at\":1760976737.514516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.522632,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2d58c1b05145799f6a0e942e418637b\",\"labels\":[],\"modified_at\":1760976737.514765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.816273,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff01611593ce914c8e55b99746ade7bb\",\"labels\":[],\"modified_at\":1760976737.515013,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.856176,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1df9caee459458f4261ba3769b30a2fd\",\"labels\":[],\"modified_at\":1760976737.515262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.027941,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84ef8a67d8861618e18ec8e2201925f9\",\"labels\":[],\"modified_at\":1760976737.515509,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.497115,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ef002fc4b535738730128cd41020e5dc\",\"labels\":[],\"modified_at\":1760976737.515764,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.248154,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b7742f63b3eca975967469453a345b\",\"labels\":[],\"modified_at\":1760976737.516015,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.542876,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d10a7204fe5e2ea0fa40d8ae5a3144b\",\"labels\":[],\"modified_at\":1760976737.516268,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.257567,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"685e196a4c4f6c3101615348fb51dd51\",\"labels\":[],\"modified_at\":1760976737.516516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.499288,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586179dae81f48674014b0857ed88ee4\",\"labels\":[],\"modified_at\":1760976737.516767,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.717817,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6034cd7356664dc063906e2f52a0a3\",\"labels\":[],\"modified_at\":1760976737.517018,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.94185,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"66165e96b66d1a023f8e8737fbe9e2d0\",\"labels\":[],\"modified_at\":1760976737.51728,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.528186,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ea8b6d6b10896ddbdf5ae9fafbbecc6\",\"labels\":[],\"modified_at\":1760976737.51753,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.252135,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385366fcc059b77a728168515f2586f2\",\"labels\":[],\"modified_at\":1760976737.517778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.461271,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f58c113ad08028f0af872124030c30f\",\"labels\":[],\"modified_at\":1760976737.518028,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498158.942049,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cba6a4bdd6a805551cc283b957b22e63\",\"labels\":[],\"modified_at\":1763016721.943079,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.192313,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2c38371850e50f3e5988540443f5c5d\",\"labels\":[],\"modified_at\":1760976737.51852,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.577028,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16f7fe2f79e1b1f0db02866ac85a4bc3\",\"labels\":[],\"modified_at\":1760976737.518771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.336206,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73631aa51e0e6a1d7794697379003876\",\"labels\":[],\"modified_at\":1760976737.519354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.260623,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"32245ba0b08e126f84726702cb6db8bc\",\"labels\":[],\"modified_at\":1761859609.314665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.171655,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0d32ff833fcd601cd32f482eb5f1c9a\",\"labels\":[],\"modified_at\":1760976737.519914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.382664,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7711c9412df10e8fe9452f68a7038e60\",\"labels\":[],\"modified_at\":1760976737.520171,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.610829,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a08d9ebbb81e0c3fc7a08d30d98e3b7e\",\"labels\":[],\"modified_at\":1760976737.520425,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.121172,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2cc61e1c263d63262ab756c2a5e9d31\",\"labels\":[],\"modified_at\":1760976737.520676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.498003,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81e3fb1a860e34c3494dbee1d95fe70f\",\"labels\":[],\"modified_at\":1760976737.520924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.21988,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3af3544de87e7dbab445e7a8029afa34\",\"labels\":[],\"modified_at\":1760976737.52119,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.731054,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db1336da12c043c7c61d784c7a622187\",\"labels\":[],\"modified_at\":1760976737.521439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.428907,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"553383b37e8d644518a821ebf99f99b3\",\"labels\":[],\"modified_at\":1760976737.521685,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.943883,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23a5abddd967354312c03855e037976f\",\"labels\":[],\"modified_at\":1760976737.521932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.518682,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0be097c7eb3dbe6aef6a25e3a6cd8ef\",\"labels\":[],\"modified_at\":1760976737.522174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.180681,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e09414a784c4b8a03feca8292b47fc\",\"labels\":[],\"modified_at\":1760976737.522426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.937301,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bfcdb749179ca990270164a9c1aace4c\",\"labels\":[],\"modified_at\":1760976737.52267,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.759405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f329d40f3cb4c98261ecbcca9d730f7\",\"labels\":[],\"modified_at\":1760976737.522917,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.012128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f894e57866a8b946f69234a7c97291\",\"labels\":[],\"modified_at\":1760976737.523164,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.284899,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"148c211961e1b76470e79174b4283b73\",\"labels\":[],\"modified_at\":1760976737.52341,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.985246,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f71e7d4f62b65e5450706d56114cc93f\",\"labels\":[],\"modified_at\":1760976737.523665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.763524,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d835075c5dbbd4973e040149a3f7514\",\"labels\":[],\"modified_at\":1760976737.523911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.601118,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d62adbd002ce98615faf711cc7a26d5f\",\"labels\":[],\"modified_at\":1760976737.524157,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.141649,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663371403a63a19124a1b4abc6b27be8\",\"labels\":[],\"modified_at\":1760976737.524405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.336255,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"112988ca48584654f5650f5359c7e4bc\",\"labels\":[],\"modified_at\":1763017007.83862,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.582052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a877e0462d77e8dd3e37703c0c12842c\",\"labels\":[],\"modified_at\":1760976737.525423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.843111,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e19e322d38c79279c958e4aa96c1dddd\",\"labels\":[],\"modified_at\":1760976737.525683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.275509,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00aca62e34295f7facd401ad154fe8e6\",\"labels\":[],\"modified_at\":1760976737.525937,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.858586,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33498cbeacef2dcdc4f033a0b26838cd\",\"labels\":[],\"modified_at\":1760976737.526188,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.07771,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e6c658d666885b7bcae24ba94db552e\",\"labels\":[],\"modified_at\":1760976737.526437,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.856422,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"607fc15e13eb6e05972e82df9e2b66c3\",\"labels\":[],\"modified_at\":1763016727.1138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.70849,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73bb92c35f39f034be36798feb770698\",\"labels\":[],\"modified_at\":1760976737.526939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.916128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28017fee78f1ddd7f4142211e16c0d30\",\"labels\":[],\"modified_at\":1760976737.528024,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.157067,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff11b226bb853a90c464d79f8178ce33\",\"labels\":[],\"modified_at\":1760976737.528323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.366557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40dd3bb633abe1862d801f81b3ce8980\",\"labels\":[],\"modified_at\":1760976737.528584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.978133,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9fce7d56272a707de807cc72548ee17a\",\"labels\":[],\"modified_at\":1760976737.530283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.801608,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"401a043f2c726c93b7b23b4564a1f94a\",\"labels\":[],\"modified_at\":1760976737.53057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.02263,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28e13521bf85269ec4c9f0a082f0c6b7\",\"labels\":[],\"modified_at\":1760976737.530838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.345391,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b190136a43f7bcf64e68901f7d275935\",\"labels\":[],\"modified_at\":1760976737.531099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.594556,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"951499259e3906795a24cd53fc3d1249\",\"labels\":[],\"modified_at\":1760976737.531357,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.156068,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f6bc7f4a033172190b30075550a37521\",\"labels\":[],\"modified_at\":1760976737.531615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.285791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"404a79d1477c10408dde8e055ae80b2e\",\"labels\":[],\"modified_at\":1760976737.531871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.353564,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b1f9968e09762e9bda52a6df2fbd23c7\",\"labels\":[],\"modified_at\":1763016724.247126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.78676,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e40f6aa713fca29f4bd8a635509859c\",\"labels\":[],\"modified_at\":1760976737.532386,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.7486,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df9290d342500fe2636c79ddbc9952bd\",\"labels\":[],\"modified_at\":1760976737.53264,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.96248,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d61cf3fe32f5fe3b39fa7ec9dae68b7\",\"labels\":[],\"modified_at\":1760976737.532893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.23677,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9aa7c0a93561eb0c9c492db8575a1989\",\"labels\":[],\"modified_at\":1760976737.53315,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.443444,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e929af2da1a8fd0c0c9e2eb613c88c3f\",\"labels\":[],\"modified_at\":1760976737.533399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.176575,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b2353cba1cfc2ba0270b144f2043de0\",\"labels\":[],\"modified_at\":1760976737.533645,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.397439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1af3533513a0c5338f0e1f7900eaf9e5\",\"labels\":[],\"modified_at\":1760976737.533893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.507945,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18af8f2d02f6418723e32a510e19391c\",\"labels\":[],\"modified_at\":1760976737.534144,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.906106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"144ae42445c05a952df5ef29aa014a17\",\"labels\":[],\"modified_at\":1760976737.534396,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.18106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62bfd57e3cb228991c9b903d59e6587f\",\"labels\":[],\"modified_at\":1760976737.534646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.176689,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c294c624ab78af85b8acb03e41009e22\",\"labels\":[],\"modified_at\":1760976737.534894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.73368,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b20652958edaaf0ef0042d2a97318da\",\"labels\":[],\"modified_at\":1760976737.535255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.515405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f69443e387af0b10bf4cffad511cab3e\",\"labels\":[],\"modified_at\":1760976737.535554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.963861,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"57e733b28e1a7f745cd42b1588ea7b92\",\"labels\":[],\"modified_at\":1760976737.535819,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.383975,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3757ce7c4b5a7037d34b233e1626b5bb\",\"labels\":[],\"modified_at\":1760976737.536076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.520076,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d093158049a91d9ec6342c460f7697d\",\"labels\":[],\"modified_at\":1760976737.536331,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.290619,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b54445aea1c6b5a23c7a7f8756d331f\",\"labels\":[],\"modified_at\":1760976737.536584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.432903,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41dc6b0212fa61d780912d275265cd1a\",\"labels\":[],\"modified_at\":1760976737.536834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.76291,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49e886aeaca51ef663020c9d6adedd4d\",\"labels\":[],\"modified_at\":1760976737.537084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.966045,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"97423ae7ee25d6b9c6138c20f803937d\",\"labels\":[],\"modified_at\":1760976737.537345,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.640943,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"641af75b3fbe0762c553b05543247e0a\",\"labels\":[],\"modified_at\":1760976737.537592,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.578752,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f98be744eca04298b701b1d066cf33f2\",\"labels\":[],\"modified_at\":1761584275.553227,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.584734,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"38be44c9b9441e8136de779aff02c4d4\",\"labels\":[],\"modified_at\":1761584275.555476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.625112,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eaaa8aa99a75156fd029e017b2345aa3\",\"labels\":[],\"modified_at\":1761584275.60354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.675625,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70710798be185d2ee29eb867eb9f8222\",\"labels\":[],\"modified_at\":1761584275.644775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.796301,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param019\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5c6e0fb47a0136310e04a22d88fc83\",\"labels\":[],\"modified_at\":1761667162.796517,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param019\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.797016,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_param020\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e23bda23aa0ac99b0116586ea0a1b92\",\"labels\":[],\"modified_at\":1761667162.797168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param020\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1761667201.291363,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87fb7ada2339f2039551943482ae1358\",\"labels\":[],\"modified_at\":1761667201.292122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1761667192807\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c2862a4df8f6bd691cf5d04a6dfd54c\",\"labels\":[],\"modified_at\":1761690295.874343,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Headphones connected\",\"platform\":\"roku\",\"translation_key\":\"headphones_connected\",\"unique_id\":\"YJ002K604601_headphones_connected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7cd833409d36d7f019fd3e2c56a3099f\",\"labels\":[],\"modified_at\":1761690295.875222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports AirPlay\",\"platform\":\"roku\",\"translation_key\":\"supports_airplay\",\"unique_id\":\"YJ002K604601_supports_airplay\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a220cc398a638aa2eab462c5dc09595\",\"labels\":[],\"modified_at\":1768937324.483172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports Ethernet\",\"platform\":\"roku\",\"translation_key\":\"supports_ethernet\",\"unique_id\":\"YJ002K604601_supports_ethernet\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6165850622ccf0780a12cb93f99fbe6b\",\"labels\":[],\"modified_at\":1761690295.876894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports find remote\",\"platform\":\"roku\",\"translation_key\":\"supports_find_remote\",\"unique_id\":\"YJ002K604601_supports_find_remote\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d7e470b926897e7baf7da15c69c1a5f\",\"labels\":[],\"modified_at\":1772591841.640657,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3921d505142fc5a908c983dbda85e39\",\"labels\":[],\"modified_at\":1761690295.882215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.living_room_tv_application\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be671b5fc39f53da44534bf656ccfcbc\",\"labels\":[],\"modified_at\":1774121824.587607,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Application\",\"platform\":\"roku\",\"translation_key\":\"application\",\"unique_id\":\"YJ002K604601_application\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b34030d711baecbca2bd7babbb9523f4\",\"labels\":[],\"modified_at\":1761690295.884134,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app\",\"platform\":\"roku\",\"translation_key\":\"active_app\",\"unique_id\":\"YJ002K604601_active_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6a7cd59919db06d42748a1849f35440\",\"labels\":[],\"modified_at\":1761690295.885026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app ID\",\"platform\":\"roku\",\"translation_key\":\"active_app_id\",\"unique_id\":\"YJ002K604601_active_app_id\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1762452953.450373,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"353b8458de409f30f3da7f59dd2279ae\",\"labels\":[],\"modified_at\":1762452953.451146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room TV - Off - Idle\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1762452936157\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.79738,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4bc33ac1bdf05a5a4ad0efe2cf243cd\",\"labels\":[],\"modified_at\":1766477279.797958,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.80.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.798349,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a14d2d0b96e1d99308488b35cfe32d6b\",\"labels\":[],\"modified_at\":1766477279.798784,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.80.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799203,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"acd5e1535a0b58f433b138c0b6faf421\",\"labels\":[],\"modified_at\":1766477279.799355,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799642,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"378e7086f5619183bd617e93465aa802\",\"labels\":[],\"modified_at\":1766477279.799778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800052,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d59fdf37e7ce07ae033e5e4a7871a74\",\"labels\":[],\"modified_at\":1766477279.80019,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800465,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"042c7a9cd428a17c8fedf3be0152a3be\",\"labels\":[],\"modified_at\":1766477279.800606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800883,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f68eb2507739535d9913773ab943d15f\",\"labels\":[],\"modified_at\":1766477279.801023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.80.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.80138,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3369734c52812a3a3ee4bbe2560f1ad\",\"labels\":[],\"modified_at\":1766477279.801562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.80.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.801858,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd7ddf313a54743de6d1f72a3d7bd312\",\"labels\":[],\"modified_at\":1768937324.809754,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.80.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.802282,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62306b73556be6a658a2970154edf24b\",\"labels\":[],\"modified_at\":1766477279.803236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.80.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.228835,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce76270335388122109676234797a801\",\"labels\":[],\"modified_at\":1766477296.229428,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.229892,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21621c315a84182b4f410308413f7b21\",\"labels\":[],\"modified_at\":1768937324.853995,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.23085,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75446919eaeef4477c5765e479030bd7\",\"labels\":[],\"modified_at\":1768937324.85453,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.231761,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2adf7a33a0ac224ec14b279aa8347cdf\",\"labels\":[],\"modified_at\":1766477296.232285,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.232869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"352a62902d4625293870ccad5a0e8ce7\",\"labels\":[],\"modified_at\":1768937324.855306,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.233759,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"959edfed6f06b47aa8cfffad60cb3b27\",\"labels\":[],\"modified_at\":1768937324.855699,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.234957,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e94b9747cdafaf5de7e0065d9bea1787\",\"labels\":[],\"modified_at\":1766477296.235117,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.235534,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d032c73c25b557c150eb9a1554ab27a8\",\"labels\":[],\"modified_at\":1766477296.235674,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236042,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b282d98fd058c4a3fc14cd5cab2ed0d\",\"labels\":[],\"modified_at\":1769099101.051939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_energy_kwh_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03aba463e32ff9cd002a085bc096c2a7\",\"labels\":[],\"modified_at\":1766477296.236667,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy (kWh) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_current_a_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44ed91985e8e2345c6d85aa23ca1ebcc\",\"labels\":[],\"modified_at\":1769099101.052448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current (A) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-35\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237544,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_voltage_v_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8c9afc6dd91370538afa4d09be302d2\",\"labels\":[],\"modified_at\":1769099101.052763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage (V) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238041,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_overload_protection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24702ae99561a23fa90891c83b007f12\",\"labels\":[],\"modified_at\":1766477296.238175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Overload Protection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238538,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a643dcd0c18ea735dc117372cbd9c4\",\"labels\":[],\"modified_at\":1766477296.238676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9278543cbfa4150cf96b9825a399dce\",\"labels\":[],\"modified_at\":1766477296.239179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a20c9254c9e99e639df912c45870f78\",\"labels\":[],\"modified_at\":1766477296.239678,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24004,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9f5c165e12ba64506d0eaf24e58fd09\",\"labels\":[],\"modified_at\":1766477296.240905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241404,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a8223d52922cf9b4adff20414916eee\",\"labels\":[],\"modified_at\":1766477296.241556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241944,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39ecfec962692eccc82d3081e479f8b4\",\"labels\":[],\"modified_at\":1766477296.242085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242445,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"91b749f9293951042533d2401e898b94\",\"labels\":[],\"modified_at\":1766477296.24258,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242942,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e391e07c8a08dd2a25df2be663bcfbac\",\"labels\":[],\"modified_at\":1766477296.243077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243424,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3c85d30cdac3aafebede8607197ce65\",\"labels\":[],\"modified_at\":1766477296.243556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243913,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dacd0709ac8eb1359a94e7710f78784\",\"labels\":[],\"modified_at\":1766477296.244051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244403,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b054386465dab5e8e5b9b8d7c18d91df\",\"labels\":[],\"modified_at\":1766477296.244534,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244894,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f902120e1bceb78e61c17590fe38269\",\"labels\":[],\"modified_at\":1766477296.245029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245392,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fad06e4d9f3d509906b6338e4b79a65\",\"labels\":[],\"modified_at\":1766477296.245527,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245884,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68d921eab0fa608d5f6c2dadd993dccd\",\"labels\":[],\"modified_at\":1766477296.246023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.246994,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b090c9d937ff7066c525cc564347a594\",\"labels\":[],\"modified_at\":1766477296.247152,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24754,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2b9a5eb299f5a41546cecb74eb4db\",\"labels\":[],\"modified_at\":1766477296.24768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248038,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ead661391dda43c8a9cff95e08d325f9\",\"labels\":[],\"modified_at\":1766477296.248173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f79cf7061a486a5938ef84ca4f41ca3f\",\"labels\":[],\"modified_at\":1766477296.248675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da59ba2e721740da07c9e1fce8eeb446\",\"labels\":[],\"modified_at\":1766477296.249177,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b311235ba306b94712f179b47a13304\",\"labels\":[],\"modified_at\":1766477296.24968,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.250039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eed8930162c1f50fb3efa88ed014a90\",\"labels\":[],\"modified_at\":1766477296.250175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25053,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"943fe31b185242de7233f509c6714ad4\",\"labels\":[],\"modified_at\":1766477296.250661,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251018,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e41a3fe1c2e739c5c0b08c01ba04964\",\"labels\":[],\"modified_at\":1766477296.251151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.2515,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f339b2e6b6df648e6ca92d60bf56623\",\"labels\":[],\"modified_at\":1766477296.251636,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251984,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19bb03a5b1ae0e40e13d9da02ae88aa0\",\"labels\":[],\"modified_at\":1766477296.253395,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.253836,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97b7a04a80a5cdf61867e56d866b6dce\",\"labels\":[],\"modified_at\":1766477296.253989,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.254358,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f60a5f4e92244effdf0936a193c2e55\",\"labels\":[],\"modified_at\":1766477296.2545,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25486,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eb52f03fe8467f94f87c777a7a350c0\",\"labels\":[],\"modified_at\":1766477296.254997,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255351,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_usb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cc335594f81afccba401289b6b502d8\",\"labels\":[],\"modified_at\":1768937324.860358,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (USB)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-34\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255867,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cc3f8a76c39d2050f2ca01c684f502d\",\"labels\":[],\"modified_at\":1766477296.256325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Over-load status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.256729,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45740620b4805cce189bb1ae036fcd9b\",\"labels\":[],\"modified_at\":1766477296.257184,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Over-load detected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.257687,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04246652716b229857e01efec2e38e67\",\"labels\":[],\"modified_at\":1766477296.257835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25825,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63039bbbd456696f096140397e346135\",\"labels\":[],\"modified_at\":1766477296.258392,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.259279,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63ad70871975f5f5d34c36a3bc238c67\",\"labels\":[],\"modified_at\":1766477296.259764,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.260212,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c3075512fe6a8b1b0fcb12082a49d76\",\"labels\":[],\"modified_at\":1768937324.86197,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.261175,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"568c6e02c40f5c3a555cdd0db313a4de\",\"labels\":[],\"modified_at\":1768937324.862516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262093,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b395a875cae5455761476ff388705320\",\"labels\":[],\"modified_at\":1768937324.862985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262992,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f06ff5e731abcb200fdf4ce8c56d7a8b\",\"labels\":[],\"modified_at\":1768937324.863363,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.263832,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37ae354122a69445674d2c8a74c662e3\",\"labels\":[],\"modified_at\":1766477296.264255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.265295,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2531dc116e28190045ae5672d09ebe3\",\"labels\":[],\"modified_at\":1768937324.866356,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.266195,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6f6c69f0ddef207889934c80289ca86\",\"labels\":[],\"modified_at\":1766477296.26662,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267047,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc336050e207d78bd1ba0f3bba28051a\",\"labels\":[],\"modified_at\":1768937324.867025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267979,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe9d9f695586d322624d93d749bbcc61\",\"labels\":[],\"modified_at\":1768937324.867472,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.26889,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"01988ea7826bbd8f6ed128469da20098\",\"labels\":[],\"modified_at\":1766477296.269415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.270015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf8ef299aa298fd3248a48bac27ac029\",\"labels\":[],\"modified_at\":1768937324.868225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.271554,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c97f990f08dbf8bfb2e36f79dcf8ce3f\",\"labels\":[],\"modified_at\":1768937324.868598,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.272394,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a2d1328c988166cd19fcc662a187aa9\",\"labels\":[],\"modified_at\":1766477296.272806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-4-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.273243,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50a06ac0b5cc38dd737642d4c89a7b51\",\"labels\":[],\"modified_at\":1768937324.869253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.274164,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d375f897f48b0c3979382b79f793ce7c\",\"labels\":[],\"modified_at\":1768937324.869703,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.275064,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66472225aa97981e6655a6197be3821e\",\"labels\":[],\"modified_at\":1766477296.275574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.276183,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaaeda5a465e1272738851dfaca0bb89\",\"labels\":[],\"modified_at\":1768937324.870776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.278333,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0e4675689b5404d93f71ebfc1d7379f\",\"labels\":[],\"modified_at\":1768937324.871166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.279172,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7093c72b49a8f2d940f6b823759f028\",\"labels\":[],\"modified_at\":1766477296.279589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-5-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.280015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da6ce7565775e6386bc5449a208859de\",\"labels\":[],\"modified_at\":1768937324.871832,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.28095,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0ebf85251bc2805df5a1617f98725cf\",\"labels\":[],\"modified_at\":1768937324.872271,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.281873,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416e2d0423d1f41bd4b56b6bd81b964f\",\"labels\":[],\"modified_at\":1766477296.282883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.283571,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee94a4c4b5043f4b3107f935049eba10\",\"labels\":[],\"modified_at\":1768937324.873009,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.284479,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1f1ce22f894ebe0933234d04a843de8\",\"labels\":[],\"modified_at\":1768937324.873387,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.285287,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c0cacfb741929580682337f02a692ff3\",\"labels\":[],\"modified_at\":1766477296.285701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-6-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286074,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"537517b1a5530389a93a15939111bc6d\",\"labels\":[],\"modified_at\":1768937324.873956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-6-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2db9999532c1e7a9ed05488f029cf7f\",\"labels\":[],\"modified_at\":1766477296.287284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-7-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.287657,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e343a71bdbc71812276c9427c7be85b\",\"labels\":[],\"modified_at\":1768937324.874499,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-7-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.289939,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa5a18f80f779019ca3f23d010909f4d\",\"labels\":[],\"modified_at\":1766477296.290448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477441.695525,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd09b25c9105ef44432c19688ac32e1\",\"labels\":[],\"modified_at\":1768937324.865485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477542.697583,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"faa614fa04d30ee895cd1ff09546164d\",\"labels\":[],\"modified_at\":1768937324.865972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":1768937323.145127,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17e0ae17cdd955a63df94aadb4a81bca\",\"labels\":[],\"modified_at\":1768937323.145187,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46291,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_avg_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7600251cc55099e6789858d8dd0c6b54\",\"labels\":[],\"modified_at\":1768937324.462981,\"name\":null,\"options\":{},\"original_name\":\"Avg. signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.463148,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99723fdd7485a7d6bb927d5bc468a2a9\",\"labels\":[],\"modified_at\":1768937324.463195,\"name\":null,\"options\":{},\"original_name\":\"Signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46361,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.zwave_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b8620184feb8e076a3dcbc4862fa35d\",\"labels\":[],\"modified_at\":1768937352.32353,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.686858,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd5c271fa69e1cb2e08837126e390603\",\"labels\":[],\"modified_at\":1768957339.60269,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.690717,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"06894aa51ff0e9d62478d9bfb5d6b7d1\",\"labels\":[],\"modified_at\":1769108140.491853,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.691308,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632aed480ee30ce82ac8ba8afd55e91f\",\"labels\":[],\"modified_at\":1769108140.492738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.71521,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eab179038325dced95da0495d530c83\",\"labels\":[],\"modified_at\":1768937352.324438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.715894,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69ac603ee53e2fa3e583a9e7e61979e5\",\"labels\":[],\"modified_at\":1768937352.324557,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.776916,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"944905c91677260a69d3c4fb169af92f\",\"labels\":[],\"modified_at\":1768937352.324779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.785768,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"141eddff457c88321aa49743e5165cb7\",\"labels\":[],\"modified_at\":1775491285.628223,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1768937325.683515,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"803942d09c418a98aae2af768bde2657\",\"labels\":[],\"modified_at\":1768974704.217654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":1768937332.413279,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_preset_position\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79c985bf4b12ca603756fd8c2f4d00fe\",\"labels\":[],\"modified_at\":1768937357.407137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Preset Position\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_preset_position\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.683464,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18d7f0c9095f29d981bfa5129a5c8719\",\"labels\":[],\"modified_at\":1768937355.683876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684339,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23798e61c080b6b8bb9292d41b753ebd\",\"labels\":[],\"modified_at\":1768937355.684708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684947,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0506bfac83008cc2d1ce31972a6f2785\",\"labels\":[],\"modified_at\":1768937355.685312,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.685556,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4b56bbe1e3393cda2a02b5958aa3772\",\"labels\":[],\"modified_at\":1768937355.685892,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.68613,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f334207a3706ffc4bdea3fcc21b27f0\",\"labels\":[],\"modified_at\":1768937355.68646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f91be395aa637b853783d80af21df6ea\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88f797601578a44b7f18fe2d310f5c8f\",\"labels\":[],\"modified_at\":1768937820.170123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:26:9F-light-front_porch_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.729653,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_external_switch_multiple_click_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"911f689ea83e4f559f934622cbfaf55e\",\"labels\":[],\"modified_at\":1769099083.729723,\"name\":null,\"options\":{},\"original_name\":\"External Switch: Multiple Click Detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.743385,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34c37d47d0530bffe97567dab6f0a423\",\"labels\":[],\"modified_at\":1769099083.743449,\"name\":null,\"options\":{},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.058963,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c34673f93ef0696b560de0710c886316\",\"labels\":[],\"modified_at\":1769326461.249458,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061192,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34a76e058ab3f8062606e039bb6f7d75\",\"labels\":[],\"modified_at\":1769326461.349576,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061905,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"327d27c3b2d11d6b5ed0a7c67feae89c\",\"labels\":[],\"modified_at\":1769326461.949935,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [A] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.476924,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.overseerr_last_media_event\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1241c0fd94296f38dd4beef033a35d11\",\"labels\":[],\"modified_at\":1769188672.47763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last media event\",\"platform\":\"overseerr\",\"translation_key\":\"last_media_event\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-media\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.478287,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bbb89d6744aa52101d6b2d634dd3a3d2\",\"labels\":[],\"modified_at\":1769188672.478886,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total requests\",\"platform\":\"overseerr\",\"translation_key\":\"total_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.479308,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_movie_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25b77947e4e5901105419056fabf10a0\",\"labels\":[],\"modified_at\":1769188672.479959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Movie requests\",\"platform\":\"overseerr\",\"translation_key\":\"movie_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-movie_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.480365,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_tv_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d94898a7d080d06b0f08ca6451625f7\",\"labels\":[],\"modified_at\":1769188672.480955,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TV requests\",\"platform\":\"overseerr\",\"translation_key\":\"tv_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-tv_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.481447,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_pending_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e190d80632de506998d2cef0552efc3\",\"labels\":[],\"modified_at\":1769188672.482418,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pending requests\",\"platform\":\"overseerr\",\"translation_key\":\"pending_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-pending_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.482777,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_declined_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fc5b3ab324f29fd3454426a63274bc4\",\"labels\":[],\"modified_at\":1769188672.483266,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Declined requests\",\"platform\":\"overseerr\",\"translation_key\":\"declined_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-declined_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.483584,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_processing_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6304a3cd9a5400d32e011d1a277523a3\",\"labels\":[],\"modified_at\":1769188672.484082,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Processing requests\",\"platform\":\"overseerr\",\"translation_key\":\"processing_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-processing_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.484437,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_available_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f9e7f08d9c31ca040fa2066e660551\",\"labels\":[],\"modified_at\":1769188672.484959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Available requests\",\"platform\":\"overseerr\",\"translation_key\":\"available_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-available_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.485331,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00735f8a4a910a0d1254f132ba93de9a\",\"labels\":[],\"modified_at\":1769188672.485849,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total issues\",\"platform\":\"overseerr\",\"translation_key\":\"total_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.486201,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_open_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8ccc6de99805f93f168264e67c712ca\",\"labels\":[],\"modified_at\":1769188672.486713,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open issues\",\"platform\":\"overseerr\",\"translation_key\":\"open_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-open_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487069,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_closed_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc5f4929fb61b84f1593ac32c2e1396e\",\"labels\":[],\"modified_at\":1769188672.487587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed issues\",\"platform\":\"overseerr\",\"translation_key\":\"closed_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-closed_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487953,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_video_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c23a9db4525e8ccd6821507bbce056d\",\"labels\":[],\"modified_at\":1769188672.488474,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Video issues\",\"platform\":\"overseerr\",\"translation_key\":\"video_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-video_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.488825,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_audio_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1677624b1402c112c6e4345588afb313\",\"labels\":[],\"modified_at\":1769188672.489362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Audio issues\",\"platform\":\"overseerr\",\"translation_key\":\"audio_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-audio_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.489714,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c90b1860175195d2a23fccb791504ca0\",\"labels\":[],\"modified_at\":1769188672.490236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Subtitle issues\",\"platform\":\"overseerr\",\"translation_key\":\"subtitle_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-subtitle_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912183.185244,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34a32d14426d3e169ae057627439d98d\",\"labels\":[],\"modified_at\":1771912183.186014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - Off - Timeout\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912170361\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912395.891354,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"773273d151b8c8d49b92ee8627d586d2\",\"labels\":[],\"modified_at\":1771912395.892381,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - On - Door Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912391140\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.625986,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b07a6abab79d073c5be007066b3a3b6d\",\"labels\":[],\"modified_at\":1774116424.626947,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bed Occupied Stable\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bed_occupied_stable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.627238,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6fda5463b7f7691786174b39cbc043\",\"labels\":[],\"modified_at\":1774116424.627924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bedroom Motion Confirmed\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bedroom_motion_confirmed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.957554,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3e5033899feeede780f2808f7b73e24\",\"labels\":[],\"modified_at\":1774116432.958181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.958454,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_nap_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b706a2024115adbf2d36028c6713abcf\",\"labels\":[],\"modified_at\":1774116432.958992,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Nap Detection\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.14926,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4563dd8ceda742b1447360a08afd99e7\",\"labels\":[],\"modified_at\":1774138030.911495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149593,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2d62fcd0d6717798722ba043bce9d40\",\"labels\":[],\"modified_at\":1774138030.911857,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149824,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"806b34a0f2af42d04d3883b58f48a6ef\",\"labels\":[],\"modified_at\":1774138030.912047,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"58122b4c7d81745a9de83d7435a88559\",\"labels\":[],\"modified_at\":1774138030.912215,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150246,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46650fb68d9b63404a046c228467c62c\",\"labels\":[],\"modified_at\":1774138030.912379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150448,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8b8c08c11a816b5e91c5d45b883066e\",\"labels\":[],\"modified_at\":1774138030.912537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150653,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a94089b7222280376a7dad9ef1bf2a92\",\"labels\":[],\"modified_at\":1774138030.912696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152103,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa674acc6fb02b01c66b3433930e2d01\",\"labels\":[],\"modified_at\":1774138030.91286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152289,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5a7edad01fc39a518660614518bcdf2\",\"labels\":[],\"modified_at\":1774138030.913011,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.154985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d16f049693b501d63ea5473129d3198e\",\"labels\":[],\"modified_at\":1774138030.9132,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1pct\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.155394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bffe32a5b8efb97c7c5e604c2bc2abc4\",\"labels\":[],\"modified_at\":1774138030.913358,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_halloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.156076,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54146ec2dbaad8902fd311d6c18d996b\",\"labels\":[],\"modified_at\":1774138030.913521,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.15684,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d740742a1b722377a0897440fd402bbe\",\"labels\":[],\"modified_at\":1774138030.913681,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a62870971ca19efe980ffc144f1a1899\",\"labels\":[],\"modified_at\":1774138030.913831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157231,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"949278d55db1a4d8246fa35f91e617f2\",\"labels\":[],\"modified_at\":1774138030.913979,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Day\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157424,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"276ef5e2cd3663a6236c81c36f446fc6\",\"labels\":[],\"modified_at\":1774138030.914128,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Night\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_night\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157587,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a84f593ccf99ee4dedf54fd732754e2c\",\"labels\":[],\"modified_at\":1774138030.914274,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774138612.949732,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mushroom_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d59320285d90702b2c855475ee95639e\",\"labels\":[],\"modified_at\":1774138612.950796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mushroom update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774139555.128573,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mushroom_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c33c28bb04498effba938ec97b5b805\",\"labels\":[],\"modified_at\":1774139555.128638,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140343.854706,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mini_graph_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56350d9930148e8fd5d61e880540724\",\"labels\":[],\"modified_at\":1774140343.855222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"mini-graph-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140477.398217,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mini_graph_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d58d70df50c79d3213bbf8236a5fe6ce\",\"labels\":[],\"modified_at\":1774140477.398278,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.352598,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681707778436ce05e7199951846ef14d\",\"labels\":[],\"modified_at\":1775489223.761484,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.421699,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c98623c4f1d03a6794ba466def6392\",\"labels\":[],\"modified_at\":1775489223.761621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.690469,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30c8f6f016a9a07d3072df92bf9c837f\",\"labels\":[],\"modified_at\":1775489223.761751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.769537,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fec7537b3f51428841c6f12821476333\",\"labels\":[],\"modified_at\":1775489223.761895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.155983,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4f68f200753e31f0a21132e2ff02e3c\",\"labels\":[],\"modified_at\":1775489223.762023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.222085,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf10bec5854978fe997fc5eb6d1db426\",\"labels\":[],\"modified_at\":1775489223.76215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354869.951525,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dbb9d05d05fcd2ca67c6fd8472bab9eb\",\"labels\":[],\"modified_at\":1775489223.762284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354870.020436,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd61a8fe509fc46135e34167d34e5b3\",\"labels\":[],\"modified_at\":1775489223.762414,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355638.331143,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5144d05444588d3e7a500ac509fae21e\",\"labels\":[],\"modified_at\":1775489223.762539,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355657.972878,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a3162680c956e4ed166e74ca65dbf31\",\"labels\":[],\"modified_at\":1775489223.762673,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356334.664723,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73fe68c3f5230ab53809f13454c7f7ce\",\"labels\":[],\"modified_at\":1775489223.762806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.604859,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f0456298a746305de2207d41a214c7\",\"labels\":[],\"modified_at\":1775489223.76293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.686933,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9e93e6a89fec209b2154e4b4aa5c0\",\"labels\":[],\"modified_at\":1775489223.763054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.039186,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3725b439d15a4d1e0e0b8ef16c5bcec8\",\"labels\":[],\"modified_at\":1775489223.763189,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.114222,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09f3eb747f5823fe21b96763355a9fd3\",\"labels\":[],\"modified_at\":1775489223.763316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.671129,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4cb866d53da98bac0fdd3d9a50958c1\",\"labels\":[],\"modified_at\":1775489223.763449,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.73551,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bdb1093192bc6e83a24ef3ef98ef251a\",\"labels\":[],\"modified_at\":1775489223.763579,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.683881,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"17948118ea0453a21060b9ac3c3bd35f\",\"labels\":[],\"modified_at\":1775489223.763821,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.752892,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2bf26cdc24ddb324070b32bf95efb\",\"labels\":[],\"modified_at\":1775489223.763949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.611255,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2de2190bdb6019e1ebaf8f9f6db56d92\",\"labels\":[],\"modified_at\":1775489269.20277,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reset total energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_reset_total_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.720667,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2b188397cf5cf91ade7924d39597fc\",\"labels\":[],\"modified_at\":1775489254.288937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn off\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_off_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.725676,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ba3493529496e8be49faa472f4272\",\"labels\":[],\"modified_at\":1775489254.289157,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn on\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_on_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.730362,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817a29630544a8935b5b5208cfad3a6a\",\"labels\":[],\"modified_at\":1775491843.189477,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power rise threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_rise_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.735072,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb512790cefd801f44d3170bcbe18fb3\",\"labels\":[],\"modified_at\":1775491843.201122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power drop threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_drop_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.782524,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f1e618efc7019719ba1c008909ae61b\",\"labels\":[],\"modified_at\":1775489269.203071,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power-on behavior\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_on_behavior_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.808614,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a65df0e6618f2527a49b04cb44ddc8d\",\"labels\":[],\"modified_at\":1775586383.664326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.810039,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6da142d344b25e493d4e7150811898a9\",\"labels\":[],\"modified_at\":1775489269.20327,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":1},\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.81576,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6fd914af279d2e8f766c6a3ff2de023\",\"labels\":[],\"modified_at\":1775489269.203513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_humidity_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.817887,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_pressure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd3458814c78abb0afee054f005cdd78\",\"labels\":[],\"modified_at\":1775489308.697985,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Atmospheric pressure\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_pressure_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.819624,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b51cd3241371b7561f77450e43672efb\",\"labels\":[],\"modified_at\":1775492079.877324,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.821311,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89221a788e97735b88a9981fc28d3fbe\",\"labels\":[],\"modified_at\":1775489227.821354,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.822693,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_power\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0950382cdf5c1ae4e598bc5443a02839\",\"labels\":[],\"modified_at\":1775520590.696024,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.825626,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d9bb9d1c71c5dd2c20a45dc1b6dea2c\",\"labels\":[],\"modified_at\":1775491830.269932,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.828464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07990395421c102974cefa27b6a9b997\",\"labels\":[],\"modified_at\":1775489254.291151,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Frequency\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_ac_frequency_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.830508,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_power_factor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7fffd049106dfd91742c2374ec66011a\",\"labels\":[],\"modified_at\":1775489227.830555,\"name\":null,\"options\":{},\"original_name\":\"Power factor\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_factor_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.832056,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b1f2d89a6fa56eaa6ebd7a325233c5b\",\"labels\":[],\"modified_at\":1775520597.935816,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_current_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.833866,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1dec75cbe9a7ba93bf0f0846e5fe5fac\",\"labels\":[],\"modified_at\":1775525154.098723,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.836162,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbdff817ee00883d0aa353adead094b5\",\"labels\":[],\"modified_at\":1775489227.83621,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.84296,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1de84ba2dcb17a277ea97a987f467d07\",\"labels\":[],\"modified_at\":1775489269.203705,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.844464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3be8da09eeb8e0acc452fa4a9ba78a5\",\"labels\":[],\"modified_at\":1775489269.203885,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Metering only mode\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_metering_only_mode_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.850014,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcee0811885c8854563443ba4dced1ab\",\"labels\":[],\"modified_at\":1775489306.418611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1775549231.594472,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_vibration_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9db7f91c5b54278bf3f7a80f5df91bc\",\"labels\":[],\"modified_at\":1775549231.594723,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.825542,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5077add4bf45e912a2ef646bae511f14\",\"labels\":[],\"modified_at\":1775678362.82721,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.827502,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f3761580a85a1bd3953bddb2c989d35\",\"labels\":[],\"modified_at\":1775678362.828154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000004\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.828418,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be7a1d87aaf721c4188bf8bec50329f4\",\"labels\":[],\"modified_at\":1775678362.828943,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000005\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.37481,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167b598bb2635889c041d73857d27990\",\"labels\":[],\"modified_at\":1775868913.129506,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.376546,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa1b588575b52fe468f5b0b654084236\",\"labels\":[],\"modified_at\":1775868913.130469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.613679,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00cfdcc6fd718b086b498d183ec763fe\",\"labels\":[],\"modified_at\":1775868913.131303,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.615726,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb552019b26731f2c51b5b208e46821\",\"labels\":[],\"modified_at\":1775875660.872463,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.618016,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a715ee29ebb812ad53ff3962471973c\",\"labels\":[],\"modified_at\":1775868886.618058,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.61896,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fed74cd33f82ba6c78036a9cebbf06\",\"labels\":[],\"modified_at\":1775868913.133053,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62005,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6aa5184211eb3c2d8ccd38a3b494e66f\",\"labels\":[],\"modified_at\":1775872197.350263,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62157,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62526651242478435d1e767d473d0b01\",\"labels\":[],\"modified_at\":1775868886.621614,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.622608,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c40a87b4581f5eae3d7a6360360a4fc\",\"labels\":[],\"modified_at\":1775868913.13455,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.624775,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d40ea24dbd15c204e20d4041d24cd2d0\",\"labels\":[],\"modified_at\":1775868886.624821,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.640178,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_fed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"339abf0c4de7f4ba8ac9610f75299234\",\"labels\":[],\"modified_at\":1775868913.135283,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.641542,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.tracker_one\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4dde6447448035238f372ce06801427\",\"labels\":[],\"modified_at\":1775868913.136075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.643148,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_sink_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2195ff58fb96b2adfde3932a8dba49a5\",\"labels\":[],\"modified_at\":1775868913.136902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775869869.03551,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apexcharts_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59310574b32edd03da9449e2fc1b7504\",\"labels\":[],\"modified_at\":1775869869.036084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"apexcharts-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870068.253425,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.track_tracker_one_log_press\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"251e799623f0dc9e26c3a81c1bcc0e30\",\"labels\":[],\"modified_at\":1775870068.254211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TRACK - Tracker One - Log Press\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775869806572\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870401.81351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.fish_fed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86abac3ce035a999bd58f59520b2f4f0\",\"labels\":[],\"modified_at\":1775870444.348953,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Fish Fed\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"fish_fed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870404.195975,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.tracker_one_presses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"563381785d898580a4ec98b5d47f8241\",\"labels\":[],\"modified_at\":1775870428.194489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tracker One Presses\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"tracker_one_presses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775870404.57426,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apexcharts_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3c39d6ccf8398fd21217517712467e\",\"labels\":[],\"modified_at\":1775870404.574316,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485157,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15bd4e2db4610819856a0a96d8fb46ac\",\"labels\":[],\"modified_at\":1775870556.016822,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Fish Fed - Latch On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485897,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_fish_fed_reset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb491690a44f98c51901d58d37cdd2d8\",\"labels\":[],\"modified_at\":1775890800.094108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Fish Fed - Reset\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211862\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"config_subentry_id\":null,\"created_at\":1775959350.075729,\"device_id\":\"bd61b07f6c18d67ffd4150ebf11743fa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18f6e46b7275812f380f65c45ab68432\",\"labels\":[],\"modified_at\":1775959350.076865,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Car in Garage\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"44:17:93:1B:60:94-binary_sensor-car_in_garage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067514.535912,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52f365b0d3680334baa51a6a1268693d\",\"labels\":[],\"modified_at\":1776067514.537586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067515.336196,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ba17144d4b28c18b1610c9e6524f080\",\"labels\":[],\"modified_at\":1776067515.337787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"}]}", - "offset_ms": 54 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json b/cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json deleted file mode 100644 index facafb8b..00000000 --- a/cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:00.431855+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"name\": \"smoke_registry_remove_test_async\", \"id\": 2, \"type\": \"input_boolean/create\"}", - "offset_ms": 13 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"id\":\"smoke_registry_remove_test_async_11\",\"name\":\"smoke_registry_remove_test_async\"}}", - "offset_ms": 23 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entity_id\": \"input_boolean.smoke_registry_remove_test_async\", \"id\": 3, \"type\": \"config/entity_registry/remove\"}", - "offset_ms": 23 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 30 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 4, \"type\": \"config/entity_registry/list\"}", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.updater\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48544df94cdd8858d51e4825d887b87f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Updater\",\"platform\":\"updater\",\"translation_key\":null,\"unique_id\":\"updater\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.adam\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af3cc6ab1d311d80445a2911bab8a736\",\"labels\":[],\"modified_at\":1774112250.228571,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"collection\":{\"hash\":\"8ea23eafe65450db9d5d7917f1e1808a\"}},\"original_name\":\"Adam\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"adam\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"52fc2b39306eecd553aa2d1275b23f13\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.logan_s_landing\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc17bdf0b19aac327302b5ed8e37842\",\"labels\":[],\"modified_at\":1776067736.245874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Logan's Landing\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"home\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.remote_ui\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"662f53bf96ef56470f84c30f01b8db1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Remote UI\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-remote-ui-connectivity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.jenni\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"867ce61cfc7ab736b355b85c14411b09\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"jenni\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1566df05da78124d095f06fd3478d69d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Front Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015141627\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ff73de8af671e02bdb687bc221a551\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Back Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015238936\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stair_chandelier\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73856bdb53725526e8e63e078c9ebebe\",\"labels\":[],\"modified_at\":1775870416.949593,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.stair_chandelier\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a4c91300d5c0eebf9260967a60a018\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_routine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70c959e47b0e9e5e4b826c5900cad954\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Routine\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629617283234\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9bd88b769429a941a9478debe90a70a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785091384\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.wake_up_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f995f568522466041f6955cdbcc536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Wake Up Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"wake_up_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c348fbb7c91293d0d89150a1e883d05c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785279492\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f204a6e1edd3b3c13d9dc6e48613dd20\",\"labels\":[],\"modified_at\":1741730439.823744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Cat Bathroom Door Closed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950849970\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b4711ee4a97eb0c7c20e508d9b5c2afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950974058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2cc79375b1f971d1a5e8e393733e821\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631951014424\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8e2a310dc06849858f204cad33666aa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952292117\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37007cf65958ceae04ddd495d3be6771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952347170\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6221addad0ec6c1d678b405921c56c42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952450891\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_lamps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ead5a9e4369bbe20f36cdc5cdbb169bf\",\"labels\":[],\"modified_at\":1775870416.945327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.living_room_lamps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05c094b96331a2e72fa623591306c435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb5b70bdb5e625b89f9c05075b86919\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Occupancy\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-occupancy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d2c826662df9e49d3b4c59696b2198d\",\"labels\":[],\"modified_at\":1728721845.856414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":\"ecobee\",\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3bc3484981e75dcef88140475f41ad\",\"labels\":[],\"modified_at\":1768937324.405202,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"289469882a9d4c390942a2c28d21e837\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73aca607e21724f9c52d8d593ec4d76a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7ebb8f03146939f38815de610add87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895391373\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3381c206b02ec2b698ffba1019a5e8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Kids Room Motion White\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895431041\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_off_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54fa204f71e05ab0e55d9f4409aa6ac2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off Motion\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895565944\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":\"user\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_motion_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b122a6403b1e6102b774c5f91d37a109\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Door Motion Alarm\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b041853caeba17cf928939638155c248\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Human\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_human\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0247c03858e81ac316c24dbea6f0bd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Button Pressed\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_button_pressed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_invite\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b490d78c9b4cbaafadf0c893b801a05c\",\"labels\":[],\"modified_at\":1730406829.425846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Invite\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_invite\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_door_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bcca1ae5fefcacfd0ef6dcb4d8b7b11d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Door Status\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_door_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0f14d3b72d1f98e8ed47fbecd5b419\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Call No Answered\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_call_no_answered\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_infrared\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e21d212136e8f6167e23615634933ebf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Infrared\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_infrared\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_main\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dc52219ced77a446fe360690a4cc784a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Main\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Main\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28587a1f49ec36f599f8f42020999c28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d86893f808d91f26b6859f432eac7d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Red Alert\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"red_alert\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0c880ea25f8f95f5f4149b3b3dbde52a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Illuminate\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c375ec26f63adaba2a3600d0884e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Show Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"show_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212fbb3cd5dfca24ca5dfee46fa297da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Kids Room\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_kids_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"abf611beb1cf6771f05cea144108c5a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.kid_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0296bfaeadf38a3c2c643aa0fa317ffc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kid Dance Party\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"kid_dance_party\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ad4a44c058301709a2c85029eb3a928\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633315499530\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72c0da4ff910be4448a82584819265d5\",\"labels\":[],\"modified_at\":1758172744.684397,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633316964978\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33ec4ea4e5c89927fda1517f3c16fbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317039614\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30cd2b7857a2400001b3c24d6828ffcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317101093\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_kids_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ac91a924370b63b79e242b921321b50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Kids Dance Party\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317161375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb22ada93ef655ba18e9b9e9168627e4\",\"labels\":[],\"modified_at\":1758172743.683117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317518311\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf072fca0aaa7e3cb0d7edf9000ec1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633318458266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39ea7e6d5efb9cb8e90240ca9498b48d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633321371244\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_living_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a338e143092fc0aac6088733d8f992\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Living Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633323598789\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64928aa007ddb8ca5083b35e7f8ccd60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Red Alert\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633329926454\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1412ca1484c26fc0f1b15b903c39c979\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b549da1714cb046914a04ae5f9df208\",\"labels\":[],\"modified_at\":1768937324.521669,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:0F:FC-light-front_porch_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f1a54ce97cc4d298e3ebede755c053\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f32cf07f4683f55bcab89798695a46\",\"labels\":[],\"modified_at\":1768937324.493498,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:23:60-light-front_porch_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4473c2dbc00d6320702cda169c7a91c8\",\"labels\":[],\"modified_at\":1775870416.945947,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Porch Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.front_porch_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c474f9af1ecc77455a800c66b4682d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cf5e19c579425ff2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb03e342c2822bb15c887a38425c17d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1637480683670\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea302a8d7dd8f0aad892f4ab3a0129ed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - On - Dusk\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606004641\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b408a1694e51a832ebd0110266ae9b95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606124541\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_restore\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67d608cf2a32ab837f3f638603121f6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Restore\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606172266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c47fb544830a808c164453e004ccaa80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Off - After Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606436231\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2911270340373d6692ced07821d91a\",\"labels\":[],\"modified_at\":1775870416.946362,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.master_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_ceiling_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1a9fe62dd87298be3e20bf76dc5ede2\",\"labels\":[],\"modified_at\":1775870416.947281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_ceiling_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f184a5dcee5c41d074c34bcf6f0788a\",\"labels\":[],\"modified_at\":1775870416.947891,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Office Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_master\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23f3071c3353df3f910d738281ccebf0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Master\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_master\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec4945d179a66d50aeda49d07fd8d1d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights Off\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edc8c107b4d7bdde4ea4ea619fbb029a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639120832058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"712ed0c3c619a6f18ead981897ff48cf\",\"labels\":[],\"modified_at\":1745898587.722042,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639715090770\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d82e452611e452407b78b0ef3b5ca41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.jenni_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a3c8889231a5bf5d75dea1ab9619b42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"jenni_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_close_garage_door_leave\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22831cf5534857f869f81216a62334ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Close Garage Door - Leave\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639718580516\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"524e32ae2138f47b68e69030d244bbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Open Garage Door - Arrive\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639724678294\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_security_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"066e17ebc66789db48cf2e304ed5379d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Security Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_security_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3002756754c22bdc89b0046fb4d2cbb8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85dcc97f2bb788c39ebc5175f6c653dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub_2\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.nap_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"944bf3860f83ebc3f9fab66742d581b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Nap Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"nap_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae5f17c250b517908480297107e4f37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false", - "offset_ms": 49 - }, - { - "direction": "recv", - "type": "text", - "payload": "},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641177479575\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb7ed0ee5f58ab9e7d2801bfdfee8fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188755198\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a1917bd219066d9a31dddd40526ac3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188941984\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.adult_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1fbc8990624c59d6baebd252a9927d20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Adult Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"adult_bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7dda3951af520ed7aa14de0528021459\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641190435073\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"143a15957bf22bdb04ac5c7772a2ce51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Door Open 10 Min\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641191518035\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time_persistent\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ebdc4128b00a85d18f09c1a3f4df0da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time Persistent\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time_persistent\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7e1d8b9bd1cf3e328c05b5577a8cd13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641192891526\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2af5d760ba8ab63f823839e9455f953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b578d45bd122395c5de1934f8f46e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Away\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225378269\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_home\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a8af2ebb3869fa92d132d3d3d00ac804\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Home\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225411475\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51ccecfcf007db71262f1935420252e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Large Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d1ebd3722f10011fa664fec57ed37472\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Small Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"471dfdb1b7068471e0e1fcfea1e471ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225671056\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e582eb57efe5d94969905cf1bff8f81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225729228\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"651aa5c71d4b4b596f4a13407ce60767\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226072324\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cdb6f8074feda911c7b4db1a1e0478e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226100136\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b91da8b1552452b28294bcc304b4f8bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pause Master Bedroom Lights\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"pause_master_bedroom_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"timer.garage_door_closed_recently\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"90320387b4e4ec3a3c7cbd84dbc5ad90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Garage Door Closed Recently\",\"platform\":\"timer\",\"translation_key\":null,\"unique_id\":\"garage_door_closed_recently\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_nap_time_over\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f25dc80c5eb3444609b559695bcff2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Nap Time Over\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1643176701270\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_disarming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"889c9705fedda7305ea5fc7107f5a56e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Disarming\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_disarming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_ring_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01c245ad5b42f3410ceadf17493c617d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Ring Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_ring_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_smart_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d98b2a6e9c31c4c5aebe6deef37adab3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2e11abfde42f19a5057b1b585c72c3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1652512982739\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e04623ca1cdd79fb8087c8cadfc8a27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"468809c6fd06ce648ffd4890de5cc742\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4f4ac0f275a156c8d2384faebbeb939\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandalier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6571da15bd6e6aaf28760a38252de8f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stairs_chandalier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b323727cf823f62522377f2dd6b67c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1124603e90858bd2a7c8eeaa4ef0c908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91edb81063054b8b29e5bc0aee5ca722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a55fd0624053c3fc70a102047121f57f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68111fcc2532b27a80ba3cc01980d288\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0fe65477af3a205470a1ccced0b63d2a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42f50125299f3927c531c18b669aaa60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"261cda58fa35c9826e2e8a9e46548ff6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4bbd43bfe7fd1687e3f9474bf5306d86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48c6d2458f235bc19dff653c6f3bfbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"134f2a9c097befabd5c7d358e36a7a6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3dfacb9c1a377c0cc5390b71bd2955e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16ffd02c1f172e132bc50ed2bf793eaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8487a8d303943a19ac5668fa6c21f68b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73d67204eb476a06333ef8f4adfe5ef7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24288404b3c7dd6c44ff56181d1124e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"864b5cd1631ecb4437a6a0a50c7257e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"722bcebdf2dd4b683a717d50365989dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2caeff606e9499afc9924c3338e29c0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Large Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_christmas\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e869294cbe465647705bafc2c47d8477\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Christmas\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_christmas\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85e9eb0070a496e7fa87eba9e56abbd3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0989c392a71f038b4ce8fe25569ac13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37cbb875f4dfc9ba34dd3b3e17930562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a1e6bfae1dfa193385ec058c31f2fb9d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Small Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e487877af8428842b8d8007616674a62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aa3800e7a126f118ae9b7666deaa2314\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56cd7bf3d052edfdad8981918cd6267\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fddd2acbdfde2f3570dba13d43190b0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6a231953d122e3658bdd77cdcd797f16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24022be80cfdf60a4115c7bad5b035ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec52255713718153f0196eae444e4fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89ea19ac476812b23f5fa073e720b4a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eef0de05d0aa24da9c82355406167041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7940e0e30fc1e1fcc4c9b7a48565002\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_fade_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663c860aed914fba5858948be314cbe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White Fade On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_fade_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6be2f831d75032a3ad7b684508d65e16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.notify_phones_about_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ece1f2275efa510e2dd20151a04ed9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Notify Phones About Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"notify_phones_about_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_meeting\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"372e3957cccc5cb8619ea55b6ad0795b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Meeting\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_meeting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"754734721fc9477df34eeb036bb991bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f7c8ae1fc9b54bf0123181ee762641\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dead_zwave_devices\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ca6ff31d8ab85a686150917f46387b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Dead ZWave Devices\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"dead_zwave_devices\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f63024643aed08b3bfac6124ecf6ad55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Detected Activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59f0788b350cff3ed3e4c80681032694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11670cf20ba415249941c61df360a87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6349ef75a1840deb307830662b0981ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4516a2d3d10614f0276006803376821c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9a1de4c001b65b023873dc67b2e1aeb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e26c607d067a78c441b7f9cc75dba4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f9b0a9b9747f274c8ec2c4049f13188\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2591a8696175650360ecb04c34ebde3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Standby Bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c29b2793fa42375476a4961a9cb9f3c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4c4aa34addf089c6e0d44c3dbb69fd8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Ringer Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b402edad0d1f3609fe2ea219651b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Audio Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabac057a1daed31e37304dddb21888c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d0338", - "offset_ms": 50 - }, - { - "direction": "recv", - "type": "text", - "payload": "0fb776af8c689f558f3d81ec56c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mic Muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c849b40230913371f3ae86450152296\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb4b92f25deb1c26c4d3a75796804cd6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Music Active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63c6ddd0e2c380c423406f865ab4466b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aece69b417cbd569b31f9e3f03cbaa5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"08d4816026b16e5765055bcb256faaaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"167a38f51480e27d6f32ea9bd21cffe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b36dc595459a5eb7754d1bd53f679d9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fa664a57085896e92fe622bcfad9ffd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level System\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4947061539f7e448c220cbbe3d9791ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79866ed9f3d374f668978f602c522936\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"754c6b6be3ff40167959413eee71a769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bf324078f46e09e10914ddd9ad39ea18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f2ae98f237b3a3c18efcfb76a44309\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Is Charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d588b0f08c94af014bcad08dfd9c82bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Charger Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af35ad533bc818679f6142f0fba98ae9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4eeb5c4fc5a9c4740e441917048cb56c\",\"labels\":[],\"modified_at\":1768937323.674991,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 6 Battery Temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e620a9902d2503fadcb5049f62bd3a\",\"labels\":[],\"modified_at\":1768937323.675654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 6 Battery Power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0bea36868dc2852f26e606cb5585978b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7c392d0e5b5805c04c01a8de1d19c6a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f5694e88652fbe7b4aea3571cd3ad68e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 BLE Transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0c86f94983c08b0aee46a117de5db3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Do Not Disturb Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4925d0a68fae8a6820872b19a33e5e86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Work Profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6e361c77027c92ca103f02ee555a17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Geocoded Location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"61959a38850d543f21bb0e1569e0ede8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e12b5bf1dc6312d8adfe9566a8cddbc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4213bef8495768305cd59cdf35ca4b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e97bb579088e5ea424b616dd154aa791\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f66c0118c076670fb52aaffa7ba1997\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Used App\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2f9ae155ba2acb94d2e58ff2481cd0dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4984eeb61df82c1962b1568de93ae1e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Update Trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c379a58d167afdca3215f4bdad404860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Light Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed4aca22759c17dad01d4267be06c9c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093eab6b381d30ac54b915f31a1ffe6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Update Interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5b1fcf09cfe62058415e538ad489578\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e7c731edc371565fad28bffa63f26fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data Roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3345b994bae95f98a977b05251d2c18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"36a81e770148fbf8c3501c4034d8b519\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"393daf81b19a2e000076de43a50e0d5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a86d523635b1107073a00863ea200833\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Link Speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf293b8e7370ea8c4cede0e10f834424\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5dcf1e1bbef07ef59ddfe608cbc0132d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aea0472231ddd7b05ac99a683af7c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Signal Strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"660adb553e2a9af427c52f135747f7f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Public IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"176bca32b338d93754f9c7be44fa07f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Network Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0285447de022be2a252f35fa4ad7fd5d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Next Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586470a0e2dff113e76d335d791c7cd8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4359e632b04270993df87c3fe628cf32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Removed Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c9addd802bcc76b59bad7b47f376a6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Active Notification Count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"422e2b7d93661fb5bf555757d9aff815\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Media Session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4816202ee229e1793e3f4118768d562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Phone State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6c47cf4f550f86dd82efbe37e4d94c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"978bf765161185ef6cfd1d543281d100\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3da6d97d96132bbaf358275ffac29b85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c969863cd8081060eb057eea1b261e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Doze Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"859d0df2447518ce6d43471eeb66ff04\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Power Save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ada0b3b5277c155272a320fdb3d308e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Pressure Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbfa1364f9833d410ae76130415c30f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Proximity Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a8b1e9e42181e7f2598315ecbfcd15c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Steps Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2dfe5cda59186cdf2870eb4805567d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Internal Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ed6c593bbd2acc4ff1fff9f30bd8655f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 External Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"60436b2e4c4506cbf65bbe328d971eb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Time Zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a2fadec84d4c8c45bb51cb557092dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c088aa9a3a0892284a692665a13625e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4a8a05e4ae43df88bc2ba18d31bc976\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db3a97e3ec912bb7ef3afb01868c097b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5a96bfeab8ef33995d19d1c286975ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f0f857a8968c9cf06c05d1eb7ed8e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"599fa49165ca52cdaa308a9291244c32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69bbcb02486b22633b2e78f73ed39657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"zone.school\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df94776e25d1b4c511664437c6d8cd8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"School\",\"platform\":\"zone\",\"translation_key\":null,\"unique_id\":\"school\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec6368556983ccd7323a40edadf2e38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Beacon Monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2160869c0d0023d5de9f7280cff177e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Accent Color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9f2220a04f3d0be4796b6fee9d9b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Screen Brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98521848d3efe121dc305c63a3ae9482\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_hallloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd0dc4211c81c4003e1b7c52010f64b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea4b856a58974c9350f0dc8531733eb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e7b49dcd25a0e17a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"752981de05fcf25b9881f49201d2d259\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e583b4572c572a970b8e4f79740d1d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84d1e072ec6a946787dd954f39def970\",\"labels\":[],\"modified_at\":1733904291.14561,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f441123d912ddae3e6d32aa9719fa8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd925eb2c0373b46333f9982693cc539\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8add6e050c44b030b775c0900d7d955b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca4da0e5938f0ad9b79786aebfc94261\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6da88d50b1815e413cb3c18effddca46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b9ee129cb84e064e54f6b6f2a68bfd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b56def15f41aad4941106a5a95a55bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7427f7c8df98d3cbaba16fb1cbf5f27e\",\"labels\":[],\"modified_at\":1769764244.706022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d92a1c422ab0a536d81c42d8ae646da5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ca15e3b72854b67b5f6bd20861d12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6c4b3a155edb068cee9c57e4b9114bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2600df00617c34fd4a6f7085fa9ad2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9d033d4f9202f91a6b56293e16399cc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d704b74e9a8a5a2a3bbabbc7aceac39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fba7cd65763c03f75099ea4f8f2df62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4048c62fc405ce5317c7353ddecc8db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44607a13e9e0906a7b252b2367029b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ffff734debf22a5da1f04227ed7ce61\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7851ce9b8b45d02c259b100099695bcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e75244fd4d702e9e24eed421f19f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80553ce4ab17b8e3a3c8a0e9f2333369\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df84eb0485292a8dd0738dd75af58ea6\",\"labels\":[],\"modified_at\":1772660779.072245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"962b89bb2e91c9e72416f05984d53a0e\",\"labels\":[],\"modified_at\":1751875652.892459,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a32c673dec6f143954907e9d833d05c1\",\"labels\":[],\"modified_at\":1751875652.921495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d73b8b9674d497ee18d5fc04803bfaae\",\"labels\":[],\"modified_at\":1769764245.433226,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc442861fb551a6a06c1f1789d3a8d47\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8176790314abc637bb78fce1af28dd95\",\"labels\":[],\"modified_at\":1768937323.679914,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"°C\"},\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 7 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5b470b4aa7c1d7e469ff00bf06256925\",\"labels\":[],\"modified_at\":1769764245.566513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 7 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cfe1476f76e9b5e40c2665623a580dcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c501a24867cf1e75b62a7d084fe6153b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 B", - "offset_ms": 51 - }, - { - "direction": "recv", - "type": "text", - "payload": "luetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"241a1502ecaf8436b468ad0986728e9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"976abf783a6596bb6e4ad93e5eef6ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aafd4d0f25e0058e7691e4b900fd888d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9432ea9dde7dafb7f04fa0fb66caf0d4\",\"labels\":[],\"modified_at\":1733904292.9764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9742771b1ceab90f1b14f82fe2f991\",\"labels\":[],\"modified_at\":1769764246.412117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9140026578f8696f95b3a23e7b4b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2eb9199ce7a259686aa22ed1201bcd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aefcada6f1ae5cd573ecafaed1f82cc9\",\"labels\":[],\"modified_at\":1726775504.304137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"327a9df8b4a560f9869c8a795aa427d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b8aa5d978c603d98ee826e002c5a51f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1935dba47b0942142c6137d75189c165\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b24892dd730b588b3ef58a9c5f6433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"683870d1b12dbfbe9958d3bbbd483be2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05628de07b292547de3074d0fecb63c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b52583e588d331b5489ad61d42d1b894\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea6754e922d43ed5faefd1c37aff673\",\"labels\":[],\"modified_at\":1726996801.234221,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67a5374ec1ce04d4b1fc7f504a5f5ceb\",\"labels\":[],\"modified_at\":1726775486.464706,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9989c20892e290c5f68ba8011da7480\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ac9c525c7baa10637bfa0bfcf5221a8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d33788e0c059d59c257f087a1473354\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6858fb1bfe673ad16c733d32e0e2eea5\",\"labels\":[],\"modified_at\":1736454087.142562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f8ecd430a0259a766ff87dd14850905\",\"labels\":[],\"modified_at\":1736454087.172581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ede90797f1d7ac76694a6f43d9bc8c45\",\"labels\":[],\"modified_at\":1736454087.212097,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"baa0e4cb851227a8feaf9d6df17e9fe3\",\"labels\":[],\"modified_at\":1736454087.244039,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212276650f0469c6b78f1aa1555eb08e\",\"labels\":[],\"modified_at\":1736454087.284983,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2c26aa9370eb6b26b415452c8aa37fa6\",\"labels\":[],\"modified_at\":1736454087.322599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5559192d4b1724258755211fd6c0eb2d\",\"labels\":[],\"modified_at\":1736454087.355909,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f2f1af76340c415aee598869f15f6b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ba5e415bd21554388b021818724eebb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49817327a16217538f7b5d10768914e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f382990d6af13a6f0f40861b861e446a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"acbdc6c80e798bd40e688481d54f3dfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b15ae82de7ad1a7193e870c8a928e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c39f19cdbc833df680ac7b7aeae2a1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"343e97cbda69dad188ebbf6b8c98cbbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95999d30a8740282d4530ca4dcc83763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8dc6554bf62986c588c250443bbd9a30\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501fe56c13dba2403f8e9f6305853d85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45103882a134b44b710984e492b782d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89602f6616e58d5fe6968e27e9de7f75\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f509ed5dc970c87935cd8abb4447cbdf\",\"labels\":[],\"modified_at\":1768937323.68247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Pixel 7 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce994d74c8d3dacc5f2b3f3ad1c4c862\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b81c76adf96efe95f486bca48df59198\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea6b5d6c0a7555063714d5e8fb0966b9\",\"labels\":[],\"modified_at\":1726996802.141611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e86041c03757821fbe478098482d762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f7c6db6916cfc8884490f24662d6d6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"179461930c9335bff09", - "offset_ms": 52 - }, - { - "direction": "recv", - "type": "text", - "payload": "691616b8a316c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d7bf3b13d2aa43a53bff5d32eb3b6a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b76e1c633c646f74498a1b4022d4aabd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ccd80680e8a746bace2ed530127ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"51f7f20cb4853fc0b780e3f12cf45927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:c4:36_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f0afd1ec6dd2925c7d3aa877f10716\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:a3:c8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab1ff41ba82a1e9a081c62b4a4e05baa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lamp_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc50d543f3d0de8dce6f30e83abaa051\",\"labels\":[],\"modified_at\":1768937324.522894,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_lamp_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:33:BF-light-office_lamp_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74f90347b451e99fe4564a5f9034b2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04350d1332ac239890df047ed24bd6ec\",\"labels\":[],\"modified_at\":1775870416.948326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Dining Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.dining_room_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_base_station_power_switch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd59869adefb3c2668706287d79ad134\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"VR Base Station Power Switch\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"switch.vr_base_stations\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"554456bc549d0c50d8ad023679b633b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn Off VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"974317cf2fdad27a6ff88ffdfe415537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn On VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067740.367542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94b349a8c075517a154253fb630c014c\",\"labels\":[],\"modified_at\":1775360982.274551,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f55335bb75f173f6fd401e50a1e6ebb\",\"labels\":[],\"modified_at\":1775360982.275026,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8424b92182bb8b52c940680327e1b956\",\"labels\":[],\"modified_at\":1775360982.275471,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86c88fab85fb335a99f5bbc40d5f6157\",\"labels\":[],\"modified_at\":1775360982.275902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00578db2e0fd380276579a29772a6ad2\",\"labels\":[],\"modified_at\":1775360982.276323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"091e225f048950d7bc9b58b427089acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d4ccd77c43917949c6f8998592f6d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72f6d099f1b60f2bef38928d26cd8c1b\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Lights Motion Off\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1681343760386\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.scaredy_cat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"875026434592cfe2277e6b60284b69ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Scaredy Cat\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"scaredy_cat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d709cb65d0bf72bdd756ad8e1f4ed26e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1c060ca1926ddc648dccc6a4ed79a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Scaredy Cat Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1685999337743\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0468ec0ea3a7c492de483fe1e2a6f3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bc61ccd7457d16d4521b75efa4de5263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"090f0966fdfe9202896f95e917094db9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33efabd658a938a3c84616668b943ad1\",\"labels\":[],\"modified_at\":1728721845.865992,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b46c1986a992590e543ab83dcc22be\",\"labels\":[],\"modified_at\":1728721845.86621,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47716215f6c1e4e0c958a2bd847d04b7\",\"labels\":[],\"modified_at\":1728721845.866372,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c0f16bdb9a7af253322e7f2c68037a1\",\"labels\":[],\"modified_at\":1728721845.866525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_not_accepted\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32047f8c6fedd304c0195365947e01c5\",\"labels\":[],\"modified_at\":1728721845.866674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages not accepted\",\"platform\":\"zwave_js\",\"translation_key\":\"nak\",\"unique_id\":\"4182894947.1.statistics_nak\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_collisions\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8508325f21df882e069374d85c2412c\",\"labels\":[],\"modified_at\":1728721845.866818,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Collisions\",\"platform\":\"zwave_js\",\"translation_key\":\"can\",\"unique_id\":\"4182894947.1.statistics_can\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5d1890f3771adcfbc650417995884fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeoutACK\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67397fab6dfc1efeb76db69e09cd2518\",\"labels\":[],\"modified_at\":1728721845.866966,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.1.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_callbacks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cb0ec827d35594d68324c943295da67\",\"labels\":[],\"modified_at\":1728721845.867108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out callbacks\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_callback\",\"unique_id\":\"4182894947.1.statistics_timeout_callback\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"682c4418ccc9d59ab4766feb2876d337\",\"labels\":[],\"modified_at\":1768937324.461784,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79be22754c52e9d3ba249c79d09b8c3d\",\"labels\":[],\"modified_at\":1768937324.462018,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b9e078797343e12caf9f44a0b0f5b23\",\"labels\":[],\"modified_at\":1768937324.462198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96bd4450ea3aa2dc0fefa5cdcca29ec6\",\"labels\":[],\"modified_at\":1768937324.462371,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d30b0a3a5acb331ecf9bd7faecf3c553\",\"labels\":[],\"modified_at\":1768937324.462545,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67ff38d870a2330331c2b8ce6d626c9d\",\"labels\":[],\"modified_at\":1768937324.462722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f177b710b34d34badf49d64727b08927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.4.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a73d8ed5443f8307691ac47b75cb6513\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.5.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad589416f84ee0a4bae7247f7101e698\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.6.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08fbadd4e068fb26c4d98b53f492e322\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.13.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb6e3d9400e10748fbb5b95f4d2c14df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.14.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9657d799395ad95f249170d72f4515ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.16.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be10ca3bcb5bc1051a357c059873eeb5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.17.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e9cf7a82a0f823c8cd07af1e9828c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.18.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a463e1a6b3777f832e1c78e3c725c8a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.20.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d13a24ca75cc9b0a0413f9f7c0f7c5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.24.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48d8ac6919beb5fd1f7b6715fbe12b43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.25.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f233496fe9a9cdb2df78bff33a2b836f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.26.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d6f8217dc1118036bf98bcd10f4133\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.28.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80029cb154657f9d9c91b39ba1e31549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.29.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46570cdf00c69acca5931fa450785a9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.30.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35b093dc4c64641b23021740e8cd27a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.36.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a65fc8863f070a02d939d1b8306a2d8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.37.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53ee574e53ebda2b8e3f989a3ba13fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.38.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30654040cc3e65801967d3b7cb69b1df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.39.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"544683dd8a7cc50d1bd208a73f4e3307\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.40.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ebe35465fe37aac78f69ed1222d264c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.66.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab0c922ac84db0b313a9c93dc22c6ee1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.4.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8385c6cfa7f0c4997be41b6a49a4b8de\",\"labels\":[],\"modified_at\":1728721845.982674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e386cb6e210fc89df0fab411faf5afd4\",\"labels\":[],\"modified_at\":1728721845.982907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9c808db283e54ab2446bab6fb1cc994\",\"labels\":[],\"modified_at\":1728721845.983117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba1e80a8483cdfc2899d23b81aed739c\",\"labels\":[],\"modified_at\":1728721845.983281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f42d47a34b6f9e3f87ae053978ee85\",\"labels\":[],\"modified_at\":1728721845.983435,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.4.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9be484fd8a2b1135e0eb46e741acd273\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.4.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"693765a84e9f3e3dcad716f4eeec22eb\",\"labels\":[],\"modified_at\":1768937324.528833,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.4.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"012352a68babdcf20b6cf95f876e926f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.5.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f672471b5c978420e5f1dba57dc4733\",\"labels\":[],\"modified_at\":1728721846.000478,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c4b943d6fb6f596b29d6d977e0e46f3\",\"labels\":[],\"modified_at\":1728721846.000702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9873f4f992eed491065ac7a2f339a7bc\",\"labels\":[],\"modified_at\":1728721846.000876,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69032bd476a7b17eade17059e08180a4\",\"labels\":[],\"modified_at\":1728721846.001035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb63ebe968c8197ed6fd472701949976\",\"labels\":[],\"modified_at\":1728721846.001179,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.5.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69dbe60b2c6ede995a5e608d08544cf1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.5.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46b8ead388ec6b9bbd189354e8d592ac\",\"labels\":[],\"modified_at\":1768937324.530131,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.5.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4cda4cccf1bf41fafadcd00681b40751\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.6.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3da25ea5b1606150ef66a9080137bdcf\",\"labels\":[],\"modified_at\":1728721846.008122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69e11426422fa9379fb37cc8b90b0100\",\"labels\":[],\"modified_at\":1728721846.008333,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6068bcf6b64da799f454a39f75d219d\",\"labels\":[],\"modified_at\":1728721846.008489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e19fe563fa9afb307a1d1ec0af6a47\",\"labels\":[],\"modified_at\":1728721846.008639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7c137d08211c63fc135d56ad8079b20\",\"labels\":[],\"modified_at\":1728721846.008782,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.6.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632b4444df9edd83dc36ddefc3105924\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.6.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b89faa5aa8c37389c327d33c0bed5f5e\",\"labels\":[],\"modified_at\":1768937324.535509,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.6.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c48a9484b52fe684114f779a2fb5404\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.13.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4c6df2834c4defdd486be1e9a612c07\",\"labels\":[],\"modified_at\":1728721846.026245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"511e3b988f5150cf206ecff8b0a48afe\",\"labels\":[],\"modified_at\":1728721846.026539,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e77fec708cbd9dafd349afe5a826a6f\",\"labels\":[],\"modified_at\":1728721846.026691,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d788a6b3695255083009f04d3dbf84a0\",\"labels\":[],\"modified_at\":1728721846.026831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bf7f721885b7646b04081641fc9b9d8\",\"labels\":[],\"modified_at\":1728721846.02697,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.13.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4461e4c669a848b9ef3223240813573e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.13.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"308b0682ae88de559074a6de7c53834e\",\"labels\":[],\"modified_at\":1768937324.541059,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.13.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_room_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"705c92b125e5de1380f3c18794369bf2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.14.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6521456f61c04ec8fe7b1e5b097d37\",\"labels\":[],\"modified_at\":1728721846.034872,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00c3b60e2e3cec4899e63d54e900e047\",\"labels\":[],\"modified_at\":1728721846.035075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec9cb65a35afed1951ae88b782595f5\",\"labels\":[],\"modified_at\":1728721846.035255,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"231a387ade3bdaa4a66853272db8b0ea\",\"labels\":[],\"modified_at\":1728721846.035404,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb1ecee5163bce8480c0fd35a09c6769\",\"labels\":[],\"modified_at\":1728721846.035575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.14.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"85069e58b15d22ef66a4bd97c6129f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.14.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c8fb660cd92b5d242ab5d679ccd7b33\",\"labels\":[],\"modified_at\":1768937324.546124,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.14.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c336a49feefaaa0e9faa1a38535c422\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.16.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d93c331bf5198470ef4ce4f524c52272\",\"labels\":[],\"modified_at\":1728721846.042608,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e863df09902ad83c56a2841cb51f576\",\"labels\":[],\"modified_at\":1728721846.042868,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"", - "offset_ms": 53 - }, - { - "direction": "recv", - "type": "text", - "payload": "58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"798ee7f183a63fe89f1e942c636b3bf9\",\"labels\":[],\"modified_at\":1728721846.043022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42ae2ffc8bde328a61b8ae4373aa5eb9\",\"labels\":[],\"modified_at\":1728721846.043158,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ea12c6f7d52404e2147b808e1242b41\",\"labels\":[],\"modified_at\":1728721846.043281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.16.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7ce0933d67d34e56e76dd1709593328b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.16.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dca82438215fb7fafede9cce49acda\",\"labels\":[],\"modified_at\":1768937324.551074,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.16.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"304e4ebde63c0b6724afd5e92cd59f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.17.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cdf393e8f27ba0fa618069c16022a026\",\"labels\":[],\"modified_at\":1728721846.051416,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40c570bea89d10e15145cb64ee1f7ab9\",\"labels\":[],\"modified_at\":1728721846.051615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b2edd3fbab7394bab0c14cbe7637c5\",\"labels\":[],\"modified_at\":1728721846.051761,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4353c6bd553ecb2277ca7b997c50c85f\",\"labels\":[],\"modified_at\":1728721846.051897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83be3dae9ec35473d348b3c5133411d5\",\"labels\":[],\"modified_at\":1728721846.052036,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.17.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3adf44d744835c998ccc919bce886ec9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.17.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7e70ca5aba67a4a230b2722299052e\",\"labels\":[],\"modified_at\":1768937324.557331,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.17.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a07cf5d4224ba6239a13744c18dd235\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.18.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7caa0248d8ee1076f41ddb3cc2c89f8e\",\"labels\":[],\"modified_at\":1728721846.057035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001bf6da6163b4586b7f7d920b182c3\",\"labels\":[],\"modified_at\":1728721846.057227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"407a6b9aee48fb0bb041de319bdc8731\",\"labels\":[],\"modified_at\":1728721846.057394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"474a984405d6ad3fa524af6f21852079\",\"labels\":[],\"modified_at\":1728721846.057527,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc3da0f80245bad1dd0b080c05f60ce\",\"labels\":[],\"modified_at\":1728721846.057654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.18.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"338d555606471bf4656042ddeac2dd42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.18.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"debf128d126cc42f9d9678a177a3d7ce\",\"labels\":[],\"modified_at\":1768937324.561345,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.18.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da1541fbce94275ba5cbca676f2702f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.20.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e4917ca0de8cb75740c3cf980a2b1f\",\"labels\":[],\"modified_at\":1728721846.06327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bac1b4c13d182d12c16822efc7415f3c\",\"labels\":[],\"modified_at\":1728721846.063447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04070ea7d7a035faa87209770e527115\",\"labels\":[],\"modified_at\":1728721846.063587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e29111b9581f147ea8a636aa9ca50c\",\"labels\":[],\"modified_at\":1728721846.063714,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77c23d9ce3ce745eab3994897b4c2d7b\",\"labels\":[],\"modified_at\":1728721846.063839,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.20.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9831210a5f148ffec0c960a3cef41eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.20.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ad24989273058ab1e0afede3384b0f9\",\"labels\":[],\"modified_at\":1768937324.565645,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.20.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52d9aa715f3b1cefbfb68ebd33ff9b74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.24.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05d8bcc97db99a59b495eb3c76a683c2\",\"labels\":[],\"modified_at\":1728721846.070907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe6722a9cc2ab68e12b30784f31b1428\",\"labels\":[],\"modified_at\":1728721846.071086,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2bb1f0bb2a2687cc1a615a13447f6c3\",\"labels\":[],\"modified_at\":1728721846.071316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c2e48f0bdf3f152646733a2065a7869\",\"labels\":[],\"modified_at\":1728721846.071476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8793d6ce94921703ff9d4ef6d283102\",\"labels\":[],\"modified_at\":1728721846.071605,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.24.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b971039f576f806395a3bfe630bed910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.24.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3ba969b6fccae3a10caf0bd81dacb57\",\"labels\":[],\"modified_at\":1768937324.570316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.24.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e199fcdf8a82e3cd5b2aaee7e98b3ed3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.25.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d118bd28fcac0c0e418c5fa26c908ae\",\"labels\":[],\"modified_at\":1728721846.079745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d036715c2c04cea631fb5ef537052fe8\",\"labels\":[],\"modified_at\":1728721846.079932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57325db8a7fb10afd15751aa94309c1c\",\"labels\":[],\"modified_at\":1728721846.080103,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0b56df69f1ed80a097a437a7234a8e9\",\"labels\":[],\"modified_at\":1728721846.080229,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887eef5e7ba55d9e0936e56bc66c567e\",\"labels\":[],\"modified_at\":1728721846.080355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.25.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afc9d72e408779d20b34dc1f01ad3536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.25.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcda026ec929142ce3cbfa14747dfaf4\",\"labels\":[],\"modified_at\":1768937324.576948,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.25.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1583858de49ba4c0a4b4ff2ee0c29d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.26.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f5033b58cce7dc54c076c8d180392f0\",\"labels\":[],\"modified_at\":1728721846.088895,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43147453f1b24bccb5c5f5e5e62f7068\",\"labels\":[],\"modified_at\":1728721846.089144,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4387dbeacfa284722783b317dacae2b\",\"labels\":[],\"modified_at\":1728721846.089304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d1c22a4b346df44287e85024006f90\",\"labels\":[],\"modified_at\":1728721846.08945,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"535c8d77519ba41280c4a64ec64bcb51\",\"labels\":[],\"modified_at\":1728721846.089582,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.26.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b08f4bb01195276c704b25cdd96196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.26.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b0af79a6c4a5379175d0900063ac555\",\"labels\":[],\"modified_at\":1768937324.583385,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.26.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abc77ab50d0d3573e9e10357e6b4092b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.28.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8cd26d45d0e80aab853b7d479f30848\",\"labels\":[],\"modified_at\":1728721846.098327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f324aa672663f6a659ee494545522e\",\"labels\":[],\"modified_at\":1728721846.098537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37fb21bcbda4df8298f567ba2d598434\",\"labels\":[],\"modified_at\":1728721846.098676,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c00a5c5168ae3d928deb75654328af4\",\"labels\":[],\"modified_at\":1728721846.098803,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8c544aed3196548a02205a35243f93\",\"labels\":[],\"modified_at\":1728721846.098936,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.28.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab6a89acdc4cc754d27d035797994522\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.28.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf69f70d06538e49a0517a65e09e86d0\",\"labels\":[],\"modified_at\":1768937324.589758,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.28.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a77e2f997e7096c9b763729289da0222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.29.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"570afd43cc017753eead4837bedc9bc8\",\"labels\":[],\"modified_at\":1728721846.105962,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa61e5c4f5406900003bcd53d7ea9d8d\",\"labels\":[],\"modified_at\":1728721846.106143,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1d9e9b71984b9ff29afff4c6bdc040d\",\"labels\":[],\"modified_at\":1728721846.106288,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a19383165b4ccf9d801c9c7f26f50ff1\",\"labels\":[],\"modified_at\":1728721846.106452,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3becb6b0af1994c2005db257d3c08b6c\",\"labels\":[],\"modified_at\":1728721846.106636,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.29.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19e1560eba677195d70fe919a6144950\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.29.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef43746b3d59b9ebed78786a6a0dfe9f\",\"labels\":[],\"modified_at\":1768937324.595077,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.29.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfb0c54c7cf85ab1e4adc409f895e19b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.30.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1fdfa3a2d14760b9475ad822051c5428\",\"labels\":[],\"modified_at\":1728721846.113654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e4b1a6e975cf9b1d9994e5c0fc96fe8\",\"labels\":[],\"modified_at\":1728721846.113904,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2940e9491fc8082f8a7566fd97155363\",\"labels\":[],\"modified_at\":1728721846.11411,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912541a2fa4cda4138a5d43e32b01c9b\",\"labels\":[],\"modified_at\":1728721846.114314,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09a2c2e79f06f78cac686eb78b5a0983\",\"labels\":[],\"modified_at\":1728721846.114484,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.30.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8184bb20bb3ac0aad8c150c92d9b60ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.30.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"595b480ffb15cb31f87e003a704469b6\",\"labels\":[],\"modified_at\":1768937324.600438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.30.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02636c3d8887bce10db55744cf1fb300\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.36.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3659d233ee1194e78d575c8259c79d75\",\"labels\":[],\"modified_at\":1728721846.119874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ab37c037a538751cc745fc318c53375\",\"labels\":[],\"modified_at\":1728721846.120105,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ebf0493baaeefaaf3727add303ef097\",\"labels\":[],\"modified_at\":1728721846.120293,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7aa05f5e8e60454c434e760f09ba7d0\",\"labels\":[],\"modified_at\":1728721846.120469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad7f8e9a7534ce6f62dea3787f34512\",\"labels\":[],\"modified_at\":1728721846.120604,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.36.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817b83fa9b3b611ef9148d3a1c7b9458\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.36.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"207b9f016771de3f0791a50db497c513\",\"labels\":[],\"modified_at\":1768937324.604321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.36.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32ed05ddcea53a4e1ab8ffe90200bb11\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.37.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fe4ae53649255d1e27d0064fd803ab9\",\"labels\":[],\"modified_at\":1728721846.126048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08e5d0574d23b7feab02b70f64bcaf5\",\"labels\":[],\"modified_at\":1728721846.126233,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e3ac4ad5973a9fc59e74f034b3f8a9d\",\"labels\":[],\"modified_at\":1728721846.126379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f451b1f3ff73499f3efa7843ba1fda53\",\"labels\":[],\"modified_at\":1728721846.126518,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a513a0bfadb8e062eb3d5ca06378ee1\",\"labels\":[],\"modified_at\":1728721846.126652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.37.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb48677e23288d884f9c18b559952cff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.37.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d2e87e3ea7659f4c1ec2f9581b248ab\",\"labels\":[],\"modified_at\":1768937324.608389,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.37.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5565c442b090e06c8f7eb6342f92e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.38.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6184498ceaf1572ecb710a88977504a\",\"labels\":[],\"modified_at\":1728721846.135332,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f8631a758d2f4b056f007426987b5d3\",\"labels\":[],\"modified_at\":1728721846.135525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8186ffa61a7c07f827a82f6ed999ef4b\",\"labels\":[],\"modified_at\":1728721846.135673,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4e9a80844eb2d564dc68cf1827019af\",\"labels\":[],\"modified_at\":1728721846.135808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0205fe39e1a0a4578c09918f54f68fb7\",\"labels\":[],\"modified_at\":1728721846.135937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.38.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a43cd34777a3876325239f0c80882549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.38.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cddfcbe8d05af4ead30b2c9a732e8d97\",\"labels\":[],\"modified_at\":1768937324.614863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.38.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa7663cdf3be9fb9aa633722f02fe95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.39.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"185eb8e01e811aa96f1055db2eba082f\",\"labels\":[],\"modified_at\":1728721846.146856,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7507b2bae3374108dd49ab35772c96e8\",\"labels\":[],\"modified_at\":1728721846.147069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11720db84f8dac252640168c91fae5b5\",\"labels\":[],\"modified_at\":1728721846.147219,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2415ed4c820427b452628be0746dcb0\",\"labels\":[],\"modified_at\":1728721846.147361,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"605baca0427b42514da2eaf78807a67f\",\"labels\":[],\"modified_at\":1728721846.1475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.39.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d2b90ddc8284b68e378215f59d0f6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.39.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f93c038fdf85ec4247f1559f1b415\",\"labels\":[],\"modified_at\":1768937324.622387,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.39.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5999ecfd025c3cc7800a4a89aa08edfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.40.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"917be806129eacb471d1ee0d0509698a\",\"labels\":[],\"modified_at\":1728721846.155502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94e074b915ef0ae11677a926f8f4e3d1\",\"labels\":[],\"modified_at\":1728721846.155744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84a23599661784c7f5dd79065fe6bc72\",\"labels\":[],\"modified_at\":1728721846.155897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e6d217bcbe4d21e0ac74a35882afd3d\",\"labels\":[],\"modified_at\":1728721846.156027,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d101cc55ce6cddcf624e76cbd806cc2\",\"labels\":[],\"modified_at\":1728721846.156151,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.40.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e96d40f2a5ff985cc298963049a9848c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.40.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a4374928a53f5685eb1db6dd22fa3d\",\"labels\":[],\"modified_at\":1768937324.628793,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.40.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db458cfaf86d76636a7d2bf0895309de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.66.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5270f9954244bb65705d47f9136e1aa2\",\"labels\":[],\"modified_at\":1728721846.230051,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82399c66db015194b4f3e070808696a1\",\"labels\":[],\"modified_at\":1728721846.230244,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471598b270ecac776090a8d2c01bda06\",\"labels\":[],\"modified_at\":1728721846.230396,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae71812be09a23822eafc01198f60890\",\"labels\":[],\"modified_at\":1728721846.230531,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e76593d32bda68336de64e105ec8f0cb\",\"labels\":[],\"modified_at\":1728721846.230667,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.66.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98d943f3a15d678a077164e12b0b6f8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.66.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"162a16ffb4efe6d9bec61e35df2cef00\",\"labels\":[],\"modified_at\":1768937324.632659,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.66.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db32b0a9239e3164b238a78d332fcc09\",\"labels\":[],\"modified_at\":1728721846.270694,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c11d0e40cda08b41a09ae52d89dd462\",\"labels\":[],\"modified_at\":1728721846.271147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20a58486d4ac94d1c4627100475635e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a37d873a73a470f8610b1d170620e9c8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c53aead1aed9f2d07387815e701ea7cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd37a59131eebc3d3efb87e3b9a180fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb13b83675e38a3d6fea9f88a7fd514c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d95d516b1ca9219bf2fca27f7f2908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b844ef9e2e6426121768a751759fe087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd47e78959ada5340c2f57306fa58db0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c37787e174ef03e1765d9bef617982bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60ead9b3b7d23ce46d5d7e26d8940d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d51696e440645ca3f4b8529e028f971d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"237fa206e122aa41369fa1c33d8d0a8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77483a0a861c0237c93f510811bd0c72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22e6ae4f8004df116af0e2b635af2c29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2648ad9b3ede6e6a150d9efb636b049c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2d88cfc6df1889a40731747606245be\",\"labels\":[],\"modified_at\":1728721846.274493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdea929adacbc2d74c59d113df4e814e\",\"labels\":[],\"modified_at\":1728721846.274952,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcabb74ebe7fa1ef4dfc174b377e74be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"139db407d0314d892e9399e794a94160\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9717997085ccceefc242700248840be7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e249ef83acfce3deefa5a3a95e68bbd\",\"labels\":[],\"modified_at\":1768937324.702562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f52e426d962ba92d279ea46fb81cfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a516cccd0dfde572f7ffe400ccc573ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69cc3fc9e5decb87fd544bd9c59b2d6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28b1032c218c390994d8cf969ce895d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02d8d11b76cfc3587daeee2a51de2670\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2abee3d97931b898d557d8b57204b5b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de10b3dccbd140d07b82ee3cbe00869a\",\"labels\":[],\"modified_at\":1728721846.285949,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"285d1906223aa890187af6f521ac5aa6\",\"labels\":[],\"modified_at\":1728721846.286414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9768e0fe86fe22a99d2bd1e6fa4a50a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad5520faefe19b4022eb20391dffd559\",\"labels\":[],\"modified_at\":1768937324.709538,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5816a5b2d76cec6a8f87bce0e5613c69\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66c6daf5be1551275842e31ca471799e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b103e540c009d00db923ae148d2ad3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3070f845f294440ea467f871f4e9758d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffe6be3b9f35cddc7519f62786d0eb4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b43884450e42b01a842b6373fab6954c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ff72dd6844c777f6523a15e4e86c4938\",\"labels\":[],\"modified_at\":1728721846.290665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a530ee6f5837210fe17a7eb90140108\",\"labels\":[],\"modified_at\":1728721846.291104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fbc10825a215ccf77771ac04d53a720\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0af0ae3d27d1b34515317f6f40dee262\",\"labels\":[],\"modified_at\":1728721846.294166,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74bdfa251036d94a97f241789a25b689\",\"labels\":[],\"modified_at\":1728721846.2946,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e698758cc618d42a7e6118d812ecf07d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2216fe6d827ae6564c3f5b55619314e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93cbf85dbce888c01dcd21f2d1c99370\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"183772562af3d9507f5f27c5b0ba0f38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c6433560756c9431e1df77c42b6d28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f6a57de7a98d6ac7b2e945d771fddb1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78debeb2eab74d07e95f30c8b4852e4a\",\"labels\":[],\"modified_at\":1768937324.729745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e70bb4917587f9b8a1d3bd96cadd5cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817943eab67fd9798445262f476064a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ca751c70c4d7fedf4bf8070434d7e6d\",\"labels\":[],\"modified_at\":1728721846.301652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44d8898092357555eefe4ecad44dee1f\",\"labels\":[],\"modified_at\":1728721846.302076,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf7330eb6dadaa91ec87c23ee00ae26a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c56e9d8fcf2d8ec59e77e00072f24838\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4446cf0c58d47c700287c9c21432bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffd7dbad382df41d7195eccfe18810d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e0906e8e3e7e8461a822528b1cc2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43b135c801d45745f3cf05c1bf20284d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a58405b84ac4e8dcaf4e760967791caf\",\"labels\":[],\"modified_at\":1768937324.733974,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f994629b2715d3c8dcf982027a8a780d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"762c0ea162380dc2056fd5704a2719ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7eaab4a2744c4902a408c6debc79cf37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d848e0323383acb9c5ddc423cbfd950a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"908ab6e73ada2695a0b1c8d01e975190\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d2852c957d65076fae9aa19748c9d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aeb0433e0d87026a6fbd8afc78aae33f\",\"labels\":[],\"modified_at\":1728721846.306497,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f989704f396de0f609d4b0351f2c0f9\",\"labels\":[],\"modified_at\":1728721846.306925,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a737baa4dc868142fb3dadc46322ab27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e14f8fb1c155d58e6f6f00768c1fbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"defadd1bbcba92ba76af88f17a4b6948\",\"labels\":[],\"modified_at\":1728721846.310189,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0014deb8f599a19a01599b67b85ba0cd\",\"labels\":[],\"modified_at\":1728721846.310607,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"904cf14860d4bd4c39b88c6ffc505eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2a2c87ca142a9691153c08e98c9484\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb608eabbcb86e1939bbfd47af08077\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1cc16282de895c102c625666255dd1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9654b1744b3eff83e9fe67c5f490209\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e48cf8e1095ef4f80ad4c5a40bfeedaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b5e2609b44518d7b650ed31366f9844\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"846632f2affb52790f552049838b285e\",\"labels\":[],\"modified_at\":1728721846.313113,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc5b74a375f77f6146ac469f4317556c\",\"labels\":[],\"modified_at\":1728721846.313655,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e31ea48aa516d44a0e74bd58e0bce5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2657140005056de27f2fd24f0f8c406e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f53dddb446efd5b75c2c104009de5a9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56a286889a09b67cb4f3da4901dcbaa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c06542330d8cd6459f5a6d000a45daad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17949bbabe2791d81f4839fe3e9110fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"523a483aa227e0b389baa33d916a600b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99761b8c80b75889a0e4d4e1e8d894ca\",\"labels\":[],\"modified_at\":1728721846.318031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d64a13fcd28fd09e1e1e8eb2cd8fa56\",\"labels\":[],\"modified_at\":1728721846.318493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70a2a1679ee20d747ff2a3a413f1e105\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f235f0b2abe04b471ec5b5e5dee4a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bc89c05c4c94a30db7238452914e215\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98571f78a667d1495fe0cf9836c9472c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e1e09dde3dbf7a35f9cd2d43962adf7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52c7ca7b64871829a52196f9006ab15f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8203802817bf1ad148be4fa89c851d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2584fd64a2409ee7a09a132954035e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98b7c7cf21f957af7621433d77abcb1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"beed0d43ff1aeede01dfb858e8c5970b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"921320ca502d44f294ef98cf28935e13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f3f60bb56320ae0aafa2079eb81f15e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d821dccb30962b1463ccc94505f53052\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e964cccf2a7ab8f0eb0eb913f676f05f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c84d95a9ef4cc438fc83d1cdbebba33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12ae7f7b84f0b2f02972e196ce9a93f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e42e6ff5ff57f588c006928612396ab9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d486aec5330d75337491301294bb4435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"346c374272b05752ac5fc931704ab571\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e36b9133e1d28872231dea0fb93528d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37d17dc9e2421530e61ab1fa54776f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9496b4f3a9d78224c587705a5efdbff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc277f4c90c74fb8271cce66304ddca1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b666", - "offset_ms": 55 - }, - { - "direction": "recv", - "type": "text", - "payload": "349984f09005c3ea218b605990dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf1377a4d496a97ca0468993f9d02d34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b237c13f8ff2d948207447d610bf79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7e258cdb97757b5d1dcb2cfcb1ca601\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd811627fcc5a2efe088ba85498824a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a034873b733f7302c12f77357cb7d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a06a139b75a0038df888efc160b6d718\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f342fffebdbb3961b6c7cb1483bdea7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fbd66619e5a006f253944775dbbe19e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe112a32c778fc5e1a85b57ddc7caee2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"269d59ba2afbf01a89976e87a7aa1210\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fdd6e83c70df50995811a7b4e2a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"461339479072e6cfa6a97b02f9607e66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4359424baa64e986b59fa41d415ab1a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc8aa0c17996ff85c861eaf8d5b0cf84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21eabeec28b1aaccd01363d19dfa11ba\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb5accdf9f56c10d895bd732f109ea3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d7d60da7940314cd626bd834af5e727\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"388577ab65bace3f26ee0ac8154104c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b33e66f09619f185899bf4fd71502c5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"531f0295e3afb7186a34bc84e036e106\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb697eb52f8e49d6847614e6c87ec81f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6c5c1713703f37c2d0c9dc58ab71d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa66284a36aad4743c9457b43009c3d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2dbebd1dffc9b31aa00702afca47fa85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"742d317e9b1b93196a64e738fe81c3e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_tamper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5694abb63a3d7d0f1fef64ca7ced652\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Tamper)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Tamper\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11e92860f380e2aed665f5bfbbcc4c5e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Motion)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7db329966d8fcaf7bf8f2a1a041f7972\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b27167efcf1befafb40ba35f59517cd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48fa14c557be3aac0f57468322f7eb26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb55ba8a855d25dd7428036e0cd0558e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ade08beb8063bcea7d4994e3339ae993\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b9cdda5ff0c3b9cc4a989febec670ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8a2920baf84268bd89b048d09e651e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d8ce0431cacc919f6654e0d26866a2ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05eff5902e0611fb8f7bebfb06af26cc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"576780787e0d9a68a0bf4ca262fd2e15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c83da5113e06a426ab49e391daa6f61b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2219269962fa6d6e19aeb17527475e5a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5588863a4b18d8b348a74149bba2221\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec633310e97c80c59c6315eddbaffb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"95ba1e0f0980a5e81a9ef637b5ba7137\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e1a41099b9e58ae2ac48892f7d7a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_sensor_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a191ceeb0e05a37927f92d920b7e346\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e06c6e040bcfbfa49d9e4e0f15ae549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fa47306024f7160e82fb2166d71503a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44754edc6ab7eab6babc1a133ecdb743\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68a3fe093a4715fbb03c1f6ddbfd4315\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e025e5d17b85cc5f449e4d48ae663657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"130711c5025aa11d4938873aa2b2ef5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a640b780d8eed0ce27f6b553fb0cabe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f692df4d0a05b8ad1192c699fed5eda5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6353d49e24aa16d649ccc114e07684\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc6a70fe7c7b6f1cbf485e3b2b3e6be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a088a5d0f5d09b2c15852d0c0e787b7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"964462020e6e73b0b0169f5a61eeb044\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22fb495535a4ebd7554ace311e87e8ab\",\"labels\":[],\"modified_at\":1768937324.754808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f062bd2af5cfe5046c59f564790afee9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47e5be29e488997e90937e83b9da396f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b7c79a5c504e2f3eef63f7237af33d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1562e743cda38cd488936d23e22b58f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99afb89d564e6c8b5f415c28ce8491b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4292496fbf98923806f65951145caf42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62c38c853703ab58d017fdffcfa06a03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35ac42b0024d325caa77eefbb92fd9b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5127f16f1631b5877cf467e2d58c1c7c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"55c1d4c91d596bd4191f48a726f50433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7407cd1518c4dcebc6ef6c5d8e7da423\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6415881cf9e2c0b61be6abfa112e5cf4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2725a94f79899b5a4970b5c4d3b9e418\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4704baadf1151fcb1af4eb70c654e09e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30ee61c6ac77872bef422f8ab9ac933a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0732e5ee938297a9f5b973ed48b06d3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24e11985867ee122b198a79d40d53bed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e0ad69f430a72ac40230febd6dcff06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73efe848e7f6628deb3e86f815638a6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e11e57268a63a858310fd24ac8994a26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3929bbaa3f8cd13a3aeef2e57952959\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42e94a93f2db059304acaaf69c17af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d643c40ce27169788c2810ecad316e60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_on_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"90198efa0dea712c09f423bc7fab9741\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: On Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_off_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21c9e490e8efe764f099f91b18f22c7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: Off Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_battery_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf3a65f5e9b1fbef950e3e779e92faab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bd57910353ffae53801fd8a4f1b5f0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"454f88037ba03f08b83dccfd939ddb4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b426c8fffa9d853c719d4ff70196f3e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6824baa7a41d44d33603b4c760879101\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f0b56e360639ff5daf69a28f3036e79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.office_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eafd82385841281bfe024783dda13491\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ce75698c6edf211b8ff2e161520b411\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b98a93997b7667b4711d2831983de8a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5734672a2c09d8f0f6f0e233752b945\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99e3d86cf2c0a6fc7015cbfe7d79a060\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc9e480f72433ef3b4ddfe4a5d6dfa3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bba437e48b66a4689e26bf8b75377b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5bd8a6289b290db5a819a7507404574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c540b165eb0ed98e6dcef5b988de2c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f131df2fc89b340d5ea5d8f7553075a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0b6740cab7d3dc04b516dde24dc616\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b37302459fe4a8e950d1cebd8a395e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e103d6684aeb59d2b23569b207ba4b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1360a0cf141f9ddedb50eac50ed00ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ac8de408549fc851b81f2ffacfb1b1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bathroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db63a6e036511328bd6ece0876ee562a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2b981534f8171df4c6da3f420af24f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.cat_bathroom_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"583b41419d24459b2457700e28653e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912457da9847cd4c455444e5e3f4b02b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d9f921b3ad910d1de65af1ca97cf54e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.large_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe738ced38fd9513231370dfbd42e0b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.small_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e39d012d9fc6092736ecec03677116f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_motion_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6db261bcc15334e1bd64fd2fa62f1cf8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f46c5e88175f5336c08f0ab4b7580be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5544ef469f053ffa8759c7294efa6ea2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4a34eaf48d2c692542296f0e8a7e5d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3c7cf072f2a8ee7bd8b5d3a2cd179fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46ea4278b577244adfc842379d0aef1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b396ff111d07c8a2336ffb8b9f73e25\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6128229fb9f940def07e9c96cf14fc6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1274c94252cb99885059e3bc453f9d55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bc4bd805d7619c9a1b04076c931616c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2984b5f884cac4f2c289443dc2062126\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff64a4970c47dd1e208dc6113f29e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2e22fcbf052b73b858a5895ddce0eac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2e19645094c9d18821b943096dbfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e205c1906cbc3351074944002bdd1128\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b64991bc065b8ccdcbbc057f446b1995\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c14062b8523902321eadf7b3b974257\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dbdb7cecb5c85ea349569e68c3b5db5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fb06bb52f2e78831d67c9bf81a0d07b\",\"labels\":[],\"modified_at\":1728721846.268738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7a0060798e93dae0faef390c32c1c1f\",\"labels\":[],\"modified_at\":1728721846.269198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bda4ab6b68f9cf6d154e58d087f0dfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"876da9cde9c3be1845863f537752d364\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c034573ffd52e5a3d3bda9ba303df881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04c854aaf4c81f1a2d429a4a710b960a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c51654eb9bcb7b8bde5f10aa2a6ac2b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37b229da70e600b50c4da7fdd12d386e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.back_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad8b88418744a70fe17230e705c04e4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2d44675bc66f37477a1df4661470f7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e093e8f61c9dde686aec60b62b160f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d1ca4fe6518f80345d12cdb048bca05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f5e73212ea9ec168cfe8f89cc5ecc5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"619631e25ad31c44d797b3373abc0121\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"41c5da359bd07253c5906ea3d1d5c9bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69ab1adac8e2d678e29ca7cfc3663b5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d18f196a4578f9f03c18c42a349f4942\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"828bed1781d3ed491bb52194aa5f52c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb03e8f944a74a8d6f22cacb69a179e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ceea1e88fa6359162498d39710e76608\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32c94f61cfaa021fec2a7c42c0187dcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f35b908065d262cbc20ce40e77913ec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6e4fba44f0f1074fdb8f59a099f984\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"698ef67888799c78702f6e5993f9b043\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0141219b641271db80532f3e4c208a8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6945bdd9b5c1286839ec2feda660167\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13524b9ae17c60833721f597a438923b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bff288f871c8d3234915db1df3aecac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_room_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0120415d97c3741ccebf80955941d0f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b225c98bbae007535c42703d08744762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c4ddfb2b2ea1632b65135e6b4696b1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"400140978e8261edd5986a6631c65408\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef58559c864967045bec692f21ffc889\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93b1acb4134dc4868cc73ba3a2b2719d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee02aeef4ca9d0bfbaa379d5510c5af2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08b5fb9ce8c93a2fdba273d6e9e2bc1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b3e485ee289f8b2389d5d8586ac10af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"295c55ea37ede32f5d0542f2084a8fdf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"af540de79c1a76846557cb5422a2440e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80c1b96899d7ba609ce43f5d3808e905\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e9642d047ce619369c413e6338734b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee3f22dd95d9b04f3bec4b329181605\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5263aec80e35c0827a946676a4aca38a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab751aacbd342317bd0a72094ab1e3d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"205523a60b2f2cb5043d22106d05b771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_room_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c71d1dd5aac2f57ef4e5d93a800dc49d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.back_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23eefb89f7598b1b12ddeb6aa9fa790b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54bb5483d9b560378be5ed481d8c6f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e010955d7518d31854c9e4aab3f27196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db9bfa3b546ed6770a643c10cd880ff1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7df987a19ef8c7183f8bc12db92dedf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9010dbccfdc1900b1f762399bfbfb817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3f2828ba1b43661dcea26810294801f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd7149d9366d9601a3da20992991bc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1033ca0a8c4bb87068b0b0ce5045202\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4b736f4e34f5b44cc71a6c173a28bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9d0afdbaee1c21cb97bf8ead789fd05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b7501814ada140ebbc75cba95bd508c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c14c404b2807aad042575bd543388bdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e509fce7fd82a687c5380cabdb85304\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f77247ea5f57e1024e9a33057575058\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e8e9d058603365d951ca1000c07f04f9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3b1909b7eb73dc73e68f2db669bacd1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc97dc24ca8dbf5b4cd695ec9f18062\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e458d225d20e0d47500ef79aacc1fe7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d1eff5533638de7fbabbea2304821f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dd61553487e0f10f1c0046b93c7421c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44fa78eab4837b85fd7e18b97b690646\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7fb980b446c6bba6e7fca57e53537b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"834c2fb0c37edbf7b9b7cf32759d7793\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17cf457e684ec08236fb7454df043269\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7cae94a92bf02857f8185574b9b2275\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dee0b93328e4119a8c1edde7101029e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbb5600871de8d1cf42b880a544aab10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce87e6ae3b11ea4e45fed434c0633010\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc5b08b6a1940f42619bd2cbaf4a6cac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7612f009094e943b1e129312251b6db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c69bb67dd0462ed5dd00def8ad53220e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1655d96ffffc5c9f04e400af601b4047\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2c82f032d22bc8734679d92ea0de83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12b3ea55e15328ea4d540058ed33d507\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74ce228c87059e06b84516671ac20763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a341d131322622995e0a4dcc4c2fb896\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6e47f1cc69120985b15d8613036a9bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b496ac89474549c88080fae26ab63448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d02dae110c56c726715e529953d922be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8220ab6bb0cc1fc23c6858361deeb46c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9c73a2a70d12be24ecb2bcaf74c1eb9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26e03526e28cfbb18f893ebcc3dfc0c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98a1532b78d15322829fff6448682702\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee8d5a14a38130a77623414ce6ee4fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bee0b4d100f784a89f713cf59ae7eda8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fceb8d7e9aae08b848cb5dc97b345c3d\",\"labels\":[],\"modified_at\":1768937324.720737,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6e6ad930ee7d37c2aeec57f725e8dbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77913513918309cf18ebe9a75f1af7bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9925ebcc60e4395ed603afbf5a139a72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.stairs_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"64ef85094caeca25ae98fa076d8c6ab2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.right_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63eb7490ebbdb77e4e07c750649c0110\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa8df4191c90e2069a0650185f007b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe3864550a3efb648fe327037ea10625\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8522f9d656d4ee8d60c972ef318b12e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"381daefc1183f93859612b03573ac4e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6dad265890c82659855a7c138b8ff20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2143f3dff81f749104e0882d5274088b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ba145ce3192c0052224a1909e8bfed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5cad207f07383af83050f38c418d4f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10ece451d2f337805ce9472f298d5025\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f40809067c9ee7888788e40620862448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b230d1dbc4c26ac2bd56e50bef6b57e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bceed13702f89123dd582c5438326a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba603234d4704fa0d097770442b26637\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9b570d6459263411f32ba20823378e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"540f56f2db42ef17ea074b6d12c6a8d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b882b539f37696ac5b0d72346094808\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e335a2340c99f5c831c30988019f4291\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1496ff3411098998299e6b70a8a6ac8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3e68f4e23f1a8c2db67c33fb020b7ad\",\"labels\":[],\"modified_at\":1768937324.724768,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57ec7dd098b7d22f35ef2adb35070c44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"580b0c98b0af40ef97ebe8526b5dd762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc7acfeb1f1383b3f1193746d7effa9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ffd52e582ef700cc04806eef2286427\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f104dff69eb4b8929dca5770b0071c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca88deb31ee64fe9db769663ff3ca08\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28846a193465e0feaf80158a9d92cd87\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df83d525d06cd5c6cb8935d53899ecb6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8aa35ed55a01305e566d54d73c674a13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4efd6b7a05ab072f70351db23b242817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96372675cb474b8a3a33403573ccd041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19d3b1945550830c400d18eec7936d10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"768825fc5893ae8c1a68cee71f34d430\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f0f3f4d2f6f41f46a7fc5883c19f7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f779f56acb8df9a45c5e26e1d34aaf94\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e88349529a6577002d4572cdcfa7ad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4113ed3a769b963fd4a00ddd0932f173\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc9935b81c48df8d37aee1e17845afbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05286428dda0b418578fa164c2ec2f41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7993ea69eaa97bcabc92f958925362ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9bb313fae31e282e00d2a262c1be84e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a33f6dc15ebeb5c65a8da89a90da3c76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eacc493fd250cbccb936a793286c7939\",\"labels\":[],\"modified_at\":1768937324.728547,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eddfdec1717ef07c1a822b3f1c6d417c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bbc32f88ebae70bf8372daf6ea6f84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"824e2082cd5cfa0b434b927daf025f91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f0851ad45568021e7ae5eab17e2673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"797330642b50fd7cc717526490b5cd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81aa7a7763b626a16c33da9baf51a380\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08710d667a90994008b9c2e51f4bbf49\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c7586cb4377fac8037833b67b9b555e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bff0a946287e8e81b4791204fb0c4b6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c91612079311a00400f01a0e5906a212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ba6d0c2e53883635ee9ac22d8e850f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede8b905bcee1104ef3416e5edadc25a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1ec16e8db40ca002ed689cad642b9f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05f81c05fdfc78fd9a4f8f4a1c8b8640\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53e8b9304e649c2f34dd0959606500ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b036c6bc350aaed23e9f86bc06cbd2c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a3739602f92462bbeac62fddc838fbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471c0a1606542b0d7f960c1d2922d7bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce49f041cf870cffd3f0df35ebb0b76c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048378228b0fc98e250dd66ec6ac6ad9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5e40022e450e73c4b5ab1198e302462\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d78bb4acc54d779836cde9c8c6a2f8f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79490028fdf09eeafcc7a7e0ad2d160f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f1ed32bba3d33dd34695c661fa72adc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51e3619b9800abefc65f0b522124c7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a1866797815d855c958561d455ffd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f0626cca53d88f5dcf005b18180e9305\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea487f330dfbaf833ebf624ed9896db3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.kitchen_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a635928a8b31bab1a27474ac2f6a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56e02b860edbebacfde760983dc798f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e605e68d92150816bc124ec684b725f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ff656e62d6fe3600aa3adbc8fb526a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec53255b3eaeab829b0d155c429e1d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a08806049e02892d2f6a3d53113f1db8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f3c6699a41458e7aec2b1989f540a80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0933863db47ac364ff1d232f8b46e9f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63481afc3a760089087eca73a0f651d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8957d79e5cb80b0c1a20820dc97b0a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a60f74fb0f1301397480c82b1d54ed5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b504e536735dfabc28835d2876bbb23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fbeb6d2c5a857c79c70e7bb0561fad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fc4e4d47d9a676285c15a975e1d3c36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97f291f24fbe5a30e18bb12dce1a6676\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d21bfd9435eda404f287c3abbad94d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0444d51382f134ceeb06a73d4f3a1cce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c05a4adf47ff0104122a9e4dbf7fadd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4aeaa7e71c122a5d88a3b1882ad8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b17374a4c0dcb067542fc6a74220221\",\"labels\":[],\"modified_at\":1768937324.749696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15c2353076b1bc70f96467ea60e93883\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_local_programming\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b8266fddd3dd1a3fc9c9044bd7f7d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Programming\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18011a3dcbe5a7f5c93c03f151658078\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2e6dbe9ad453568e0826d771078d367\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b381daedd22399332d0c23beca269986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.jenni_office_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1db1d985f5d174ebf175d27b918704de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e96da560109bfc549eb175d77df5239\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b773d9a25d7bd00ebb8c9b90fcfbd8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5deaf7bef811b681c4e8b76c77d2db39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a8dfa6c8c5decf4c4be882afc702163\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef6eb92baab404af7fd61ba41069d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e5b7d53a4b2adf058011f65f0e4ac19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c184dbdd6ad17f8784d17e874aa0d0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"967915145f0ef87b05cf3ec61ff92c4d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e7d97417712b18fdd39510f53345f54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9e05ed0d78214c146c191a7915fc2af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5524e4843b13f72a0b8d3c36529cecbd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"462517ea07b522dda3d29a5d77358b07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97bfc53818e1e5d2b0c76cd8c7ca68f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad2f5c181c586e3bc45dbfd170cc8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a205de2be1537a999eb4d266b7086c40\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da5602526297ba1f96d40f0e7ecc0f5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e10162dc3c84afe280c5a18dd51e9b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc24c82d16bd17b6b68e0b2f6f3f4ea6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001f6b44d64baa1ab159b150b478007\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e80550caccd4b20ad35acf4ca40d92e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6b3bb5ca29c4ba1a5f51a07c342319\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d442915fe41090821ed760f0fccea89e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae41e29abd52b9682303ac5e2c41635\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7de9997e9e1a3ef46e7bef4deb0a659\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0f95b7e389e44036f819bfaa12835a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9b9926bc3aead0f4952441c76387ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.front_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e18e30d8c73b2b7d8f56d6d8a72444c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5da04a067a75da78e01daf28eba1cebc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef81d350ae0a3120308f207a382754b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c93b8d9c39bfb59bb63bc28a67369b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c4bd8ae88880be45a949ba732dc061b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50561c8d822c3b26d448cccf525cd1b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b49703ed535bcef72a83f0289633087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bdd2faee34bb34a5f744a8881cbcc68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e5c2c80d8e6863d72a81c9dfe05218\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93d5ca265b8193cdc3e97680c6db647f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d95b3c17713874a2a9d757e5515f9a0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eff4988dfe92e73c693e77473291a68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aac4d6311ff78700b94194d61356c75c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4448f7a424cac4aa39698e8890b4d84c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adeeb59701ce2173bd76622bf5fc040a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8102a65d592a4a456c8cda46f495d8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ff20be2fc93225ec08b44330ce05f90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e23cb4f3bd96aff481106795ea4ac53c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c38948afd63807d9bea536058af2f4\",\"labels\":[],\"modified_at\":1728721846.364993,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dd9482ca71561ce5ec70dbb6aea6b3\",\"labels\":[],\"modified_at\":1728721846.365587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d299d44ce26d096fc59656441c155e91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ccf12162192b1db183d5e658ca8d5ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048c4c8a57e47dc7142d8ea6fa196a6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7984cbb544e0ef6af868a938894a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e58a5f4844984223a08cc57a1e2b5f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1eee0f58b4efc0fafbd2a40a8e11ed43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcd7f656cc785bc98cbe8849648c0967\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0bed885a5d924aba589b2583d05fd15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb6de87313ec6de004fa95b00aa6f927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d361feb6237b762704e0461d6fa7d83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b012aac779c2d71e28c4010032f7bcb0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8381ddf293ea7f56e0b6dc25d7a2f0de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ee4d83b710c21b6d1294eba54624b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eedec08306572ee3292cda66ec9bad50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ad3a714fdec28accbdd4c4e7de89a29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4db29e68a9831d8b83fbc34af4098986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b6a0c3b3f6f37b85e7d467dfca44c1ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea03c7aa1a8f7ee7ccad99b3c9ff4d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d565a0520b9f6299ef5cdcbeabfcda4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15cb859569c08f27db39dd118e8e87dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8507c90d370cbd16116be434d5246222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6474656dc92c4ffc2d68061062d4bd44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2ffa582700b450ce0892f6635734eef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dbad0e6f48a425781d17739f8795734\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6871d61691047f5f5f8a2003ab06bc35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2bf28252f61cd3cae9f59c22db2e929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status\",\"platform\":\"zwave_js\",\"translation_key\":\"controller_status\",\"unique_id\":\"4182894947.1.controller_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b6f1921f63105e65d33f275bbb06769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e2878_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.adam_desk_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7b32509cfd8e8b57f2135f982e8d34d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.adam_desk_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"744a5b039fbf04b72c13f42cb57c30a2\",\"labels\":[],\"modified_at\":1736355683.891054,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e2878_", - "offset_ms": 57 - }, - { - "direction": "recv", - "type": "text", - "payload": "0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4409a3f2be06b369227045d72f072caa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e2878_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b40a7ba376de7ec1f911de7228cc76f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e2878_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a23c6bc5a4861c4f54a86066cf26e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e2878_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e29a3d1eab9e6e7b39d4981814c1c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e2878_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9743c6abc46883a073a15fe1d32450b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e2878_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e52b7a6ef89176f6d30ae8b3bd7604\",\"labels\":[],\"modified_at\":1768937324.880394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e2878_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08d27aac87ed1eef797f4f56dbf0e5ef\",\"labels\":[],\"modified_at\":1768937324.881003,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e2878_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d396a6bef670fc54d085c5d175f16a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e2878_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e1f6a989fe00bcf10daa6fbdffd74c8\",\"labels\":[],\"modified_at\":1768937324.881525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e2878_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6852f43897d8fc7e5b971354177bc7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e2878_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2dd7622b83b59be4b859d62aae5fcfa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e2878_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"246aa304d51aacbe8c81d224279f1b60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e2878_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e787a2f31cb2b020e5a02ccecdb5194e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e2878_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c038f834fbc5de4047db5d693de5520f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e2878_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e318495a5de2c0ad46f0d9fcc212a1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e2878_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61cefcdb814557288d2f15616147ffe2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e2878_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a25d33a371e9d37b9e359fb3ab60102\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e2878_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"985029c1c4a205b9050eb47bfcb58278\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e2878_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88d63901ab44f88f1b109674d78fbe6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e2878_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da4ffaa9bcb00cf00f6048f46031c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e2878_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"596f907cc32b91ddcfc55730d567ad23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a1dc1ed378fd6ca5ea8531b3a2b0290\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"463d4f8bcc15b05ea1ac493576708a05\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48456beebaa2358ea71c3fdc9cf7ea53\",\"labels\":[],\"modified_at\":1768937324.522171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:08:8B-light-office_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"93c6c6544539cf899bad569ce9440560\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"260f603c708075690f0a0dc262c440cc\",\"labels\":[],\"modified_at\":1768937324.521066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:1A:86-light-office_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d4f33c22b2f134128499d170a9f81a2e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4316012718b14810c7ed8651d3e040ad\",\"labels\":[],\"modified_at\":1768937324.523393,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:05:0C-light-office_light_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c2328f12915a88e139203759aa099d80\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c58a3dcff1651522f7a004fa77854cf\",\"labels\":[],\"modified_at\":1768937324.525846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:07:3D-light-office_light_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fd4b4a826ba1ce85b11c2a14483964f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b81fb595012241623d52d08e29f7834\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c3957d10bb011bb12b3e6c41b598191\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd09a74fbce16b1ab27aa2b8ce22df44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26ef71b3733fe8af29953704041e8b92\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8f82b3e8f2771f0ab24c9839a858b0d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc545b29708c4c982c585913d9fa6f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e20e8_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bed_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63092158204e47a86900ac1d94b85d76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bed_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"765ce6a13ad4d227fd7d1df51c057076\",\"labels\":[],\"modified_at\":1736357560.669652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e20e8_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae1c3396e8bd72eb45ffd91d3d440d7e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e20e8_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887f889588a56f03619560b36016847b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e20e8_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd63c27148c664154b448d68dab14850\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e20e8_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c120e6c6942aca4361e8d3482d529b13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e20e8_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80be9a2f4eb93931f72869f82ee1a25d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e20e8_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b348375076eb71644edfa2d3a1a3fe5\",\"labels\":[],\"modified_at\":1768937324.888442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e20e8_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"14e92db25cdfa8cefc51b2e1ccc83517\",\"labels\":[],\"modified_at\":1775500964.404141,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e20e8_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f90598e2bc0b94fba4961f07483be83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e20e8_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2dc11642030b46b55567615c6b50cb5\",\"labels\":[],\"modified_at\":1775500964.40468,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e20e8_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a5a22be58f4439bfb5957f1b1ccdd5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e20e8_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab698dbf37373681bc08bbff54a7537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e20e8_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c22ea2a613d675a1479eb45f1993f33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e20e8_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b80991556b6a76854ca712e3dfc7496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e20e8_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed1e6c2b75bdc80fbfffad3c6cdb0aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e20e8_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99a6c55ed1a3ec824f83cd8b9306930c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e20e8_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66a0bbe3b51a4c4457e91b25d434b43f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e20e8_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a74556a0d4547c7c831b8f1e4753759\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e20e8_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7820433bb9beed63af31d3821944f306\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e20e8_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd7061bcac8bbe254b1298b5e4a41c1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e20e8_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1040da8c80ca7bbdcbed89aafe909b35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e20e8_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f6ee68ac821fe83edcd517dd51b7fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bed_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b80f0761cf4c725fabc1df8de30f0f4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bed Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bed_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d1ff20197a688334ed61ae0ef24610b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698022261893\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"375e166e0cda4a49184ddc7a3baaa4fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698131438659\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1516392955dea9d5c3987f65e1a21ae5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f262f6cf884c0de68c44d465232ef2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b77573023fd0e45cbd803efb780ad2c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3302b58f4523b9775deccc77aa05bf99\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a5224c58b24307c45e10299f3348cee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aacbb82d04534e5b5b389236a4c0f63b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0bd108d5e399f94d25c38981e1fa74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"717eec56b8ef81c8619737a303b154b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ced631fd54d05c61c0e74631e41c81e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7494f61b328a3fda8a55ab7a5fdf222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2e84cbdbcc51e4f48baf7214e76d722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71648192af447198dd4f8300ccc532e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ea641a89e1d849c3373b2c337c3a66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc0ff81ebe53c633db166a1af91cfaf5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e763fb2e22c28f390add28e636c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30be942857ce762791d50422aa7504d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"65a42c0fb4d243662d5cac0c4dd55944\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2abe6c30c0dfc40abca673632cc24f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b4dc28ae7f2524ca27c1706b5f16c88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f7707b0eabb9773200603b8bb1b32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20890daf170f69687407391661d973ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e0f4e90a3faba0db0361d78e006929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a82370728b30adefa3817e4cd46987b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79efb54b9582819a0637c7c994db3c02\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d5643409303cb984fe3b1510f5253f2\",\"labels\":[],\"modified_at\":1758660536.913726,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2c1ffa1fefe471a1db8c7975915cab\",\"labels\":[],\"modified_at\":1758660536.914575,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7f93fb1fc2ce5a89138f056d261f6c\",\"labels\":[],\"modified_at\":1758660536.915203,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ffc5c7999492de07a6ac08ddfbd6cd7\",\"labels\":[],\"modified_at\":1758660536.915773,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94f4819071ac098d75745bf9217ebafe\",\"labels\":[],\"modified_at\":1758660536.916339,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"762e6d3ba10d31145566124175888acb\",\"labels\":[],\"modified_at\":1758660536.916906,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b99d149c424b019412d5967bf59e2b03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8664760514c651576ea096f12a1f392\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1eff1ca3d5d08ce4e23061d9208cdf6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cf765d081c1063cc980327cd4b896b2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a7:98_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"250a48d09c2d5e25299e39b9a7a31a0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3f5c4f6251c9e5d461d24460a10568f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"810731b1b401be39f6e86bf0db1694e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aaabb95ae0d93dc3cb445aa90193ade\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:6d:d8:6c_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500bedb57e5c713e97640f8346c53669\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30a484b77d3b1466b9fbd3f5347769e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede974f57b59c7ba6453e2b9713b1b63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"408ef0bacefad7f762354332eb3df58d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:40:f0_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58e0d06d601277431a4397c287295dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b90fcb72d686e7f16f444e550870f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"562d26b904b539814c5ad4460facd881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82cfe763a98e9bf75c35410890e39def\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:e4:6e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"affe0aa48114f479c924abd9c9d5ae4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad9ecd3f5664ecafb765d2a1b1c52651\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16d12c6b79c955c505c8ecd86eaa19be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_4_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"298bf015afa9856b33dc43e85563138f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:ca:59_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5387707cbd7934a7f17ad2bfc2edaac6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd375e9778adf92ad651ebdbc6a2a4b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ccd49fabdd295c62319e1e568a8bb00\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_5_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4097f2af48e3dd76fdb6f8d500af3e93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:fc:44_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26b67877c9a2b2cb3a8215b88a6bf42d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d92c178e01c229bef991c42a015295c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"947a6a6c9d9b978f8a32ba22a2b3852a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_6_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1453d3b4b1b9be768f4db7b8b7ba4f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:56:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4db62557803ea897de2e45c2dbdcbb3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c25ec789c92b4385836706e4644e878\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"168cb748cc49f12a335dd8dfe3dcdc07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca28d3e1aaa9e4f900aa7ca1ca3f9aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:b5:89_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d255bd26c49c0b8316f7e69de655ab0f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"stt.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b596632825fe1076787e2e00a1d029d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-speech-to-text\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"tts.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2927fa130f0baaf124411cfe176ebead\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-text-to-speech\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e19a53d8400b62c1b8986a02b5b5b0a\",\"labels\":[],\"modified_at\":1728721845.983581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.4.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2df5dbf8c580bcacc36d1c0bda2dce\",\"labels\":[],\"modified_at\":1728721846.001319,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.5.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2992a8bf82bdea8f5b4f3edf59345\",\"labels\":[],\"modified_at\":1728721846.008929,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.6.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d534d2f4ef518b830eb886757e17e71\",\"labels\":[],\"modified_at\":1728721846.027127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.13.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"701f561124e85d69fe250c6f5ccddbc1\",\"labels\":[],\"modified_at\":1728721846.035759,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.14.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b8ba7d5ac2d0d7b15ded3b394797bb\",\"labels\":[],\"modified_at\":1728721846.043408,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.16.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"703ae656d9dc0a91ed9349e574913af1\",\"labels\":[],\"modified_at\":1728721846.052172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.17.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f933c2cb7825c0c98616a1cd0baf665\",\"labels\":[],\"modified_at\":1728721846.057779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.18.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b467e6ece5165bf28ef33e1806d567c\",\"labels\":[],\"modified_at\":1728721846.063963,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.20.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4deacb3773ea5ede7d53b9b0c4cc1b98\",\"labels\":[],\"modified_at\":1728721846.071734,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.24.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"907ff6d2edd7e5fe5373d1f1409792f2\",\"labels\":[],\"modified_at\":1728721846.080476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.25.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"862115a3de075173eb494c7860ed31df\",\"labels\":[],\"modified_at\":1728721846.089722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.26.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b423d803ad851f36a74255a889186bb\",\"labels\":[],\"modified_at\":1728721846.099062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.28.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47516de4224b0eef5c0d003c0513060d\",\"labels\":[],\"modified_at\":1728721846.1068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.29.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6f7dbe7caae310dd09d478d46a3028\",\"labels\":[],\"modified_at\":1728721846.114612,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.30.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6278dc427336c377caa1e58c30ff092\",\"labels\":[],\"modified_at\":1728721846.120738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.36.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f72a7429de924578f7b9c3fb6d781a7\",\"labels\":[],\"modified_at\":1728721846.126794,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.37.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4411a0bf4d7bb1ed0f6f11343dfcd199\",\"labels\":[],\"modified_at\":1728721846.136087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.38.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b6bd22bb44d0c9f184f996e2ae77d69\",\"labels\":[],\"modified_at\":1728721846.14763,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.39.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a26fddcd069cceb68a34e3461a6e0a03\",\"labels\":[],\"modified_at\":1728721846.156271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.40.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe7380af04fc4c2d01ce456a97f9ef8\",\"labels\":[],\"modified_at\":1728721846.230796,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.66.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e62d502703a6419c34e8edd95c486814\",\"labels\":[],\"modified_at\":1725239521.486838,\"name\":\"Dining Room FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7bb8fbf51788176cdb83547a004935fd\",\"labels\":[],\"modified_at\":1725239521.488668,\"name\":\"Dining Room FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"643d73eb1fbe0ddfcaa75370f3c8389e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a43b45ea88de4d9219e8d2841b42ea4e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3298e1c38a53b3c870fed75d6968c07\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f041b32270f9966ec39f26bc7e960f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46581f02785bb70fdee35529c92d263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6bffd588d27f8aad7cc650604b61c2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c74bfa7715f144957d804f646c4799bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights On White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25c3d5677fdc630832ee84427cd99536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902139116\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cbcd941a74a5a7396aad84ed9fc7dabf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902226266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3f98937a77978b4644ecd2e3b22e8c7d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.leks_lamp\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7fc3837a77f3b273d02c5bb1bf0170f\",\"labels\":[],\"modified_at\":1768937324.523879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"leks_lamp\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:E8-light-leks_lamp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c89435003eea4c6873d070c3c97fe473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3d27d28caa96a13c6ea25d0171638780\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1da40bd512b39f99dd627edb13c06403\",\"labels\":[],\"modified_at\":1768937324.524838,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:68-light-front_porch_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d054016a6b2f868c331522d5f2a024c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a43e095361249391c95d346bead29de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d6e9bd72ac413f4c9765807a7a8829e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d43bf2ed96db238ff6d5a3d55b74102c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5cfc016d624d22f58b972535e2c588e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:4c:4e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab8095363203057cbe0b359e78a434fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08f36a4038ba7e9ed484f4e40550a93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e32158757eb5aba850a4d85abb2be672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43eb4d024a7ef32436fc15eda451e656\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:92:15_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ddded55b837de9c9ba5d6b539445a14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4dc39ab3f597be7b5698f6d43b17afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4a3dfc05ea5897c3f4ca6d122a9e755\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d66b459d9b3468bce28a13faf238f788\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a1:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66bd7310f75118cb61fe4439c1b2dbaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e4f14bcbc3db07c23bde15014153663\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08167d99b04cd3119c18bc3a2a03dc54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78908f51b09bf8868105eeca61df8b51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:50:fc_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c312f3943f53f013a1698197beec7d9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be1582024ad1873d0529a0f5b617a21e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce297c2ac2bc5a14ebb49b8600041d2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0f550f0c1c6f6cdd1f2308b2e154000\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:d4:63_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de8b6bdb93fd71244574b16898e15903\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0197af3b4e34cdf7ec9a96ce8415728f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bd54501fcc95714cad1dcc1cd31f4a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"148c8043f4ec331449594ce281de74dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:9b:c1_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40777cf802aff4a5b6ed5e3d5c0883f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c03f2a67067cb61528fa31b6ad9b94dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33c056e4fecb95c459544ce4bd40bc90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8810cf2748e6123026bb56d1577b6b14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ba7328fddb154e27b647e31c8da72fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05c1a4ad242b4000e29be97d7bd1c3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"27cf5f296894b7daac381bf03d05ed66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"469441c2849c8da30a2a3175c2bd6d6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5a2de0bde5a2e1cfb2116303d6f5be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13c83850a4f8bfbe494ca9f383a652d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e979bf5003d332a9115b787a3d2dd2b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe12fde8dd7a18b5da9350bfc48afae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53fccaec9ce8f17e7d03d9dc4c33cc19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e27853184c40850e3134ef8116e8673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb7eeef067360dbb615665e6de5054b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0a5aed8a599743541e88238fe0839cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e632ddf5ed06b6df996980dcd58537b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.68.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2be995612da3708ee3aeabf4ad49d8da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.68.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47608e4f8a0b2cedbf2cfff1d12cb4d6\",\"labels\":[],\"modified_at\":1728721846.246357,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"538ed7a8af31562cd0d7c19f8a64c8e0\",\"labels\":[],\"modified_at\":1728721846.246572,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5fe7e5df6a5ce5a5694b4ef947580b6d\",\"labels\":[],\"modified_at\":1728721846.246723,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bbab6b72b677a179c8bc1228ec0fa29\",\"labels\":[],\"modified_at\":1728721846.246866,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f6ab96f4e24907de75d4f673141590\",\"labels\":[],\"modified_at\":1728721846.247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.68.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"830fd955b0b9dd786b18a7cee2c59bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.68.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee2102e9596641854623dacdf86a7c10\",\"labels\":[],\"modified_at\":1768937324.645237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.68.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab9f2342cbb08659c90acff506df3b8\",\"labels\":[],\"modified_at\":1728721846.247129,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.68.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b57a46d4c309703d4a6c50351952ca1f\",\"labels\":[],\"modified_at\":1768937324.765615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c4d6945336b15e0bba9b9345eea008b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"430cb36836ea27ca6cc4cce37605dad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519b5afe350cad9e05b31596d69a6e8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d050ee7382f25f72284e5cbadeff8d0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f44484b3ec3f6e65dc64ca21de50c405\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86bdfd735092c7fc659929e894fbc672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fdf886269a2fde49bd57cc2cbbd7fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"587df372365d29ba4d904980f49162ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c7888f5a2bca7dba8bd7f8db8e02292\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b273f3e4da902102c22068005d31362\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4923aba2eedfab503063be97268d349\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83882c656fefd0303211e999c22a2765\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17b020ebb60e265e372186ff5dec78fa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a821ce10588a5f5c21dca0d5a1caf1ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c2caa9b84384312cc3ee01843fcba18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df2245766365111ead8a1797d4aa1628\",\"labels\":[],\"modified_at\":1728721846.369908,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b21dcb9411ff471644d3bf7cc1f88d5\",\"labels\":[],\"modified_at\":1728721846.370379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b2a820515542e566358f93aea435a81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1598869d84f6256ea9af4669c9f1b726\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.upstairs_hallway_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2672687dfc897fee1ea56b169bb7c5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2119dc1ccc97edeb6e783ce5f0f7ad88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f562bfb09408687492fae4843c9aa192\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad9ecfe03131cd3738d0a0ce1ffc37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aab59415957dbb20b62b5aedb141e753\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e50482b2832b1c9478fd4d009eb8216e\",\"labels\":[],\"modified_at\":1737489134.76617,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966121423\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.night_tv_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2320f4922c41ae3049550a876bddadb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night TV Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"night_tv_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ae4f862e8267f53ba0ec595a391bd85\",\"labels\":[],\"modified_at\":1737489109.545107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966772353\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ce35a8be192434170cdc92d71e7ef8\",\"labels\":[],\"modified_at\":1737489123.678107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966888905\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a445cca6a8488132b472a230b330f318\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d07c497e4fb52fab5ac3b5d5dd718797\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41418b9d9c10e3c186e587bc21a21d95\",\"labels\":[],\"modified_at\":1725239498.826997,\"name\":\"Master Bedroom FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2995f0a20e4c3a95dc980037bc879f\",\"labels\":[],\"modified_at\":1725239498.828766,\"name\":\"Master Bedroom FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:bed\",\"id\":\"95df3f7dcf7e25696d4211430a78abd8\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"03dc995e582e7761e1a9f056d9a752d2\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"45e20dec6491a8436efbbf62938683e1\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom Not Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87bee964e12f4f43e8a77ca865687cf5\",\"labels\":[],\"modified_at\":1725149744.14575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709059722839\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b94ad5130258af70f3e44df53f10b5a\",\"labels\":[],\"modified_at\":1725239534.482943,\"name\":\"Master Bath FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69e5ff06047fee172494a676c9595b1b\",\"labels\":[],\"modified_at\":1725239534.484731,\"name\":\"Master Bath FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5bccd1e7de01b713e1b365a5823ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2080a737e85dba8c1c13d14ca844aa8f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49f9688732c5429b62c5cf2c39f5ebdd\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Presence\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"435b08e125fd43d1e5d67ed0d123fb6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709189535560\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_play_area_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"face7a647c70a0aef8bcc7901e21d7e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Play Area Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1710749651371\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_area_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09ad60b2d7e23af2bc93b52cb0ab7e50\",\"labels\":[],\"modified_at\":1775870416.948704,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Area Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_area_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.left_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1c843ff67b3c61ea82140a73d5ad090\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Left Upstairs Hallway Lights\",\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3cfa9649d5b814c5dff763cd6b76d9f\",\"labels\":[],\"modified_at\":1726995223.727702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b1734fd1032a711e2680a994926fa7d\",\"labels\":[],\"modified_at\":1726995223.730126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fea3aafb794c254c9981d05e2e69067\",\"labels\":[],\"modified_at\":1726995223.732286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f336d4a0a9c91ae0de81eb73b5e182\",\"labels\":[],\"modified_at\":1726995223.734449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f526bff502fe80b455c4e763a3a3db97\",\"labels\":[],\"modified_at\":1726995223.737066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43050533225ce62a16ed7cd33bd9e2d7\",\"labels\":[],\"modified_at\":1726995223.739279,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39cbc62a9910f6be46f1f17a716b402a\",\"labels\":[],\"modified_at\":1726995223.741579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913acb2bc62696d8db53f8508f1e1270\",\"labels\":[],\"modified_at\":1726995223.743703,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdb198312585d22902b2185c35214cfb\",\"labels\":[],\"modified_at\":1726995223.746068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a70affbb4ed972f8daec3166aa396f50\",\"labels\":[],\"modified_at\":1726995223.748907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"254c8b3136732d3bc8a34d91b8673ef8\",\"labels\":[],\"modified_at\":1726995223.751225,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e8694cb975a4e0c029556b1ba338d81\",\"labels\":[],\"modified_at\":1726995223.753406,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e0f89e58dac6a89d1cf0c76e956fc2\",\"labels\":[],\"modified_at\":1726995223.755504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"051e2e640e4c3291b09d55d3687c1471\",\"labels\":[],\"modified_at\":1726995223.757082,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f517ec7ef72b04193123c414c8c3f735\",\"labels\":[],\"modified_at\":1726995223.758519,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c26cf28b3b3dc9a6bf25c27fa43aae86\",\"labels\":[],\"modified_at\":1726995223.759977,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"971283eea4ef6a48d36d89350283bcec\",\"labels\":[],\"modified_at\":1726995223.761297,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9c3ea47b54daf6eb45abb3b17ad3724\",\"labels\":[],\"modified_at\":1726995223.780765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c44b3196aad16deed838f7a23fdb4098\",\"labels\":[],\"modified_at\":1726995223.783536,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5133e25e8f01dddbb6746b990b08f5ab\",\"labels\":[],\"modified_at\":1726995223.784321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9909d6d28676cc7831e49bde2470a7c8\",\"labels\":[],\"modified_at\":1726995223.785069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8482199ceba01d96d231e5f3a9dd368c\",\"labels\":[],\"modified_at\":1726995223.785825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23ee7b10cef9e4662e75be22310cefc2\",\"labels\":[],\"modified_at\":1726995223.78661,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd7c6e19c030f7196a8c11ba4b23fc41\",\"labels\":[],\"modified_at\":1726995223.787367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51d01dd8e96eb9b04bf64f2a2decc90\",\"labels\":[],\"modified_at\":1726995223.788115,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd490e9ecc4785dca9e2c059f36deffc\",\"labels\":[],\"modified_at\":1726995223.788879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7a4924a9ed506f1a7eb6ee0c5cbd0b8\",\"labels\":[],\"modified_at\":1726995223.789713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1a65aba3769dcf7d73471f08ee7487e\",\"labels\":[],\"modified_at\":1726995223.79048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9c01253348f061043bbdb1f1507a49c\",\"labels\":[],\"modified_at\":1726995223.791252,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d489d218083ad29b42fc36fef922cc13\",\"labels\":[],\"modified_at\":1726995223.792031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67713a70d56c5297ff28330a8713287b\",\"labels\":[],\"modified_at\":1726995223.79278,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9b7724b86925b6394800d7c6891b28f\",\"labels\":[],\"modified_at\":1726995223.793535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49962449d9f171c587ef0081e1cc465e\",\"labels\":[],\"modified_at\":1726995223.794287,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f4a5682eb43905036502e20f0d7cdf2\",\"labels\":[],\"modified_at\":1726995223.79504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4df9269002f04292ea5a51edd4f8c6\",\"labels\":[],\"modified_at\":1726995223.79579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dd1fa6fe3de99351f0c2e5b83f26c15\",\"labels\":[],\"modified_at\":1726995223.796556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69b62987fd5a78948f6cfdc65527fe6\",\"labels\":[],\"modified_at\":1726995223.811631,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"178c13bf6bbbb8549bf450a4b37821e5\",\"labels\":[],\"modified_at\":1726995223.81238,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60db789ceb739a57754a71f6a6341c62\",\"labels\":[],\"modified_at\":1726995223.815043,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaac7be99d399d761408d7db5905d168\",\"labels\":[],\"modified_at\":1726995223.815764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15733449911ed88087bdb00ce20a0bdf\",\"labels\":[],\"modified_at\":1726995223.816558,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"429e1e416e644ac2e44b56eef5823108\",\"labels\":[],\"modified_at\":1726995223.817315,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08656fa710c862cb6e1223682c8c5dc3\",\"labels\":[],\"modified_at\":1726995223.818008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1df54d5c58a731bbfab080b1a87906b6\",\"labels\":[],\"modified_at\":1726995223.818713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc787e9c0359d3254b83bd29ba368af\",\"labels\":[],\"modified_at\":1726995223.819405,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7d473447060f92cff978b9a385e9e68\",\"labels\":[],\"modified_at\":1726995223.820087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"055386324f02620a24c7ac18946b8bf3\",\"labels\":[],\"modified_at\":1726995223.820745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"76b3a961774fe3c039a138cfd39bb5b4\",\"labels\":[],\"modified_at\":1726995223.821464,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1d47fcf2e0a7f8584fd0e2f3c7df26\",\"labels\":[],\"modified_at\":1726995223.822171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6664341496258104260c74c65e71e362\",\"labels\":[],\"modified_at\":1726995223.822825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb8d289562757807719ada54917fd1b\",\"labels\":[],\"modified_at\":1726995223.823475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f21ff74ba7e2a3ef0d9c35584ff6eff1\",\"labels\":[],\"modified_at\":1726995223.824163,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5d811edc4036d76580e45069c0c9d4a\",\"labels\":[],\"modified_at\":1726995223.824852,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1dabea2c9416bad06dd40deacf241ca\",\"labels\":[],\"modified_at\":1726995223.825603,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49200ecce06beddd4ae77d277f4e14ff\",\"labels\":[],\"modified_at\":1726995223.82625,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd926acee83d1a62199e77a8dfb0aa05\",\"labels\":[],\"modified_at\":1726995223.826914,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5fd1ebd4c46c2508f368824f8e8152\",\"labels\":[],\"modified_at\":1726995223.828388,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2f8d02c9a7424a0357cba3b49eaebb\",\"labels\":[],\"modified_at\":1726995223.829147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_current_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2393f3fae020b53ab99954ca957c3a89\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Current Power\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_current_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_today_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d7106ff82fcb4a141f250d27a389e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Today Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_today_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_lifetime_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"96d9d3cb20150a5d688099ee3d59ebcd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Lifetime Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_lifetime_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1f5897cc45878de2eb2c5a5f1dff53bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad685a605a9e3440bda5246f75285600\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_online_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a1ff8defd768f741f55d65e9a7f1d5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"687378e33ac65e5d1c22ce92420ebe2f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a7c5493056d56a29653e33999a7ea9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d95ca2a85ce23754796fb7dfc047a34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18bc901d7dfcde1fde8bd62fae8a5113\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca63b9ad9d43371a52ac3613c109af07\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e07bc3bcceaeb880e71ed355f609b238\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd7571675990539e04f4f8a77406c490\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"211dbb3a7c69779aecea73e41f9c6473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"498fc8386aa58186c1fe7da679696211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e1ed71597a80a21a1881c86b442e6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3babf3437ebf12fd772a1aa54f4ab6f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e09f448a85712812e396a7f9cc1d393\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f9e1810e5a0c6896a04a053cc67f82a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f93e1a44de3fc2012749ef93295ddd9f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c20dea6e1ee110ac5ced5123e4947d32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"026a47e3e1d3993dc0ba1ad3c7446bf2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63dc709ee9f548ea607f688f93cf3234\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a06c4b37c7f1e33fe923bbd3149d2211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52154fde2fa3736366353ce80d9143fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5655856d7f5e8bd562dd95b8b8552212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7839750c868429f82ea60be31065090b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"345ca71bd27275be777e84858b01aeca\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f2714bb3fe47257fb7d75ed619377c4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca87da2f07b93a7514c465435b42fc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11ff9bdd285d12419a16b1c4046b164d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501f530e38c0a5ffb668116d0338b7e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79635f34cc537787519a607cef9c2b54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04f5ba7c71b00f927719dd6d1f76a24e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22a79eb3bd15b816fbd2353b874fb8c2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4e289027532937da275a2afe8a1e54b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c889610feda4c5d2919574a4a4b2e9fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6767893333bd2dd2faae401b17f6287\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9719fafdbf800c3e41c1247e9ddec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"709f79ac43c1de05cd9b92356daa783f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bbde1b266563b56db9b76c48b5e4c802\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cea749b7d0157bda9c8b3b8da7d0c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ddd7cef675562790ac794cf05db84eb7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3c559183ae7d9c9e8da0b9e9b52d2c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"361a1fc2a89ff20381d82750957d8e6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"99764c4bfbb97e8902e9a2ffbd269940\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6dd91fa0dddc72d17c5e9bc5febcb1bc\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d0458b6571acce21bda18fa4ed91f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"967c6fffba2e2da7a3df57bd136547a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"089c111078e7402a6d5d28aa89648473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d4c2fa1d9b5d9f01caeaceef8fa3b38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"456f0dd0f5c3770d056cc3764dc13d64\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77885fc4334d3e5779eaa71dac27688f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d0917ede83bd0ea1b545fb27ae2a4ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a36bcb574711bfe4e239bc12d85c031d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ccaf61f0c36aa89e2cc6b95d91fb0471\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05811a50db6dd93844c0b196d39d2acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"383a71bc0095d7e93746e6ea4f917198\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62cebac91c63149058b957314fb161b4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f283b802affc5a6ca5f1c7fc5de091\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee406fe27a3eec7c0c329ac2825c475a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"168791062da8f11816f49242dac4076e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"31ea3d07718bab198b5b9fc6af1dad97\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"305d5bd7a5ce07000c053958fcd55f12\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8835ef4f2b23d870d8155e9d6d5601\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fdd8ffe94c60d06b945af26a4352cb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"140d724fb5d154e0c3e6baab9f1b2c8a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"45d3fcce547a5c666959dfc27b70823c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"869b21114a648290559184a15408ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e821ed6d71bb8f39e7b129afe3af4d9d\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00d279b67b2610254703b2f54f7c19fb\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70fd486013d17ba726e8011eb3a73a3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d40dc815657ac375ec8fc97364d0587d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42be692b3321a3c3b636ca3c45f84b83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e32b957382e291736c3509dfdfd9aa4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"03f49ee636edc9301e014dade638cb4e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3846da42a87cde40ac6aea0bfc100b05\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"223c68438e658441b8a74c18d7440baf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c161128d74cde1b9df0ac526abe9a06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7b1a0a10460e1b2b3ede2e562a703f5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adc4e9307e5f4586c50c9b3d85f66b27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33f66484a0035b233ab171ed3b696fa6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"592ca6e323759a3be3e15662afff9297\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"893b80ec5dd05fb72fd00141fb518e32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d688d2d1bf1a31622070b2fb094c4cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4e72cd5d23acb39a4f9bc63cd0a21b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"da85884355ff3f4994596e259973be64\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2f84c45e7569a132689cdd9ed95b065\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a1f3186ff560113bb369dd97d7817da\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3db09b81e63e277131f85a8131a8025d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0b16c038d6c97b603911b86046cd25af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4eff38935461680017f59921787a34f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d18af827376be02cc0d3a1b6f9e01ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98977f8e3432f6e1ff5ebc307b85bf5c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4561d19a5716fbe7e1234f629b30767a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e9a028e3c404f0497df004b9975faad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f02043ae6d3212ba58eff7b1f7747496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1712170208fdab217e72e9ccd1bfd12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22e1a76aaf68da0ffb5403b0d2e2e274\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70909c374becd6dd73c82b4ff632b3c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0eae697b783ebba9efdb307f5ac8880a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c413014864a571a604089ceeb62ed55a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39450e87b48a58faf8da5a7a85133642\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5b1e2afd4751933180abf85fc4807f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a967fc1ae03d7238ecea72c0a0ee0d6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbe669bd0773be004f53e90bcb0df11a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56cddc0e777db2dbcc227171ce9f8054\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79b07b22b2ee648f66881c503ff3745d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d58f33bac449e9831ab4e1e98bc8409\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3859824896da3b25243af7a06a9ac8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39adcc1e155986621cc39a150c750070\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56317bf1aeaba04d33f714030392e692\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25113df24a5179f21d9e43126c27f58c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"466f741572070700ef6306949735069e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b12a0cd54325f7f91fee567870e913f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74e4b4ca3efba5d75a1727aa21c083fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"569cc4587b3157e2f58acd98ad72443d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74526ec1a4f846d0ddfaef484bc13493\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4203eae9736a10d438a8ee366d836774\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f8eb498aa41b793797942795f06c310e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Using Cached Data\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_data_from_cache\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_restart\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2bd4ab12752eaaa02b11c84a1e3290b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Restart\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_restart_ecu\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_query_device\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0ca0562ffcb02644dafae6227b475d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Query Device\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_query_device\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0a21329364115517cea604476281c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_inverters_online\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_003\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c5d8e19b2f7ef7dad358b83e242a65d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 003\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_confirm_configuration_change\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d25ae85a81c5a18a3965894f77da168e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator: Confirm Configuration Change\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e465c51bf88dbc32a6785a7b6dad1f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71fd02485d1c3201235dfebb5dcfe3b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e703e04564a595e11b85dc51d5afdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc9b9913efd0c2f8819a21443737e28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449a3a66c448b698823d287dee56c864\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_on_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"553ae2641fa529953c7c9c90ea018e2c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09447a340f5a951b315041b5dc38910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_scene_control_remote_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4108e95bdb9ab52a683d50b3c1eeb35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control: Remote 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed_dimmer_and_group_3_and_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96fb107556a5754998e6d4d86ade7860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed (Dimmer and Group 3 and 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24813797e3fe66e246880f75f276e964\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea0442a91f3c09d591f5ddfd39b6057b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0152622d192ee621b119886a52d711d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7d94a13fb61185a29df32572fff71f7\",\"labels\":[],\"modified_at\":1758660536.917488,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80eeb792b9601da317217fe3bdc1d46c\",\"labels\":[],\"modified_at\":1758660536.917716,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2068d0dc53aa2c783a1b70575e6d7755\",\"labels\":[],\"modified_at\":1758660536.917878,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d71e0683e8fa779d02db54bf283e7f92\",\"labels\":[],\"modified_at\":1758660536.91804,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1b34b38e43714428e109ed8d1c945\",\"labels\":[],\"modified_at\":1758660536.918202,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f895402c9d8d3bbe9eacb657e5a92be\",\"labels\":[],\"modified_at\":1758660536.918462,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.total_inverter_watts\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb73b03eeb9a43d362378e6ef0a89fb7\",\"labels\":[],\"modified_at\":1768937322.85093,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Total_Inverter_Watts\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"43febd2c80fd35383b1796826e76aad9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"notify.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de018507a30e449b6455fef4fe0fedc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980_notify_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ffbd90ab3bdee9a04e0e066a46c2d94\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eebcb05ee23fa77b122afde9ce221d20\",\"labels\":[],\"modified_at\":1768937324.525363,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"", - "offset_ms": 61 - }, - { - "direction": "recv", - "type": "text", - "payload": "C4:5B:BE:DF:34:6F-light-mariah_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1dd305fbfb47d33a89aa39aa5305aa6c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bec4f47de87f948d86a066bb2ab2c70\",\"labels\":[],\"modified_at\":1768937324.526369,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:32:24-light-mariah_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a815fe83e1ed7dc52f51fbdcc13b71\",\"labels\":[],\"modified_at\":1726995223.830482,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e558dddb1abc1eeeaedc81b16c01f9e9\",\"labels\":[],\"modified_at\":1726995223.838912,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56d69a23bcd42abf56831b1b71694eb0\",\"labels\":[],\"modified_at\":1726995223.777968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"581ec35adc2c957a76a2c7fd60ef8633\",\"labels\":[],\"modified_at\":1726995223.807272,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e52835bcd7056629b1f1a99e20075585\",\"labels\":[],\"modified_at\":1726995223.837479,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47538b6ae63e2feeba44c44fae84ffa1\",\"labels\":[],\"modified_at\":1726995223.776542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2833708ebf6506c52dd79313ad59d26d\",\"labels\":[],\"modified_at\":1726995223.805802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1602432411104b1ff4945fed97b8e1a\",\"labels\":[],\"modified_at\":1726995223.763548,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c02d2d704d9242c0fbbed6a12f6213d\",\"labels\":[],\"modified_at\":1726995223.798062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d105430a04958aac57cef96114b7c07\",\"labels\":[],\"modified_at\":1726995223.831134,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9eae8ff171be93ebed91308be8af407\",\"labels\":[],\"modified_at\":1726995223.838195,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d811fdd8bfa49dab565b28ada1eac2ba\",\"labels\":[],\"modified_at\":1726995223.829815,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a920c156a1c4ac8ed2c8c7e1167e51\",\"labels\":[],\"modified_at\":1726995223.762419,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b11670409d6bdf9aacdf2aa240b77fda\",\"labels\":[],\"modified_at\":1726995223.797323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4aba70109c330d3dbe361ef2f93ae3b\",\"labels\":[],\"modified_at\":1726995223.765802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a56194f193842b6926637417fbce5d3\",\"labels\":[],\"modified_at\":1726995223.831809,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3566ef3b27ff4ad879bf2679940865a\",\"labels\":[],\"modified_at\":1726995223.7996,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9344a735c3f7b30f4f067902c5e8699e\",\"labels\":[],\"modified_at\":1726995223.842465,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d473f6cd0d1bd253b226a132ea261d92\",\"labels\":[],\"modified_at\":1726995223.810927,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa0f97c72bd513df9f4ae63f90bcde63\",\"labels\":[],\"modified_at\":1726995223.843171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555d62f0d7d846827fea1966f7a795f\",\"labels\":[],\"modified_at\":1726995223.782285,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b738544dccea104b025e9d0e05eb0a0\",\"labels\":[],\"modified_at\":1726995223.843932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3279a9c16bede20195a82db3a2d5ac6\",\"labels\":[],\"modified_at\":1726995223.813127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"edf1ee16bcab171c1c577c63ab97f10c\",\"labels\":[],\"modified_at\":1726995223.813846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d546166876e4b211dd195567284dc59\",\"labels\":[],\"modified_at\":1726995223.781575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"083bdec6d96d2f404c70507685f3dd3e\",\"labels\":[],\"modified_at\":1726995223.84177,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dca79ad23d502629a88f7013fa68932\",\"labels\":[],\"modified_at\":1726995223.810227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16aa1de89eab7ad3ed129eb4cc0ac3c6\",\"labels\":[],\"modified_at\":1726995223.771136,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e4964ba1e71db161a6472592eb9e740\",\"labels\":[],\"modified_at\":1726995223.80033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8570560d08e0567d3efebba878cdb6ab\",\"labels\":[],\"modified_at\":1726995223.832485,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4aebf740e9f7b9bd6c98c37d306197a6\",\"labels\":[],\"modified_at\":1726995223.778671,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fe20c2ae51615b00769343092fafd6a\",\"labels\":[],\"modified_at\":1726995223.807968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"068e413358fd64469c9a6e6f35b42a3d\",\"labels\":[],\"modified_at\":1726995223.839642,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aed56680f8f167daeb016cde5c2ba644\",\"labels\":[],\"modified_at\":1726995223.84033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fc85df1d90cebda5ab8b19c32436ae0\",\"labels\":[],\"modified_at\":1726995223.779376,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"021a49ce92e7476a582236b73b6e3535\",\"labels\":[],\"modified_at\":1726995223.802855,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6a40eac34dc70bf8dc5def5b0073fa\",\"labels\":[],\"modified_at\":1726995223.772679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c553fc274e111c629dd000aeec4c2b7\",\"labels\":[],\"modified_at\":1726995223.802104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df570e55b17fd5b868f21fdaaa452f90\",\"labels\":[],\"modified_at\":1726995223.83469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8e13752690827fa5e282140c5762e8\",\"labels\":[],\"modified_at\":1726995223.773442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b20b811f7244af9d9b23c2761c84b693\",\"labels\":[],\"modified_at\":1726995223.833935,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a5afa9a0787a0de471b3ee2c02657c1\",\"labels\":[],\"modified_at\":1726995223.808684,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8732cb4c313abb97189c10f0054108\",\"labels\":[],\"modified_at\":1726995223.775718,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed76a423a40fae6a4f24c824afc7805\",\"labels\":[],\"modified_at\":1726995223.833237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60203a103ce1b8ad003b1909fb4295b3\",\"labels\":[],\"modified_at\":1726995223.841088,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75a7375b9fceab8ece8c8d79beec2075\",\"labels\":[],\"modified_at\":1726995223.78008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d4429655a28d7c4d11c8ac748d6ec40\",\"labels\":[],\"modified_at\":1726995223.836044,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09fe4444cdc9cd9c1cb1d6365af990f\",\"labels\":[],\"modified_at\":1726995223.774958,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd10e1850ddc2620520d0c61a8bd97c6\",\"labels\":[],\"modified_at\":1726995223.804328,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4251e01f23bc9625e8a30bf7203a470a\",\"labels\":[],\"modified_at\":1726995223.835367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743fe98bbc2fed1b1af8b35cf2fb0ec9\",\"labels\":[],\"modified_at\":1726995223.774193,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6269259dcc0345571feab5284d7d09b9\",\"labels\":[],\"modified_at\":1726995223.803587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"524dd66763944a8be56ef44aa306ce9c\",\"labels\":[],\"modified_at\":1726995223.809514,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81b1a35be54fea6be3a192e4c82541f8\",\"labels\":[],\"modified_at\":1726995223.801083,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63bbd707bde7aeba07b3b5ecf5b7fa17\",\"labels\":[],\"modified_at\":1726995223.77192,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45170e964613947df7b4c57ebc0acd48\",\"labels\":[],\"modified_at\":1726995223.805066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8207f151f883386419a3a7979d3e5a37\",\"labels\":[],\"modified_at\":1726995223.83675,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e1e9be0c3cae58fefc0f6b8691e7327\",\"labels\":[],\"modified_at\":1726995223.764679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a81c4266cbdb0d23e04e4ae57619dceb\",\"labels\":[],\"modified_at\":1726995223.777271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6adb060e525a0b02802e9e8b6afa176\",\"labels\":[],\"modified_at\":1726995223.798783,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e88cf00ff5ffb15ab94f37a9aba66c0\",\"labels\":[],\"modified_at\":1726995223.806537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ede71d69993e45389dde366b477559a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.zwave_controller_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ada086edb92a8f505bced7c2559caac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8115e52cb16c7a28f096995d2b3b67e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f44e4ed83c8b09e72ec4ffd1df79953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f359fcdc3ab75ebc7bfb58acf0fe25e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46e839f2f5b0c124ad2a0b5c355967fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7b78974ef1f75948f492f64fd4859ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f780def514df1d90ed58dc922b80c574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.69.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_controller_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96d8fc5c5e35a76c655c9b71b67ef899\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.69.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a133bfa2a01f055c0c8d1bd38418a9\",\"labels\":[],\"modified_at\":1728721846.252105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e3e85a4be70951809ca9f5dfe3e4f27\",\"labels\":[],\"modified_at\":1728721846.252322,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6422ed2bc95eec7c77e8299c3132dd3b\",\"labels\":[],\"modified_at\":1728721846.252479,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e3039be25344df3c303f10d2af506\",\"labels\":[],\"modified_at\":1728721846.252618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"493c98ca3f5d28add9b1e76d9ea0fd2a\",\"labels\":[],\"modified_at\":1728721846.252884,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.69.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e9c3189a4b2c3bc9beaba32e4f6d17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.69.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba107fafd299fefa29cb886864a6b6ff\",\"labels\":[],\"modified_at\":1768937324.649113,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.69.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e97d839fc36f285ba34c95e0aedfb525\",\"labels\":[],\"modified_at\":1728721846.253026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.69.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_controller\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a09ee2d6dae31c200ed543531a11a022\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_status_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1aa247cfe4361de79507e8ccf24a9abd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf005657afa97b1d708b15d9ce67af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c16c9234ee62e39da6d416bd74c4bf36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9964c19a9f2c7334e16ed21f53a3b47f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89981bfb5fb0a71346ba5c4a7fd7f436\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4bee7cdfbbbb6c2df376f6acbc9f8e0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a4d1c9f055f635a8a634822ce0443b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6dc9f7340d74772ba42c3d47103bc06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57972bc34dc5d7e963a491a8f73724f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a2e8fc6466088be70d409688c666748\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f693ad03c26b3259e108bc893124dc78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf35e53c8dc9a7f47de20aa646f2a06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a5ec9e8137600e298bee781d72b83af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"284a0c5a0e4fbb0bcfedfc117d6d0cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae04ca93744aa073da36ab542919ff8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"049d7e26a1fd2ebae088bd47e33c28c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f3c6220aeebafd0398bd96fade2132\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be4b4db30be6b69c892b44b359c6b20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80d8ed745bc23622d5388e9075693bb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"306db4629c8a60e5464dd368235e8317\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c04dfad2dc4762af4bb76906a45d36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b439907fac4276ebd5799a625ec1ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb5b5d71754b964eebf3dabae76e6cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_dc_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b6fdcf38fa8ab2b6dee499c7d18e08f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.garage_controller_basic_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f54c77989f4d5e8568905b09f0c46f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"949433e099fb4164e0fafef364d9d3be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.large_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage-variant\",\"id\":\"7103f21d0a7b132c69440a9d6979648a\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Large Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.small_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage\",\"id\":\"efa8ffc287061c04b28a05e2d6789429\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Small Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_back_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"200b3bc82d4792b83862ab4c8cbb5d60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Back Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836786749\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_front_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25b6b2f05b818b741e6862688a763aff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Front Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836943690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x17\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c29cfef30f97af820f587cd0d380f6d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x17\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x87\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4dc3db0b7fb0e8835ad90f9649d49ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x87\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x87\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_water_valve_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b60d57c74b8a0fc026da3c5efe1ca529\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Water Valve unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Water Valve-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.neck_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b16d267f43e86640e991f613d652ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Neck Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"neck_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.migraine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e0cd7c0a5bad5564b84ba8e22f577d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Migraine\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"migraine\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.back\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a96f0af191e7ef39888e595237fc79d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Back\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"back\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.water_intake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81a9b155d2aa5e2ce0c7cb5dca44c82c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Water Intake\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"water_intake\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b24234ca56ac77e9c79f6e353a9de91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"648e83e3c8bf58cd2e4eff867c7f26fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc3f2404fff79b6deefc2d10c7d221fa\",\"labels\":[],\"modified_at\":1724358474.764135,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.mariah_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45abb940e65545be9eba91e9c7c27266\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:14:0f_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.joint_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78f692acbb46a9d5516120af473ee045\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Joint Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"joint_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de63e43f6a93586a800fa07684f40d6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724140995216\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b26a6c2d503838f2bd69b2b4425daae8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141048676\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68e5beb6d9c92149ac9c90cd78e98694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141102872\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.thermostat_aux_heat_only\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10172ebe8ddeadf985bb596b028dcae9\",\"labels\":[],\"modified_at\":1732123640.2771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Auxiliary heat only\",\"platform\":\"ecobee\",\"translation_key\":\"aux_heat_only\",\"unique_id\":\"511883021980_aux_heat_only\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":1724358474.76478,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.mariah_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4fed1642c4e2312aef35b63ec334976a\",\"labels\":[],\"modified_at\":1724358481.090975,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:14:0f_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543171,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_start_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20a9befee49729b0b2137b2abfa3f2da\",\"labels\":[],\"modified_at\":1724358911.543261,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric start date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_start_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543599,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_end_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65d71d7e1d0a884417f030f39de51b62\",\"labels\":[],\"modified_at\":1724358911.543669,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric end date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_end_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.98836,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.ha_floorplan_your_imagination_just_became_the_new_limit_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3784e07efac13a5e30236d87aea4fec0\",\"labels\":[],\"modified_at\":1724359451.989217,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.989902,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.dahua_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e20245435d618d476b342520dc05bde5\",\"labels\":[],\"modified_at\":1724359451.989949,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990389,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.emporia_vue_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33d53b6ba7f741c6d34066bffe189297\",\"labels\":[],\"modified_at\":1724359451.990431,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990856,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.average_sensor_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83923fd4d6f02182318adda6b96afc53\",\"labels\":[],\"modified_at\":1724359451.990901,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991326,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.lovelace_home_feed_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30d80177caf3df3331d797d783c5539a\",\"labels\":[],\"modified_at\":1724359451.991374,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991795,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.smartthinq_lge_sensors_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cd6da87bfe167df17bccc9b0bc3f160\",\"labels\":[],\"modified_at\":1724359451.991841,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.99502,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.fold_entity_row_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d2c850e540e1848f6d18f94e1d33df8\",\"labels\":[],\"modified_at\":1724359451.995069,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995516,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.card_tools_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa13dab5ed75447d38ec11bb05b39148\",\"labels\":[],\"modified_at\":1724359451.995558,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995977,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apsystems_ecu_r_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6355ba3eab69573857aa3095dfe8bb29\",\"labels\":[],\"modified_at\":1724359451.996022,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996442,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.hacs_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee6b6e287f399d2a0f069f2f3630f9de\",\"labels\":[],\"modified_at\":1724359451.996483,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996903,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.number_box_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4973abd138f62d11c94d23869d4332c6\",\"labels\":[],\"modified_at\":1724359451.996945,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997365,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.layout_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f6016a8e966604387a938ca589078bb\",\"labels\":[],\"modified_at\":1724359451.997407,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997831,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.opensprinkler_integration_for_home_assistant_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b81d07934da5c7e0354b8fcffd03768d\",\"labels\":[],\"modified_at\":1724359451.997883,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.998293,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.auto_entities_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7eaa56b622d4a80a22c66036a4e7bff\",\"labels\":[],\"modified_at\":1724359451.998341,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.000211,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"057af5b48646a036f034fd05c24730ac\",\"labels\":[],\"modified_at\":1728248033.394848,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00067,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.dahua_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39b3a5e25ed21ff451dd821e74135856\",\"labels\":[],\"modified_at\":1728765061.996176,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dahua update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00105,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.emporia_vue_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e29e7a00297a5a491404aa12c42c1323\",\"labels\":[],\"modified_at\":1726802997.261126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Emporia Vue update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001406,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.average_sensor_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"10b897f9ab5ff47d44ed99b8cad96a01\",\"labels\":[],\"modified_at\":1728269633.52911,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Average Sensor update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001753,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.lovelace_home_feed_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"692a965a89752f7152ac33da536bbed1\",\"labels\":[],\"modified_at\":1774138612.944037,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lovelace Home Feed Card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.0021,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3cb7c37711861e8a4f3c5450350f13c1\",\"labels\":[],\"modified_at\":1728226433.446449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SmartThinQ LGE Sensors update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.002442,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fold_entity_row_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f07711c04f71f779880758ee4fd3ca0\",\"labels\":[],\"modified_at\":1750126348.796186,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"fold-entity-row update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003037,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.card_tools_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8857ce93625614d4a532e41e988a77ca\",\"labels\":[],\"modified_at\":1774138612.945999,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"card-tools update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003384,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apsystems_ecu_r_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eb5eead0182826b4bd85b3cbbc8b855d\",\"labels\":[],\"modified_at\":1741914692.185678,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"APSystems ECU-R update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003737,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.hacs_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b4d63ea37ba5c94123db67da9a7b4a\",\"labels\":[],\"modified_at\":1725474380.986863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"HACS update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004085,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.number_box_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf9428ea6400cb62210ef5a817aa3f4\",\"labels\":[],\"modified_at\":1774138612.947972,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Number Box update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004425,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.layout_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9814393596a8063e564904eea508d5\",\"labels\":[],\"modified_at\":1724359470.337507,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"layout-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004773,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64aa16e9bfa85282bdb6b21e1f285a0c\",\"labels\":[],\"modified_at\":1728377633.939246,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler integration for Home Assistant update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.005134,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.auto_entities_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c1b0f1673df40ae25aff2e19e9bdb999\",\"labels\":[],\"modified_at\":1746450676.644499,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"auto-entities update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.878711,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d782eae7ac9b06c199b0499afff0d330\",\"labels\":[],\"modified_at\":1725237298.640764,\"name\":\"Living Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.880189,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a40c8c00fa4561861b93cac2ae12162\",\"labels\":[],\"modified_at\":1725237298.642678,\"name\":\"Living Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.620171,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95350dcc7aab2e2b8ad42eff96a3bbe9\",\"labels\":[],\"modified_at\":1725239509.709835,\"name\":\"Office FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.621822,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"457ea4d9622eaa89f01768b2d3cb13b7\",\"labels\":[],\"modified_at\":1725239509.711619,\"name\":\"Office FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9119d30965efa939f043665b8f522c7\",\"labels\":[],\"modified_at\":1725122973.950769,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d74e8506dabac922300249b97a64fd92\",\"labels\":[],\"modified_at\":1725122989.160884,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f75ee8a8e6a0e889e600b497c966f4be\",\"labels\":[],\"modified_at\":1725123000.642922,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.881487,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a80cd1fd55b60d92e924c5d0a86b57bf\",\"labels\":[],\"modified_at\":1725123140.792999,\"name\":\"Living Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.62291,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65796cc5504c6f97911d5984b7697240\",\"labels\":[],\"modified_at\":1725123172.764679,\"name\":\"Office Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.623792,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4870514fbeca2b830d674880c226e4b1\",\"labels\":[],\"modified_at\":1725123300.434383,\"name\":\"Adam Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.625331,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ae3bf2a8005788c86e4ed1db0e26deba\",\"labels\":[],\"modified_at\":1725123348.631538,\"name\":\"Leksi Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.626608,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"92cd99596879bed65510157a3e4440b8\",\"labels\":[],\"modified_at\":1725123370.960249,\"name\":\"Mariah Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.882516,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_couch_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df55257bb93d1c4d83ab27bb28cc7088\",\"labels\":[],\"modified_at\":1725128801.063257,\"name\":\"Small Couch Occupied\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.884521,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.main_couch_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d5054b087303392f4b4c1afa3087c65f\",\"labels\":[],\"modified_at\":1725211786.993681,\"name\":\"Main Couch Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.885552,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.massage_chair_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6166b7fcdd2cb9ddf567fd2ef3444519\",\"labels\":[],\"modified_at\":1725216435.355422,\"name\":\"Massage Chair Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.041669,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.mariah_room_fp2_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05362f331bbb95c88b007da2281c2835\",\"labels\":[],\"modified_at\":1725237352.484952,\"name\":\"Mariah Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.047465,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"572e2d9b32244570b0d0b314a4c0b609\",\"labels\":[],\"modified_at\":1725237352.487786,\"name\":\"Mariah Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.051823,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5970db3a2e7b0259e89db44e4cfa579\",\"labels\":[],\"modified_at\":1725237416.812842,\"name\":\"Mariah Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.055599,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff08f0de11c1b85bc8cd0d449bc0c733\",\"labels\":[],\"modified_at\":1725237437.467906,\"name\":\"Mariah Room Bean Bag\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.059074,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6bfab91f865d492c15136b5c01e3ea3\",\"labels\":[],\"modified_at\":1725237447.998816,\"name\":\"Mariah Room Bed\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2696\"},{\"area_id\":\"mariah_bedroom\",\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237505.317515,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"scene.mariah_in_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fb3c6924d403f71d58b0bb0dabf3c01\",\"labels\":[],\"modified_at\":1725237505.338758,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Mariah In Bed\",\"platform\":\"homeassistant\",\"translation_key\":null,\"unique_id\":\"1725237502868\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237787.837052,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_purple\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"624dd2844883b69d29ed148095cfedd4\",\"labels\":[],\"modified_at\":1725237787.837879,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Purple\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_purple\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237915.884351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d456942a6323ea80effd232373cc5b99\",\"labels\":[],\"modified_at\":1725237915.885773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238041.890769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"75cf52bb1c878e6bff34b625af14e080\",\"labels\":[],\"modified_at\":1725238103.797624,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up_initial\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238636.640793,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3b6a0b1778090f2e8c408dda4f83c35\",\"labels\":[],\"modified_at\":1725238636.641973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238624495\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238701.670496,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9999f46a955a0e9f9084655c2278aae\",\"labels\":[],\"modified_at\":1725238701.671689,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238682447\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239006.346545,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4ce3b7950ba257b7202c193ad300ec6\",\"labels\":[],\"modified_at\":1725239006.347468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Beanbag\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238993576\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239193.188985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f01bb92164b255a0efc6d56ad8e2d267\",\"labels\":[],\"modified_at\":1725239193.189985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off_motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239220.921769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7ab674921f77ca79b116b8ad3510f592\",\"labels\":[],\"modified_at\":1725239220.923107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725239208837\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725240282.042413,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7ca8c0f7712e5307b5d9763e9de9b94\",\"labels\":[],\"modified_at\":1725240282.04309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.352226,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45c2f5c4dc505611cb256120f1f2830\",\"labels\":[],\"modified_at\":1727942594.370094,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.395121,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"642124e3cca72e7af2215ef9a52ec5b8\",\"labels\":[],\"modified_at\":1727942594.403475,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.425326,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"784abe3673b46c36d82dd6392e364987\",\"labels\":[],\"modified_at\":1727942594.425962,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.45199,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"150bd1465c22a43804cecfd9a73b625d\",\"labels\":[],\"modified_at\":1727942594.452773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1728721845.869036,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b63b865295f97c1a420158b97b7759ea\",\"labels\":[],\"modified_at\":1728721845.869115,\"name\":null,\"options\":{},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeout_ack\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.793984,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385bc6fdb93d7ac940f95ec7929b93a2\",\"labels\":[],\"modified_at\":1729542987.794601,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.818634,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd8c93ee004038b3809d9bf5e9651e47\",\"labels\":[],\"modified_at\":1729542987.819224,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927412.116135,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"955ffcb77910a5ce5c785cbb4567a5f4\",\"labels\":[],\"modified_at\":1730927412.117253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927396308\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.917166,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"987472eb0c0a9d61f145fe1ffa7ec389\",\"labels\":[],\"modified_at\":1730927493.919085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.920247,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"252a7a535fed97b7201a3d818cbf6b41\",\"labels\":[],\"modified_at\":1730927493.923132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.925051,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.entry_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97c48c7149d9b2887c6c759a19330130\",\"labels\":[],\"modified_at\":1730927493.927034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.928963,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.entry_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500c84effc8332e2f1c41a3075838240\",\"labels\":[],\"modified_at\":1730927493.932234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:cb:b8_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.935595,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.entry_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743ad90a794f64c648bd1898865e94f4\",\"labels\":[],\"modified_at\":1730927493.936077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:cb:b8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927707.36645,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1265c862bfdaa5054cae39b5f86e369c\",\"labels\":[],\"modified_at\":1730927707.367325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927687152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927799.13572,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d209c365471b448fef5272375db2ff0\",\"labels\":[],\"modified_at\":1730927799.137491,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927783620\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.182084,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf28a6cb7c5941b7f5f4a22f00a9f0e\",\"labels\":[],\"modified_at\":1731010174.182936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.185823,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff2608f2319d6a14116e79184fb9de\",\"labels\":[],\"modified_at\":1731010174.186057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.188286,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02c6d610044ed99bb98012037e946b99\",\"labels\":[],\"modified_at\":1731010174.188925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Water Alarm Water temperature alarm status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.189509,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c63c08e0a24247681b3d434ba4fb34cb\",\"labels\":[],\"modified_at\":1731010174.19004,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"No data\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.190342,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abb7f974abebcb04c1b547a6286cded4\",\"labels\":[],\"modified_at\":1731010174.190851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Below low threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.191145,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f614798b9e419b24613abcca2ed35048\",\"labels\":[],\"modified_at\":1731010174.19163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Above high threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.764381,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac6c25ec61299c2cb06e3968752d2b33\",\"labels\":[],\"modified_at\":1732137151.765016,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.71.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.765454,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"470d94d96fdc410faa1a1d853ce54872\",\"labels\":[],\"modified_at\":1732137151.765996,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.71.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.766523,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bdd8a3d8d5649e3c59bcd0afe21a3233\",\"labels\":[],\"modified_at\":1732137151.766708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767048,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e664059fc7a8cd2a4c332b3dd7c088\",\"labels\":[],\"modified_at\":1732137151.767202,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767524,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167a34dc614f039f41fc040f39e15d2c\",\"labels\":[],\"modified_at\":1732137151.767682,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.76799,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b457d5cbaa8a6d30f5db0cfa9205e7c\",\"labels\":[],\"modified_at\":1732137151.768142,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768433,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"efb4c2b5944fd9687778e2300f221aba\",\"labels\":[],\"modified_at\":1732137151.76858,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.71.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768882,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e0206961390409df0866659ba3bde3c\",\"labels\":[],\"modified_at\":1732137151.769029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.71.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.769331,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45bfe6ad87c79146ddc2780321ecc45c\",\"labels\":[],\"modified_at\":1768937324.655714,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.71.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.770858,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7befa0f701f255251d4f0713e34362f\",\"labels\":[],\"modified_at\":1732137151.771513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.71.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.588866,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2668e06370022ffa63e0af58450c4deb\",\"labels\":[],\"modified_at\":1768937324.772972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.590101,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e406cccffc6c5b1a623fd47a73eba1f\",\"labels\":[],\"modified_at\":1732137162.590693,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.591473,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02301ae4db885a81128ada934ab4a086\",\"labels\":[],\"modified_at\":1732137162.592025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.592528,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6fee332c76665dc7ef1990beab6911\",\"labels\":[],\"modified_at\":1732137162.592694,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593141,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb96048cc18af78626c04d902a8e7007\",\"labels\":[],\"modified_at\":1732137162.593303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593752,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bded064f1e92e2734f097e5c6fc559b\",\"labels\":[],\"modified_at\":1732137162.593913,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.594349,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7628d05dcf62a79ba33c64966408e4a7\",\"labels\":[],\"modified_at\":1732137162.594936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.595438,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5f170a01f0cacbeb2fd47e3cedac5f\",\"labels\":[],\"modified_at\":1732137162.595608,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596071,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d11c36c8b1ae89a2329b8466196adb6\",\"labels\":[],\"modified_at\":1732137162.596235,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596681,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"322ec7947d8e42919a0133cd17e116f7\",\"labels\":[],\"modified_at\":1732137162.59686,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597312,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_minimum_reporting_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adf1bb1bfe2a4f11cadf90f298ff2d35\",\"labels\":[],\"modified_at\":1732137162.597473,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Minimum Reporting Frequency\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-172\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_battery_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0afe97af7c4e124df81a1ac9cc483560\",\"labels\":[],\"modified_at\":1732137162.598073,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-182\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.598509,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10efd918aa86083fadb425ff9a4a4a34\",\"labels\":[],\"modified_at\":1732137162.598687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-183\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.59912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3c5669678178150a506c354e6f1be9\",\"labels\":[],\"modified_at\":1732137162.599283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-184\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.599718,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_brightness_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913286fe33112a9c3d531a34472f5945\",\"labels\":[],\"modified_at\":1732137162.599878,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-185\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601005,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_multi_sensor_vibration_sensor_enable_or_disable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3db884502b02d5d6a290bdf2d41907c\",\"labels\":[],\"modified_at\":1732137162.601212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration sensor enable or disable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601721,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4f6c95db11d3ac17bca07d2264430a4\",\"labels\":[],\"modified_at\":1732137162.601885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602321,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e453c0781a8c76f1e73aefc41ad58342\",\"labels\":[],\"modified_at\":1732137162.602485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602937,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5581de38027d90f3ef0cb1cd2c41d2a0\",\"labels\":[],\"modified_at\":1732137162.603098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.60353,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_temperature_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2fedd7c6df14c4b5c04f34a712b7e8\",\"labels\":[],\"modified_at\":1732137162.603692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for temperature sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-173\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604137,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_humidity_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e70223c7a145435b2ed9e879cd97c40\",\"labels\":[],\"modified_at\":1732137162.604311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for humidity sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-174\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604784,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_light_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"126c174154d818c34882bf702cd2ecb1\",\"labels\":[],\"modified_at\":1732137162.604956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for light sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-175\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.605428,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f8387b33452ea29b9bf9b484030fe46\",\"labels\":[],\"modified_at\":1732137162.605656,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-201\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.606111,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e4b96482125c77b71a934b2d26f18e\",\"labels\":[],\"modified_at\":1732137162.607041,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-202\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.6076,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e78741347ca06e5ec1b6e8c3ba8b559\",\"labels\":[],\"modified_at\":1732137162.607783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-203\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.608276,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46015d5ffd1da337365d54035bbbec1f\",\"labels\":[],\"modified_at\":1732137162.608489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609037,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5515fb214b05e9d99121d850fdc2cc3e\",\"labels\":[],\"modified_at\":1732137162.609207,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609708,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36b46883ad9a46c08d9ace6a631f3ab0\",\"labels\":[],\"modified_at\":1732137162.609873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.610376,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e5ec6faa8b7d0368a1aaef25db69cfae\",\"labels\":[],\"modified_at\":1732137162.610934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.611673,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7eadc541b21bdc09a3ede440e16e781\",\"labels\":[],\"modified_at\":1732137162.612885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.61343,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2ee927581c1eeef7e93ff0d97ddee896\",\"labels\":[],\"modified_at\":1732137162.613993,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.614532,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dcdb2a7c64feec4cb475111ab74f4d8f\",\"labels\":[],\"modified_at\":1732137162.6151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.615626,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88ae53a601694ce99968bd1f2e333c08\",\"labels\":[],\"modified_at\":1732137162.61618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.616467,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0edb4b570f956fbd585e38c96895ee89\",\"labels\":[],\"modified_at\":1732137162.616941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.617512,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"813c7f2ffa0892c3422fa632fefc12fd\",\"labels\":[],\"modified_at\":1732137162.618824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.619386,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93dc4ae4941e37f57821eab3fd04fdcb\",\"labels\":[],\"modified_at\":1732137162.619911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.620392,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6557f3d6a9a2cf2d58f3637dab11b0fc\",\"labels\":[],\"modified_at\":1732137162.621174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.621782,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7728624fe2d08c453eb1f5570b13110\",\"labels\":[],\"modified_at\":1732137162.622362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.62405,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_multi_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e01d9271034ccc4742137810a44c7296\",\"labels\":[],\"modified_at\":1732137162.624683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.633871,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28458c3031c3f4c248b9a590649b56b8\",\"labels\":[],\"modified_at\":1752106041.646984,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 1 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_1_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.634984,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8233a76f8e5b57101fa68fa5d761e95d\",\"labels\":[],\"modified_at\":1752106041.647528,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 2 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_2_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.635932,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4306e274bbda0cdb3c63207a6f31f939\",\"labels\":[],\"modified_at\":1752106041.647924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_rain_delay_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.636864,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8cfc6b3d9aa316b1a16b51c6c90236c4\",\"labels\":[],\"modified_at\":1752106041.648321,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Paused\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_paused\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.637837,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_program_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d677537788a5eafcb8532c16cf717224\",\"labels\":[],\"modified_at\":1752106041.648738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_program_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.638843,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s01_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78da84e6aefcc386e0046bf1b665406b\",\"labels\":[],\"modified_at\":1752106041.649173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.640317,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef03c61878db30aef1069ae462af17\",\"labels\":[],\"modified_at\":1752106041.649602,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.641282,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s03_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e7f2050e9cf5b99317afc5bc8437b60b\",\"labels\":[],\"modified_at\":1752106041.649991,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.642249,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd1dcda93262483eb387ef6990169370\",\"labels\":[],\"modified_at\":1752106041.650391,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.643239,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s05_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabc42d8716a5866c0d562652bb54f56\",\"labels\":[],\"modified_at\":1752106041.650775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.644241,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s06_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4f5a122107cab3853f733992b28f8c9\",\"labels\":[],\"modified_at\":1752106041.651155,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.646097,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s07_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3293c0b56291ae6e9a7bd65e0abd60ab\",\"labels\":[],\"modified_at\":1752106041.65154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.647084,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s08_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44907512c87223c107c95f467afd32ac\",\"labels\":[],\"modified_at\":1752106041.651931,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.64834,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s01_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a38e3beb90e104dd21a41eb83801ef5\",\"labels\":[],\"modified_at\":1752106041.652574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S01 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.649353,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_lawn_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68796744a1de3fd9f2849c34c91293d8\",\"labels\":[],\"modified_at\":1752106041.653615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Lawn Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.650323,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s03_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7192a3ad6d844197c490a376e3f70b1\",\"labels\":[],\"modified_at\":1752106041.65404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S03 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.651977,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9199ba6acba78346f517315046715e7b\",\"labels\":[],\"modified_at\":1752106041.654442,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Flower Bed Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.652985,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s05_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ac557888704caa59ca96935fd70b6d\",\"labels\":[],\"modified_at\":1752106041.654835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S05 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.653945,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s06_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6edb59dd3e64c4913f7de4e938acd59\",\"labels\":[],\"modified_at\":1752106041.655236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S06 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.654928,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s07_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"43667b7d50dd98b035e656e0bab89356\",\"labels\":[],\"modified_at\":1752106041.655641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S07 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.656158,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s08_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf30ad107bbd19dba22c07d3614de624\",\"labels\":[],\"modified_at\":1752106041.656036,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S08 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.657793,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_interval_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab30ba1fa24ea82ab2abbc82c046d16f\",\"labels\":[],\"modified_at\":1752106041.656454,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Interval Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_interval_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.658844,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_starting_in_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70fc9278f25b33ebbc97bee258bc426\",\"labels\":[],\"modified_at\":1768937328.473047,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Starting In Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_starting_in_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.659895,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"532c0ab02f8bacd4922c9e8fb929b233\",\"labels\":[],\"modified_at\":1752106041.657319,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Count\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_count_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.660553,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82c9f077606745c02474ab5be55a620f\",\"labels\":[],\"modified_at\":1752106041.65765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Interval\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_interval_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.661207,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ff12afe9d9a6186ccedc30b97f98c5b\",\"labels\":[],\"modified_at\":1752106041.657982,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.662274,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start1_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5eaab58a3eaa4725ee1acc2c7d0af43\",\"labels\":[],\"modified_at\":1752106041.65843,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start1_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.663542,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start2_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"900d108248145e047c6222d5dab38a6d\",\"labels\":[],\"modified_at\":1752106041.658749,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start2_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.664261,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start3_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53547b2a17ba809162f4c80e4c95c494\",\"labels\":[],\"modified_at\":1752106041.659059,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start3_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.66517,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_restrictions\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98120ea7a8c6aec01a0b4c930f4d271a\",\"labels\":[],\"modified_at\":1752106041.659582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Restrictions\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_restrictions_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.666191,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86585bafecd310548350429db5de5ac4\",\"labels\":[],\"modified_at\":1752106041.659999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.667173,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_additional_start_time_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ecea61af97b2c0c60f95fe1aea7a1c\",\"labels\":[],\"modified_at\":1752106041.660415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Additional Start Time Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.668408,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_start_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c19fa2860614bd4a8f05e40abc011676\",\"labels\":[],\"modified_at\":1752106041.660824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670177,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start1_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41990b44f367572d2e3191a12b36cdcc\",\"labels\":[],\"modified_at\":1752106041.661229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start1_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670831,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start2_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd85f5a98d6ad86127c3b5823860fec6\",\"labels\":[],\"modified_at\":1752106041.661525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start2_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.671452,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start3_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a20cd58ad5a61fee98b1af89696b25\",\"labels\":[],\"modified_at\":1752106041.661818,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start3_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.672332,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_last_run\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dcb6bda0ee19761e85c6fade1412faef\",\"labels\":[],\"modified_at\":1752106041.662311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Last Run\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_last_run\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.673368,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5559a9931dd1e25341ea309e5a82f85\",\"labels\":[],\"modified_at\":1752106041.662722,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Stop Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_rdst\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.674302,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_water_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c8cf60018b734e890992bd9eed2ec34\",\"labels\":[],\"modified_at\":1752106041.663111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Water Level\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_water_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676033,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55cbcd1e26e5440341dfb0355bd8bcc7\",\"labels\":[],\"modified_at\":1752106041.663513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Flow Rate\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_flow_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676994,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_draw\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2fdebd9b4d3a941ed6738378fd82c4\",\"labels\":[],\"modified_at\":1752106041.663901,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Draw\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_current_draw\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.677946,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"004c2dddd6a671840404bde623b57bec\",\"labels\":[],\"modified_at\":1752106041.664278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_devt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.678559,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"928cbf681537aefdcec79f502a31c202\",\"labels\":[],\"modified_at\":1752106041.664568,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Pause End Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_pt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.679532,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s01_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7c0622cc402dd16d31691f5bbd346a0\",\"labels\":[],\"modified_at\":1752106041.664954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.680486,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_lawn_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec3d3107b963ae9e98697b474d274f97\",\"labels\":[],\"modified_at\":1752106041.665365,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.682227,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s03_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee3da72518ce48c980b2b30be13c8807\",\"labels\":[],\"modified_at\":1752106041.665741,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.683445,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_flower_bed_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e68cff1ef73136d91264bef3338e6b8e\",\"labels\":[],\"modified_at\":1752106041.66612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.684415,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s05_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3fa7d6a18fd72776a962c38ebab8505f\",\"labels\":[],\"modified_at\":1752106041.666497,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.685369,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s06_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0400d09413e1943988a75450678b1ebb\",\"labels\":[],\"modified_at\":1752106041.66687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.686365,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s07_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8eeb163f3069a24eb8b02be77dabfe38\",\"labels\":[],\"modified_at\":1752106041.667242,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.687354,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s08_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a67713de10858c8f5573df5bf7deff48\",\"labels\":[],\"modified_at\":1752106041.667621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.688636,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.opensprinkler_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a0dc8f5e507c1f6fde72f904788cdbb6\",\"labels\":[],\"modified_at\":1732137663.689179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"OpenSprinkler Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_controller_enabled\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.689659,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_program_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5814850390edeb9e2eeda752197bc5c\",\"labels\":[],\"modified_at\":1750061531.449132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.690656,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_monday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a2e95f50238ccb6e70e50e56b98b27\",\"labels\":[],\"modified_at\":1752106041.668769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Monday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_monday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691244,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_tuesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5359ae42aaef47628647352704d15ec6\",\"labels\":[],\"modified_at\":1752106041.669071,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Tuesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_tuesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691842,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_wednesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edd1e6010cbe67594ea1ee82924f6f8c\",\"labels\":[],\"modified_at\":1752106041.669369,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Wednesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_wednesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.692443,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_thursday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4472ffa505c8f15ca6ab865630355d4\",\"labels\":[],\"modified_at\":1752106041.669655,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Thursday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_thursday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693014,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_friday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1be9033a6ff2cb2f995d8ef74c0afa5b\",\"labels\":[],\"modified_at\":1752106041.669939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Friday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_friday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693609,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_saturday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4abfd9b07e0f49d65f187324b9feddd\",\"labels\":[],\"modified_at\":1752106041.670226,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Saturday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_saturday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.694193,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_sunday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4357c7a7797385e7b9355358ded32f94\",\"labels\":[],\"modified_at\":1752106041.670505,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Sunday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_sunday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.69484,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.front_program_use_weather\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5914f46ad2cfb68aad3c6706cb684a8\",\"labels\":[],\"modified_at\":1752106041.670809,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Use Weather\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_use_weather_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.696024,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s01_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee933341e59eab4e1de01dfb380d57d4\",\"labels\":[],\"modified_at\":1732137663.696604,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S01 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.697116,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_lawn_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27734f41473d59fab6ac03f37eb7bfb8\",\"labels\":[],\"modified_at\":1732137663.697653,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Lawn Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.698106,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s03_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cddda4b9abd4a2112b5d386fb355d349\",\"labels\":[],\"modified_at\":1732137663.698787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S03 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.699266,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aebefeb6ed4d1b726994cfd307f4cd2a\",\"labels\":[],\"modified_at\":1732137663.699922,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Flower Bed Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.700567,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s05_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1b9b1f74a2038ccf2d6ada0f37c6fa\",\"labels\":[],\"modified_at\":1732137663.701324,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S05 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.702531,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s06_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2dd24c218d32a94dd0335de195f7f2d2\",\"labels\":[],\"modified_at\":1732137663.70317,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S06 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.703647,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s07_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d911d53c2592a07306a7b6b3b3fa66\",\"labels\":[],\"modified_at\":1732137663.704181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S07 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.704672,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s08_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"35c35dbbf2e3f45e3f06fa1dbae6b749\",\"labels\":[],\"modified_at\":1732137663.705194,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S08 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.706649,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"text.front_program_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37e6efeffb3cda3c638bab8e88d2538f\",\"labels\":[],\"modified_at\":1752106041.673929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Name\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_text_program_name_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.709345,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"time.front_start_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3218db77bd10bc723c7584475171ab4f\",\"labels\":[],\"modified_at\":1752106041.675042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.71041,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start1_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd2cee6ac188f1157bc1dabe9135722f\",\"labels\":[],\"modified_at\":1752106041.67576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start1_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711008,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start2_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8099b78938edadefa49d3f10af5d3a33\",\"labels\":[],\"modified_at\":1752106041.67606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start2_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711572,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start3_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"960046c7225148a4e2e04959c16b02f6\",\"labels\":[],\"modified_at\":1752106041.676347,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start3_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.982321,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"176bdb7963a4d2e8e0993dd991c2d61a\",\"labels\":[],\"modified_at\":1732138416.983212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.73.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.983825,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3830b7b3aafeadc0f0a4a4cafdbba3c7\",\"labels\":[],\"modified_at\":1732138416.984423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.73.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.984956,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a40c07eeee574d0a58ea7e537b5dddb\",\"labels\":[],\"modified_at\":1732138416.985133,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.985534,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2445fa8e4bd61ebde86370bc8523e1\",\"labels\":[],\"modified_at\":1732138416.985692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986061,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f41c04d85d79bf9677d75b8c16c04b\",\"labels\":[],\"modified_at\":1732138416.986233,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986748,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"194631aec7814b1c0eeba1cf4e786d0a\",\"labels\":[],\"modified_at\":1732138416.986932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.98735,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae9b1ef37b45bab86290b6d49def769b\",\"labels\":[],\"modified_at\":1732138416.988081,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.73.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.988538,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98007b9b486441a51a5279bb7fed6b8a\",\"labels\":[],\"modified_at\":1732138416.988715,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.73.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.989091,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49dc7f599fdd1f2027fe2bcf95006dff\",\"labels\":[],\"modified_at\":1768937324.663851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.73.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.990462,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33557f07cdf75bc2412ad0a885c0bc44\",\"labels\":[],\"modified_at\":1732138416.991131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.73.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.790002,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72e8b62740080ea3f946f208f1fb7bc7\",\"labels\":[],\"modified_at\":1768937324.779845,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.791422,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d04acf192d2fd0fc6179ab20b4104f4\",\"labels\":[],\"modified_at\":1732138423.792057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.792664,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f328919b5fbd52d7e3554c431eaecda5\",\"labels\":[],\"modified_at\":1732138423.793293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.793874,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57f5ea17ee03c8aef502d38ef8bd6b1b\",\"labels\":[],\"modified_at\":1732138423.794042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.79457,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd876b6092259cb5ead6b986d88ee635\",\"labels\":[],\"modified_at\":1732138423.794748,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.795911,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555c9ad71f1f7fdd6ee1463b6969d21\",\"labels\":[],\"modified_at\":1732138423.796098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.796629,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec00430092b4eeab0664d84f21df0171\",\"labels\":[],\"modified_at\":1732138423.796797,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797307,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88dc5c6dce5ae4332a1d45a4f0cc4c99\",\"labels\":[],\"modified_at\":1732138423.797468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797983,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ac88bfe9cceaa214b06d93c173a4837\",\"labels\":[],\"modified_at\":1732138423.798146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.798681,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc6960dcb05013fd42b9c69458102c16\",\"labels\":[],\"modified_at\":1732138423.798846,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.799334,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07a1c78242bf060670017b91e7d94d35\",\"labels\":[],\"modified_at\":1732138423.799489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.800068,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"043056745e8987e49706de0b21d04793\",\"labels\":[],\"modified_at\":1732138423.800234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.804869,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"daf1f79fbd90cabfc5a34ad780956cdb\",\"labels\":[],\"modified_at\":1732138423.805095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.806501,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbb8694e79a2ad14cb64c8f8e5d47a2f\",\"labels\":[],\"modified_at\":1732138423.80718,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.807718,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7424d3a9e7da60ac2ba9d4adfd79a18\",\"labels\":[],\"modified_at\":1732138423.808298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.808844,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24c0c8ec26f7f4075cd8e45ffcde07a1\",\"labels\":[],\"modified_at\":1732138423.809401,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.809877,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22bf5cdc43c8ee4de64819afa890cc68\",\"labels\":[],\"modified_at\":1732138423.811783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.812418,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8312156799f26c4fd9c0c0e868d613df\",\"labels\":[],\"modified_at\":1732138423.81303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.81356,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cde146585342c60fa01d113994424977\",\"labels\":[],\"modified_at\":1732138423.814241,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.816756,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a15df092ba0c6a7154348a4898157ad4\",\"labels\":[],\"modified_at\":1732138423.817406,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.618014,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416b91acfddf3047384e7ee2ae08296c\",\"labels\":[],\"modified_at\":1732138684.618664,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.75.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.619114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22ca26c888e4f320444bfe76a2069291\",\"labels\":[],\"modified_at\":1732138684.619621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.75.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620099,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3617768155b9135fc6e5f44b7e21189c\",\"labels\":[],\"modified_at\":1732138684.620274,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620594,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"118bc1f4edbe3b8896b0d0a6751133e3\",\"labels\":[],\"modified_at\":1732138684.620752,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.621063,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c365245a707d6329e913801bd91ca5d1\",\"labels\":[],\"modified_at\":1732138684.621225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.62154,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75eb84dd5f8d9bc95ca286dc1eeca79d\",\"labels\":[],\"modified_at\":1732138684.621706,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622015,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2777138368a9abe7f9f042f0023f48b\",\"labels\":[],\"modified_at\":1732138684.622179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.75.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622502,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c57670c418667c196d39dca2483a5d14\",\"labels\":[],\"modified_at\":1732138684.622961,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.75.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.623544,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15d78da0a4398cd66194710995979ef2\",\"labels\":[],\"modified_at\":1768937324.668105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.75.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.624153,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b3ad094b6fb47d54160dc27a2402c7a\",\"labels\":[],\"modified_at\":1732138684.624744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.75.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.636665,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fa00abf3918f8fac60b707bed85cdd7\",\"labels\":[],\"modified_at\":1732138695.636933,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.637438,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa0f8a73745bfcdc301019929f9f395\",\"labels\":[],\"modified_at\":1732138695.637612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.63806,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4687608966a4d41618657f50e8d41a50\",\"labels\":[],\"modified_at\":1732138695.638228,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.638762,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfafac5c6126794a57742fe36400fea6\",\"labels\":[],\"modified_at\":1732138695.638934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.639408,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03f80773d857d3dacb7fd5e038bb1f31\",\"labels\":[],\"modified_at\":1732138695.639583,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640039,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a365309305395eecd9b2293a9b2ed220\",\"labels\":[],\"modified_at\":1732138695.640208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640663,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e34194de8abc885606521034b1889ed\",\"labels\":[],\"modified_at\":1732138695.640834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.641306,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_motion_untrigger_send_basic_cmd\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99cf610a23717a99dbfe052a0bb6ea34\",\"labels\":[],\"modified_at\":1775549231.59514,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ared\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.64198,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_configuration_param_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b0ce3efe64c82a980bac45f2c10a14\",\"labels\":[],\"modified_at\":1775549231.595476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Settings Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-254\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.642575,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df497c8d1113a36c54c4db878e0fca8b\",\"labels\":[],\"modified_at\":1732138695.642925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.643371,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbfd1827b608ec30e50a2c8d9ac1738a\",\"labels\":[],\"modified_at\":1732138695.6439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.644367,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"067ff38baebfeba542fc2d93fd6d846b\",\"labels\":[],\"modified_at\":1732138695.64489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.645399,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d4d2fb65ea95c82c89912955ce2d74f\",\"labels\":[],\"modified_at\":1732138695.645909,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.646344,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a746d156e0579cb6a0c282ec8423459d\",\"labels\":[],\"modified_at\":1732138695.646873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.647407,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afe52a71944a7bce54e82309066779eb\",\"labels\":[],\"modified_at\":1732138695.648124,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.648719,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ccfe4098bf64d024b3a4280d44249f06\",\"labels\":[],\"modified_at\":1732138695.648905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.649411,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e4dca10b749b4af9b227c82fb79d73f\",\"labels\":[],\"modified_at\":1732138695.649587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.650062,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ea778c5ee2223334224e979796972\",\"labels\":[],\"modified_at\":1732138695.650629,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.65114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e84349c9c3f7be88ffdb3b431a0ba7\",\"labels\":[],\"modified_at\":1732138695.652399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.653016,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"714c36211355e8c6eed8b0f405f1af18\",\"labels\":[],\"modified_at\":1732138695.653613,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.654109,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7baadd3ceacdd507c216212cb3b87068\",\"labels\":[],\"modified_at\":1732138695.654668,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.655381,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4c051cf51f0348ae219dc014e260222e\",\"labels\":[],\"modified_at\":1732138695.655966,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732139452.718891,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed7dbfad7f175f21a652c7d0d3330d8b\",\"labels\":[],\"modified_at\":1732139538.777695,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1732174703.971423,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_lights_left_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"924db9892cc5519731a5c110545b3061\",\"labels\":[],\"modified_at\":1732174703.972284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Lights Left On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1732174695099\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.375013,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b816b35414f8bc2d381fc987e434b35f\",\"labels\":[],\"modified_at\":1733163448.545247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Connection state\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_connection_state_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.41395,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_restart_required\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61f46e69a48027efacc7d58134f627a3\",\"labels\":[],\"modified_at\":1733163448.547781,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart required\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_required_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.45896,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bfd3f57c36e237bbb9ad6afb80870b6\",\"labels\":[],\"modified_at\":1733163448.551286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.504733,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba7340b4cbd21643896dea7f309921f9\",\"labels\":[],\"modified_at\":1733163448.643092,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Log level\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_log_level_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.548301,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25f4a31cb1ccecc4e9469f5ea9cc3e0e\",\"labels\":[],\"modified_at\":1733163448.646729,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.593799,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_coordinator_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b842f63a9b81e3a2af0ef251ecf7ab4\",\"labels\":[],\"modified_at\":1733163448.649525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Coordinator version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_coordinator_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.644285,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_network_map\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12df011646a6b17600d15ab9fa6fe99c\",\"labels\":[],\"modified_at\":1733163448.653364,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Network map\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_network_map_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.690207,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aca42208b299223d614f58e3feb2c840\",\"labels\":[],\"modified_at\":1733163448.656796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Permit join timeout\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_timeout_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.783081,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b33f74080c92f71e53d49d2fc60e406\",\"labels\":[],\"modified_at\":1733163448.659761,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.829562,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e381ec7dcd1341f5776bd0a2886f9209\",\"labels\":[],\"modified_at\":1733163448.662249,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.873645,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a31d7d3cbcf76b4365c2756f2418ca31\",\"labels\":[],\"modified_at\":1733163448.665131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action angle\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_angle_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.917858,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_device_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a754f3acf910cd43563ed2676eedb040\",\"labels\":[],\"modified_at\":1768937325.657919,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_device_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.961537,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_power_outage_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb5cc9dfece2a14128321a8c8ba0044c\",\"labels\":[],\"modified_at\":1733163448.672203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power outage count\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_power_outage_count_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.00603,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_from_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9624c92d6b8366ef9cd1804493185dab\",\"labels\":[],\"modified_at\":1733163448.674787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action from side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_from_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.049561,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac02738c9db3275fac7690e531555c11\",\"labels\":[],\"modified_at\":1733163448.67793,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.093516,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_to_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c008909747cd28dd536a03d115d711a\",\"labels\":[],\"modified_at\":1733163448.680929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action to side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_to_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.137499,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0e64fef54c101ab96c4081bad5a2ad8\",\"labels\":[],\"modified_at\":1733163448.683803,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.225948,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a932bc8c951ba62827fe0f990e2702db\",\"labels\":[],\"modified_at\":1733163448.686366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.313491,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_desk_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a28d2af38fd6ac7279788810b8f4d7\",\"labels\":[],\"modified_at\":1733163448.688208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.405348,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_cabinet_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f0bb80add1fa704cc495207b3f5d194\",\"labels\":[],\"modified_at\":1733163448.691535,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.740788,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df49492914ec67f302e0b6a69c122293\",\"labels\":[],\"modified_at\":1733163448.695336,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Permit join\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.27003,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_desk_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e62b257bc1586c7d6f6c0d9757293a\",\"labels\":[],\"modified_at\":1733163448.698409,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.357407,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_cabinet_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81a443a3981f42bf8049cb72eb3726f2\",\"labels\":[],\"modified_at\":1733163448.70122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1733166139.84886,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_z2mqtt\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad1ef16f58ed42f31138cf882cbd1923\",\"labels\":[],\"modified_at\":1733166139.849744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Z2MQTT\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1733166130068\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733166143.681489,\"device_id\":\"c4e6de4e26e939f7d433bf6d0a56df00\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.desk_cube_last_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42f966c6395b8ea360e7aa399ca72b13\",\"labels\":[],\"modified_at\":1733166143.682204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"last side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"desk_cube-e600b772e2d38b5b159093786d5bf1b2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.273786,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.thermostat_temperature_display_units\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3f00ecf5048b3f9e64a704e2ca9d92e0\",\"labels\":[],\"modified_at\":1733470323.274554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Temperature Display Units\",\"platform\":\"homekit_controller\",\"translation_key\":\"temperature_display_units\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.275631,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.thermostat_current_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6a708b72d19d3425a4bffde4773acf9\",\"labels\":[],\"modified_at\":1733470323.276196,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Current Mode\",\"platform\":\"homekit_controller\",\"translation_key\":\"ecobee_mode\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.276884,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"02eb281ddab89f579541da3c48364480\",\"labels\":[],\"modified_at\":1768937330.226836,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Thermostat Current Temperature\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.277912,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_humidity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aada76d6b800aa198307edc8f2f94b49\",\"labels\":[],\"modified_at\":1733470323.278441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Current Humidity\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.279066,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a34e9a572df91bb7a2bea56b6c7befc\",\"labels\":[],\"modified_at\":1733470323.279596,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Motion\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_56\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.280059,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a53e234c9a95713683719a42f1f7d16\",\"labels\":[],\"modified_at\":1733470323.280586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Occupancy\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_57\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.281426,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1dc2c5f590596a957c5d442d276f9551\",\"labels\":[],\"modified_at\":1775463025.83871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.282857,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.thermostat_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea789899d09226775d0daa530027b9d\",\"labels\":[],\"modified_at\":1733470323.283385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_1_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.28388,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.thermostat_clear_hold\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f25cd194cab996c6b0d11611f99101c\",\"labels\":[],\"modified_at\":1733470323.28457,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Clear Hold\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_48\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.854459,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0990beda4adbced67f9da8fbf14a5734\",\"labels\":[],\"modified_at\":1733904292.858855,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.892119,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e84579ecf7f13526a23c78731d3755\",\"labels\":[],\"modified_at\":1733904292.895779,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":1736319447.525713,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b9ac173954a17489fd6438677e48e78\",\"labels\":[],\"modified_at\":1741148806.093313,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Compressor minimum temperature\",\"platform\":\"ecobee\",\"translation_key\":\"compressor_protection_min_temp\",\"unique_id\":\"511883021980_compressor_protection_min_temp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.905972,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f04cd994bf4a7ca806e873689f0a05\",\"labels\":[],\"modified_at\":1736320519.906751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.79.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.907344,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e78e8aa7ecee5b3adb88cf6760e660\",\"labels\":[],\"modified_at\":1736320519.907957,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.79.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.908601,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aed21f201e4e9e49dc6e2fbfa6b269f\",\"labels\":[],\"modified_at\":1736320519.908898,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909112,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11d59ab7cf13cb711f9f6aa4d904b40f\",\"labels\":[],\"modified_at\":1736320519.909248,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909421,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea3a75a361da66c42a17ab240ac6619\",\"labels\":[],\"modified_at\":1736320519.909546,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909714,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9098616b205b24cbad4a88c83997e963\",\"labels\":[],\"modified_at\":1736320519.909949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.910119,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519aa11c201477c7828a3bc98fd1133d\",\"labels\":[],\"modified_at\":1736320519.910246,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.79.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911034,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bec59707ccd7dc529a90b1f098e5463\",\"labels\":[],\"modified_at\":1736320519.911218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.79.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911435,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef05212c0e42c4bfe401b3c4a440be4b\",\"labels\":[],\"modified_at\":1768937324.673569,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.79.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911768,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e515cf0760d43f4a81b2b3979145422\",\"labels\":[],\"modified_at\":1736320519.912168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.79.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.889798,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03c6b2e96c8518f922c1f7976a43224f\",\"labels\":[],\"modified_at\":1736320523.890247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.890604,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cfadce8334aa142551bb0271cb3a332f\",\"labels\":[],\"modified_at\":1736320523.890983,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891298,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e97ff3d04362f3398435b9c09280c19\",\"labels\":[],\"modified_at\":1736320523.891644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891976,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1be6ea19b6705198c44062cd8c886913\",\"labels\":[],\"modified_at\":1736320523.892111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892381,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1163e30b6367ba70cdb0bbe818bd86a\",\"labels\":[],\"modified_at\":1736320523.89251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892784,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003c87cfb9a0c7a08e1e6a9413bb72be\",\"labels\":[],\"modified_at\":1736320523.892915,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893181,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a74f8edd31d0d23fcb5d7911f5de558e\",\"labels\":[],\"modified_at\":1736320523.893314,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893609,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd4b36349b64e4afb0efbd8cae27ceb1\",\"labels\":[],\"modified_at\":1736320523.893743,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894017,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dce04321343b8f8650a1638e540c066\",\"labels\":[],\"modified_at\":1736320523.894147,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894415,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a26041ffe1d767c1eb6d43d5eaa1062\",\"labels\":[],\"modified_at\":1736320523.894549,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895246,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"335173b1290e32b28674d76b3139a7e3\",\"labels\":[],\"modified_at\":1736320523.895405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895685,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b023c61c1897b503e351ab61f1397b60\",\"labels\":[],\"modified_at\":1736320523.895824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896095,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18346fff64001fa0e036649a9ce026a3\",\"labels\":[],\"modified_at\":1736320523.896229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896493,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c84119a15d609af8e002b03a3113d945\",\"labels\":[],\"modified_at\":1736320523.896637,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896904,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be85935d305056837922385a2d2166d\",\"labels\":[],\"modified_at\":1736320523.897033,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897297,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba44272b6f19db495f0bad8e04150bdf\",\"labels\":[],\"modified_at\":1736320523.897427,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897689,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60c44e307fd48158ef5a870f6e1ea15f\",\"labels\":[],\"modified_at\":1736320523.897823,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898087,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"779e519eb982bf17eafbb4185d8a5538\",\"labels\":[],\"modified_at\":1736320523.898218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898501,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param017\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13eb4a7de3ff753f4f4551bb6b34c3fc\",\"labels\":[],\"modified_at\":1736320523.898633,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param017\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898906,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param018\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2aade9b24c3cf098837c05f198a84196\",\"labels\":[],\"modified_at\":1736320523.899034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param018\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.899325,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a75845967c301f447fdadd705ccd7bb\",\"labels\":[],\"modified_at\":1736320523.899681,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.900013,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cce3b69f3c06d161dec626b5790ce5b3\",\"labels\":[],\"modified_at\":1736320523.900352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.901702,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e73cbc35e18958125287a74471c3a7\",\"labels\":[],\"modified_at\":1736320523.902118,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c40ab8344787dc7d21e29d547af9168\",\"labels\":[],\"modified_at\":1736353596.37888,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"config_subentry_id\":null,\"created_at\":1736353647.022559,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9b5fcaa227f65f8d411267b0c87e17c\",\"labels\":[],\"modified_at\":1736353647.026856,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Garage Motion\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354201.335657,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9b4fba2f11f641562e2a0cf02f5193a8\",\"labels\":[],\"modified_at\":1736354201.33641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354191063\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354274.958347,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"830666f260932ede8c27eb30fa0f2acd\",\"labels\":[],\"modified_at\":1736354274.959061,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354261558\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356766.764731,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f39e4da6bae1a1fb17133e0994052d7\",\"labels\":[],\"modified_at\":1736356766.76768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"1e0e99c393cebaf6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.582007,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a426428dce7d3a5ad82a464d6c13626\",\"labels\":[],\"modified_at\":1736356803.582649,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.882889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"109baa4874d527c5dce0fa51e7ec766e\",\"labels\":[],\"modified_at\":1736356803.883446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.157783,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18486e2eea948c77d599307cb1afac40\",\"labels\":[],\"modified_at\":1736356804.158354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.504037,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8b32e5fb84db954de2baea306396bcdf\",\"labels\":[],\"modified_at\":1736356804.504525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.770611,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7076de51a9429320f8f79a3b02daee09\",\"labels\":[],\"modified_at\":1736356804.771166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.094326,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0957b1480c95f751131df14c11de93e7\",\"labels\":[],\"modified_at\":1736356805.094874,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.332161,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b9d7f3508915fa3d10cc3763c4c732b\",\"labels\":[],\"modified_at\":1736356805.332734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.632478,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"654a35e29ec254b14f7342b941c57ebc\",\"labels\":[],\"modified_at\":1736356805.905853,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.134424,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ab3ad53acb2fb31265c2beaf81a787\",\"labels\":[],\"modified_at\":1736356806.223628,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.408371,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4a6ac60b8a79e875715714e9d98b53\",\"labels\":[],\"modified_at\":1736356806.65203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.77282,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9a1414d4439efae40503ca6f2d0de1c1\",\"labels\":[],\"modified_at\":1736356806.918576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.0732,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad998071e0851fcdac692503e773cad\",\"labels\":[],\"modified_at\":1736356807.073755,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.47584,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d14678412ea3738987ba070e0d1dc47\",\"labels\":[],\"modified_at\":1736356807.476394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.789064,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b94f06998a4a37f7fa272ebb5d4a82\",\"labels\":[],\"modified_at\":1736356807.792482,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.131893,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3de7df881a6322e0971ccea176dddd43\",\"labels\":[],\"modified_at\":1736356808.132439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.44137,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0585654f850aa6c80809d8159b522c\",\"labels\":[],\"modified_at\":1736356808.441885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.789329,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"14f7490f06cca0ba2fd96f2482289589\",\"labels\":[],\"modified_at\":1736356808.789536,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.075127,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"157241e5f848a341290b22d44b2c6cc3\",\"labels\":[],\"modified_at\":1736356809.075701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.53918,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e11a13791aa5e28f584841a514467af6\",\"labels\":[],\"modified_at\":1736356809.539734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.885361,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b318f00270d6a9b45165c6e5a44f637\",\"labels\":[],\"modified_at\":1736356809.885939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.259692,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52087a4595d9da9fbde6eea04ad63196\",\"labels\":[],\"modified_at\":1736356810.260095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.533183,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fee843fda76fc8d65a653091ced38e8\",\"labels\":[],\"modified_at\":1736356810.533737,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.955986,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11f9a4558ce5421169edbeb2e555d5cd\",\"labels\":[],\"modified_at\":1736356810.956558,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.034081,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be48034f51cdaff9ee7e90fe0fef9d98\",\"labels\":[],\"modified_at\":1772683905.232172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.297521,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0819605111bcbcd4f7e39d21c88a07\",\"labels\":[],\"modified_at\":1772683905.835153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.540434,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e47ff59093cdd8c4b107074e038dcb3c\",\"labels\":[],\"modified_at\":1736399063.500589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.909769,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46db01c2adedfbe43630a5f6dccc6a99\",\"labels\":[],\"modified_at\":1745524780.005163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359657.453126,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3c001f67d93fb5258ae48c47210beb2\",\"labels\":[],\"modified_at\":1736399064.263031,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.581695,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ead35b09a45c83eee2915b09e240cf5\",\"labels\":[],\"modified_at\":1736399064.531165,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.882863,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"297937f666f3e5a757b1165cbc567ea3\",\"labels\":[],\"modified_at\":1736399064.803276,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.137825,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6389ef9fa7957cc4e8fd6626ea88768\",\"labels\":[],\"modified_at\":1736399065.081707,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.363443,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bedtime_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7af1d7a08626154d89c6fe3bcff2049a\",\"labels\":[],\"modified_at\":1736359659.36398,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bedtime mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bedtime_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.625494,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4b1ce8d630d3c1139af9939d53abb39\",\"labels\":[],\"modified_at\":1736359659.626054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.876657,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2de0b22a75bc9020376fa995d4f55f\",\"labels\":[],\"modified_at\":1736359659.877219,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.132724,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27be5d92b8d529284e3b279099754ea2\",\"labels\":[],\"modified_at\":1736399067.294751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.376811,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0d40b3310f8c0e746ca68a5444b0d1b\",\"labels\":[],\"modified_at\":1736399068.107397,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.60476,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d8083b32c92d976e8df45388ba480189\",\"labels\":[],\"modified_at\":1736359660.605316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359661.793629,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adaa4c83bc9bca3d19a9af0ec81a8eea\",\"labels\":[],\"modified_at\":1736399795.169023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.177957,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53eb4bdb941f55dbbd581722fbf5fcfa\",\"labels\":[],\"modified_at\":1736359662.178469,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.645451,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01129317545bbe3d974404fc7b754d4f\",\"labels\":[],\"modified_at\":1736359662.64603,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359663.612969,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41d3cf71221566d53676a59927079525\",\"labels\":[],\"modified_at\":1736399795.946725,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.24639,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9dc6b7eb95805f4edcd634365fed345\",\"labels\":[],\"modified_at\":1736359664.246953,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.510519,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7cb0a33d907765f791a568845f3ca99\",\"labels\":[],\"modified_at\":1736359664.51107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359665.204889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23e948de201d1840aef0bcac3f026dcc\",\"labels\":[],\"modified_at\":1736359665.205434,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359666.440523,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5707e58d3dc6e2aac0394c2fcb3b7819\",\"labels\":[],\"modified_at\":1736359666.441115,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359667.195641,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"814ba5368dd8ce19d270c59f3aa70d95\",\"labels\":[],\"modified_at\":1736359667.196212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359668.184418,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d79100a0ce88a95bb3508f92917c50e\",\"labels\":[],\"modified_at\":1736399797.665211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359669.14242,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09a91b37c035dc8468fb33c46d22b688\",\"labels\":[],\"modified_at\":1736399798.122323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.04832,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d6892d2d211d5450673f97825289382\",\"labels\":[],\"modified_at\":1736399798.705635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.992047,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"013180467fa74f25bf8aeac4685c0bb6\",\"labels\":[],\"modified_at\":1736399799.392385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359671.938631,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"beb1135710edcf430ee9c09b403bb4f5\",\"labels\":[],\"modified_at\":1736399799.790352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359672.866807,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6230302d762bf3ab79d12409c1231bbf\",\"labels\":[],\"modified_at\":1736399800.787298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359673.78006,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8be95f5af00e6d22af4f2e5ac47c6fdf\",\"labels\":[],\"modified_at\":1736399801.429003,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359674.698165,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72b59c954d688b0c5d56dc7515ecb8fe\",\"labels\":[],\"modified_at\":1736399802.363037,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359675.62217,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42c8a56ab854162a1745cb4a09dbdb4f\",\"labels\":[],\"modified_at\":1736399803.362446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359676.543017,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e317baaf0f76275291f5c2d076ee5e5\",\"labels\":[],\"modified_at\":1736359676.543581,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359677.44848,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"273ecd3a847f25375673692d0e17e105\",\"labels\":[],\"modified_at\":1736399805.439232,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359678.422497,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40b84792dccc1ab0c45ddb0dd47ace3f\",\"labels\":[],\"modified_at\":1736359678.423076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359679.312512,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7048d27edebd7601ca231221f6b27f69\",\"labels\":[],\"modified_at\":1736399807.564816,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359680.283382,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1743057c6757d698d0d65799731be65b\",\"labels\":[],\"modified_at\":1736359680.283927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359681.140505,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_on_body_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b75d2c31d19e391f5d178240a6c0209e\",\"labels\":[],\"modified_at\":1736359681.141105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 On body sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_on_body\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.090116,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2dead3b819e75b6b5211443a5ac78f4\",\"labels\":[],\"modified_at\":1736359682.090675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.9708,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34c63b944355c9e51b84ba3f6b774b6e\",\"labels\":[],\"modified_at\":1736359682.971298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359683.958379,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a7bf80c63ca3bee1b4879fb6b1ba99d\",\"labels\":[],\"modified_at\":1736359683.958927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359684.857759,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47ce2137b53c5b8f6d94331b3e025002\",\"labels\":[],\"modified_at\":1763328460.580366,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359685.654766,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ef2b4cd3a27c1b0051ac47549a23b72\",\"labels\":[],\"modified_at\":1736359685.655329,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359686.705391,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0a92448dcdd542b9e3e8a75fe04559a9\",\"labels\":[],\"modified_at\":1736359686.705956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359687.625097,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ab731ae8b74fd38f20f4fb6c43506c5\",\"labels\":[],\"modified_at\":1736359687.625639,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359688.516154,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_theater_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"703096c37b80a7d5fa418e41d4f81c31\",\"labels\":[],\"modified_at\":1736359688.516736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Theater mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_theater_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359689.529591,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b843d7d77fd0e55c1b9dbc9bcbc183f\",\"labels\":[],\"modified_at\":1736359689.530093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.333626,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab5205e7d9e3858de62ea0bb4794194c\",\"labels\":[],\"modified_at\":1736359690.334183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.652265,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fad870f9abcfa3727367793912e2f758\",\"labels\":[],\"modified_at\":1736359690.652862,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359691.299905,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wet_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6912d4a233b925946eb92a607354856e\",\"labels\":[],\"modified_at\":1736359691.300455,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wet mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wet_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359692.209767,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_activity_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6c82536cb995ebbba982c2ab021ced8\",\"labels\":[],\"modified_at\":1736399825.35309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Activity state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_activity_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359693.154691,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39a8afb6f701ab75cfc7fdb255e13a6f\",\"labels\":[],\"modified_at\":1736359693.155251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_floors\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359694.058948,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ff694331b621b1f0fda4e48e8bbcc53\",\"labels\":[],\"modified_at\":1736399827.024194,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.003274,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_calories\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d9e973ac42cfc50c48e30ad90288748\",\"labels\":[],\"modified_at\":1736399827.952805,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily calories\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_calories\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.81776,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2e45bb02534ec3078c8e0eea4344ca\",\"labels\":[],\"modified_at\":1736359695.818316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.856213,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e71d567db688d94b4e0e0f224fb9ce28\",\"labels\":[],\"modified_at\":1736803158.868554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.887145,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20c1bb2e7c3adbd94bfdfbdf8b652b8d\",\"labels\":[],\"modified_at\":1736803158.895143,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.925194,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"139f6cd0dd468aa9019150651d43f434\",\"labels\":[],\"modified_at\":1736803158.934833,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.958586,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d27e6bddb02baaf8770ba59450229223\",\"labels\":[],\"modified_at\":1736803158.959123,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.000035,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adad2dae764b1b4c5e4f1b8615f7c6ec\",\"labels\":[],\"modified_at\":1736803159.000571,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.020193,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"130892cbc52a3a5d41acf63fc52264a7\",\"labels\":[],\"modified_at\":1736803159.045045,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.05282,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4df84fa332afe1a1ba6e2afbe3e0c538\",\"labels\":[],\"modified_at\":1736803159.053349,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1737067561.611876,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_sensor_2_sensor_state_co2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bddd6f808427ba2a97adca93c8768213\",\"labels\":[],\"modified_at\":1737067561.612126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sensor state (CO2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-CO2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1740257490.056992,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de2bdae5c394ce75a2e72d945fd67d78\",\"labels\":[],\"modified_at\":1740257490.057769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Solar ECU Unavailable\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1740257477923\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.753328,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.under_cabinet_lighting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47a17625819d6de9a9a5a9fcb068dfd3\",\"labels\":[],\"modified_at\":1742764374.448547,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_light_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.742879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.under_cabinet_lighting_effect\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f83446880146584e49ffe7ca9d992136\",\"labels\":[],\"modified_at\":1742764374.450385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Effect\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_effect_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.780879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbc2aaaed253d3bbe2c0ea5e8596772d\",\"labels\":[],\"modified_at\":1742764374.496804,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Do not disturb\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_switch_do_not_disturb_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.829072,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.under_cabinet_lighting_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb2a38c1e988902be72a7518cea08f79\",\"labels\":[],\"modified_at\":1742764374.541366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467771.203002,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ef0cd9a1858bc9149e47113717459b5\",\"labels\":[],\"modified_at\":1745467771.203562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.019608,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9411a9c653ef38ea742ed08dc2a31067\",\"labels\":[],\"modified_at\":1745467772.03278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.047222,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37f7acf271e127f4e49d357bb0c5bb68\",\"labels\":[],\"modified_at\":1745467772.060087,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.227616,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc0faadddf515e78993cb2525101a9e9\",\"labels\":[],\"modified_at\":1745467772.228166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.295831,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2710c8eb328c4a060bfab6e1a34674fb\",\"labels\":[],\"modified_at\":1745467772.313176,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.391191,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7cc10320bf0eac221b1bbe0e37984f\",\"labels\":[],\"modified_at\":1745467772.408751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1745524781.207297,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"545c407bdcb5d35ec63d78f7a8878b00\",\"labels\":[],\"modified_at\":1745524781.207876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1745542172.503223,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18e492ba2733085e4e9f4ff0a5428df0\",\"labels\":[],\"modified_at\":1745542172.50526,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CO2 Alarm unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-CO2 Alarm-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.46243,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"747f703192d22d8ec8759bc94a1fce76\",\"labels\":[],\"modified_at\":1748219109.463014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.640996,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5198dc56db91ba7df5b10c7a015e581\",\"labels\":[],\"modified_at\":1748219109.655051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.685402,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb41fd2f446a5f8881e816b46c3f8feb\",\"labels\":[],\"modified_at\":1748219109.685973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.721723,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3d0012049fbeda8166b02790dc37b92\",\"labels\":[],\"modified_at\":1748219109.722298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.757491,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eba82b80d5619332290deb4a3efb5c84\",\"labels\":[],\"modified_at\":1748219109.758093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.785413,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5e763389817f6ec085e23be56ee54f5\",\"labels\":[],\"modified_at\":1748219109.792204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.110811,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee83713b4ec50e5a22b0f247fa5bc1c5\",\"labels\":[],\"modified_at\":1749590887.112776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.113208,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa86888ae5a955cc2ca0fb3ce1559700\",\"labels\":[],\"modified_at\":1749590887.11367,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.114151,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_shower\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"244d25b21371ef06dfbe70c38a8e3a27\",\"labels\":[],\"modified_at\":1749590887.11467,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.11557,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_shower_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"197264aec52c5bb54e81ebf28f841d6d\",\"labels\":[],\"modified_at\":1749590887.115711,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:82:fb:6a_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.694619,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"217b95c6b680c1836cdf60eb9da2f503\",\"labels\":[],\"modified_at\":1749590895.696348,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.697451,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003565fb8b8be878769578dc74c69752\",\"labels\":[],\"modified_at\":1749590895.699001,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.701685,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.matter_bath_toilet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a965f5cf56792192cef7e0ab7b9a31a7\",\"labels\":[],\"modified_at\":1749590895.703552,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.708213,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.matter_bath_toilet_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84160aed320a4e66dd6c9ad44039bd9b\",\"labels\":[],\"modified_at\":1749590895.708736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:83:1f:53_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"config_subentry_id\":null,\"created_at\":1750061075.141771,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49204eb2a92de917a9e42ff6f8f588f5\",\"labels\":[],\"modified_at\":1775870416.949195,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Master Bath Lights \",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180319,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_param027\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ea8e9374eae954b3bbd8d18020ca120\",\"labels\":[],\"modified_at\":1752102847.180555,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param027\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180971,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_separate_inputs_from_outputs\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca290e9cdd8d4d5d6b3073329b06547b\",\"labels\":[],\"modified_at\":1775490675.663286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Input Trigger\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.1822,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fb5086cf8fcc21f5e28d90e0db54c78\",\"labels\":[],\"modified_at\":1775490675.663838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"config_subentry_id\":null,\"created_at\":1759378690.394779,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"calendar.maya_school\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cca23ca8717983fe71c89426ca56c7b5\",\"labels\":[],\"modified_at\":1759378690.395441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maya school\",\"platform\":\"local_calendar\",\"translation_key\":null,\"unique_id\":\"01K6HJ8M54G71Y4477XK05AGBG\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386477.277947,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4097cd598a3a06c6f0daff8cad6ca79\",\"labels\":[],\"modified_at\":1759386477.279521,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1759386477130\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386507.028808,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be669aa5658d128e8ffcd6168710677f\",\"labels\":[],\"modified_at\":1759386579.806063,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387437.349538,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4820d645ddc7e05d31da79d542bdfe\",\"labels\":[],\"modified_at\":1759387437.351339,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"band day 2\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387072.988787,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_button.band_day_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3dc6766f5367c3f345af29958d10bc\",\"labels\":[],\"modified_at\":1768937321.234765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"collection\":{\"hash\":\"1b24d0ddf479ed85340a79f72c595317\"},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day 3\",\"platform\":\"input_button\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498155.515729,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_phone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c3949e0a3c86ebd635f939b4da67b68\",\"labels\":[],\"modified_at\":1760976737.49654,\"name\":\"Adam Phone\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"51e12b25d85b4b1e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.63507,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b25ffeb9832412e4729bc9a3554e791\",\"labels\":[],\"modified_at\":1774279284.833829,\"name\":\"Adam Phone Battery level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.848698,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bceafcf813f3d0c7f5875af49aa7014c\",\"labels\":[],\"modified_at\":1772691190.431663,\"name\":\"Adam Phone Battery state\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.380282,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52a1a4199f6226c81e7a9e280bf8a5c2\",\"labels\":[],\"modified_at\":1772691194.336662,\"name\":\"Adam Phone Charger type\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.561785,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f78b5a31c1f1797cecc8021a4bc283c\",\"labels\":[],\"modified_at\":1763016724.667262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.150666,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"753010fef896a676a949100adf1a5df3\",\"labels\":[],\"modified_at\":1760976737.499635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.996611,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093bf4d5f49f15e5238231d70b093df3\",\"labels\":[],\"modified_at\":1760976737.502342,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.632604,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b21e81370aec744ff4cef9a8bf0ef00\",\"labels\":[],\"modified_at\":1760976737.502738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.837407,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7107aad5e9b8e1943301af2a059e93ea\",\"labels\":[],\"modified_at\":1760976737.503069,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.908791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47c1557ded81eebf8aa0a96ac63d2841\",\"labels\":[],\"modified_at\":1760976737.503394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.362775,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29de90a8bd56b781a47d398184b68cb6\",\"labels\":[],\"modified_at\":1760976737.503709,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.387797,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b09b3df0b3a9f47a8e6eb4bb0725a8d\",\"labels\":[],\"modified_at\":1761859609.313035,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.086212,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"06c5550926c6fdd6b5ff1b6d10511768\",\"labels\":[],\"modified_at\":1760976737.504334,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.677976,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e02d2deb740d7a31ec1ac86e66289584\",\"labels\":[],\"modified_at\":1760976737.504647,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.113948,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e6cfd871a0249cfa6fcfa5cb067c22a\",\"labels\":[],\"modified_at\":1760976737.504954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.052956,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23b032cf9074ee4d0ccd20a2c7b170a8\",\"labels\":[],\"modified_at\":1760976737.505278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.298484,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"511534407bbe94e987b4e6b18616dbd7\",\"labels\":[],\"modified_at\":1760976737.505582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.564591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"630126c44d79334d10daaac76b3e6da6\",\"labels\":[],\"modified_at\":1760976737.505883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.859128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54186ed87499f0363a7a795031ac8091\",\"labels\":[],\"modified_at\":1760976737.506183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.072203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c107fd5dd3a23152c737aeacfb93f12e\",\"labels\":[],\"modified_at\":1760976737.506487,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.114625,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fc30dd8af197aa5604097778df128b90\",\"labels\":[],\"modified_at\":1760976737.506796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.74326,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a99fecae7b35c0c91c2d87db9221d854\",\"labels\":[],\"modified_at\":1760976737.507099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.11767,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa5f2c7ce053d4544cf8d6062e90490e\",\"labels\":[],\"modified_at\":1760976737.508044,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.804439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6473733425a0a0786d883979d5b4aa81\",\"labels\":[],\"modified_at\":1760976737.508353,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.173261,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_wi_fi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1794c62e4b88cb613114ae22f6763cc6\",\"labels\":[],\"modified_at\":1760976737.508622,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.044578,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42417c7948736cba9d2a5224ad710014\",\"labels\":[],\"modified_at\":1760976737.508885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.833075,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b941b110fe0ebe77e2578dbf0457db9a\",\"labels\":[],\"modified_at\":1760976737.509153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.523966,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"120365806cf1ad9034b62efe0f58c093\",\"labels\":[],\"modified_at\":1760976737.50941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.731496,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad43a289a78ae9decb7a8bb8636ec15b\",\"labels\":[],\"modified_at\":1760976737.509663,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.578065,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82b4fccab26e5f8d9dc5b863a430eabb\",\"labels\":[],\"modified_at\":1763016726.90644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.923363,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681210dd7cb2b664dfc7160e4b59f9e8\",\"labels\":[],\"modified_at\":1760976737.510166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.508973,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"76b86a4aaafcf69e892ab189d3a5a37d\",\"labels\":[],\"modified_at\":1760976737.51042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.354383,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1337823dd9fe63383689acfe28169998\",\"labels\":[],\"modified_at\":1763016726.688987,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.723152,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e043cb0b1e1d248cb65f41b026f07c34\",\"labels\":[],\"modified_at\":1760976737.510914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.143052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2be1edbc1804fca84d30e0ff2af37d3\",\"labels\":[],\"modified_at\":1763016727.38029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.53214,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f72f7f7a26dd97cc36f76faefadc3116\",\"labels\":[],\"modified_at\":1760976737.511404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.594056,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff782efae98210cfe14a22d3d01023bd\",\"labels\":[],\"modified_at\":1760976737.511651,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.047203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f003eadb014be21895e4c4dc182b09c1\",\"labels\":[],\"modified_at\":1760976737.511895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.846127,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9688273e8fc0f9d29c7fae09c089596d\",\"labels\":[],\"modified_at\":1760976737.512138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.422557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85a174f235fbda9b9cdd6ef97bdb64eb\",\"labels\":[],\"modified_at\":1760976737.512378,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.203052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8a9981a0cce9ee63b08edc8b74a776ca\",\"labels\":[],\"modified_at\":1760976737.512621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.726411,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ded137b29a2ac9791fc1f1d244796b0a\",\"labels\":[],\"modified_at\":1760976737.51286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.751762,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"750907f9a2ecaf511d6767527d52e002\",\"labels\":[],\"modified_at\":1760976737.513111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.94591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cd9c953d266dd30bc5eb3151a5f2f66\",\"labels\":[],\"modified_at\":1760976737.513705,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.654737,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ac1339b135ff5cb6054610e09599cd4b\",\"labels\":[],\"modified_at\":1760976737.513999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.100199,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6559562de9368b5176d4c2bab69341be\",\"labels\":[],\"modified_at\":1760976737.51426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.317375,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e5aa6887ffe1c9ba20be2f9dad865c9\",\"labels\":[],\"modified_at\":1760976737.514516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.522632,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2d58c1b05145799f6a0e942e418637b\",\"labels\":[],\"modified_at\":1760976737.514765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.816273,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff01611593ce914c8e55b99746ade7bb\",\"labels\":[],\"modified_at\":1760976737.515013,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.856176,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1df9caee459458f4261ba3769b30a2fd\",\"labels\":[],\"modified_at\":1760976737.515262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.027941,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84ef8a67d8861618e18ec8e2201925f9\",\"labels\":[],\"modified_at\":1760976737.515509,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.497115,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ef002fc4b535738730128cd41020e5dc\",\"labels\":[],\"modified_at\":1760976737.515764,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.248154,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b7742f63b3eca975967469453a345b\",\"labels\":[],\"modified_at\":1760976737.516015,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.542876,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d10a7204fe5e2ea0fa40d8ae5a3144b\",\"labels\":[],\"modified_at\":1760976737.516268,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.257567,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"685e196a4c4f6c3101615348fb51dd51\",\"labels\":[],\"modified_at\":1760976737.516", - "offset_ms": 66 - }, - { - "direction": "recv", - "type": "text", - "payload": "516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.499288,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586179dae81f48674014b0857ed88ee4\",\"labels\":[],\"modified_at\":1760976737.516767,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.717817,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6034cd7356664dc063906e2f52a0a3\",\"labels\":[],\"modified_at\":1760976737.517018,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.94185,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"66165e96b66d1a023f8e8737fbe9e2d0\",\"labels\":[],\"modified_at\":1760976737.51728,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.528186,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ea8b6d6b10896ddbdf5ae9fafbbecc6\",\"labels\":[],\"modified_at\":1760976737.51753,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.252135,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385366fcc059b77a728168515f2586f2\",\"labels\":[],\"modified_at\":1760976737.517778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.461271,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f58c113ad08028f0af872124030c30f\",\"labels\":[],\"modified_at\":1760976737.518028,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498158.942049,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cba6a4bdd6a805551cc283b957b22e63\",\"labels\":[],\"modified_at\":1763016721.943079,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.192313,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2c38371850e50f3e5988540443f5c5d\",\"labels\":[],\"modified_at\":1760976737.51852,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.577028,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16f7fe2f79e1b1f0db02866ac85a4bc3\",\"labels\":[],\"modified_at\":1760976737.518771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.336206,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73631aa51e0e6a1d7794697379003876\",\"labels\":[],\"modified_at\":1760976737.519354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.260623,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"32245ba0b08e126f84726702cb6db8bc\",\"labels\":[],\"modified_at\":1761859609.314665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.171655,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0d32ff833fcd601cd32f482eb5f1c9a\",\"labels\":[],\"modified_at\":1760976737.519914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.382664,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7711c9412df10e8fe9452f68a7038e60\",\"labels\":[],\"modified_at\":1760976737.520171,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.610829,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a08d9ebbb81e0c3fc7a08d30d98e3b7e\",\"labels\":[],\"modified_at\":1760976737.520425,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.121172,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2cc61e1c263d63262ab756c2a5e9d31\",\"labels\":[],\"modified_at\":1760976737.520676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.498003,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81e3fb1a860e34c3494dbee1d95fe70f\",\"labels\":[],\"modified_at\":1760976737.520924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.21988,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3af3544de87e7dbab445e7a8029afa34\",\"labels\":[],\"modified_at\":1760976737.52119,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.731054,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db1336da12c043c7c61d784c7a622187\",\"labels\":[],\"modified_at\":1760976737.521439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.428907,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"553383b37e8d644518a821ebf99f99b3\",\"labels\":[],\"modified_at\":1760976737.521685,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.943883,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23a5abddd967354312c03855e037976f\",\"labels\":[],\"modified_at\":1760976737.521932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.518682,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0be097c7eb3dbe6aef6a25e3a6cd8ef\",\"labels\":[],\"modified_at\":1760976737.522174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.180681,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e09414a784c4b8a03feca8292b47fc\",\"labels\":[],\"modified_at\":1760976737.522426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.937301,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bfcdb749179ca990270164a9c1aace4c\",\"labels\":[],\"modified_at\":1760976737.52267,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.759405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f329d40f3cb4c98261ecbcca9d730f7\",\"labels\":[],\"modified_at\":1760976737.522917,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.012128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f894e57866a8b946f69234a7c97291\",\"labels\":[],\"modified_at\":1760976737.523164,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.284899,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"148c211961e1b76470e79174b4283b73\",\"labels\":[],\"modified_at\":1760976737.52341,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.985246,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f71e7d4f62b65e5450706d56114cc93f\",\"labels\":[],\"modified_at\":1760976737.523665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.763524,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d835075c5dbbd4973e040149a3f7514\",\"labels\":[],\"modified_at\":1760976737.523911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.601118,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d62adbd002ce98615faf711cc7a26d5f\",\"labels\":[],\"modified_at\":1760976737.524157,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.141649,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663371403a63a19124a1b4abc6b27be8\",\"labels\":[],\"modified_at\":1760976737.524405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.336255,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"112988ca48584654f5650f5359c7e4bc\",\"labels\":[],\"modified_at\":1763017007.83862,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.582052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a877e0462d77e8dd3e37703c0c12842c\",\"labels\":[],\"modified_at\":1760976737.525423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.843111,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e19e322d38c79279c958e4aa96c1dddd\",\"labels\":[],\"modified_at\":1760976737.525683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.275509,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00aca62e34295f7facd401ad154fe8e6\",\"labels\":[],\"modified_at\":1760976737.525937,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.858586,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33498cbeacef2dcdc4f033a0b26838cd\",\"labels\":[],\"modified_at\":1760976737.526188,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.07771,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e6c658d666885b7bcae24ba94db552e\",\"labels\":[],\"modified_at\":1760976737.526437,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.856422,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"607fc15e13eb6e05972e82df9e2b66c3\",\"labels\":[],\"modified_at\":1763016727.1138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.70849,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73bb92c35f39f034be36798feb770698\",\"labels\":[],\"modified_at\":1760976737.526939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.916128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28017fee78f1ddd7f4142211e16c0d30\",\"labels\":[],\"modified_at\":1760976737.528024,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.157067,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff11b226bb853a90c464d79f8178ce33\",\"labels\":[],\"modified_at\":1760976737.528323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.366557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40dd3bb633abe1862d801f81b3ce8980\",\"labels\":[],\"modified_at\":1760976737.528584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.978133,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9fce7d56272a707de807cc72548ee17a\",\"labels\":[],\"modified_at\":1760976737.530283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.801608,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"401a043f2c726c93b7b23b4564a1f94a\",\"labels\":[],\"modified_at\":1760976737.53057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.02263,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28e13521bf85269ec4c9f0a082f0c6b7\",\"labels\":[],\"modified_at\":1760976737.530838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.345391,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b190136a43f7bcf64e68901f7d275935\",\"labels\":[],\"modified_at\":1760976737.531099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.594556,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"951499259e3906795a24cd53fc3d1249\",\"labels\":[],\"modified_at\":1760976737.531357,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.156068,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f6bc7f4a033172190b30075550a37521\",\"labels\":[],\"modified_at\":1760976737.531615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.285791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"404a79d1477c10408dde8e055ae80b2e\",\"labels\":[],\"modified_at\":1760976737.531871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.353564,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b1f9968e09762e9bda52a6df2fbd23c7\",\"labels\":[],\"modified_at\":1763016724.247126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.78676,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e40f6aa713fca29f4bd8a635509859c\",\"labels\":[],\"modified_at\":1760976737.532386,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.7486,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df9290d342500fe2636c79ddbc9952bd\",\"labels\":[],\"modified_at\":1760976737.53264,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.96248,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d61cf3fe32f5fe3b39fa7ec9dae68b7\",\"labels\":[],\"modified_at\":1760976737.532893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.23677,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9aa7c0a93561eb0c9c492db8575a1989\",\"labels\":[],\"modified_at\":1760976737.53315,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.443444,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e929af2da1a8fd0c0c9e2eb613c88c3f\",\"labels\":[],\"modified_at\":1760976737.533399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.176575,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b2353cba1cfc2ba0270b144f2043de0\",\"labels\":[],\"modified_at\":1760976737.533645,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.397439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1af3533513a0c5338f0e1f7900eaf9e5\",\"labels\":[],\"modified_at\":1760976737.533893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.507945,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18af8f2d02f6418723e32a510e19391c\",\"labels\":[],\"modified_at\":1760976737.534144,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.906106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"144ae42445c05a952df5ef29aa014a17\",\"labels\":[],\"modified_at\":1760976737.534396,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.18106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62bfd57e3cb228991c9b903d59e6587f\",\"labels\":[],\"modified_at\":1760976737.534646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.176689,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c294c624ab78af85b8acb03e41009e22\",\"labels\":[],\"modified_at\":1760976737.534894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.73368,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b20652958edaaf0ef0042d2a97318da\",\"labels\":[],\"modified_at\":1760976737.535255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.515405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f69443e387af0b10bf4cffad511cab3e\",\"labels\":[],\"modified_at\":1760976737.535554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.963861,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"57e733b28e1a7f745cd42b1588ea7b92\",\"labels\":[],\"modified_at\":1760976737.535819,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.383975,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3757ce7c4b5a7037d34b233e1626b5bb\",\"labels\":[],\"modified_at\":1760976737.536076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.520076,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d093158049a91d9ec6342c460f7697d\",\"labels\":[],\"modified_at\":1760976737.536331,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.290619,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b54445aea1c6b5a23c7a7f8756d331f\",\"labels\":[],\"modified_at\":1760976737.536584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.432903,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41dc6b0212fa61d780912d275265cd1a\",\"labels\":[],\"modified_at\":1760976737.536834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.76291,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49e886aeaca51ef663020c9d6adedd4d\",\"labels\":[],\"modified_at\":1760976737.537084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.966045,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"97423ae7ee25d6b9c6138c20f803937d\",\"labels\":[],\"modified_at\":1760976737.537345,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.640943,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"641af75b3fbe0762c553b05543247e0a\",\"labels\":[],\"modified_at\":1760976737.537592,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.578752,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f98be744eca04298b701b1d066cf33f2\",\"labels\":[],\"modified_at\":1761584275.553227,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.584734,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"38be44c9b9441e8136de779aff02c4d4\",\"labels\":[],\"modified_at\":1761584275.555476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.625112,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eaaa8aa99a75156fd029e017b2345aa3\",\"labels\":[],\"modified_at\":1761584275.60354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.675625,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70710798be185d2ee29eb867eb9f8222\",\"labels\":[],\"modified_at\":1761584275.644775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.796301,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param019\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5c6e0fb47a0136310e04a22d88fc83\",\"labels\":[],\"modified_at\":1761667162.796517,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param019\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.797016,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_param020\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e23bda23aa0ac99b0116586ea0a1b92\",\"labels\":[],\"modified_at\":1761667162.797168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param020\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1761667201.291363,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87fb7ada2339f2039551943482ae1358\",\"labels\":[],\"modified_at\":1761667201.292122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1761667192807\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c2862a4df8f6bd691cf5d04a6dfd54c\",\"labels\":[],\"modified_at\":1761690295.874343,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Headphones connected\",\"platform\":\"roku\",\"translation_key\":\"headphones_connected\",\"unique_id\":\"YJ002K604601_headphones_connected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7cd833409d36d7f019fd3e2c56a3099f\",\"labels\":[],\"modified_at\":1761690295.875222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports AirPlay\",\"platform\":\"roku\",\"translation_key\":\"supports_airplay\",\"unique_id\":\"YJ002K604601_supports_airplay\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a220cc398a638aa2eab462c5dc09595\",\"labels\":[],\"modified_at\":1768937324.483172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports Ethernet\",\"platform\":\"roku\",\"translation_key\":\"supports_ethernet\",\"unique_id\":\"YJ002K604601_supports_ethernet\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6165850622ccf0780a12cb93f99fbe6b\",\"labels\":[],\"modified_at\":1761690295.876894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports find remote\",\"platform\":\"roku\",\"translation_key\":\"supports_find_remote\",\"unique_id\":\"YJ002K604601_supports_find_remote\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d7e470b926897e7baf7da15c69c1a5f\",\"labels\":[],\"modified_at\":1772591841.640657,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3921d505142fc5a908c983dbda85e39\",\"labels\":[],\"modified_at\":1761690295.882215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.living_room_tv_application\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be671b5fc39f53da44534bf656ccfcbc\",\"labels\":[],\"modified_at\":1774121824.587607,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Application\",\"platform\":\"roku\",\"translation_key\":\"application\",\"unique_id\":\"YJ002K604601_application\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b34030d711baecbca2bd7babbb9523f4\",\"labels\":[],\"modified_at\":1761690295.884134,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app\",\"platform\":\"roku\",\"translation_key\":\"active_app\",\"unique_id\":\"YJ002K604601_active_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6a7cd59919db06d42748a1849f35440\",\"labels\":[],\"modified_at\":1761690295.885026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app ID\",\"platform\":\"roku\",\"translation_key\":\"active_app_id\",\"unique_id\":\"YJ002K604601_active_app_id\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1762452953.450373,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"353b8458de409f30f3da7f59dd2279ae\",\"labels\":[],\"modified_at\":1762452953.451146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room TV - Off - Idle\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1762452936157\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.79738,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4bc33ac1bdf05a5a4ad0efe2cf243cd\",\"labels\":[],\"modified_at\":1766477279.797958,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.80.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.798349,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a14d2d0b96e1d99308488b35cfe32d6b\",\"labels\":[],\"modified_at\":1766477279.798784,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.80.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799203,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"acd5e1535a0b58f433b138c0b6faf421\",\"labels\":[],\"modified_at\":1766477279.799355,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799642,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"378e7086f5619183bd617e93465aa802\",\"labels\":[],\"modified_at\":1766477279.799778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800052,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d59fdf37e7ce07ae033e5e4a7871a74\",\"labels\":[],\"modified_at\":1766477279.80019,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800465,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"042c7a9cd428a17c8fedf3be0152a3be\",\"labels\":[],\"modified_at\":1766477279.800606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800883,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f68eb2507739535d9913773ab943d15f\",\"labels\":[],\"modified_at\":1766477279.801023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.80.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.80138,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3369734c52812a3a3ee4bbe2560f1ad\",\"labels\":[],\"modified_at\":1766477279.801562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.80.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.801858,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd7ddf313a54743de6d1f72a3d7bd312\",\"labels\":[],\"modified_at\":1768937324.809754,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.80.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.802282,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62306b73556be6a658a2970154edf24b\",\"labels\":[],\"modified_at\":1766477279.803236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.80.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.228835,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce76270335388122109676234797a801\",\"labels\":[],\"modified_at\":1766477296.229428,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.229892,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21621c315a84182b4f410308413f7b21\",\"labels\":[],\"modified_at\":1768937324.853995,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.23085,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75446919eaeef4477c5765e479030bd7\",\"labels\":[],\"modified_at\":1768937324.85453,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.231761,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2adf7a33a0ac224ec14b279aa8347cdf\",\"labels\":[],\"modified_at\":1766477296.232285,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.232869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"352a62902d4625293870ccad5a0e8ce7\",\"labels\":[],\"modified_at\":1768937324.855306,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.233759,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"959edfed6f06b47aa8cfffad60cb3b27\",\"labels\":[],\"modified_at\":1768937324.855699,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.234957,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e94b9747cdafaf5de7e0065d9bea1787\",\"labels\":[],\"modified_at\":1766477296.235117,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.235534,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d032c73c25b557c150eb9a1554ab27a8\",\"labels\":[],\"modified_at\":1766477296.235674,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236042,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b282d98fd058c4a3fc14cd5cab2ed0d\",\"labels\":[],\"modified_at\":1769099101.051939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_energy_kwh_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03aba463e32ff9cd002a085bc096c2a7\",\"labels\":[],\"modified_at\":1766477296.236667,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy (kWh) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_current_a_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44ed91985e8e2345c6d85aa23ca1ebcc\",\"labels\":[],\"modified_at\":1769099101.052448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current (A) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-35\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237544,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_voltage_v_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8c9afc6dd91370538afa4d09be302d2\",\"labels\":[],\"modified_at\":1769099101.052763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage (V) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238041,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_overload_protection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24702ae99561a23fa90891c83b007f12\",\"labels\":[],\"modified_at\":1766477296.238175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Overload Protection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238538,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a643dcd0c18ea735dc117372cbd9c4\",\"labels\":[],\"modified_at\":1766477296.238676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9278543cbfa4150cf96b9825a399dce\",\"labels\":[],\"modified_at\":1766477296.239179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a20c9254c9e99e639df912c45870f78\",\"labels\":[],\"modified_at\":1766477296.239678,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24004,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9f5c165e12ba64506d0eaf24e58fd09\",\"labels\":[],\"modified_at\":1766477296.240905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241404,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a8223d52922cf9b4adff20414916eee\",\"labels\":[],\"modified_at\":1766477296.241556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241944,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39ecfec962692eccc82d3081e479f8b4\",\"labels\":[],\"modified_at\":1766477296.242085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242445,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"91b749f9293951042533d2401e898b94\",\"labels\":[],\"modified_at\":1766477296.24258,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242942,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e391e07c8a08dd2a25df2be663bcfbac\",\"labels\":[],\"modified_at\":1766477296.243077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243424,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3c85d30cdac3aafebede8607197ce65\",\"labels\":[],\"modified_at\":1766477296.243556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243913,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dacd0709ac8eb1359a94e7710f78784\",\"labels\":[],\"modified_at\":1766477296.244051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244403,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b054386465dab5e8e5b9b8d7c18d91df\",\"labels\":[],\"modified_at\":1766477296.244534,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244894,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f902120e1bceb78e61c17590fe38269\",\"labels\":[],\"modified_at\":1766477296.245029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245392,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fad06e4d9f3d509906b6338e4b79a65\",\"labels\":[],\"modified_at\":1766477296.245527,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245884,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68d921eab0fa608d5f6c2dadd993dccd\",\"labels\":[],\"modified_at\":1766477296.246023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.246994,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b090c9d937ff7066c525cc564347a594\",\"labels\":[],\"modified_at\":1766477296.247152,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24754,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2b9a5eb299f5a41546cecb74eb4db\",\"labels\":[],\"modified_at\":1766477296.24768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248038,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ead661391dda43c8a9cff95e08d325f9\",\"labels\":[],\"modified_at\":1766477296.248173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f79cf7061a486a5938ef84ca4f41ca3f\",\"labels\":[],\"modified_at\":1766477296.248675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da59ba2e721740da07c9e1fce8eeb446\",\"labels\":[],\"modified_at\":1766477296.249177,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b311235ba306b94712f179b47a13304\",\"labels\":[],\"modified_at\":1766477296.24968,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.250039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eed8930162c1f50fb3efa88ed014a90\",\"labels\":[],\"modified_at\":1766477296.250175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25053,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"943fe31b185242de7233f509c6714ad4\",\"labels\":[],\"modified_at\":1766477296.250661,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251018,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e41a3fe1c2e739c5c0b08c01ba04964\",\"labels\":[],\"modified_at\":1766477296.251151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.2515,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f339b2e6b6df648e6ca92d60bf56623\",\"labels\":[],\"modified_at\":1766477296.251636,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251984,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19bb03a5b1ae0e40e13d9da02ae88aa0\",\"labels\":[],\"modified_at\":1766477296.253395,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.253836,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97b7a04a80a5cdf61867e56d866b6dce\",\"labels\":[],\"modified_at\":1766477296.253989,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.254358,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f60a5f4e92244effdf0936a193c2e55\",\"labels\":[],\"modified_at\":1766477296.2545,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25486,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eb52f03fe8467f94f87c777a7a350c0\",\"labels\":[],\"modified_at\":1766477296.254997,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255351,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_usb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cc335594f81afccba401289b6b502d8\",\"labels\":[],\"modified_at\":1768937324.860358,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (USB)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-34\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255867,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cc3f8a76c39d2050f2ca01c684f502d\",\"labels\":[],\"modified_at\":1766477296.256325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Over-load status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.256729,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45740620b4805cce189bb1ae036fcd9b\",\"labels\":[],\"modified_at\":1766477296.257184,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Over-load detected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.257687,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04246652716b229857e01efec2e38e67\",\"labels\":[],\"modified_at\":1766477296.257835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25825,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63039bbbd456696f096140397e346135\",\"labels\":[],\"modified_at\":1766477296.258392,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.259279,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63ad70871975f5f5d34c36a3bc238c67\",\"labels\":[],\"modified_at\":1766477296.259764,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.260212,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c3075512fe6a8b1b0fcb12082a49d76\",\"labels\":[],\"modified_at\":1768937324.86197,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.261175,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"568c6e02c40f5c3a555cdd0db313a4de\",\"labels\":[],\"modified_at\":1768937324.862516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262093,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b395a875cae5455761476ff388705320\",\"labels\":[],\"modified_at\":1768937324.862985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262992,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f06ff5e731abcb200fdf4ce8c56d7a8b\",\"labels\":[],\"modified_at\":1768937324.863363,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.263832,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37ae354122a69445674d2c8a74c662e3\",\"labels\":[],\"modified_at\":1766477296.264255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.265295,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2531dc116e28190045ae5672d09ebe3\",\"labels\":[],\"modified_at\":1768937324.866356,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.266195,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6f6c69f0ddef207889934c80289ca86\",\"labels\":[],\"modified_at\":1766477296.26662,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267047,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc336050e207d78bd1ba0f3bba28051a\",\"labels\":[],\"modified_at\":1768937324.867025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267979,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe9d9f695586d322624d93d749bbcc61\",\"labels\":[],\"modified_at\":1768937324.867472,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.26889,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"01988ea7826bbd8f6ed128469da20098\",\"labels\":[],\"modified_at\":1766477296.269415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.270015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf8ef299aa298fd3248a48bac27ac029\",\"labels\":[],\"modified_at\":1768937324.868225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.271554,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c97f990f08dbf8bfb2e36f79dcf8ce3f\",\"labels\":[],\"modified_at\":1768937324.868598,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.272394,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a2d1328c988166cd19fcc662a187aa9\",\"labels\":[],\"modified_at\":1766477296.272806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-4-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.273243,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50a06ac0b5cc38dd737642d4c89a7b51\",\"labels\":[],\"modified_at\":1768937324.869253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.274164,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d375f897f48b0c3979382b79f793ce7c\",\"labels\":[],\"modified_at\":1768937324.869703,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.275064,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66472225aa97981e6655a6197be3821e\",\"labels\":[],\"modified_at\":1766477296.275574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.276183,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaaeda5a465e1272738851dfaca0bb89\",\"labels\":[],\"modified_at\":1768937324.870776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.278333,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0e4675689b5404d93f71ebfc1d7379f\",\"labels\":[],\"modified_at\":1768937324.871166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.279172,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7093c72b49a8f2d940f6b823759f028\",\"labels\":[],\"modified_at\":1766477296.279589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-5-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.280015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da6ce7565775e6386bc5449a208859de\",\"labels\":[],\"modified_at\":1768937324.871832,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.28095,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0ebf85251bc2805df5a1617f98725cf\",\"labels\":[],\"modified_at\":1768937324.872271,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.281873,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416e2d0423d1f41bd4b56b6bd81b964f\",\"labels\":[],\"modified_at\":1766477296.282883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.283571,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee94a4c4b5043f4b3107f935049eba10\",\"labels\":[],\"modified_at\":1768937324.873009,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.284479,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1f1ce22f894ebe0933234d04a843de8\",\"labels\":[],\"modified_at\":1768937324.873387,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.285287,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c0cacfb741929580682337f02a692ff3\",\"labels\":[],\"modified_at\":1766477296.285701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-6-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286074,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"537517b1a5530389a93a15939111bc6d\",\"labels\":[],\"modified_at\":1768937324.873956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-6-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2db9999532c1e7a9ed05488f029cf7f\",\"labels\":[],\"modified_at\":1766477296.287284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-7-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.287657,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e343a71bdbc71812276c9427c7be85b\",\"labels\":[],\"modified_at\":1768937324.874499,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-7-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.289939,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa5a18f80f779019ca3f23d010909f4d\",\"labels\":[],\"modified_at\":1766477296.290448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477441.695525,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd09b25c9105ef44432c19688ac32e1\",\"labels\":[],\"modified_at\":1768937324.865485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477542.697583,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"faa614fa04d30ee895cd1ff09546164d\",\"labels\":[],\"modified_at\":1768937324.865972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":1768937323.145127,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17e0ae17cdd955a63df94aadb4a81bca\",\"labels\":[],\"modified_at\":1768937323.145187,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46291,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_avg_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7600251cc55099e6789858d8dd0c6b54\",\"labels\":[],\"modified_at\":1768937324.462981,\"name\":null,\"options\":{},\"original_name\":\"Avg. signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.463148,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99723fdd7485a7d6bb927d5bc468a2a9\",\"labels\":[],\"modified_at\":1768937324.463195,\"name\":null,\"options\":{},\"original_name\":\"Signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46361,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.zwave_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b8620184feb8e076a3dcbc4862fa35d\",\"labels\":[],\"modified_at\":1768937352.32353,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.686858,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd5c271fa69e1cb2e08837126e390603\",\"labels\":[],\"modified_at\":1768957339.60269,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.690717,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"06894aa51ff0e9d62478d9bfb5d6b7d1\",\"labels\":[],\"modified_at\":1769108140.491853,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.691308,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632aed480ee30ce82ac8ba8afd55e91f\",\"labels\":[],\"modified_at\":1769108140.492738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.71521,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eab179038325dced95da0495d530c83\",\"labels\":[],\"modified_at\":1768937352.324438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.715894,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69ac603ee53e2fa3e583a9e7e61979e5\",\"labels\":[],\"modified_at\":1768937352.324557,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.776916,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"944905c91677260a69d3c4fb169af92f\",\"labels\":[],\"modified_at\":1768937352.324779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.785768,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"141eddff457c88321aa49743e5165cb7\",\"labels\":[],\"modified_at\":1775491285.628223,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1768937325.683515,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"803942d09c418a98aae2af768bde2657\",\"labels\":[],\"modified_at\":1768974704.217654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":1768937332.413279,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_preset_position\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79c985bf4b12ca603756fd8c2f4d00fe\",\"labels\":[],\"modified_at\":1768937357.407137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Preset Position\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_preset_position\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.683464,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18d7f0c9095f29d981bfa5129a5c8719\",\"labels\":[],\"modified_at\":1768937355.683876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684339,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23798e61c080b6b8bb9292d41b753ebd\",\"labels\":[],\"modified_at\":1768937355.684708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684947,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0506bfac83008cc2d1ce31972a6f2785\",\"labels\":[],\"modified_at\":1768937355.685312,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.685556,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4b56bbe1e3393cda2a02b5958aa3772\",\"labels\":[],\"modified_at\":1768937355.685892,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.68613,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f334207a3706ffc4bdea3fcc21b27f0\",\"labels\":[],\"modified_at\":1768937355.68646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f91be395aa637b853783d80af21df6ea\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88f797601578a44b7f18fe2d310f5c8f\",\"labels\":[],\"modified_at\":1768937820.170123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:26:9F-light-front_porch_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.729653,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_external_switch_multiple_click_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"911f689ea83e4f559f934622cbfaf55e\",\"labels\":[],\"modified_at\":1769099083.729723,\"name\":null,\"options\":{},\"original_name\":\"External Switch: Multiple Click Detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.743385,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34c37d47d0530bffe97567dab6f0a423\",\"labels\":[],\"modified_at\":1769099083.743449,\"name\":null,\"options\":{},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.058963,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c34673f93ef0696b560de0710c886316\",\"labels\":[],\"modified_at\":1769326461.249458,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061192,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34a76e058ab3f8062606e039bb6f7d75\",\"labels\":[],\"modified_at\":1769326461.349576,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061905,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"327d27c3b2d11d6b5ed0a7c67feae89c\",\"labels\":[],\"modified_at\":1769326461.949935,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [A] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.476924,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.overseerr_last_media_event\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1241c0fd94296f38dd4beef033a35d11\",\"labels\":[],\"modified_at\":1769188672.47763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last media event\",\"platform\":\"overseerr\",\"translation_key\":\"last_media_event\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-media\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.478287,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bbb89d6744aa52101d6b2d634dd3a3d2\",\"labels\":[],\"modified_at\":1769188672.478886,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total requests\",\"platform\":\"overseerr\",\"translation_key\":\"total_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.479308,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_movie_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25b77947e4e5901105419056fabf10a0\",\"labels\":[],\"modified_at\":1769188672.479959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Movie requests\",\"platform\":\"overseerr\",\"translation_key\":\"movie_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-movie_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.480365,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_tv_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d94898a7d080d06b0f08ca6451625f7\",\"labels\":[],\"modified_at\":1769188672.480955,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TV requests\",\"platform\":\"overseerr\",\"translation_key\":\"tv_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-tv_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.481447,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_pending_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e190d80632de506998d2cef0552efc3\",\"labels\":[],\"modified_at\":1769188672.482418,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pending requests\",\"platform\":\"overseerr\",\"translation_key\":\"pending_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-pending_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.482777,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_declined_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fc5b3ab324f29fd3454426a63274bc4\",\"labels\":[],\"modified_at\":1769188672.483266,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Declined requests\",\"platform\":\"overseerr\",\"translation_key\":\"declined_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-declined_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.483584,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_processing_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6304a3cd9a5400d32e011d1a277523a3\",\"labels\":[],\"modified_at\":1769188672.484082,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Processing requests\",\"platform\":\"overseerr\",\"translation_key\":\"processing_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-processing_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.484437,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_available_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f9e7f08d9c31ca040fa2066e660551\",\"labels\":[],\"modified_at\":1769188672.484959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Available requests\",\"platform\":\"overseerr\",\"translation_key\":\"available_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-available_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.485331,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00735f8a4a910a0d1254f132ba93de9a\",\"labels\":[],\"modified_at\":1769188672.485849,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total issues\",\"platform\":\"overseerr\",\"translation_key\":\"total_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.486201,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_open_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8ccc6de99805f93f168264e67c712ca\",\"labels\":[],\"modified_at\":1769188672.486713,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open issues\",\"platform\":\"overseerr\",\"translation_key\":\"open_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-open_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487069,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_closed_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc5f4929fb61b84f1593ac32c2e1396e\",\"labels\":[],\"modified_at\":1769188672.487587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed issues\",\"platform\":\"overseerr\",\"translation_key\":\"closed_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-closed_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487953,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_video_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c23a9db4525e8ccd6821507bbce056d\",\"labels\":[],\"modified_at\":1769188672.488474,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Video issues\",\"platform\":\"overseerr\",\"translation_key\":\"video_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-video_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.488825,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_audio_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1677624b1402c112c6e4345588afb313\",\"labels\":[],\"modified_at\":1769188672.489362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Audio issues\",\"platform\":\"overseerr\",\"translation_key\":\"audio_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-audio_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.489714,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c90b1860175195d2a23fccb791504ca0\",\"labels\":[],\"modified_at\":1769188672.490236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Subtitle issues\",\"platform\":\"overseerr\",\"translation_key\":\"subtitle_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-subtitle_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912183.185244,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34a32d14426d3e169ae057627439d98d\",\"labels\":[],\"modified_at\":1771912183.186014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - Off - Timeout\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912170361\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912395.891354,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"773273d151b8c8d49b92ee8627d586d2\",\"labels\":[],\"modified_at\":1771912395.892381,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - On - Door Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912391140\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.625986,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b07a6abab79d073c5be007066b3a3b6d\",\"labels\":[],\"modified_at\":1774116424.626947,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bed Occupied Stable\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bed_occupied_stable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.627238,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6fda5463b7f7691786174b39cbc043\",\"labels\":[],\"modified_at\":1774116424.627924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bedroom Motion Confirmed\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bedroom_motion_confirmed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.957554,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3e5033899feeede780f2808f7b73e24\",\"labels\":[],\"modified_at\":1774116432.958181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.958454,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_nap_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b706a2024115adbf2d36028c6713abcf\",\"labels\":[],\"modified_at\":1774116432.958992,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Nap Detection\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.14926,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4563dd8ceda742b1447360a08afd99e7\",\"labels\":[],\"modified_at\":1774138030.911495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149593,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2d62fcd0d6717798722ba043bce9d40\",\"labels\":[],\"modified_at\":1774138030.911857,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149824,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"806b34a0f2af42d04d3883b58f48a6ef\",\"labels\":[],\"modified_at\":1774138030.912047,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"58122b4c7d81745a9de83d7435a88559\",\"labels\":[],\"modified_at\":1774138030.912215,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150246,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46650fb68d9b63404a046c228467c62c\",\"labels\":[],\"modified_at\":1774138030.912379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150448,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8b8c08c11a816b5e91c5d45b883066e\",\"labels\":[],\"modified_at\":1774138030.912537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150653,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a94089b7222280376a7dad9ef1bf2a92\",\"labels\":[],\"modified_at\":1774138030.912696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152103,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa674acc6fb02b01c66b3433930e2d01\",\"labels\":[],\"modified_at\":1774138030.91286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152289,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5a7edad01fc39a518660614518bcdf2\",\"labels\":[],\"modified_at\":1774138030.913011,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.154985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d16f049693b501d63ea5473129d3198e\",\"labels\":[],\"modified_at\":1774138030.9132,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1pct\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.155394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bffe32a5b8efb97c7c5e604c2bc2abc4\",\"labels\":[],\"modified_at\":1774138030.913358,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_halloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.156076,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54146ec2dbaad8902fd311d6c18d996b\",\"labels\":[],\"modified_at\":1774138030.913521,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.15684,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d740742a1b722377a0897440fd402bbe\",\"labels\":[],\"modified_at\":1774138030.913681,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a62870971ca19efe980ffc144f1a1899\",\"labels\":[],\"modified_at\":1774138030.913831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157231,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"949278d55db1a4d8246fa35f91e617f2\",\"labels\":[],\"modified_at\":1774138030.913979,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Day\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157424,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"276ef5e2cd3663a6236c81c36f446fc6\",\"labels\":[],\"modified_at\":1774138030.914128,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Night\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_night\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157587,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a84f593ccf99ee4dedf54fd732754e2c\",\"labels\":[],\"modified_at\":1774138030.914274,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774138612.949732,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mushroom_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d59320285d90702b2c855475ee95639e\",\"labels\":[],\"modified_at\":1774138612.950796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mushroom update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774139555.128573,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mushroom_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c33c28bb04498effba938ec97b5b805\",\"labels\":[],\"modified_at\":1774139555.128638,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140343.854706,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mini_graph_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56350d9930148e8fd5d61e880540724\",\"labels\":[],\"modified_at\":1774140343.855222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"mini-graph-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140477.398217,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mini_graph_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d58d70df50c79d3213bbf8236a5fe6ce\",\"labels\":[],\"modified_at\":1774140477.398278,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.352598,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681707778436ce05e7199951846ef14d\",\"labels\":[],\"modified_at\":1775489223.761484,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.421699,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c98623c4f1d03a6794ba466def6392\",\"labels\":[],\"modified_at\":1775489223.761621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.690469,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30c8f6f016a9a07d3072df92bf9c837f\",\"labels\":[],\"modified_at\":1775489223.761751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.769537,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fec7537b3f51428841c6f12821476333\",\"labels\":[],\"modified_at\":1775489223.761895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.155983,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4f68f200753e31f0a21132e2ff02e3c\",\"labels\":[],\"modified_at\":1775489223.762023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.222085,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf10bec5854978fe997fc5eb6d1db426\",\"labels\":[],\"modified_at\":1775489223.76215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354869.951525,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dbb9d05d05fcd2ca67c6fd8472bab9eb\",\"labels\":[],\"modified_at\":1775489223.762284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354870.020436,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd61a8fe509fc46135e34167d34e5b3\",\"labels\":[],\"modified_at\":1775489223.762414,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355638.331143,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5144d05444588d3e7a500ac509fae21e\",\"labels\":[],\"modified_at\":1775489223.762539,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355657.972878,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a3162680c956e4ed166e74ca65dbf31\",\"labels\":[],\"modified_at\":1775489223.762673,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356334.664723,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73fe68c3f5230ab53809f13454c7f7ce\",\"labels\":[],\"modified_at\":1775489223.762806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.604859,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f0456298a746305de2207d41a214c7\",\"labels\":[],\"modified_at\":1775489223.76293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.686933,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9e93e6a89fec209b2154e4b4aa5c0\",\"labels\":[],\"modified_at\":1775489223.763054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.039186,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3725b439d15a4d1e0e0b8ef16c5bcec8\",\"labels\":[],\"modified_at\":1775489223.763189,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.114222,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09f3eb747f5823fe21b96763355a9fd3\",\"labels\":[],\"modified_at\":1775489223.763316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.671129,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4cb866d53da98bac0fdd3d9a50958c1\",\"labels\":[],\"modified_at\":1775489223.763449,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.73551,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bdb1093192bc6e83a24ef3ef98ef251a\",\"labels\":[],\"modified_at\":1775489223.763579,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.683881,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"17948118ea0453a21060b9ac3c3bd35f\",\"labels\":[],\"modified_at\":1775489223.763821,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.752892,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2bf26cdc24ddb324070b32bf95efb\",\"labels\":[],\"modified_at\":1775489223.763949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.611255,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2de2190bdb6019e1ebaf8f9f6db56d92\",\"labels\":[],\"modified_at\":1775489269.20277,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reset total energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_reset_total_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.720667,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2b188397cf5cf91ade7924d39597fc\",\"labels\":[],\"modified_at\":1775489254.288937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn off\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_off_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.725676,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ba3493529496e8be49faa472f4272\",\"labels\":[],\"modified_at\":1775489254.289157,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn on\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_on_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.730362,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817a29630544a8935b5b5208cfad3a6a\",\"labels\":[],\"modified_at\":1775491843.189477,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power rise threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_rise_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.735072,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb512790cefd801f44d3170bcbe18fb3\",\"labels\":[],\"modified_at\":1775491843.201122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power drop threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_drop_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.782524,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f1e618efc7019719ba1c008909ae61b\",\"labels\":[],\"modified_at\":1775489269.203071,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power-on behavior\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_on_behavior_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.808614,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a65df0e6618f2527a49b04cb44ddc8d\",\"labels\":[],\"modified_at\":1775586383.664326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.810039,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6da142d344b25e493d4e7150811898a9\",\"labels\":[],\"modified_at\":1775489269.20327,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":1},\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.81576,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6fd914af279d2e8f766c6a3ff2de023\",\"labels\":[],\"modified_at\":1775489269.203513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_humidity_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.817887,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_pressure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd3458814c78abb0afee054f005cdd78\",\"labels\":[],\"modified_at\":1775489308.697985,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Atmospheric pressure\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_pressure_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.819624,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b51cd3241371b7561f77450e43672efb\",\"labels\":[],\"modified_at\":1775492079.877324,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.821311,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89221a788e97735b88a9981fc28d3fbe\",\"labels\":[],\"modified_at\":1775489227.821354,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.822693,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_power\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0950382cdf5c1ae4e598bc5443a02839\",\"labels\":[],\"modified_at\":1775520590.696024,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.825626,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d9bb9d1c71c5dd2c20a45dc1b6dea2c\",\"labels\":[],\"modified_at\":1775491830.269932,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.828464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07990395421c102974cefa27b6a9b997\",\"labels\":[],\"modified_at\":1775489254.291151,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Frequency\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_ac_frequency_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.830508,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_power_factor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7fffd049106dfd91742c2374ec66011a\",\"labels\":[],\"modified_at\":1775489227.830555,\"name\":null,\"options\":{},\"original_name\":\"Power factor\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_factor_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.832056,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b1f2d89a6fa56eaa6ebd7a325233c5b\",\"labels\":[],\"modified_at\":1775520597.935816,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_current_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.833866,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1dec75cbe9a7ba93bf0f0846e5fe5fac\",\"labels\":[],\"modified_at\":1775525154.098723,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.836162,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbdff817ee00883d0aa353adead094b5\",\"labels\":[],\"modified_at\":1775489227.83621,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.84296,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1de84ba2dcb17a277ea97a987f467d07\",\"labels\":[],\"modified_at\":1775489269.203705,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.844464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3be8da09eeb8e0acc452fa4a9ba78a5\",\"labels\":[],\"modified_at\":1775489269.203885,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Metering only mode\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_metering_only_mode_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.850014,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcee0811885c8854563443ba4dced1ab\",\"labels\":[],\"modified_at\":1775489306.418611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1775549231.594472,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_vibration_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9db7f91c5b54278bf3f7a80f5df91bc\",\"labels\":[],\"modified_at\":1775549231.594723,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.825542,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5077add4bf45e912a2ef646bae511f14\",\"labels\":[],\"modified_at\":1775678362.82721,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.827502,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f3761580a85a1bd3953bddb2c989d35\",\"labels\":[],\"modified_at\":1775678362.828154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000004\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.828418,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be7a1d87aaf721c4188bf8bec50329f4\",\"labels\":[],\"modified_at\":1775678362.828943,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000005\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.37481,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167b598bb2635889c041d73857d27990\",\"labels\":[],\"modified_at\":1775868913.129506,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.376546,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa1b588575b52fe468f5b0b654084236\",\"labels\":[],\"modified_at\":1775868913.130469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.613679,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00cfdcc6fd718b086b498d183ec763fe\",\"labels\":[],\"modified_at\":1775868913.131303,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.615726,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb552019b26731f2c51b5b208e46821\",\"labels\":[],\"modified_at\":1775875660.872463,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.618016,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a715ee29ebb812ad53ff3962471973c\",\"labels\":[],\"modified_at\":1775868886.618058,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.61896,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fed74cd33f82ba6c78036a9cebbf06\",\"labels\":[],\"modified_at\":1775868913.133053,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62005,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6aa5184211eb3c2d8ccd38a3b494e66f\",\"labels\":[],\"modified_at\":1775872197.350263,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62157,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62526651242478435d1e767d473d0b01\",\"labels\":[],\"modified_at\":1775868886.621614,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.622608,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c40a87b4581f5eae3d7a6360360a4fc\",\"labels\":[],\"modified_at\":1775868913.13455,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.624775,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d40ea24dbd15c204e20d4041d24cd2d0\",\"labels\":[],\"modified_at\":1775868886.624821,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.640178,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_fed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"339abf0c4de7f4ba8ac9610f75299234\",\"labels\":[],\"modified_at\":1775868913.135283,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.641542,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.tracker_one\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4dde6447448035238f372ce06801427\",\"labels\":[],\"modified_at\":1775868913.136075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.643148,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_sink_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2195ff58fb96b2adfde3932a8dba49a5\",\"labels\":[],\"modified_at\":1775868913.136902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775869869.03551,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apexcharts_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59310574b32edd03da9449e2fc1b7504\",\"labels\":[],\"modified_at\":1775869869.036084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"apexcharts-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870068.253425,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.track_tracker_one_log_press\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"251e799623f0dc9e26c3a81c1bcc0e30\",\"labels\":[],\"modified_at\":1775870068.254211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TRACK - Tracker One - Log Press\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775869806572\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870401.81351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.fish_fed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86abac3ce035a999bd58f59520b2f4f0\",\"labels\":[],\"modified_at\":1775870444.348953,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Fish Fed\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"fish_fed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870404.195975,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.tracker_one_presses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"563381785d898580a4ec98b5d47f8241\",\"labels\":[],\"modified_at\":1775870428.194489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tracker One Presses\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"tracker_one_presses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775870404.57426,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apexcharts_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3c39d6ccf8398fd21217517712467e\",\"labels\":[],\"modified_at\":1775870404.574316,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485157,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15bd4e2db4610819856a0a96d8fb46ac\",\"labels\":[],\"modified_at\":1775870556.016822,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Fish Fed - Latch On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485897,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_fish_fed_reset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb491690a44f98c51901d58d37cdd2d8\",\"labels\":[],\"modified_at\":1775890800.094108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Fish Fed - Reset\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211862\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"config_subentry_id\":null,\"created_at\":1775959350.075729,\"device_id\":\"bd61b07f6c18d67ffd4150ebf11743fa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18f6e46b7275812f380f65c45ab68432\",\"labels\":[],\"modified_at\":1775959350.076865,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Car in Garage\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"44:17:93:1B:60:94-binary_sensor-car_in_garage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067514.535912,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52f365b0d3680334baa51a6a1268693d\",\"labels\":[],\"modified_at\":1776067514.537586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067515.336196,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ba17144d4b28c18b1610c9e6524f080\",\"labels\":[],\"modified_at\":1776067515.337787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"}]}", - "offset_ms": 75 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_async_update_entity_registry_entry.json b/cassettes/test_entity_registry/test_async_update_entity_registry_entry.json deleted file mode 100644 index b9ed088c..00000000 --- a/cassettes/test_entity_registry/test_async_update_entity_registry_entry.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:00.359929+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 11 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": \"Async Test Name\", \"id\": 2, \"type\": \"config/entity_registry/update\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067740.36143,\"name\":\"Async Test Name\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", - "offset_ms": 18 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": null, \"id\": 3, \"type\": \"config/entity_registry/update\"}", - "offset_ms": 18 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067740.367542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", - "offset_ms": 25 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_list_entity_registry.json b/cassettes/test_entity_registry/test_list_entity_registry.json deleted file mode 100644 index d3459f80..00000000 --- a/cassettes/test_entity_registry/test_list_entity_registry.json +++ /dev/null @@ -1,433 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:59.289806+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config/entity_registry/list\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.updater\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48544df94cdd8858d51e4825d887b87f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Updater\",\"platform\":\"updater\",\"translation_key\":null,\"unique_id\":\"updater\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.adam\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af3cc6ab1d311d80445a2911bab8a736\",\"labels\":[],\"modified_at\":1774112250.228571,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"collection\":{\"hash\":\"8ea23eafe65450db9d5d7917f1e1808a\"}},\"original_name\":\"Adam\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"adam\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"52fc2b39306eecd553aa2d1275b23f13\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.logan_s_landing\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc17bdf0b19aac327302b5ed8e37842\",\"labels\":[],\"modified_at\":1776067736.245874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Logan's Landing\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"home\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.remote_ui\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"662f53bf96ef56470f84c30f01b8db1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Remote UI\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-remote-ui-connectivity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.jenni\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"867ce61cfc7ab736b355b85c14411b09\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"jenni\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1566df05da78124d095f06fd3478d69d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Front Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015141627\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ff73de8af671e02bdb687bc221a551\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Back Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015238936\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stair_chandelier\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73856bdb53725526e8e63e078c9ebebe\",\"labels\":[],\"modified_at\":1775870416.949593,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.stair_chandelier\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a4c91300d5c0eebf9260967a60a018\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_routine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70c959e47b0e9e5e4b826c5900cad954\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Routine\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629617283234\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9bd88b769429a941a9478debe90a70a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785091384\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.wake_up_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f995f568522466041f6955cdbcc536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Wake Up Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"wake_up_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c348fbb7c91293d0d89150a1e883d05c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785279492\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f204a6e1edd3b3c13d9dc6e48613dd20\",\"labels\":[],\"modified_at\":1741730439.823744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Cat Bathroom Door Closed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950849970\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b4711ee4a97eb0c7c20e508d9b5c2afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950974058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2cc79375b1f971d1a5e8e393733e821\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631951014424\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8e2a310dc06849858f204cad33666aa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952292117\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37007cf65958ceae04ddd495d3be6771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952347170\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6221addad0ec6c1d678b405921c56c42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952450891\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_lamps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ead5a9e4369bbe20f36cdc5cdbb169bf\",\"labels\":[],\"modified_at\":1775870416.945327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.living_room_lamps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05c094b96331a2e72fa623591306c435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb5b70bdb5e625b89f9c05075b86919\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Occupancy\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-occupancy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d2c826662df9e49d3b4c59696b2198d\",\"labels\":[],\"modified_at\":1728721845.856414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":\"ecobee\",\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3bc3484981e75dcef88140475f41ad\",\"labels\":[],\"modified_at\":1768937324.405202,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"289469882a9d4c390942a2c28d21e837\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73aca607e21724f9c52d8d593ec4d76a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7ebb8f03146939f38815de610add87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895391373\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3381c206b02ec2b698ffba1019a5e8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Kids Room Motion White\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895431041\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_off_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54fa204f71e05ab0e55d9f4409aa6ac2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off Motion\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895565944\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":\"user\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_motion_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b122a6403b1e6102b774c5f91d37a109\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Door Motion Alarm\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b041853caeba17cf928939638155c248\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Human\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_human\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0247c03858e81ac316c24dbea6f0bd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Button Pressed\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_button_pressed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_invite\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b490d78c9b4cbaafadf0c893b801a05c\",\"labels\":[],\"modified_at\":1730406829.425846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Invite\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_invite\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_door_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bcca1ae5fefcacfd0ef6dcb4d8b7b11d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Door Status\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_door_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0f14d3b72d1f98e8ed47fbecd5b419\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Call No Answered\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_call_no_answered\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_infrared\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e21d212136e8f6167e23615634933ebf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Infrared\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_infrared\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_main\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dc52219ced77a446fe360690a4cc784a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Main\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Main\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28587a1f49ec36f599f8f42020999c28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d86893f808d91f26b6859f432eac7d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Red Alert\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"red_alert\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0c880ea25f8f95f5f4149b3b3dbde52a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Illuminate\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c375ec26f63adaba2a3600d0", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "884e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Show Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"show_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212fbb3cd5dfca24ca5dfee46fa297da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Kids Room\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_kids_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"abf611beb1cf6771f05cea144108c5a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.kid_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0296bfaeadf38a3c2c643aa0fa317ffc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kid Dance Party\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"kid_dance_party\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ad4a44c058301709a2c85029eb3a928\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633315499530\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72c0da4ff910be4448a82584819265d5\",\"labels\":[],\"modified_at\":1758172744.684397,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633316964978\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33ec4ea4e5c89927fda1517f3c16fbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317039614\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30cd2b7857a2400001b3c24d6828ffcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317101093\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_kids_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ac91a924370b63b79e242b921321b50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Kids Dance Party\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317161375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb22ada93ef655ba18e9b9e9168627e4\",\"labels\":[],\"modified_at\":1758172743.683117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317518311\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf072fca0aaa7e3cb0d7edf9000ec1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633318458266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39ea7e6d5efb9cb8e90240ca9498b48d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633321371244\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_living_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a338e143092fc0aac6088733d8f992\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Living Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633323598789\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64928aa007ddb8ca5083b35e7f8ccd60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Red Alert\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633329926454\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1412ca1484c26fc0f1b15b903c39c979\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b549da1714cb046914a04ae5f9df208\",\"labels\":[],\"modified_at\":1768937324.521669,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:0F:FC-light-front_porch_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f1a54ce97cc4d298e3ebede755c053\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f32cf07f4683f55bcab89798695a46\",\"labels\":[],\"modified_at\":1768937324.493498,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:23:60-light-front_porch_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4473c2dbc00d6320702cda169c7a91c8\",\"labels\":[],\"modified_at\":1775870416.945947,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Porch Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.front_porch_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c474f9af1ecc77455a800c66b4682d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cf5e19c579425ff2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb03e342c2822bb15c887a38425c17d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1637480683670\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea302a8d7dd8f0aad892f4ab3a01", - "offset_ms": 25 - }, - { - "direction": "recv", - "type": "text", - "payload": "29ed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - On - Dusk\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606004641\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b408a1694e51a832ebd0110266ae9b95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606124541\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_restore\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67d608cf2a32ab837f3f638603121f6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Restore\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606172266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c47fb544830a808c164453e004ccaa80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Off - After Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606436231\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2911270340373d6692ced07821d91a\",\"labels\":[],\"modified_at\":1775870416.946362,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.master_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_ceiling_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1a9fe62dd87298be3e20bf76dc5ede2\",\"labels\":[],\"modified_at\":1775870416.947281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_ceiling_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f184a5dcee5c41d074c34bcf6f0788a\",\"labels\":[],\"modified_at\":1775870416.947891,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Office Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_master\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23f3071c3353df3f910d738281ccebf0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Master\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_master\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec4945d179a66d50aeda49d07fd8d1d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights Off\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edc8c107b4d7bdde4ea4ea619fbb029a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639120832058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"712ed0c3c619a6f18ead981897ff48cf\",\"labels\":[],\"modified_at\":1745898587.722042,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639715090770\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d82e452611e452407b78b0ef3b5ca41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.jenni_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a3c8889231a5bf5d75dea1ab9619b42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"jenni_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_close_garage_door_leave\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22831cf5534857f869f81216a62334ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Close Garage Door - Leave\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639718580516\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"524e32ae2138f47b68e69030d244bbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Open Garage Door - Arrive\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639724678294\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_security_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"066e17ebc66789db48cf2e304ed5379d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Security Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_security_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3002756754c22bdc89b0046fb4d2cbb8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85dcc97f2bb788c39ebc5175f6c653dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub_2\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.nap_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"944bf3860f83ebc3f9fab66742d581b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Nap Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"nap_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae5f17c250b517908480297107e4f3", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641177479575\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb7ed0ee5f58ab9e7d2801bfdfee8fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188755198\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a1917bd219066d9a31dddd40526ac3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188941984\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.adult_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1fbc8990624c59d6baebd252a9927d20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Adult Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"adult_bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7dda3951af520ed7aa14de0528021459\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641190435073\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"143a15957bf22bdb04ac5c7772a2ce51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Door Open 10 Min\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641191518035\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time_persistent\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ebdc4128b00a85d18f09c1a3f4df0da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time Persistent\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time_persistent\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7e1d8b9bd1cf3e328c05b5577a8cd13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641192891526\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2af5d760ba8ab63f823839e9455f953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b578d45bd122395c5de1934f8f46e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Away\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225378269\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_home\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a8af2ebb3869fa92d132d3d3d00ac804\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Home\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225411475\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51ccecfcf007db71262f1935420252e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Large Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d1ebd3722f10011fa664fec57ed37472\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Small Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"471dfdb1b7068471e0e1fcfea1e471ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225671056\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e582eb57efe5d94969905cf1bff8f81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225729228\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"651aa5c71d4b4b596f4a13407ce60767\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226072324\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cdb6f8074feda911c7b4db1a1e0478e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226100136\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b91da8b1552452b28294bcc304b4f8bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pause Master Bedroom Lights\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"pause_master_bedroom_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"timer.garage_door_closed_recently\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"90320387b4e4ec3a3c7cbd84dbc5ad90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Garage Door Closed Recently\",\"platform\":\"timer\",\"translation_key\":null,\"unique_id\":\"garage_door_closed_recently\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_nap_time_over\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f25dc80c5eb3444609b559695bcff2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Nap Time Over\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1643176701270\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_disarming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"889c9705fedda7305ea5fc7107f5a56e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Disarming\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_disarming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_ring_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01c245ad5b42f3410ceadf17493c617d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Ring Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_ring_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_smart_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d98b2a6e9c31c4c5aebe6deef37adab3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2e11abfde42f19a5057b1b585c72c3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1652512982739\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e04623ca1cdd79fb8087c8cadfc8a27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"468809c6fd06ce648ffd4890de5cc742\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4f4ac0f275a156c8d2384faebbeb939\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandalier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6571da15bd6e6aaf28760a38252de8f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stairs_chandalier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b323727cf823f62522377f2dd6b67c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1124603e90858bd2a7c8eeaa4ef0c908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91edb81063054b8b29e5bc0aee5ca722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a55fd0624053c3fc70a102047121f57f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68111fcc2532b27a80ba3cc01980d288\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0fe65477af3a205470a1ccced0b63d2a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42f50125299f3927c531c18b669aaa60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"261cda58fa35c9826e2e8a9e46548ff6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4bbd43bfe7fd1687e3f9474bf5306d86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48c6d2458f235bc19dff653c6f3bfbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"134f2a9c097befabd5c7d358e36a7a6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3dfacb9c1a377c0cc5390b71bd2955e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16ffd02c1f172e132bc50ed2bf793eaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8487a8d303943a19ac5668fa6c21f68b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73d67204eb476a06333ef8f4adfe5ef7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24288404b3c7dd6c44ff56181d1124e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"864b5cd1631ecb4437a6a0a50c7257e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"722bcebdf2dd4b683a717d50365989dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2caeff606e9499afc9924c3338e29c0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Large Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_christmas\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e869294cbe465647705bafc2c47d8477\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Christmas\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_christmas\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85e9eb0070a496e7fa87eba9e56abbd3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0989c392a71f038b4ce8fe25569ac13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37cbb875f4dfc9ba34dd3b3e17930562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a1e6bfae1dfa193385ec058c31f2fb9d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Small Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e487877af8428842b8d8007616674a62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aa3800e7a126f118ae9b7666deaa2314\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56cd7bf3d052edfdad8981918cd6267\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fddd2acbdfde2f3570dba13d43190b0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6a231953d122e3658bdd77cdcd797f16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24022be80cfdf60a4115c7bad5b035ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec52255713718153f0196eae444e4fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89ea19ac476812b23f5fa073e720b4a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eef0de05d0aa24da9c82355406167041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7940e0e30fc1e1fcc4c9b7a48565002\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_fade_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663c860aed914fba5858948be314cbe4", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White Fade On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_fade_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6be2f831d75032a3ad7b684508d65e16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.notify_phones_about_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ece1f2275efa510e2dd20151a04ed9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Notify Phones About Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"notify_phones_about_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_meeting\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"372e3957cccc5cb8619ea55b6ad0795b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Meeting\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_meeting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"754734721fc9477df34eeb036bb991bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f7c8ae1fc9b54bf0123181ee762641\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dead_zwave_devices\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ca6ff31d8ab85a686150917f46387b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Dead ZWave Devices\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"dead_zwave_devices\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f63024643aed08b3bfac6124ecf6ad55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Detected Activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59f0788b350cff3ed3e4c80681032694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11670cf20ba415249941c61df360a87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6349ef75a1840deb307830662b0981ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4516a2d3d10614f0276006803376821c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9a1de4c001b65b023873dc67b2e1aeb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e26c607d067a78c441b7f9cc75dba4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f9b0a9b9747f274c8ec2c4049f13188\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2591a8696175650360ecb04c34ebde3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Standby Bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c29b2793fa42375476a4961a9cb9f3c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4c4aa34addf089c6e0d44c3dbb69fd8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Ringer Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b402edad0d1f3609fe2ea219651b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Audio Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabac057a1daed31e37304dddb21888c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_mic_muted\",\"", - "offset_ms": 32 - }, - { - "direction": "recv", - "type": "text", - "payload": "has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d03380fb776af8c689f558f3d81ec56c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mic Muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c849b40230913371f3ae86450152296\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb4b92f25deb1c26c4d3a75796804cd6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Music Active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63c6ddd0e2c380c423406f865ab4466b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aece69b417cbd569b31f9e3f03cbaa5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"08d4816026b16e5765055bcb256faaaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"167a38f51480e27d6f32ea9bd21cffe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b36dc595459a5eb7754d1bd53f679d9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fa664a57085896e92fe622bcfad9ffd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level System\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4947061539f7e448c220cbbe3d9791ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79866ed9f3d374f668978f602c522936\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"754c6b6be3ff40167959413eee71a769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bf324078f46e09e10914ddd9ad39ea18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f2ae98f237b3a3c18efcfb76a44309\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Is Charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d588b0f08c94af014bcad08dfd9c82bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Charger Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af35ad533bc818679f6142f0fba98ae9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4eeb5c4fc5a9c4740e441917048cb56c\",\"labels\":[],\"modified_at\":1768937323.674991,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 6 Battery Temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e620a9902d2503fadcb5049f62bd3a\",\"labels\":[],\"modified_at\":1768937323.675654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 6 Battery Power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0bea36868dc2852f26e606cb5585978b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7c392d0e5b5805c04c01a8de1d19c6a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f5694e88652fbe7b4aea3571cd3ad68e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 BLE Transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0c86f94983c08b0aee46a117de5db3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Do Not Disturb Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4925d0a68fae8a6820872b19a33e5e86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Work Profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6e361c77027c92ca103f02ee555a17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Geocoded Location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"61959a38850d543f21bb0e1569e0ede8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e12b5bf1dc6312d8adfe9566a8cddbc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4213bef8495768305cd59cdf35ca4b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e97bb579088e5ea424b616dd154aa791\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f66c0118c076670fb52aaffa7ba1997\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Used App\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2f9ae155ba2acb94d2e58ff2481cd0dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4984eeb61df82c1962b1568de93ae1e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Update Trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c379a58d167afdca3215f4bdad404860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Light Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed4aca22759c17dad01d4267be06c9c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093eab6b381d30ac54b915f31a1ffe6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Update Interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5b1fcf09cfe62058415e538ad489578\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e7c731edc371565fad28bffa63f26fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data Roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3345b994bae95f98a977b05251d2c18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"36a81e770148fbf8c3501c4034d8b519\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"393daf81b19a2e000076de43a50e0d5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a86d523635b1107073a00863ea200833\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Link Speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf293b8e7370ea8c4cede0e10f834424\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5dcf1e1bbef07ef59ddfe608cbc0132d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aea0472231ddd7b05ac99a683af7c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Signal Strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"660adb553e2a9af427c52f135747f7f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Public IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"176bca32b338d93754f9c7be44fa07f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Network Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0285447de022be2a252f35fa4ad7fd5d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Next Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586470a0e2dff113e76d335d791c7cd8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4359e632b04270993df87c3fe628cf32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Removed Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c9addd802bcc76b59bad7b47f376a6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Active Notification Count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"422e2b7d93661fb5bf555757d9aff815\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Media Session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4816202ee229e1793e3f4118768d562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Phone State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6c47cf4f550f86dd82efbe37e4d94c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"978bf765161185ef6cfd1d543281d100\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3da6d97d96132bbaf358275ffac29b85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c969863cd8081060eb057eea1b261e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Doze Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"859d0df2447518ce6d43471eeb66ff04\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Power Save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ada0b3b5277c155272a320fdb3d308e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Pressure Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbfa1364f9833d410ae76130415c30f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Proximity Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a8b1e9e42181e7f2598315ecbfcd15c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Steps Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2dfe5cda59186cdf2870eb4805567d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Internal Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ed6c593bbd2acc4ff1fff9f30bd8655f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 External Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_t", - "offset_ms": 34 - }, - { - "direction": "recv", - "type": "text", - "payload": "ime_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"60436b2e4c4506cbf65bbe328d971eb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Time Zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a2fadec84d4c8c45bb51cb557092dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c088aa9a3a0892284a692665a13625e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4a8a05e4ae43df88bc2ba18d31bc976\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db3a97e3ec912bb7ef3afb01868c097b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5a96bfeab8ef33995d19d1c286975ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f0f857a8968c9cf06c05d1eb7ed8e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"599fa49165ca52cdaa308a9291244c32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69bbcb02486b22633b2e78f73ed39657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"zone.school\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df94776e25d1b4c511664437c6d8cd8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"School\",\"platform\":\"zone\",\"translation_key\":null,\"unique_id\":\"school\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec6368556983ccd7323a40edadf2e38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Beacon Monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2160869c0d0023d5de9f7280cff177e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Accent Color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9f2220a04f3d0be4796b6fee9d9b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Screen Brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98521848d3efe121dc305c63a3ae9482\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_hallloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd0dc4211c81c4003e1b7c52010f64b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea4b856a58974c9350f0dc8531733eb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e7b49dcd25a0e17a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"752981de05fcf25b9881f49201d2d259\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e583b4572c572a970b8e4f79740d1d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84d1e072ec6a946787dd954f39def970\",\"labels\":[],\"modified_at\":1733904291.14561,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f441123d912ddae3e6d32aa9719fa8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd925eb2c0373b46333f9982693cc539\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8add6e050c44b030b775c0900d7d955b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca4da0e5938f0ad9b79786aebfc94261\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6da88d50b1815e413cb3c18effddca46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b9ee129cb84e064e54f6b6f2a68bfd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b56def15f41aad4941106a5a95a55bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7427f7c8df98d3cbaba16fb1cbf5f27e\",\"labels\":[],\"modified_at\":1769764244.706022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d92a1c422ab0a536d81c42d8ae646da5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ca15e3b72854b67b5f6bd20861d12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6c4b3a155edb068cee9c57e4b9114bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2600df00617c34fd4a6f7085fa9ad2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9d033d4f9202f91a6b56293e16399cc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d704b74e9a8a5a2a3bbabbc7aceac39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fba7cd65763c03f75099ea4f8f2df62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4048c62fc405ce5317c7353ddecc8db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44607a13e9e0906a7b252b2367029b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ffff734debf22a5da1f04227ed7ce61\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7851ce9b8b45d02c259b100099695bcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e75244fd4d702e9e24eed421f19f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80553ce4ab17b8e3a3c8a0e9f2333369\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df84eb0485292a8dd0738dd75af58ea6\",\"labels\":[],\"modified_at\":1772660779.072245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"962b89bb2e91c9e72416f05984d53a0e\",\"labels\":[],\"modified_at\":1751875652.892459,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a32c673dec6f143954907e9d833d05c1\",\"labels\":[],\"modified_at\":1751875652.921495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d73b8b9674d497ee18d5fc04803bfaae\",\"labels\":[],\"modified_at\":1769764245.433226,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc442861fb551a6a06c1f1789d3a8d47\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8176790314abc637bb78fce1af28dd95\",\"labels\":[],\"modified_at\":1768937323.679914,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"°C\"},\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 7 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5b470b4aa7c1d7e469ff00bf06256925\",\"labels\":[],\"modified_at\":1769764245.566513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 7 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cfe1476f76e9b5e40c2665623a580dcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c501a24867cf1e75b62a7d084fe615", - "offset_ms": 36 - }, - { - "direction": "recv", - "type": "text", - "payload": "3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"241a1502ecaf8436b468ad0986728e9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"976abf783a6596bb6e4ad93e5eef6ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aafd4d0f25e0058e7691e4b900fd888d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9432ea9dde7dafb7f04fa0fb66caf0d4\",\"labels\":[],\"modified_at\":1733904292.9764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9742771b1ceab90f1b14f82fe2f991\",\"labels\":[],\"modified_at\":1769764246.412117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9140026578f8696f95b3a23e7b4b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2eb9199ce7a259686aa22ed1201bcd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aefcada6f1ae5cd573ecafaed1f82cc9\",\"labels\":[],\"modified_at\":1726775504.304137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"327a9df8b4a560f9869c8a795aa427d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b8aa5d978c603d98ee826e002c5a51f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1935dba47b0942142c6137d75189c165\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b24892dd730b588b3ef58a9c5f6433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"683870d1b12dbfbe9958d3bbbd483be2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05628de07b292547de3074d0fecb63c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b52583e588d331b5489ad61d42d1b894\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea6754e922d43ed5faefd1c37aff673\",\"labels\":[],\"modified_at\":1726996801.234221,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67a5374ec1ce04d4b1fc7f504a5f5ceb\",\"labels\":[],\"modified_at\":1726775486.464706,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9989c20892e290c5f68ba8011da7480\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ac9c525c7baa10637bfa0bfcf5221a8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d33788e0c059d59c257f087a1473354\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6858fb1bfe673ad16c733d32e0e2eea5\",\"labels\":[],\"modified_at\":1736454087.142562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f8ecd430a0259a766ff87dd14850905\",\"labels\":[],\"modified_at\":1736454087.172581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ede90797f1d7ac76694a6f43d9bc8c45\",\"labels\":[],\"modified_at\":1736454087.212097,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"baa0e4cb851227a8feaf9d6df17e9fe3\",\"labels\":[],\"modified_at\":1736454087.244039,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212276650f0469c6b78f1aa1555eb08e\",\"labels\":[],\"modified_at\":1736454087.284983,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2c26aa9370eb6b26b415452c8a", - "offset_ms": 37 - }, - { - "direction": "recv", - "type": "text", - "payload": "a37fa6\",\"labels\":[],\"modified_at\":1736454087.322599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5559192d4b1724258755211fd6c0eb2d\",\"labels\":[],\"modified_at\":1736454087.355909,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f2f1af76340c415aee598869f15f6b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ba5e415bd21554388b021818724eebb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49817327a16217538f7b5d10768914e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f382990d6af13a6f0f40861b861e446a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"acbdc6c80e798bd40e688481d54f3dfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b15ae82de7ad1a7193e870c8a928e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c39f19cdbc833df680ac7b7aeae2a1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"343e97cbda69dad188ebbf6b8c98cbbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95999d30a8740282d4530ca4dcc83763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8dc6554bf62986c588c250443bbd9a30\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501fe56c13dba2403f8e9f6305853d85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45103882a134b44b710984e492b782d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89602f6616e58d5fe6968e27e9de7f75\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f509ed5dc970c87935cd8abb4447cbdf\",\"labels\":[],\"modified_at\":1768937323.68247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Pixel 7 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce994d74c8d3dacc5f2b3f3ad1c4c862\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b81c76adf96efe95f486bca48df59198\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea6b5d6c0a7555063714d5e8fb0966b9\",\"labels\":[],\"modified_at\":1726996802.141611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e86041c03757821fbe478098482d762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f7c6db6916cfc8884490f24662d6d6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"179461930c9335bff09691616b8a316c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d7bf3b13d2aa43a53bff5d32eb3b6a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b76e1c633c646f74498a1b4022d4aabd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ccd80680e8a746bace2ed530127ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"51f7f20cb4853fc0b780e3f12cf45927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:c4:36_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f0afd1ec6dd2925c7d3aa877f10716\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:a3:c8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab1ff41ba82a1e9a081c62b4a4e05baa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lamp_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc50d543f3d0de8dce6f30e83abaa051\",\"labels\":[],\"modified_at\":1768937324.522894,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_lamp_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:33:BF-light-office_lamp_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74f90347b451e99fe4564a5f9034b2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04350d1332ac239890df047ed24bd6ec\",\"labels\":[],\"modified_at\":1775870416.948326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Dining Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.dining_room_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_base_station_power_switch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd59869adefb3c2668706287d79ad134\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"VR Base Station Power Switch\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"switch.vr_base_stations\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"554456bc549d0c50d8ad023679b633b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn Off VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"974317cf2fdad27a6ff88ffdfe415537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn On VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067515.271304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94b349a8c075517a154253fb630c014c\",\"labels\":[],\"modified_at\":1775360982.274551,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f55335bb75f173f6fd401e50a1e6ebb\",\"labels\":[],\"modified_at\":1775360982.275026,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8424b92182bb8b52c940680327e1b956\",\"labels\":[],\"modified_at\":1775360982.275471,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86c88fab85fb335a99f5bbc40d5f6157\",\"labels\":[],\"modified_at\":1775360982.275902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00578db2e0fd380276579a29772a6ad2\",\"labels\":[],\"modified_at\":1775360982.276323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"091e225f048950d7bc9b58b427089acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d4ccd77c43917949c6f8998592f6d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72f6d099f1b60f2bef38928d26cd8c1b\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Lights Motion Off\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1681343760386\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.scaredy_cat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"875026434592cfe2277e6b60284b69ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Scaredy Cat\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"scaredy_cat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d709cb65d0bf72bdd756ad8e1f4ed26e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1c060ca1926ddc648dccc6a4ed79a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Scaredy Cat Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1685999337743\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0468ec0ea3a7c492de483fe1e2a6f3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bc61ccd7457d16d4521b75efa4de5263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"090f0966fdfe9202896f95e917094d", - "offset_ms": 39 - }, - { - "direction": "recv", - "type": "text", - "payload": "b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33efabd658a938a3c84616668b943ad1\",\"labels\":[],\"modified_at\":1728721845.865992,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistic", - "offset_ms": 41 - }, - { - "direction": "recv", - "type": "text", - "payload": "s_messages_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b46c1986a992590e543ab83dcc22be\",\"labels\":[],\"modified_at\":1728721845.86621,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47716215f6c1e4e0c958a2bd847d04b7\",\"labels\":[],\"modified_at\":1728721845.866372,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c0f16bdb9a7af253322e7f2c68037a1\",\"labels\":[],\"modified_at\":1728721845.866525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_not_accepted\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32047f8c6fedd304c0195365947e01c5\",\"labels\":[],\"modified_at\":1728721845.866674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages not accepted\",\"platform\":\"zwave_js\",\"translation_key\":\"nak\",\"unique_id\":\"4182894947.1.statistics_nak\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_collisions\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8508325f21df882e069374d85c2412c\",\"labels\":[],\"modified_at\":1728721845.866818,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Collisions\",\"platform\":\"zwave_js\",\"translation_key\":\"can\",\"unique_id\":\"4182894947.1.statistics_can\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5d1890f3771adcfbc650417995884fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeoutACK\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67397fab6dfc1efeb76db69e09cd2518\",\"labels\":[],\"modified_at\":1728721845.866966,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.1.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_callbacks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cb0ec827d35594d68324c943295da67\",\"labels\":[],\"modified_at\":1728721845.867108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out callbacks\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_callback\",\"unique_id\":\"4182894947.1.statistics_timeout_callback\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"682c4418ccc9d59ab4766feb2876d337\",\"labels\":[],\"modified_at\":1768937324.461784,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79be22754c52e9d3ba249c79d09b8c3d\",\"labels\":[],\"modified_at\":1768937324.462018,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b9e078797343e12caf9f44a0b0f5b23\",\"labels\":[],\"modified_at\":1768937324.462198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96bd4450ea3aa2dc0fefa5cdcca29ec6\",\"labels\":[],\"modified_at\":1768937324.462371,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d30b0a3a5acb331ecf9bd7faecf3c553\",\"labels\":[],\"modified_at\":1768937324.462545,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67ff38d870a2330331c2b8ce6d626c9d\",\"labels\":[],\"modified_at\":1768937324.462722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f177b710b34d34badf49d64727b08927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.4.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a73d8ed5443f8307691ac47b75cb6513\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.5.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad589416f84ee0a4bae7247f7101e698\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.6.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08fbadd4e068fb26c4d98b53f492e322\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.13.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"", - "offset_ms": 42 - }, - { - "direction": "recv", - "type": "text", - "payload": "9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb6e3d9400e10748fbb5b95f4d2c14df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.14.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9657d799395ad95f249170d72f4515ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.16.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be10ca3bcb5bc1051a357c059873eeb5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.17.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e9cf7a82a0f823c8cd07af1e9828c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.18.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a463e1a6b3777f832e1c78e3c725c8a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.20.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d13a24ca75cc9b0a0413f9f7c0f7c5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.24.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48d8ac6919beb5fd1f7b6715fbe12b43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.25.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f233496fe9a9cdb2df78bff33a2b836f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.26.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d6f8217dc1118036bf98bcd10f4133\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.28.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80029cb154657f9d9c91b39ba1e31549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.29.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46570cdf00c69acca5931fa450785a9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.30.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35b093dc4c64641b23021740e8cd27a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.36.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a65fc8863f070a02d939d1b8306a2d8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.37.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53ee574e53ebda2b8e3f989a3ba13fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.38.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30654040cc3e65801967d3b7cb69b1df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.39.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"544683dd8a7cc50d1bd208a73f4e3307\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.40.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ebe35465fe37aac78f69ed1222d264c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.66.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab0c922ac84db0b313a9c93dc22c6ee1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.4.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8385c6cfa7f0c4997be41b6a49a4b8de\",\"labels\":[],\"modified_at\":1728721845.982674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e386cb6e210fc89df0fab411faf5afd4\",\"labels\":[],\"modified_at\":1728721845.982907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9c808db283e54ab2446bab6fb1cc994\",\"labels\":[],\"modified_at\":1728721845.983117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba1e80a8483cdfc2899d23b81aed739c\",\"labels\":[],\"modified_at\":1728721845.983281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f42d47a34b6f9e3f87ae053978ee85\",\"labels\":[],\"modified_at\":1728721845.983435,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.4.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9be484fd8a2b1135e0eb46e741acd273\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.4.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"693765a84e9f3e3dcad716f4eeec22eb\",\"labels\":[],\"modified_at\":1768937324.528833,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.4.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"012352a68babdcf20b6cf95f876e926f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.5.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f672471b5c978420e5f1dba57dc4733\",\"labels\":[],\"modified_at\":1728721846.000478,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c4b943d6fb6f596b29d6d977e0e46f3\",\"labels\":[],\"modified_at\":1728721846.000702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9873f4f992eed491065ac7a2f339a7bc\",\"labels\":[],\"modified_at\":1728721846.000876,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69032bd476a7b17eade17059e08180a4\",\"labels\":[],\"modified_at\":1728721846.001035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb63ebe968c8197ed6fd472701949976\",\"labels\":[],\"modified_at\":1728721846.001179,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.5.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69dbe60b2c6ede995a5e608d08544cf1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.5.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46b8ead388ec6b9bbd189354e8d592ac\",\"labels\":[],\"modified_at\":1768937324.530131,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.5.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4cda4cccf1bf41fafadcd00681b40751\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.6.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3da25ea5b1606150ef66a9080137bdcf\",\"labels\":[],\"modified_at\":1728721846.008122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69e11426422fa9379fb37cc8b90b0100\",\"labels\":[],\"modified_at\":1728721846.008333,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6068bcf6b64da799f454a39f75d219d\",\"labels\":[],\"modified_at\":1728721846.008489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e19fe563fa9afb307a1d1ec0af6a47\",\"labels\":[],\"modified_at\":1728721846.008639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7c137d08211c63fc135d56ad8079b20\",\"labels\":[],\"modified_at\":1728721846.008782,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.6.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632b4444df9edd83dc36ddefc3105924\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.6.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b89faa5aa8c37389c327d33c0bed5f5e\",\"labels\":[],\"modified_at\":1768937324.535509,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.6.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c48a9484b52fe684114f779a2fb5404\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.13.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4c6df2834c4defdd486be1e9a612c07\",\"labels\":[],\"modified_at\":1728721846.026245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"511e3b988f5150cf206ecff8b0a48afe\",\"labels\":[],\"modified_at\":1728721846.026539,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e77fec708cbd9dafd349afe5a826a6f\",\"labels\":[],\"modified_at\":1728721846.026691,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d788a6b3695255083009f04d3dbf84a0\",\"labels\":[],\"modified_at\":1728721846.026831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bf7f721885b7646b04081641fc9b9d8\",\"labels\":[],\"modified_at\":1728721846.02697,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.13.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4461e4c669a848b9ef3223240813573e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.13.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"308b0682ae88de559074a6de7c53834e\",\"labels\":[],\"modified_at\":1768937324.541059,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.13.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_room_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"705c92b125e5de1380f3c18794369bf2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.14.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6521456f61c04ec8fe7b1e5b097d37\",\"labels\":[],\"modified_at\":1728721846.034872,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00c3b60e2e3cec4899e63d54e900e047\",\"labels\":[],\"modified_at\":1728721846.035075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec9cb65a35afed1951ae88b782595f5\",\"labels\":[],\"modified_at\":1728721846.035255,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"231a387ade3bdaa4a66853272db8b0ea\",\"labels\":[],\"modified_at\":1728721846.035404,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb1ecee5163bce8480c0fd35a09c6769\",\"labels\":[],\"modified_at\":1728721846.035575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.14.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"85069e58b15d22ef66a4bd97c6129f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.14.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c8fb660cd92b5d242a", - "offset_ms": 43 - }, - { - "direction": "recv", - "type": "text", - "payload": "b5d679ccd7b33\",\"labels\":[],\"modified_at\":1768937324.546124,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.14.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c336a49feefaaa0e9faa1a38535c422\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.16.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d93c331bf5198470ef4ce4f524c52272\",\"labels\":[],\"modified_at\":1728721846.042608,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e863df09902ad83c56a2841cb51f576\",\"labels\":[],\"modified_at\":1728721846.042868,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"", - "offset_ms": 45 - }, - { - "direction": "recv", - "type": "text", - "payload": "successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"798ee7f183a63fe89f1e942c636b3bf9\",\"labels\":[],\"modified_at\":1728721846.043022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42ae2ffc8bde328a61b8ae4373aa5eb9\",\"labels\":[],\"modified_at\":1728721846.043158,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ea12c6f7d52404e2147b808e1242b41\",\"labels\":[],\"modified_at\":1728721846.043281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.16.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7ce0933d67d34e56e76dd1709593328b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.16.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dca82438215fb7fafede9cce49acda\",\"labels\":[],\"modified_at\":1768937324.551074,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.16.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"304e4ebde63c0b6724afd5e92cd59f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.17.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cdf393e8f27ba0fa618069c16022a026\",\"labels\":[],\"modified_at\":1728721846.051416,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40c570bea89d10e15145cb64ee1f7ab9\",\"labels\":[],\"modified_at\":1728721846.051615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b2edd3fbab7394bab0c14cbe7637c5\",\"labels\":[],\"modified_at\":1728721846.051761,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4353c6bd553ecb2277ca7b997c50c85f\",\"labels\":[],\"modified_at\":1728721846.051897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83be3dae9ec35473d348b3c5133411d5\",\"labels\":[],\"modified_at\":1728721846.052036,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.17.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3adf44d744835c998ccc919bce886ec9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.17.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7e70ca5aba67a4a230b2722299052e\",\"labels\":[],\"modified_at\":1768937324.557331,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.17.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a07cf5d4224ba6239a13744c18dd235\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.18.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7caa0248d8ee1076f41ddb3cc2c89f8e\",\"labels\":[],\"modified_at\":1728721846.057035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001bf6da6163b4586b7f7d920b182c3\",\"labels\":[],\"modified_at\":1728721846.057227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"407a6b9aee48fb0bb041de319bdc8731\",\"labels\":[],\"modified_at\":1728721846.057394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"474a984405d6ad3fa524af6f21852079\",\"labels\":[],\"modified_at\":1728721846.057527,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc3da0f80245bad1dd0b080c05f60ce\",\"labels\":[],\"modified_at\":1728721846.057654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.18.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"338d555606471bf4656042ddeac2dd42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.18.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"debf128d126cc42f9d9678a177a3d7ce\",\"labels\":[],\"modified_at\":1768937324.561345,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.18.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da1541fbce94275ba5cbca676f2702f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.20.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e4917ca0de8cb75740c3cf980a2b1f\",\"labels\":[],\"modified_at\":1728721846.06327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bac1b4c13d182d12c16822efc7415f3c\",\"labels\":[],\"modified_at\":1728721846.063447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04070ea7d7a035faa87209770e527115\",\"labels\":[],\"modified_at\":1728721846.063587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e29111b9581f147ea8a636aa9ca50c\",\"labels\":[],\"modified_at\":1728721846.063714,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77c23d9ce3ce745eab3994897b4c2d7b\",\"labels\":[],\"modified_at\":1728721846.063839,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.20.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9831210a5f148ffec0c960a3cef41eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.20.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ad24989273058ab1e0afede3384b0f9\",\"labels\":[],\"modified_at\":1768937324.565645,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.20.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52d9aa715f3b1cefbfb68ebd33ff9b74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.24.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05d8bcc97db99a59b495eb3c76a683c2\",\"labels\":[],\"modified_at\":1728721846.070907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe6722a9cc2ab68e12b30784f31b1428\",\"labels\":[],\"modified_at\":1728721846.071086,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2bb1f0bb2a2687cc1a615a13447f6c3\",\"labels\":[],\"modified_at\":1728721846.071316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c2e48f0bdf3f152646733a2065a7869\",\"labels\":[],\"modified_at\":1728721846.071476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8793d6ce94921703ff9d4ef6d283102\",\"labels\":[],\"modified_at\":1728721846.071605,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.24.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b971039f576f806395a3bfe630bed910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.24.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3ba969b6fccae3a10caf0bd81dacb57\",\"labels\":[],\"modified_at\":1768937324.570316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.24.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e199fcdf8a82e3cd5b2aaee7e98b3ed3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.25.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d118bd28fcac0c0e418c5fa26c908ae\",\"labels\":[],\"modified_at\":1728721846.079745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d036715c2c04cea631fb5ef537052fe8\",\"labels\":[],\"modified_at\":1728721846.079932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57325db8a7fb10afd15751aa94309c1c\",\"labels\":[],\"modified_at\":1728721846.080103,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0b56df69f1ed80a097a437a7234a8e9\",\"labels\":[],\"modified_at\":1728721846.080229,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_time", - "offset_ms": 47 - }, - { - "direction": "recv", - "type": "text", - "payload": "d_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887eef5e7ba55d9e0936e56bc66c567e\",\"labels\":[],\"modified_at\":1728721846.080355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.25.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afc9d72e408779d20b34dc1f01ad3536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.25.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcda026ec929142ce3cbfa14747dfaf4\",\"labels\":[],\"modified_at\":1768937324.576948,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.25.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1583858de49ba4c0a4b4ff2ee0c29d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.26.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f5033b58cce7dc54c076c8d180392f0\",\"labels\":[],\"modified_at\":1728721846.088895,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43147453f1b24bccb5c5f5e5e62f7068\",\"labels\":[],\"modified_at\":1728721846.089144,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4387dbeacfa284722783b317dacae2b\",\"labels\":[],\"modified_at\":1728721846.089304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d1c22a4b346df44287e85024006f90\",\"labels\":[],\"modified_at\":1728721846.08945,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"535c8d77519ba41280c4a64ec64bcb51\",\"labels\":[],\"modified_at\":1728721846.089582,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.26.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b08f4bb01195276c704b25cdd96196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.26.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b0af79a6c4a5379175d0900063ac555\",\"labels\":[],\"modified_at\":1768937324.583385,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.26.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abc77ab50d0d3573e9e10357e6b4092b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.28.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8cd26d45d0e80aab853b7d479f30848\",\"labels\":[],\"modified_at\":1728721846.098327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f324aa672663f6a659ee494545522e\",\"labels\":[],\"modified_at\":1728721846.098537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37fb21bcbda4df8298f567ba2d598434\",\"labels\":[],\"modified_at\":1728721846.098676,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c00a5c5168ae3d928deb75654328af4\",\"labels\":[],\"modified_at\":1728721846.098803,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8c544aed3196548a02205a35243f93\",\"labels\":[],\"modified_at\":1728721846.098936,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.28.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab6a89acdc4cc754d27d035797994522\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.28.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf69f70d06538e49a0517a65e09e86d0\",\"labels\":[],\"modified_at\":1768937324.589758,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.28.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a77e2f997e7096c9b763729289da0222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.29.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"570afd43cc017753eead4837bedc9bc8\",\"labels\":[],\"modified_at\":1728721846.105962,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa61e5c4f5406900003bcd53d7ea9d8d\",\"labels\":[],\"modified_at\":1728721846.106143,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1d9e9b71984b9ff29afff4c6bdc040d\",\"labels\":[],\"modified_at\":1728721846.106288,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a19383165b4ccf9d801c9c7f26f50ff1\",\"labels\":[],\"modified_at\":1728721846.106452,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3becb6b0af1994c2005db257d3c08b6c\",\"labels\":[],\"modified_at\":1728721846.106636,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.29.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19e1560eba677195d70fe919a6144950\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.29.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef43746b3d59b9ebed78786a6a0dfe9f\",\"labels\":[],\"modified_at\":1768937324.595077,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.29.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfb0c54c7cf85ab1e4adc409f895e19b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.30.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1fdfa3a2d14760b9475ad822051c5428\",\"labels\":[],\"modified_at\":1728721846.113654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e4b1a6e975cf9b1d9994e5c0fc96fe8\",\"labels\":[],\"modified_at\":1728721846.113904,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2940e9491fc8082f8a7566fd97155363\",\"labels\":[],\"modified_at\":1728721846.11411,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912541a2fa4cda4138a5d43e32b01c9b\",\"labels\":[],\"modified_at\":1728721846.114314,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09a2c2e79f06f78cac686eb78b5a0983\",\"labels\":[],\"modified_at\":1728721846.114484,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.30.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8184bb20bb3ac0aad8c150c92d9b60ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.30.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"595b480ffb15cb31f87e003a704469b6\",\"labels\":[],\"modified_at\":1768937324.600438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.30.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02636c3d8887bce10db55744cf1fb300\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.36.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3659d233ee1194e78d575c8259c79d75\",\"labels\":[],\"modified_at\":1728721846.119874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ab37c037a538751cc745fc318c53375\",\"labels\":[],\"modified_at\":1728721846.120105,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ebf0493baaeefaaf3727add303ef097\",\"labels\":[],\"modified_at\":1728721846.120293,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7aa05f5e8e60454c434e760f09ba7d0\",\"labels\":[],\"modified_at\":1728721846.120469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad7f8e9a7534ce6f62dea3787f34512\",\"labels\":[],\"modified_at\":1728721846.120604,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.36.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817b83fa9b3b611ef9148d3a1c7b9458\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.36.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"207b9f016771de3f0791a50db497c513\",\"labels\":[],\"modified_at\":1768937324.604321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.36.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32ed05ddcea53a4e1ab8ffe90200bb11\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.37.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fe4ae53649255d1e27d0064fd803ab9\",\"labels\":[],\"modified_at\":1728721846.126048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08e5d0574d23b7feab02b70f64bcaf5\",\"labels\":[],\"modified_at\":1728721846.126233,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e3ac4ad5973a9fc59e74f034b3f8a9d\",\"labels\":[],\"modified_at\":1728721846.126379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f451b1f3ff73499f3efa7843ba1fda53\",\"labels\":[],\"modified_at\":1728721846.126518,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a513a0bfadb8e062eb3d5ca06378ee1\",\"labels\":[],\"modified_at\":1728721846.126652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.37.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb48677e23288d884f9c18b559952cff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.37.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d2e87e3ea7659f4c1ec2f9581b248ab\",\"labels\":[],\"modified_at\":1768937324.608389,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.37.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5565c442b090e06c8f7eb6342f92e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.38.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6184498ceaf1572ecb710a88977504a\",\"labels\":[],\"modified_at\":1728721846.135332,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f8631a758d2f4b056f007426987b5d3\",\"labels\":[],\"modified_at\":1728721846.135525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8186ffa61a7c07f827a82f6ed999ef4b\",\"labels\":[],\"modified_at\":1728721846.135673,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4e9a80844eb2d564dc68cf1827019af\",\"labels\":[],\"modified_at\":1728721846.135808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0205fe39e1a0a4578c09918f54f68fb7\",\"labels\":[],\"modified_at\":1728721846.135937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.38.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a43cd34777a3876325239f0c80882549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.38.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cddfcbe8d05af4ead30b2c9a732e8d97\",\"labels\":[],\"modified_at\":1768937324.614863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.38.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa7663cdf3be9fb9aa633722f02fe95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.39.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"185eb8e01e811aa96f1055db2eba082f\",\"labels\":[],\"modified_at\":", - "offset_ms": 56 - }, - { - "direction": "recv", - "type": "text", - "payload": "1728721846.146856,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7507b2bae3374108dd49ab35772c96e8\",\"labels\":[],\"modified_at\":1728721846.147069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11720db84f8dac252640168c91fae5b5\",\"labels\":[],\"modified_at\":1728721846.147219,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2415ed4c820427b452628be0746dcb0\",\"labels\":[],\"modified_at\":1728721846.147361,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"605baca0427b42514da2eaf78807a67f\",\"labels\":[],\"modified_at\":1728721846.1475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.39.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d2b90ddc8284b68e378215f59d0f6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.39.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f93c038fdf85ec4247f1559f1b415\",\"labels\":[],\"modified_at\":1768937324.622387,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.39.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5999ecfd025c3cc7800a4a89aa08edfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.40.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"917be806129eacb471d1ee0d0509698a\",\"labels\":[],\"modified_at\":1728721846.155502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94e074b915ef0ae11677a926f8f4e3d1\",\"labels\":[],\"modified_at\":1728721846.155744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84a23599661784c7f5dd79065fe6bc72\",\"labels\":[],\"modified_at\":1728721846.155897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e6d217bcbe4d21e0ac74a35882afd3d\",\"labels\":[],\"modified_at\":1728721846.156027,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d101cc55ce6cddcf624e76cbd806cc2\",\"labels\":[],\"modified_at\":1728721846.156151,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.40.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e96d40f2a5ff985cc298963049a9848c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.40.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a4374928a53f5685eb1db6dd22fa3d\",\"labels\":[],\"modified_at\":1768937324.628793,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.40.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db458cfaf86d76636a7d2bf0895309de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.66.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5270f9954244bb65705d47f9136e1aa2\",\"labels\":[],\"modified_at\":1728721846.230051,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82399c66db015194b4f3e070808696a1\",\"labels\":[],\"modified_at\":1728721846.230244,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471598b270ecac776090a8d2c01bda06\",\"labels\":[],\"modified_at\":1728721846.230396,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae71812be09a23822eafc01198f60890\",\"labels\":[],\"modified_at\":1728721846.230531,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e76593d32bda68336de64e105ec8f0cb\",\"labels\":[],\"modified_at\":1728721846.230667,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.66.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98d943f3a15d678a077164e12b0b6f8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.66.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"162a16ffb4efe6d9bec61e35df2cef00\",\"labels\":[],\"modified_at\":1768937324.632659,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.66.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db32b0a9239e3164b238a78d332fcc09\",\"labels\":[],\"modified_at\":1728721846.270694,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c11d0e40cda08b41a09ae52d89dd462\",\"labels\":[],\"modified_at\":1728721846.271147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm L", - "offset_ms": 58 - }, - { - "direction": "recv", - "type": "text", - "payload": "evel\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20a58486d4ac94d1c4627100475635e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a37d873a73a470f8610b1d170620e9c8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c53aead1aed9f2d07387815e701ea7cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd37a59131eebc3d3efb87e3b9a180fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb13b83675e38a3d6fea9f88a7fd514c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d95d516b1ca9219bf2fca27f7f2908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b844ef9e2e6426121768a751759fe087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd47e78959ada5340c2f57306fa58db0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c37787e174ef03e1765d9bef617982bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60ead9b3b7d23ce46d5d7e26d8940d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d51696e440645ca3f4b8529e028f971d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"237fa206e122aa41369fa1c33d8d0a8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77483a0a861c0237c93f510811bd0c72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22e6ae4f8004df116af0e2b635af2c29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2648ad9b3ede6e6a150d9efb636b049c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2d88cfc6df1889a40731747606245be\",\"labels\":[],\"modified_at\":1728721846.274493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdea929adacbc2d74c59d113df4e814e\",\"labels\":[],\"modified_at\":1728721846.274952,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcabb74ebe7fa1ef4dfc174b377e74be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"139db407d0314d892e9399e794a94160\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9717997085ccceefc242700248840be7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e249ef83acfce3deefa5a3a95e68bbd\",\"labels\":[],\"modified_at\":1768937324.702562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f52e426d962ba92d279ea46fb81cfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a516cccd0dfde572f7ffe400ccc573ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69cc3fc9e5decb87fd544bd9c59b2d6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28b1032c218c390994d8cf969ce895d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02d8d11b76cfc3587daeee2a51de2670\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2abee3d97931b898d557d8b57204b5b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de10b3dccbd140d07b82ee3cbe00869a\",\"labels\":[],\"modified_at\":1728721846.285949,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"285d1906223aa890187af6f521ac5aa6\",\"labels\":[],\"modified_at\":1728721846.286414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9768e0fe86fe22a99d2bd1e6fa4a50a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad5520faefe19b4022eb20391dffd559\",\"labels\":[],\"modified_at\":1768937324.709538,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5816a5b2d76cec6a8f87bce0e5613c69\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66c6daf5be1551275842e31ca471799e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b103e540c009d00db923ae148d2ad3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3070f845f294440ea467f871f4e9758d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffe6be3b9f35cddc7519f62786d0eb4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b43884450e42b01a842b6373fab6954c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ff72dd6844c777f6523a15e4e86c4938\",\"labels\":[],\"modified_at\":1728721846.290665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a530ee6f5837210fe17a7eb90140108\",\"labels\":[],\"modified_at\":1728721846.291104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fbc10825a215ccf77771ac04d53a720\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0af0ae3d27d1b34515317f6f40dee262\",\"labels\":[],\"modified_at\":1728721846.294166,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74bdfa251036d94a97f241789a25b689\",\"labels\":[],\"modified_at\":1728721846.2946,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e698758cc618d42a7e6118d812ecf07d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2216fe6d827ae6564c3f5b55619314e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93cbf85dbce888c01dcd21f2d1c99370\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"183772562af3d9507f5f27c5b0ba0f38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c6433560756c9431e1df77c42b6d28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f6a57de7a98d6ac7b2e945d771fddb1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78debeb2eab74d07e95f30c8b4852e4a\",\"labels\":[],\"modified_at\":1768937324.729745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e70bb4917587f9b8a1d3bd96cadd5cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817943eab67fd9798445262f476064a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ca751c70c4d7fedf4bf8070434d7e6d\",\"labels\":[],\"modified_at\":1728721846.301652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44d8898092357555eefe4ecad44dee1f\",\"labels\":[],\"modified_at\":1728721846.302076,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf7330eb6dadaa91ec87c23ee00ae26a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c56e9d8fcf2d8ec59e77e00072f24838\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4446cf0c58d47c700287c9c21432bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffd7dbad382df41d7195eccfe18810d2\",\"labels\":[],\"modified_at\":", - "offset_ms": 60 - }, - { - "direction": "recv", - "type": "text", - "payload": "0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e0906e8e3e7e8461a822528b1cc2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43b135c801d45745f3cf05c1bf20284d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a58405b84ac4e8dcaf4e760967791caf\",\"labels\":[],\"modified_at\":1768937324.733974,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f994629b2715d3c8dcf982027a8a780d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"762c0ea162380dc2056fd5704a2719ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7eaab4a2744c4902a408c6debc79cf37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d848e0323383acb9c5ddc423cbfd950a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"908ab6e73ada2695a0b1c8d01e975190\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d2852c957d65076fae9aa19748c9d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aeb0433e0d87026a6fbd8afc78aae33f\",\"labels\":[],\"modified_at\":1728721846.306497,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f989704f396de0f609d4b0351f2c0f9\",\"labels\":[],\"modified_at\":1728721846.306925,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a737baa4dc868142fb3dadc46322ab27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e14f8fb1c155d58e6f6f00768c1fbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"defadd1bbcba92ba76af88f17a4b6948\",\"labels\":[],\"modified_at\":1728721846.310189,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0014deb8f599a19a01599b67b85ba0cd\",\"labels\":[],\"modified_at\":1728721846.310607,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"904cf14860d4bd4c39b88c6ffc505eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2a2c87ca142a9691153c08e98c9484\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb608eabbcb86e1939bbfd47af08077\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1cc16282de895c102c625666255dd1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9654b1744b3eff83e9fe67c5f490209\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e48cf8e1095ef4f80ad4c5a40bfeedaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b5e2609b44518d7b650ed31366f9844\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"846632f2affb52790f552049838b285e\",\"labels\":[],\"modified_at\":1728721846.313113,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc5b74a375f77f6146ac469f4317556c\",\"labels\":[],\"modified_at\":1728721846.313655,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e31ea48aa516d44a0e74bd58e0bce5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2657140005056de27f2fd24f0f8c406e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f53dddb446efd5b75c2c104009de5a9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56a286889a09b67cb4f3da4901dcbaa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c06542330d8cd6459f5a6d000a45daad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17949bbabe2791d81f4839fe3e9110fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"523a483aa227e0b389baa33d916a600b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99761b8c80b75889a0e4d4e1e8d894ca\",\"labels\":[],\"modified_at\":1728721846.318031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d64a13fcd28fd09e1e1e8eb2cd8fa56\",\"labels\":[],\"modified_at\":1728721846.318493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70a2a1679ee20d747ff2a3a413f1e105\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f235f0b2abe04b471ec5b5e5dee4a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bc89c05c4c94a30db7238452914e215\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98571f78a667d1495fe0cf9836c9472c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e1e09dde3dbf7a35f9cd2d43962adf7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52c7ca7b64871829a52196f9006ab15f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8203802817bf1ad148be4fa89c851d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2584fd64a2409ee7a09a132954035e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98b7c7cf21f957af7621433d77abcb1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"beed0d43ff1aeede01dfb858e8c5970b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"921320ca502d44f294ef98cf28935e13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f3f60bb56320ae0aafa2079eb81f15e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d821dccb30962b1463ccc94505f53052\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e964cccf2a7ab8f0eb0eb913f676f05f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c84d95a9ef4cc438fc83d1cdbebba33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12ae7f7b84f0b2f02972e196ce9a93f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e42e6ff5ff57f588c006928612396ab9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d486aec5330d75337491301294bb4435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"346c374272b05752ac5fc931704ab571\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e36b9133e1d28872231dea0fb93528d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37d17dc9e2421530e61ab1fa54776f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9496b4f3a9d78224c587705a5efdbff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc277f4c90c74fb8271cce66304ddca1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bath", - "offset_ms": 61 - }, - { - "direction": "recv", - "type": "text", - "payload": "room_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b666349984f09005c3ea218b605990dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf1377a4d496a97ca0468993f9d02d34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b237c13f8ff2d948207447d610bf79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7e258cdb97757b5d1dcb2cfcb1ca601\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd811627fcc5a2efe088ba85498824a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a034873b733f7302c12f77357cb7d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a06a139b75a0038df888efc160b6d718\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f342fffebdbb3961b6c7cb1483bdea7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fbd66619e5a006f253944775dbbe19e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe112a32c778fc5e1a85b57ddc7caee2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"269d59ba2afbf01a89976e87a7aa1210\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fdd6e83c70df50995811a7b4e2a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"461339479072e6cfa6a97b02f9607e66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4359424baa64e986b59fa41d415ab1a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc8aa0c17996ff85c861eaf8d5b0cf84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21eabeec28b1aaccd01363d19dfa11ba\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb5accdf9f56c10d895bd732f109ea3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d7d60da7940314cd626bd834af5e727\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"388577ab65bace3f26ee0ac8154104c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b33e66f09619f185899bf4fd71502c5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"531f0295e3afb7186a34bc84e036e106\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb697eb52f8e49d6847614e6c87ec81f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6c5c1713703f37c2d0c9dc58ab71d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa66284a36aad4743c9457b43009c3d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2dbebd1dffc9b31aa00702afca47fa85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"742d317e9b1b93196a64e738fe81c3e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_tamper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5694abb63a3d7d0f1fef64ca7ced652\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Tamper)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Tamper\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11e92860f380e2aed665f5bfbbcc4c5e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Motion)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7db329966d8fcaf7bf8f2a1a041f7972\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b27167efcf1befafb40ba35f59517cd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48fa14c557be3aac0f57468322f7eb26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb55ba8a855d25dd7428036e0cd0558e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ade08beb8063bcea7d4994e3339ae993\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b9cdda5ff0c3b9cc4a989febec670ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8a2920baf84268bd89b048d09e651e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d8ce0431cacc919f6654e0d26866a2ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05eff5902e0611fb8f7bebfb06af26cc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"576780787e0d9a68a0bf4ca262fd2e15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c83da5113e06a426ab49e391daa6f61b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2219269962fa6d6e19aeb17527475e5a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5588863a4b18d8b348a74149bba2221\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec633310e97c80c59c6315eddbaffb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"95ba1e0f0980a5e81a9ef637b5ba7137\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e1a41099b9e58ae2ac48892f7d7a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_sensor_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a191ceeb0e05a37927f92d920b7e346\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e06c6e040bcfbfa49d9e4e0f15ae549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fa47306024f7160e82fb2166d71503a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44754edc6ab7eab6babc1a133ecdb743\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68a3fe093a4715fbb03c1f6ddbfd4315\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e025e5d17b85cc5f449e4d48ae663657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"130711c5025aa11d4938873aa2b2ef5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a640b780d8eed0ce27f6b553fb0cabe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f692df4d0a05b8ad1192c699fed5eda5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6353d49e24aa16d649ccc114", - "offset_ms": 63 - }, - { - "direction": "recv", - "type": "text", - "payload": "e07684\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc6a70fe7c7b6f1cbf485e3b2b3e6be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a088a5d0f5d09b2c15852d0c0e787b7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"964462020e6e73b0b0169f5a61eeb044\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22fb495535a4ebd7554ace311e87e8ab\",\"labels\":[],\"modified_at\":1768937324.754808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f062bd2af5cfe5046c59f564790afee9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47e5be29e488997e90937e83b9da396f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b7c79a5c504e2f3eef63f7237af33d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1562e743cda38cd488936d23e22b58f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99afb89d564e6c8b5f415c28ce8491b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4292496fbf98923806f65951145caf42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62c38c853703ab58d017fdffcfa06a03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35ac42b0024d325caa77eefbb92fd9b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5127f16f1631b5877cf467e2d58c1c7c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"55c1d4c91d596bd4191f48a726f50433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7407cd1518c4dcebc6ef6c5d8e7da423\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6415881cf9e2c0b61be6abfa112e5cf4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2725a94f79899b5a4970b5c4d3b9e418\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4704baadf1151fcb1af4eb70c654e09e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30ee61c6ac77872bef422f8ab9ac933a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0732e5ee938297a9f5b973ed48b06d3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24e11985867ee122b198a79d40d53bed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e0ad69f430a72ac40230febd6dcff06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73efe848e7f6628deb3e86f815638a6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e11e57268a63a858310fd24ac8994a26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3929bbaa3f8cd13a3aeef2e57952959\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42e94a93f2db059304acaaf69c17af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d643c40ce27169788c2810ecad316e60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_on_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"90198efa0dea712c09f423bc7fab9741\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: On Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_off_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21c9e490e8efe764f099f91b18f22c7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: Off Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_battery_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf3a65f5e9b1fbef950e3e779e92faab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bd57910353ffae53801fd8a4f1b5f0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"454f88037ba03f08b83dccfd939ddb4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b426c8fffa9d853c719d4ff70196f3e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6824baa7a41d44d33603b4c760879101\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f0b56e360639ff5daf69a28f3036e79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.office_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eafd82385841281bfe024783dda13491\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ce75698c6edf211b8ff2e161520b411\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b98a93997b7667b4711d2831983de8a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5734672a2c09d8f0f6f0e233752b945\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99e3d86cf2c0a6fc7015cbfe7d79a060\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc9e480f72433ef3b4ddfe4a5d6dfa3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bba437e48b66a4689e26bf8b75377b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5bd8a6289b290db5a819a7507404574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c540b165eb0ed98e6dcef5b988de2c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f131df2fc89b340d5ea5d8f7553075a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0b6740cab7d3dc04b516dde24dc616\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b37302459fe4a8e950d1cebd8a395e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e103d6684aeb59d2b23569b207ba4b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1360a0cf141f9ddedb50eac50ed00ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ac8de408549fc851b81f2ffacfb1b1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bathroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db63a6e036511328bd6ece0876ee562a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2b981534f8171df4c6da3f420af24f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.cat_bathroom_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"583b41419d24459b2457700e28653e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912457da9847cd4c455444e5e3f4b02b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d9f921b3ad910d1de65af1ca97cf54e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.large_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe738ced38fd9513231370dfbd42e0b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.small_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e39d012d9fc6092736ecec03677116f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_motion_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6db261bcc15334e1bd64fd2fa62f1cf8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f46c5e88175f5336c08f0ab4b7580be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5544ef469f053ffa8759c7294efa6ea2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4a34eaf48d2c692542296f0e8a7e5d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3c7cf072f2a8ee7bd8b5d3a2cd179fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46ea4278b577", - "offset_ms": 65 - }, - { - "direction": "recv", - "type": "text", - "payload": "244adfc842379d0aef1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b396ff111d07c8a2336ffb8b9f73e25\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6128229fb9f940def07e9c96cf14fc6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1274c94252cb99885059e3bc453f9d55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bc4bd805d7619c9a1b04076c931616c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2984b5f884cac4f2c289443dc2062126\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff64a4970c47dd1e208dc6113f29e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2e22fcbf052b73b858a5895ddce0eac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2e19645094c9d18821b943096dbfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e205c1906cbc3351074944002bdd1128\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b64991bc065b8ccdcbbc057f446b1995\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c14062b8523902321eadf7b3b974257\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dbdb7cecb5c85ea349569e68c3b5db5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fb06bb52f2e78831d67c9bf81a0d07b\",\"labels\":[],\"modified_at\":1728721846.268738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7a0060798e93dae0faef390c32c1c1f\",\"labels\":[],\"modified_at\":1728721846.269198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bda4ab6b68f9cf6d154e58d087f0dfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"876da9cde9c3be1845863f537752d364\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c034573ffd52e5a3d3bda9ba303df881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04c854aaf4c81f1a2d429a4a710b960a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c51654eb9bcb7b8bde5f10aa2a6ac2b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37b229da70e600b50c4da7fdd12d386e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.back_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad8b88418744a70fe17230e705c04e4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2d44675bc66f37477a1df4661470f7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e093e8f61c9dde686aec60b62b160f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d1ca4fe6518f80345d12cdb048bca05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f5e73212ea9ec168cfe8f89cc5ecc5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"619631e25ad31c44d797b3373abc0121\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"41c5da359bd07253c5906ea3d1d5c9bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69ab1adac8e2d678e29ca7cfc3663b5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d18f196a4578f9f03c18c42a349f4942\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"828bed1781d3ed491bb52194aa5f52c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb03e8f944a74a8d6f22cacb69a179e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ceea1e88fa6359162498d39710e76608\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32c94f61cfaa021fec2a7c42c0187dcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f35b908065d262cbc20ce40e77913ec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6e4fba44f0f1074fdb8f59a099f984\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"698ef67888799c78702f6e5993f9b043\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0141219b641271db80532f3e4c208a8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6945bdd9b5c1286839ec2feda660167\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13524b9ae17c60833721f597a438923b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bff288f871c8d3234915db1df3aecac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_room_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0120415d97c3741ccebf80955941d0f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b225c98bbae007535c42703d08744762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c4ddfb2b2ea1632b65135e6b4696b1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"400140978e8261edd5986a6631c65408\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef58559c864967045bec692f21ffc889\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93b1acb4134dc4868cc73ba3a2b2719d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee02aeef4ca9d0bfbaa379d5510c5af2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08b5fb9ce8c93a2fdba273d6e9e2bc1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b3e485ee289f8b2389d5d8586ac10af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"295c55ea37ede32f5d0542f2084a8fdf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"af540de79c1a76846557cb5422a2440e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80c1b96899d7ba609ce43f5d3808e905\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e9642d047ce619369c413e6338734b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee3f22dd95d9b04f3bec4b329181605\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5263aec80e35c0827a946676a4aca38a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab751aacbd342317bd0a72094ab1e3d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"205523a60b2f2cb5043d22106d05b771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_room_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c71d1dd5aac2f57ef4e5d93a800dc49d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.back_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23eefb89f75", - "offset_ms": 68 - }, - { - "direction": "recv", - "type": "text", - "payload": "98b1b12ddeb6aa9fa790b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54bb5483d9b560378be5ed481d8c6f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e010955d7518d31854c9e4aab3f27196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db9bfa3b546ed6770a643c10cd880ff1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7df987a19ef8c7183f8bc12db92dedf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9010dbccfdc1900b1f762399bfbfb817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3f2828ba1b43661dcea26810294801f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd7149d9366d9601a3da20992991bc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch", - "offset_ms": 70 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1033ca0a8c4bb87068b0b0ce5045202\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4b736f4e34f5b44cc71a6c173a28bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9d0afdbaee1c21cb97bf8ead789fd05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b7501814ada140ebbc75cba95bd508c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c14c404b2807aad042575bd543388bdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e509fce7fd82a687c5380cabdb85304\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f77247ea5f57e1024e9a33057575058\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e8e9d058603365d951ca1000c07f04f9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3b1909b7eb73dc73e68f2db669bacd1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc97dc24ca8dbf5b4cd695ec9f18062\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e458d225d20e0d47500ef79aacc1fe7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d1eff5533638de7fbabbea2304821f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dd61553487e0f10f1c0046b93c7421c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44fa78eab4837b85fd7e18b97b690646\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7fb980b446c6bba6e7fca57e53537b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"834c2fb0c37edbf7b9b7cf32759d7793\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17cf457e684ec08236fb7454df043269\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7cae94a92bf02857f8185574b9b2275\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dee0b93328e4119a8c1edde7101029e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbb5600871de8d1cf42b880a544aab10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce87e6ae3b11ea4e45fed434c0633010\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc5b08b6a1940f42619bd2cbaf4a6cac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7612f009094e943b1e129312251b6db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c69bb67dd0462ed5dd00def8ad53220e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1655d96ffffc5c9f04e400af601b4047\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2c82f032d22bc8734679d92ea0de83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12b3ea55e15328ea4d540058ed33d507\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74ce228c87059e06b84516671ac20763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a341d131322622995e0a4dcc4c2fb896\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6e47f1cc69120985b15d8613036a9bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b496ac89474549c88080fae26ab63448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d02dae110c56c726715e529953d922be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8220ab6bb0cc1fc23c6858361deeb46c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9c73a2a70d12be24ecb2bcaf74c1eb9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26e03526e28cfbb18f893ebcc3dfc0c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98a1532b78d15322829fff6448682702\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee8d5a14a38130a77623414ce6ee4fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bee0b4d100f784a89f713cf59ae7eda8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fceb8d7e9aae08b848cb5dc97b345c3d\",\"labels\":[],\"modified_at\":1768937324.720737,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6e6ad930ee7d37c2aeec57f725e8dbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77913513918309cf18ebe9a75f1af7bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9925ebcc60e4395ed603afbf5a139a72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.stairs_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"64ef85094caeca25ae98fa076d8c6ab2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.right_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63eb7490ebbdb77e4e07c750649c0110\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa8df4191c90e2069a0650185f007b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe3864550a3efb648fe327037ea10625\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8522f9d656d4ee8d60c972ef318b12e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"381daefc1183f93859612b03573ac4e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6dad265890c82659855a7c138b8ff20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2143f3dff81f749104e0882d5274088b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ba145ce3192c0052224a1909e8bfed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5cad207f07383af83050f38c418d4f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10ece451d2f337805ce9472f298d5025\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f40809067c9ee7888788e40620862448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b230d1dbc4c26ac2bd56e50bef6b57e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bceed13702f89123dd582c5438326a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba603234d4704fa0d097770442b26637\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9b570d6459263411f32ba20823378e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"540f56f2db42ef17ea074b6d12c6a8d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b882b539f37696ac5b0d72346094808\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e335a2340c99f5c831c30988019f4291\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1496ff3411098998299e6b70a8a6ac8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3e68f4e23f1a8c2db67c33fb020b7ad\",\"labels\":[],\"modified_at\":1768937324.724768,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57ec7dd098b7d22f35ef2adb35070c44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"580b0c98b0af40ef97ebe8526b5dd762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"", - "offset_ms": 73 - }, - { - "direction": "recv", - "type": "text", - "payload": "button.right_upstairs_hallway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc7acfeb1f1383b3f1193746d7effa9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ffd52e582ef700cc04806eef2286427\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f104dff69eb4b8929dca5770b0071c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca88deb31ee64fe", - "offset_ms": 75 - }, - { - "direction": "recv", - "type": "text", - "payload": "9db769663ff3ca08\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28846a193465e0feaf80158a9d92cd87\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df83d525d06cd5c6cb8935d53899ecb6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8aa35ed55a01305e566d54d73c674a13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4efd6b7a05ab072f70351db23b242817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96372675cb474b8a3a33403573ccd041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19d3b1945550830c400d18eec7936d10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"768825fc5893ae8c1a68cee71f34d430\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f0f3f4d2f6f41f46a7fc5883c19f7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f779f56acb8df9a45c5e26e1d34aaf94\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e88349529a6577002d4572cdcfa7ad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4113ed3a769b963fd4a00ddd0932f173\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc9935b81c48df8d37aee1e17845afbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05286428dda0b418578fa164c2ec2f41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7993ea69eaa97bcabc92f958925362ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9bb313fae31e282e00d2a262c1be84e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a33f6dc15ebeb5c65a8da89a90da3c76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eacc493fd250cbccb936a793286c7939\",\"labels\":[],\"modified_at\":1768937324.728547,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eddfdec1717ef07c1a822b3f1c6d417c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bbc32f88ebae70bf8372daf6ea6f84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"824e2082cd5cfa0b434b927daf025f91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f0851ad45568021e7ae5eab17e2673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"797330642b50fd7cc717526490b5cd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81aa7a7763b626a16c33da9baf51a380\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08710d667a90994008b9c2e51f4bbf49\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c7586cb4377fac8037833b67b9b555e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bff0a946287e8e81b4791204fb0c4b6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c91612079311a00400f01a0e5906a212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ba6d0c2e53883635ee9ac22d8e850f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede8b905bcee1104ef3416e5edadc25a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1ec16e8db40ca002ed689cad642b9f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05f81c05fdfc78fd9a4f8f4a1c8b8640\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53e8b9304e649c2f34dd0959606500ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b036c6bc350aaed23e9f86bc06cbd2c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a3739602f92462bbeac62fddc838fbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471c0a1606542b0d7f960c1d2922d7bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce49f041cf870cffd3f0df35ebb0b76c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048378228b0fc98e250dd66ec6ac6ad9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5e40022e450e73c4b5ab1198e302462\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d78bb4acc54d779836cde9c8c6a2f8f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79490028fdf09eeafcc7a7e0ad2d160f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f1ed32bba3d33dd34695c661fa72adc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51e3619b9800abefc65f0b522124c7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a1866797815d855c958561d455ffd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f0626cca53d88f5dcf005b18180e9305\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea487f330dfbaf833ebf624ed9896db3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.kitchen_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a635928a8b31bab1a27474ac2f6a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56e02b860edbebacfde760983dc798f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e605e68d92150816bc124ec684b725f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ff656e62d6fe3600aa3adbc8fb526a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec53255b3eaeab829b0d155c429e1d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a08806049e02892d2f6a3d53113f1db8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f3c6699a41458e7aec2b1989f540a80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0933863db47ac364ff1d232f8b46e9f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63481afc3a760089087eca73a0f651d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8957d79e5cb80b0c1a20820dc97b0a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a60f74fb0f1301397480c82b1d54ed5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b504e536735dfabc28835d2876bbb23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fbeb6d2c5a857c79c70e7bb0561fad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fc4e4d47d9a676285c15a975e1d3c36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97f291f24fbe5a30e18bb12dce1a6676\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d21bfd9435eda404f287c3abbad94d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0444d51382f134ceeb06a73d4f3a1cce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c05a4adf47ff0104122a9e4dbf7fadd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4aeaa7e71c122a5d88a3b1882ad8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b17374a4c0dcb067542fc6a74220221\",\"labels\":[],\"modified_at\":1768937324.749696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15c2353076b1bc70f96467ea6", - "offset_ms": 78 - }, - { - "direction": "recv", - "type": "text", - "payload": "0e93883\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_local_programming\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b8266fddd3dd1a3fc9c9044bd7f7d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Programming\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18011a3dcbe5a7f5c93c03f151658078\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2e6dbe9ad453568e0826d771078d367\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b381daedd2239", - "offset_ms": 81 - }, - { - "direction": "recv", - "type": "text", - "payload": "9332d0c23beca269986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.jenni_office_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1db1d985f5d174ebf175d27b918704de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e96da560109bfc549eb175d77df5239\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b773d9a25d7bd00ebb8c9b90fcfbd8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5deaf7bef811b681c4e8b76c77d2db39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a8dfa6c8c5decf4c4be882afc702163\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef6eb92baab404af7fd61ba41069d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e5b7d53a4b2adf058011f65f0e4ac19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c184dbdd6ad17f8784d17e874aa0d0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"967915145f0ef87b05cf3ec61ff92c4d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e7d97417712b18fdd39510f53345f54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9e05ed0d78214c146c191a7915fc2af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5524e4843b13f72a0b8d3c36529cecbd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"462517ea07b522dda3d29a5d77358b07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97bfc53818e1e5d2b0c76cd8c7ca68f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad2f5c181c586e3bc45dbfd170cc8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a205de2be1537a999eb4d266b7086c40\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da5602526297ba1f96d40f0e7ecc0f5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e10162dc3c84afe280c5a18dd51e9b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc24c82d16bd17b6b68e0b2f6f3f4ea6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001f6b44d64baa1ab159b150b478007\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e80550caccd4b20ad35acf4ca40d92e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6b3bb5ca29c4ba1a5f51a07c342319\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d442915fe41090821ed760f0fccea89e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae41e29abd52b9682303ac5e2c41635\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7de9997e9e1a3ef46e7bef4deb0a659\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0f95b7e389e44036f819bfaa12835a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9b9926bc3aead0f4952441c76387ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.front_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e18e30d8c73b2b7d8f56d6d8a72444c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5da04a067a75da78e01daf28eba1cebc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef81d350ae0a3120308f207a382754b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c93b8d9c39bfb59bb63bc28a67369b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c4bd8ae88880be45a949ba732dc061b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50561c8d822c3b26d448cccf525cd1b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b49703ed535bcef72a83f0289633087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bdd2faee34bb34a5f744a8881cbcc68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e5c2c80d8e6863d72a81c9dfe05218\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93d5ca265b8193cdc3e97680c6db647f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d95b3c17713874a2a9d757e5515f9a0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eff4988dfe92e73c693e77473291a68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aac4d6311ff78700b94194d61356c75c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4448f7a424cac4aa39698e8890b4d84c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adeeb59701ce2173bd76622bf5fc040a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8102a65d592a4a456c8cda46f495d8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get E", - "offset_ms": 84 - }, - { - "direction": "recv", - "type": "text", - "payload": "lectrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ff20be2fc93225ec08b44330ce05f90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e23cb4f3bd96aff481106795ea4ac53c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c38948afd63807d9bea536058af2f4\",\"labels\":[],\"modified_at\":1728721846.364993,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dd9482ca71561ce5ec70dbb6aea6b3\",\"labels\":[],\"modified_at\":1728721846.365587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d299d44ce26d096fc59656441c155e91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ccf12162192b1db183d5e658ca8d5ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048c4c8a57e47dc7142d8ea6fa196a6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7984cbb544e0ef6af868a938894a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e58a5f4844984223a08cc57a1e2b5f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1eee0f58b4efc0fafbd2a40a8e11ed43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcd7f656cc785bc98cbe8849648c0967\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0bed885a5d924aba589b2583d05fd15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb6de87313ec6de004fa95b00aa6f927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d361feb6237b762704e0461d6fa7d83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b012aac779c2d71e28c4010032f7bcb0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8381ddf293ea7f56e0b6dc25d7a2f0de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ee4d83b710c21b6d1294eba54624b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eedec08306572ee3292cda66ec9bad50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ad3a714fdec28accbdd4c4e7de89a29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device", - "offset_ms": 86 - }, - { - "direction": "recv", - "type": "text", - "payload": "_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4db29e68a9831d8b83fbc34af4098986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b6a0c3b3f6f37b85e7d467dfca44c1ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea03c7aa1a8f7ee7ccad99b3c9ff4d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d565a0520b9f6299ef5cdcbeabfcda4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15cb859569c08f27db39dd118e8e87dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8507c90d370cbd16116be434d5246222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6474656dc92c4ffc2d68061062d4bd44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2ffa582700b450ce0892f6635734eef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dbad0e6f48a425781d17739f8795734\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6871d61691047f5f5f8a2003ab06bc35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2bf28252f61cd3cae9f59c22db2e929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status\",\"platform\":\"zwave_js\",\"translation_key\":\"controller_status\",\"unique_id\":\"4182894947.1.controller_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b6f1921f63105e65d33f275bbb06769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e2878_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.adam_desk_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7b32509cfd8e8b57f2135f982e8d34d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.adam_desk_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"744a5b039fbf04b72c13f42cb57c30a2\",\"labels\":[],\"modified_at\":1736355683.891054,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"", - "offset_ms": 89 - }, - { - "direction": "recv", - "type": "text", - "payload": "platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e2878_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4409a3f2be06b369227045d72f072caa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e2878_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b40a7ba376de7ec1f911de7228cc76f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e2878_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a23c6bc5a4861c4f54a86066cf26e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e2878_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e29a3d1eab9e6e7b39d4981814c1c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e2878_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9743c6abc46883a073a15fe1d32450b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e2878_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e52b7a6ef89176f6d30ae8b3bd7604\",\"labels\":[],\"modified_at\":1768937324.880394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e2878_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08d27aac87ed1eef797f4f56dbf0e5ef\",\"labels\":[],\"modified_at\":1768937324.881003,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e2878_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d396a6bef670fc54d085c5d175f16a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e2878_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e1f6a989fe00bcf10daa6fbdffd74c8\",\"labels\":[],\"modified_at\":1768937324.881525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e2878_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6852f43897d8fc7e5b971354177bc7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e2878_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2dd7622b83b59be4b859d62aae5fcfa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e2878_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"246aa304d51aacbe8c81d224279f1b60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e2878_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e787a2f31cb2b020e5a02ccecdb5194e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e2878_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c038f834fbc5de4047db5d693de5520f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e2878_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e318495a5de2c0ad46f0d9fcc212a1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e2878_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61cefcdb814557288d2f15616147ffe2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e2878_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a25d33a371e9d37b9e359fb3ab60102\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e2878_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"985029c1c4a205b9050eb47bfcb58278\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e2878_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88d63901ab44f88f1b109674d78fbe6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e2878_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da4ffaa9bcb00cf00f6048f46031c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e2878_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"596f907cc32b91ddcfc55730d567ad23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a1dc1ed378fd6ca5ea8531b3a2b0290\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"463d4f8bcc15b05ea1ac493576708a05\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48456beebaa2358ea71c3fdc9cf7ea53\",\"labels\":[],\"modified_at\":1768937324.522171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:08:8B-light-office_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"93c6c6544539cf899bad569ce9440560\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"260f603c708075690f0a0dc262c440cc\",\"labels\":[],\"modified_at\":1768937324.521066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:1A:86-light-office_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d4f33c22b2f134128499d170a9f81a2e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4316012718b14810c7ed8651d3e040ad\",\"labels\":[],\"modified_at\":1768937324.523393,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:05:0C-light-office_light_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c2328f12915a88e139203759aa099d80\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c58a3dcff1651522f7a004fa77854cf\",\"labels\":[],\"modified_at\":1768937324.525846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:07:3D-light-office_light_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fd4b4a826ba1ce85b11c2a14483964f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b81fb595012241623d52d08e29f7834\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c3957d10bb011bb12b3e6c41b598191\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd09a74fbce16b1ab27aa2b8ce22df44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26ef71b3733fe8af29953704041e8b92\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8f82b3e8f2771f0ab24c9839a858b0d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc545b29708c4c982c585913d9fa6f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e20e8_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bed_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63092158204e47a86900ac1d94b85d76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bed_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"765ce6a13ad4d227fd7d1df51c057076\",\"labels\":[],\"modified_at\":1736357560.669652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e20e8_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae1c3396e8bd72eb45ffd91d3d440d7e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e20e8_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887f889588a56f03619560b36016847b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e20e8_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd63c27148c664154b448d68dab14850\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e20e8_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c120e6c6942aca4361e8d3482d529b13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e20e8_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80be9a2f4eb93931f72869f82ee1a25d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e20e8_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b348375076eb71644edfa2d3a1a3fe5\",\"labels\":[],\"modified_at\":1768937324.888442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e20e8_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"14e92db25cdfa8cefc51b2e1ccc83517\",\"labels\":[],\"modified_at\":1775500964.404141,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e20e8_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f90598e2bc0b94fba4961f07483be83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e20e8_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2dc11642030b46b55567615c6b50cb5\",\"labels\":[],\"modified_at\":1775500964.40468,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e20e8_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a5a22be58f4439bfb5957f1b1ccdd5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e20e8_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab698dbf37373681bc08bbff54a7537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e20e8_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c22ea2a613d675a1479eb45f1993f33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e20e8_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b80991556b6a76854ca712e3dfc7496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e20e8_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed1e6c2b75bdc80fbfffad3c6cdb0aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e20e8_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99a6c55ed1a3ec824f83cd8b9306930c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e20e8_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66a0bbe3b51a4c4457e91b25d434b43f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e20e8_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.", - "offset_ms": 92 - }, - { - "direction": "recv", - "type": "text", - "payload": "master_bed_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a74556a0d4547c7c831b8f1e4753759\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e20e8_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7820433bb9beed63af31d3821944f306\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e20e8_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd7061bcac8bbe254b1298b5e4a41c1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e20e8_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1040da8c80ca7bbdcbed89aafe909b35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e20e8_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7", - "offset_ms": 95 - }, - { - "direction": "recv", - "type": "text", - "payload": "f6ee68ac821fe83edcd517dd51b7fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bed_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b80f0761cf4c725fabc1df8de30f0f4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bed Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bed_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d1ff20197a688334ed61ae0ef24610b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698022261893\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"375e166e0cda4a49184ddc7a3baaa4fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698131438659\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1516392955dea9d5c3987f65e1a21ae5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f262f6cf884c0de68c44d465232ef2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b77573023fd0e45cbd803efb780ad2c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3302b58f4523b9775deccc77aa05bf99\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a5224c58b24307c45e10299f3348cee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aacbb82d04534e5b5b389236a4c0f63b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0bd108d5e399f94d25c38981e1fa74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"717eec56b8ef81c8619737a303b154b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ced631fd54d05c61c0e74631e41c81e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7494f61b328a3fda8a55ab7a5fdf222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2e84cbdbcc51e4f48baf7214e76d722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71648192af447198dd4f8300ccc532e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ea641a89e1d849c3373b2c337c3a66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc0ff81ebe53c633db166a1af91cfaf5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e763fb2e22c28f390add28e636c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30be942857ce762791d50422aa7504d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"65a42c0fb4d243662d5cac0c4dd55944\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2abe6c30c0dfc40abca673632cc24f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b4dc28ae7f2524ca27c1706b5f16c88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f7707b0eabb9773200603b8bb1b32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20890daf170f69687407391661d973ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e0f4e90a3faba0db0361d78e006929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a82370728b30adefa3817e4cd46987b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79efb54b9582819a0637c7c994db3c02\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d5643409303cb984fe3b1510f5253f2\",\"labels\":[],\"modified_at\":1758660536.913726,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2c1ffa1fefe471a1db8c7975915cab\",\"labels\":[],\"modified_at\":1758660536.914575,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7f93fb1fc2ce5a89138f056d261f6c\",\"labels\":[],\"modified_at\":1758660536.915203,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ffc5c7999492de07a6ac08ddfbd6cd7\",\"labels\":[],\"modified_at\":1758660536.915773,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94f4819071ac098d75745bf9217ebafe\",\"labels\":[],\"modified_at\":1758660536.916339,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"762e6d3ba10d31145566124175888acb\",\"labels\":[],\"modified_at\":1758660536.916906,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b99d149c424b019412d5967bf59e2b03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8664760514c651576ea096f12a1f392\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1eff1ca3d5d08ce4e23061d9208cdf6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cf765d081c1063cc980327cd4b896b2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a7:98_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"250a48d09c2d5e25299e39b9a7a31a0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3f5c4f6251c9e5d461d24460a10568f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"810731b1b401be39f6e86bf0db1694e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aaabb95ae0d93dc3cb445aa90193ade\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:6d:d8:6c_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500bedb57e5c713e97640f8346c53669\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30a484b77d3b1466b9fbd3f5347769e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede974f57b59c7ba6453e2b9713b1b63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40", - "offset_ms": 98 - }, - { - "direction": "recv", - "type": "text", - "payload": "8ef0bacefad7f762354332eb3df58d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:40:f0_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58e0d06d601277431a4397c287295dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b90fcb72d686e7f16f444e550870f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"562d26b904b539814c5ad4460facd881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82cfe763a98e9bf75c35410890e39def\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:e4:6e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"affe0aa48114f479c924abd9c9d5ae4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad9ecd3f5664ecafb765d2a1b1c52651\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16d12c6b79c955c505c8ecd86eaa19be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_4_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"298bf015afa9856b33dc43e85563138f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:ca:59_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5387707cbd7934a7f17ad2bfc2edaac6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd375e9778adf92ad651ebdbc6a2a4b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ccd49fabdd295c62319e1e568a8bb00\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_5_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4097f2af48e3dd76fdb6f8d500af3e93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:fc:44_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26b67877c9a2b2cb3a8215b88a6bf42d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d92c178e01c229bef991c42a015295c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"947a6a6c9d9b978f8a32ba22a2b3852a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_6_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1453d3b4b1b9be768f4db7b8b7ba4f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:56:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4db62557803ea897de2e45c2dbdcbb3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c25ec789c92b4385836706e4644e878\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"168cb748cc49f12a335dd8dfe3dcdc07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca28d3e1aaa9e4f900aa7ca1ca3f9aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:b5:89_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d255bd26c49c0b8316f7e69de655ab0f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"stt.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b596632825fe1076787e2e00a1d029d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-speech-to-text\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"tts.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2927fa130f0baaf124411cfe176ebead\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-text-to-speech\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e19a53d8400b62c1b8986a02b5b5b0a\",\"labels\":[],\"modified_at\":1728721845.983581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.4.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2df5dbf8c580bcacc36d1c0bda2dce\",\"labels\":[],\"modified_at\":1728721846.001319,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.5.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2992a8bf82bdea8f5b4f3edf59345\",\"labels\":[],\"modified_at\":1728721846.008929,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.6.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d534d2f4ef518b830eb886757e17e71\",\"labels\":[],\"modified_at\":1728721846.027127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.13.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"701f561124e85d69fe250c6f5ccddbc1\",\"labels\":[],\"modified_at\":1728721846.035759,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.14.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b8ba7d5ac2d0d7b15ded3b394797bb\",\"labels\":[],\"modified_at\":1728721846.043408,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.16.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"703ae656d9dc0a91ed9349e574913af1\",\"labels\":[],\"modified_at\":1728721846.052172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.17.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f933c2cb7825c0c98616a1cd0baf665\",\"labels\":[],\"modified_at\":1728721846.057779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.18.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b467e6ece5165bf28ef33e1806d567c\",\"labels\":[],\"modified_at\":1728721846.063963,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.20.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4deacb3773ea5ede7d53b9b0c4cc1b98\",\"labels\":[],\"modified_at\":1728721846.071734,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.24.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"907ff6d2edd7e5fe5373d1f1409792f2\",\"labels\":[],\"modified_at\":1728721846.080476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.25.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"862115a3de075173eb494c7860ed31df\",\"labels\":[],\"modified_at\":1728721846.089722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.26.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b423d803ad851f36a74255a889186bb\",\"labels\":[],\"modified_at\":1728721846.099062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.28.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47516de4224b0eef5c0d003c0513060d\",\"labels\":[],\"modified_at\":1728721846.1068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.29.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6f7dbe7caae310dd09d478d46a3028\",\"labels\":[],\"modified_at\":1728721846.114612,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.30.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6278dc427336c377caa1e58c30ff092\",\"labels\":[],\"modified_at\":1728721846.120738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.36.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f72a7429de924578f7b9c3fb6d781a7\",\"labels\":[],\"modified_at\":1728721846.126794,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.37.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4411a0bf4d7bb1ed0f6f11343dfcd199\",\"labels\":[],\"modified_at\":1728721846.136087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.38.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b6bd22bb44d0c9f184f996e2ae77d69\",\"labels\":[],\"modified_at\":1728721846.14763,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.39.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a26fddcd069cceb68a34e3461a6e0a03\",\"labels\":[],\"modified_at\":1728721846.156271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.40.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe7380af04fc4c2d01ce456a97f9ef8\",\"labels\":[],\"modified_at\":1728721846.230796,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.66.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e62d502703a6419c34e8edd95c486814\",\"labels\":[],\"modified_at\":1725239521.486838,\"name\":\"Dining Room FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level", - "offset_ms": 101 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7bb8fbf51788176cdb83547a004935fd\",\"labels\":[],\"modified_at\":1725239521.488668,\"name\":\"Dining Room FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"643d73eb1fbe0ddfcaa75370f3c8389e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a43b45ea88de4d9219e8d2841b42ea4e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3298e1c38a53b3c870fed75d6968c07\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f041b32270f9966ec39f26bc7e960f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46581f02785bb70fdee35529c92d263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6bffd588d27f8aad7cc650604b61c2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c74bfa7715f144957d804f646c4799bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights On White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25c3d5677fdc630832ee84427cd99536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902139116\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cbcd941a74a5a7396aad84ed9fc7dabf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902226266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3f98937a77978b4644ecd2e3b22e8c7d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.leks_lamp\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7fc3837a77f3b273d02c5bb1bf0170f\",\"labels\":[],\"modified_at\":1768937324.523879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"leks_lamp\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:E8-light-leks_lamp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c89435003eea4c6873d070c3c97fe473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3d27d28caa96a13c6ea25d0171638780\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1da40bd512b39f99dd627edb13c06403\",\"labels\":[],\"modified_at\":1768937324.524838,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:68-light-front_porch_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d054016a6b2f868c331522d5f2a024c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a43e095361249391c95d346bead29de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d6e9bd72ac413f4c9765807a7a8829e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d43bf2ed96db238ff6d5a3d55b74102c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5cfc016d624d22f58b972535e2c588e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:4c:4e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab8095363203057cbe0b359e78a434fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08f36a4038ba7e9ed484f4e40550a93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e32158757eb5aba850a4d85abb2be672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43eb4d024a7ef32436fc15eda451e656\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:92:15_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ddded55b837de9c9ba5d6b539445a14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4dc39ab3f597be7b5698f6d43b17afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4a3dfc05ea5897c3f4ca6d122a9e755\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d66b459d9b3468bce28a13faf238f788\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a1:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66bd7310f75118cb61fe4439c1b2dbaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e4f14bcbc3db07c23bde15014153663\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08167d99b04cd3119c18bc3a2a03dc54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78908f51b09bf8868105eeca61df8b51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:50:fc_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c312f3943f53f013a1698197beec7d9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be1582024ad1873d0529a0f5b617a21e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce297c2ac2bc5a14ebb49b8600041d2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0f550f0c1c6f6cdd1f2308b2e154000\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:d4:63_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de8b6bdb93fd71244574b16898e15903\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0197af3b4e34cdf7ec9a96ce8415728f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bd54501fcc95714cad1dcc1cd31f4a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"148c8043f4ec331449594ce281de74dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:9b:c1_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40777cf802aff4a5b6ed5e3d5c0883f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c03f2a67067cb61528fa31b6ad9b94dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33c056e4fecb95c459544ce4bd40bc90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8810cf2748e6123026bb56d1577b6b14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ba7328fddb154e27b647e31c8da72fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05c1a4ad242b4000e29be97d7bd1c3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"27cf5f296894b7daac381bf03d05ed66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"469441c2849c8da30a2a3175c2bd6d6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5a2de0bde5a2e1cfb2116303d6f5be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13c83850a4f8bfbe494ca9f383a652d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e979bf5003d332a9115b787a3d2dd2b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"", - "offset_ms": 105 - }, - { - "direction": "recv", - "type": "text", - "payload": "Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe12fde8dd7a18b5da9350bfc48afae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53fccaec9ce8f17e7d03d9dc4c33cc19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e27853184c40850e3134ef8116e8673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb7eeef067360dbb615665e6de5054b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0a5aed8a599743541e88238fe0839cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e632ddf5ed06b6df996980dcd58537b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.68.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2be995612da3708ee3aeabf4ad49d8da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.68.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47608e4f8a0b2cedbf2cfff1d12cb4d6\",\"labels\":[],\"modified_at\":1728721846.246357,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"538ed7a8af31562cd0d7c19f8a64c8e0\",\"labels\":[],\"modified_at\":1728721846.246572,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5fe7e5df6a5ce5a5694b4ef947580b6d\",\"labels\":[],\"modified_at\":1728721846.246723,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bbab6b72b677a179c8bc1228ec0fa29\",\"labels\":[],\"modified_at\":1728721846.246866,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f6ab96f4e24907de75d4f673141590\",\"labels\":[],\"modified_at\":1728721846.247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.68.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"830fd955b0b9dd786b18a7cee2c59bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.68.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee2102e9596641854623dacdf86a7c10\",\"labels\":[],\"modified_at\":1768937324.645237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.68.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab9f2342cbb08659c90acff506df3b8\",\"labels\":[],\"modified_at\":1728721846.247129,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.68.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b57a46d4c309703d4a6c50351952ca1f\",\"labels\":[],\"modified_at\":1768937324.765615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c4d6945336b15e0bba9b9345eea008b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"430cb36836ea27ca6cc4cce37605dad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519b5afe350cad9e05b31596d69a6e8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d050ee7382f25f72284e5cbadeff8d0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f44484b3ec3f6e65dc64ca21de50c405\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86bdfd735092c7fc659929e894fbc672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fdf886269a2fde49bd57cc2cbbd7fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"587df372365d29ba4d904980f49162ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c7888f5a2bca7dba8bd7f8db8e02292\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b273f3e4da902102c22068005d31362\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4923aba2eedfab503063be97268d349\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83882c656fefd0303211e999c22a2765\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17b020ebb60e265e372186ff5dec78fa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a821ce10588a5f5c21dca0d5a1caf1ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c2caa9b84384312cc3ee01843fcba18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df2245766365111ead8a1797d4aa1628\",\"labels\":[],\"modified_at\":1728721846.369908,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b21dcb9411ff471644d3bf7cc1f88d5\",\"labels\":[],\"modified_at\":1728721846.370379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b2a820515542e566358f93aea435a81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1598869d84f6256ea9af4669c9f1b726\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.upstairs_hallway_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2672687dfc897fee1ea56b169bb7c5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2119dc1ccc97edeb6e783ce5f0f7ad88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f562bfb09408687492fae4843c9aa192\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad9ecfe03131cd3738d0a0ce1ffc37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aab59415957dbb20b62b5aedb141e753\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e50482b2832b1c9478fd4d009eb8216e\",\"labels\":[],\"modified_at\":1737489134.76617,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966121423\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.night_tv_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2320f4922c41ae3049550a876bddadb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night TV Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"night_tv_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ae4f862e8267f53ba0ec595a391bd85\",\"labels\":[],\"modified_at\":1737489109.545107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966772353\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ce35a8be192434170cdc92d71e7ef8\",\"labels\":[],\"modified_at\":1737489123.678107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966888905\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a445cca6a8488132b472a230b330f318\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d07c497e4fb52fab5ac3b5d5dd718797\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"414", - "offset_ms": 108 - }, - { - "direction": "recv", - "type": "text", - "payload": "18b9d9c10e3c186e587bc21a21d95\",\"labels\":[],\"modified_at\":1725239498.826997,\"name\":\"Master Bedroom FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2995f0a20e4c3a95dc980037bc879f\",\"labels\":[],\"modified_at\":1725239498.828766,\"name\":\"Master Bedroom FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:bed\",\"id\":\"95df3f7dcf7e25696d4211430a78abd8\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"03dc995e582e7761e1a9f056d9a752d2\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"45e20dec6491a8436efbbf62938683e1\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom Not Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87bee964e12f4f43e8a77ca865687cf5\",\"labels\":[],\"modified_at\":1725149744.14575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709059722839\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b94ad5130258af70f3e44df53f10b5a\",\"labels\":[],\"modified_at\":1725239534.482943,\"name\":\"Master Bath FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69e5ff06047fee172494a676c9595b1b\",\"labels\":[],\"modified_at\":1725239534.484731,\"name\":\"Master Bath FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5bccd1e7de01b713e1b365a5823ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2080a737e85dba8c1c13d14ca844aa8f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49f9688732c5429b62c5cf2c39f5ebdd\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Presence\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"435b08e125fd43d1e5d67ed0d123fb6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709189535560\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_play_area_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"face7a647c70a0aef8bcc7901e21d7e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Play Area Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1710749651371\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_area_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09ad60b2d7e23af2bc93b52cb0ab7e50\",\"labels\":[],\"modified_at\":1775870416.948704,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Area Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_area_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.left_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1c843ff67b3c61ea82140a73d5ad090\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Left Upstairs Hallway Lights\",\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3cfa9649d5b814c5dff763cd6b76d9f\",\"labels\":[],\"modified_at\":1726995223.727702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b1734fd1032a711e2680a994926fa7d\",\"labels\":[],\"modified_at\":1726995223.730126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fea3aafb794c254c9981d05e2e69067\",\"labels\":[],\"modified_at\":1726995223.732286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f336d4a0a9c91ae0de81eb73b5e182\",\"labels\":[],\"modified_at\":1726995223.734449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f526bff502fe80b455c4e763a3a3db97\",\"labels\":[],\"modified_at\":1726995223.737066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43050533225ce62a16ed7cd33bd9e2d7\",\"labels\":[],\"modified_at\":1726995223.739279,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39cbc62a9910f6be46f1f17a716b402a\",\"labels\":[],\"modified_at\":1726995223.741579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913acb2bc62696d8db53f8508f1e1270\",\"labels\":[],\"modified_at\":1726995223.743703,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdb198312585d22902b2185c35214cfb\",\"labels\":[],\"modified_at\":1726995223.746068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a70affbb4ed972f8daec3166aa396f50\",\"labels\":[],\"modified_at\":1726995223.748907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"254c8b3136732d3bc8a34d91b8673ef8\",\"labels\":[],\"modified_at\":1726995223.751225,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e8694cb975a4e0c029556b1ba338d81\",\"labels\":[],\"modified_at\":1726995223.753406,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e0f89e58dac6a89d1cf0c76e956fc2\",\"labels\":[],\"modified_at\":1726995223.755504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"051e2e640e4c3291b09d55d3687c1471\",\"labels\":[],\"modified_at\":1726995223.757082,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f517ec7ef72b04193123c414c8c3f735\",\"labels\":[],\"modified_at\":1726995223.758519,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c26cf28b3b3dc9a6bf25c27fa43aae86\",\"labels\":[],\"modified_at\":1726995223.759977,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"971283eea4ef6a48d36d89350283bcec\",\"labels\":[],\"modified_at\":1726995223.761297,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9c3ea47b54daf6eb45abb3b17ad3724\",\"labels\":[],\"modified_at\":1726995223.780765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c44b3196aad16deed838f7a23fdb4098\",\"labels\":[],\"modified_at\":1726995223.783536,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5133e25e8f01dddbb6746b990b08f5ab\",\"labels\":[],\"modified_at\":1726995223.784321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9909d6d28676cc7831e49bde2470a7c8\",\"labels\":[],\"modified_at\":1726995223.785069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8482199ceba01d96d231e5f3a9dd368c\",\"labels\":[],\"modified_at\":1726995223.785825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23ee7b10cef9e4662e75be22310cefc2\",\"labels\":[],\"modified_at\":1726995223.78661,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd7c6e19c030f7196a8c11ba4b23fc41\",\"labels\":[],\"modified_at\":1726995223.787367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51d01dd8e96eb9b04bf64f2a2decc90\",\"labels\":[],\"modified_at\":1726995223.788115,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"", - "offset_ms": 112 - }, - { - "direction": "recv", - "type": "text", - "payload": "9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd490e9ecc4785dca9e2c059f36deffc\",\"labels\":[],\"modified_at\":1726995223.788879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7a4924a9ed506f1a7eb6ee0c5cbd0b8\",\"labels\":[],\"modified_at\":1726995223.789713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1a65aba3769dcf7d73471f08ee7487e\",\"labels\":[],\"modified_at\":1726995223.79048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9c01253348f061043bbdb1f1507a49c\",\"labels\":[],\"modified_at\":1726995223.791252,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d489d218083ad29b42fc36fef922cc13\",\"labels\":[],\"modified_at\":1726995223.792031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67713a70d56c5297ff28330a8713287b\",\"labels\":[],\"modified_at\":1726995223.79278,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9b7724b86925b6394800d7c6891b28f\",\"labels\":[],\"modified_at\":1726995223.793535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49962449d9f171c587ef0081e1cc465e\",\"labels\":[],\"modified_at\":1726995223.794287,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f4a5682eb43905036502e20f0d7cdf2\",\"labels\":[],\"modified_at\":1726995223.79504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4df9269002f04292ea5a51edd4f8c6\",\"labels\":[],\"modified_at\":1726995223.79579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dd1fa6fe3de99351f0c2e5b83f26c15\",\"labels\":[],\"modified_at\":1726995223.796556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69b62987fd5a78948f6cfdc65527fe6\",\"labels\":[],\"modified_at\":1726995223.811631,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"178c13bf6bbbb8549bf450a4b37821e5\",\"labels\":[],\"modified_at\":1726995223.81238,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60db789ceb739a57754a71f6a6341c62\",\"labels\":[],\"modified_at\":1726995223.815043,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaac7be99d399d761408d7db5905d168\",\"labels\":[],\"modified_at\":1726995223.815764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15733449911ed88087bdb00ce20a0bdf\",\"labels\":[],\"modified_at\":1726995223.816558,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"429e1e416e644ac2e44b56eef5823108\",\"labels\":[],\"modified_at\":1726995223.817315,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08656fa710c862cb6e1223682c8c5dc3\",\"labels\":[],\"modified_at\":1726995223.818008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1df54d5c58a731bbfab080b1a87906b6\",\"labels\":[],\"modified_at\":1726995223.818713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc787e9c0359d3254b83bd29ba368af\",\"labels\":[],\"modified_at\":1726995223.819405,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7d473447060f92cff978b9a385e9e68\",\"labels\":[],\"modified_at\":1726995223.820087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"055386324f02620a24c7ac18946b8bf3\",\"labels\":[],\"modified_at\":1726995223.820745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"76b3a961774fe3c039a138cfd39bb5b4\",\"labels\":[],\"modified_at\":1726995223.821464,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1d47fcf2e0a7f8584fd0e2f3c7df26\",\"labels\":[],\"modified_at\":1726995223.822171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6664341496258104260c74c65e71e362\",\"labels\":[],\"modified_at\":1726995223.822825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb8d289562757807719ada54917fd1b\",\"labels\":[],\"modified_at\":1726995223.823475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f21ff74ba7e2a3ef0d9c35584ff6eff1\",\"labels\":[],\"modified_at\":1726995223.824163,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5d811edc4036d76580e45069c0c9d4a\",\"labels\":[],\"modified_at\":1726995223.824852,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1dabea2c9416bad06dd40deacf241ca\",\"labels\":[],\"modified_at\":1726995223.825603,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49200ecce06beddd4ae77d277f4e14ff\",\"labels\":[],\"modified_at\":1726995223.82625,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd926acee83d1a62199e77a8dfb0aa05\",\"labels\":[],\"modified_at\":1726995223.826914,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5fd1ebd4c46c2508f368824f8e8152\",\"labels\":[],\"modified_at\":1726995223.828388,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2f8d02c9a7424a0357cba3b49eaebb\",\"labels\":[],\"modified_at\":1726995223.829147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_current_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2393f3fae020b53ab99954ca957c3a89\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Current Power\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_current_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_today_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d7106ff82fcb4a141f250d27a389e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Today Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_today_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_lifetime_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"96d9d3cb20150a5d688099ee3d59ebcd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Lifetime Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_lifetime_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1f5897cc45878de2eb2c5a5f1dff53bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad685a605a9e3440bda5246f75285600\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_online_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a1ff8defd768f741f55d65e9a7f1d5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"687378e33ac65e5d1c22ce92420ebe2f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a7c5493056d56a29653e33999a7ea9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d95ca2a85ce23754796fb7dfc047a34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18bc901d7dfcde1fde8bd62fae8a5113\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca63b9ad9d43371a52ac3613c109af07\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e07bc3bcceaeb880e71ed355f609b238\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd7571675990539e04f4f8a77406c490\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"211dbb3a7c69779aecea73e41f9c6473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"498fc8386aa58186c1fe7da679696211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e1ed71597a80a21a1881c86b442e6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3babf3437ebf12fd772a1aa54f4ab6f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e09f448a85712812e396a7f9cc1d393\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f9e1810e5a0c6896a04a053cc67f82a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f93e1a44de3fc2012749ef93295ddd9f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c20dea6e1ee110ac5ced5123e4947d32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"026a47e3e1d3993dc0ba1ad3c7446bf2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63dc709ee9f548ea607f688f93cf3234\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a06c4b37c7f1e33fe923bbd3149d2211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52154fde2fa3736366353ce80d9143fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5655856d7f5e8bd562dd95b8b8552212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7839750c868429f82ea60be31065090b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"345ca71bd27275be777e84858b01aeca\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f2714bb3fe47257fb7d75ed61", - "offset_ms": 116 - }, - { - "direction": "recv", - "type": "text", - "payload": "9377c4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca87da2f07b93a7514c465435b42fc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11ff9bdd285d12419a16b1c4046b164d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501f530e38c0a5ffb668116d0338b7e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79635f34cc537787519a607cef9c2b54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04f5ba7c71b00f927719dd6d1f76a24e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22a79eb3bd15b816fbd2353b874fb8c2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4e289027532937da275a2afe8a1e54b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c889610feda4c5d2919574a4a4b2e9fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6767893333bd2dd2faae401b17f6287\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9719fafdbf800c3e41c1247e9ddec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"709f79ac43c1de05cd9b92356daa783f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bbde1b266563b56db9b76c48b5e4c802\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cea749b7d0157bda9c8b3b8da7d0c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ddd7cef675562790ac794cf05db84eb7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3c559183ae7d9c9e8da0b9e9b52d2c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"361a1fc2a89ff20381d82750957d8e6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"99764c4bfbb97e8902e9a2ffbd269940\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6dd91fa0dddc72d17c5e9bc5febcb1bc\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d0458b6571acce21bda18fa4ed91f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"967c6fffba2e2da7a3df57bd136547a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"089c111078e7402a6d5d28aa89648473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d4c2fa1d9b5d9f01caeaceef8fa3b38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"456f0dd0f5c3770d056cc3764dc13d64\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77885fc4334d3e5779eaa71dac27688f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d0917ede83bd0ea1b545fb27ae2a4ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a36bcb574711bfe4e239bc12d85c031d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ccaf61f0c36aa89e2cc6b95d91fb0471\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05811a50db6dd93844c0b196d39d2acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"383a71bc0095d7e93746e6ea4f917198\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62cebac91c63149058b957314fb161b4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f283b802affc5a6ca5f1c7fc5de091\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee406fe27a3eec7c0c329ac2825c475a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"168791062da8f11816f49242dac4076e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"31ea3d07718bab198b5b9fc6af1dad97\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"305d5bd7a5ce07000c053958fcd55f12\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8835ef4f2b23d870d8155e9d6d5601\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fdd8ffe94c60d06b945af26a4352cb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"140d724fb5d154e0c3e6baab9f1b2c8a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"45d3fcce547a5c666959dfc27b70823c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"869b21114a648290559184a15408ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e821ed6d71bb8f39e7b129afe3af4d9d\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00d279b67b2610254703b2f54f7c19fb\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70fd486013d17ba726e8011eb3a73a3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d40dc815657ac375ec8fc97364d0587d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42be692b3321a3c3b636ca3c45f84b83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e32b957382e291736c3509dfdfd9aa4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"03f49ee636edc9301e014dade638cb4e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3846da42a87cde40ac6aea0bfc100b05\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"223c68438e658441b8a74c18d7440baf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c161128d74cde1b9df0ac526abe9a06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7b1a0a10460e1b2b3ede2e562a703f5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adc4e9307e5f4586c50c9b3d85f66b27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33f66484a0035b233ab171ed3b696fa6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"592ca6e323759a3be3e15662afff9297\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"893b80ec5dd05fb72fd00141fb518e32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d688d2d1bf1a31622070b2fb094c4cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4e72cd5d23acb39a4f9bc63cd0a21b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"da85884355ff3f4994596e259973be64\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2f84c45e7569a132689cdd9ed95b065\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a1f3186ff560113bb369dd97d7817da\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3db09b81e63e277131f85a8131a8025d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0b16c038d6c97b603911b86046cd25af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4eff38935461680017f59921787a34f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d18af827376be02cc0d3a1b6f9e01ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98977f8e3432f6e1ff5ebc307b85bf5c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_", - "offset_ms": 119 - }, - { - "direction": "recv", - "type": "text", - "payload": "0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4561d19a5716fbe7e1234f629b30767a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e9a028e3c404f0497df004b9975faad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f02043ae6d3212ba58eff7b1f7747496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1712170208fdab217e72e9ccd1bfd12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22e1a76aaf68da0ffb5403b0d2e2e274\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70909c374becd6dd73c82b4ff632b3c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0eae697b783ebba9efdb307f5ac8880a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c413014864a571a604089ceeb62ed55a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39450e87b48a58faf8da5a7a85133642\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5b1e2afd4751933180abf85fc4807f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a967fc1ae03d7238ecea72c0a0ee0d6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbe669bd0773be004f53e90bcb0df11a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56cddc0e777db2dbcc227171ce9f8054\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79b07b22b2ee648f66881c503ff3745d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d58f33bac449e9831ab4e1e98bc8409\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3859824896da3b25243af7a06a9ac8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39adcc1e155986621cc39a150c750070\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56317bf1aeaba04d33f714030392e692\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25113df24a5179f21d9e43126c27f58c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"466f741572070700ef6306949735069e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b12a0cd54325f7f91fee567870e913f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74e4b4ca3efba5d75a1727aa21c083fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"569cc4587b3157e2f58acd98ad72443d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74526ec1a4f846d0ddfaef484bc13493\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4203eae9736a10d438a8ee366d836774\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f8eb498aa41b793797942795f06c310e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Using Cached Data\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_data_from_cache\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_restart\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2bd4ab12752eaaa02b11c84a1e3290b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Restart\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_restart_ecu\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_query_device\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0ca0562ffcb02644dafae6227b475d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Query Device\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_query_device\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0a21329364115517cea604476281c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_inverters_online\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_003\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c5d8e19b2f7ef7dad358b83e242a65d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 003\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_confirm_configuration_change\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d25ae85a81c5a18a3965894f77da168e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator: Confirm Configuration Change\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e465c51bf88dbc32a6785a7b6dad1f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71fd02485d1c3201235dfebb5dcfe3b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e703e04564a595e11b85dc51d5afdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc9b9913efd0c2f8819a21443737e28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449a3a66c448b698823d287dee56c864\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_on_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"553ae2641fa529953c7c9c90ea018e2c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09447a340f5a951b315041b5dc38910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_scene_control_remote_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4108e95bdb9ab52a683d50b3c1eeb35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control: Remote 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed_dimmer_and_group_3_and_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96fb107556a5754998e6d4d86ade7860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed (Dimmer and Group 3 and 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24813797e3fe66e246880f75f276e964\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea0442a91f3c09d591f5ddfd39b6057b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"shou", - "offset_ms": 123 - }, - { - "direction": "recv", - "type": "text", - "payload": "ld_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0152622d192ee621b119886a52d711d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7d94a13fb61185a29df32572fff71f7\",\"labels\":[],\"modified_at\":1758660536.917488,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80eeb792b9601da317217fe3bdc1d46c\",\"labels\":[],\"modified_at\":1758660536.917716,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2068d0dc53aa2c783a1b70575e6d7755\",\"labels\":[],\"modified_at\":1758660536.917878,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d71e0683e8fa779d02db54bf283e7f92\",\"labels\":[],\"modified_at\":1758660536.91804,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1b34b38e43714428e109ed8d1c945\",\"labels\":[],\"modified_at\":1758660536.918202,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f895402c9d8d3bbe9eacb657e5a92be\",\"labels\":[],\"modified_at\":1758660536.918462,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.total_inverter_watts\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb73b03eeb9a43d362378e6ef0a89fb7\",\"labels\":[],\"modified_at\":1768937322.85093,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Total_Inverter_Watts\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"43febd2c80fd35383b1796826e76aad9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"notify.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de018507a30e449b6455fef4fe0fedc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980_notify_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ffbd90ab3bdee9a04e0e066a46c2d94\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eebcb05ee23fa77b122afde9ce221d20\",\"labels\":[],\"modified_at\":1768937324.525363,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:6F-light-mariah_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1dd305fbfb47d33a89aa39aa5305aa6c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bec4f47de87f948d86a066bb2ab2c70\",\"labels\":[],\"modified_at\":1768937324.526369,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:32:24-light-mariah_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a815fe83e1ed7dc52f51fbdcc13b71\",\"labels\":[],\"modified_at\":1726995223.830482,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e558dddb1abc1eeeaedc81b16c01f9e9\",\"labels\":[],\"modified_at\":1726995223.838912,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56d69a23bcd42abf56831b1b71694eb0\",\"labels\":[],\"modified_at\":1726995223.777968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"581ec35adc2c957a76a2c7fd60ef8633\",\"labels\":[],\"modified_at\":1726995223.807272,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e52835bcd7056629b1f1a99e20075585\",\"labels\":[],\"modified_at\":1726995223.837479,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47538b6ae63e2feeba44c44fae84ffa1\",\"labels\":[],\"modified_at\":1726995223.776542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2833708ebf6506c52dd79313ad59d26d\",\"labels\":[],\"modified_at\":1726995223.805802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1602432411104b1ff4945fed97b8e1a\",\"labels\":[],\"modified_at\":1726995223.763548,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c02d2d704d9242c0fbbed6a12f6213d\",\"labels\":[],\"modified_at\":1726995223.798062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d105430a04958aac57cef96114b7c07\",\"labels\":[],\"modified_at\":1726995223.831134,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9eae8ff171be93ebed91308be8af407\",\"labels\":[],\"modified_at\":1726995223.838195,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d811fdd8bfa49dab565b28ada1eac2ba\",\"labels\":[],\"modified_at\":1726995223.829815,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a920c156a1c4ac8ed2c8c7e1167e51\",\"labels\":[],\"modified_at\":1726995223.762419,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b11670409d6bdf9aacdf2aa240b77fda\",\"labels\":[],\"modified_at\":1726995223.797323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4aba70109c330d3dbe361ef2f93ae3b\",\"labels\":[],\"modified_at\":1726995223.765802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a56194f193842b6926637417fbce5d3\",\"labels\":[],\"modified_at\":1726995223.831809,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3566ef3b27ff4ad879bf2679940865a\",\"labels\":[],\"modified_at\":1726995223.7996,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9344a735c3f7b30f4f067902c5e8699e\",\"labels\":[],\"modified_at\":1726995223.842465,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d473f6cd0d1bd253b226a132ea261d92\",\"labels\":[],\"modified_at\":1726995223.810927,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa0f97c72bd513df9f4ae63f90bcde63\",\"labels\":[],\"modified_at\":1726995223.843171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555d62f0d7d846827fea1966f7a795f\",\"labels\":[],\"modified_at\":1726995223.782285,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b738544dccea104b025e9d0e05eb0a0\",\"labels\":[],\"modified_at\":1726995223.843932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3279a9c16bede20195a82db3a2d5ac6\",\"labels\":[],\"modified_at\":1726995223.813127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"edf1ee16bcab171c1c577c63ab97f10c\",\"labels\":[],\"modified_at\":1726995223.813846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d546166876e4b211dd195567284dc59\",\"labels\":[],\"modified_at\":1726995223.781575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"083bdec6d96d2f404c70507685f3dd3e\",\"labels\":[],\"modified_at\":1726995223.84177,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dca79ad23d502629a88f7013fa68932\",\"labels\":[],\"modified_at\":1726995223.810227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16aa1de89eab7ad3ed129eb4cc0ac3c6\",\"labels\":[],\"modified_at\":1726995223.771136,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e4964ba1e71db161a6472592eb9e740\",\"labels\":[],\"modified_at\":1726995223.80033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8570560d08e0567d3efebba878cdb6ab\",\"labels\":[],\"modified_at\":1726995223.832485,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4aebf740e9f7b9bd6c98c37d306197a6\",\"labels\":[],\"modified_at\":1726995223.778671,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fe20c2ae51615b00769343092fafd6a\",\"labels\":[],\"modified_at\":1726995223.807968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"068e413358fd64469c9a6e6f35b42a3d\",\"labels\":[],\"modified_at\":1726995223.839642,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aed56680f8f167daeb016cde5c2ba644\",\"labels\":[],\"modified_at\":1726995223.84033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fc85df1d90cebda5ab8b19c32436ae0\",\"labels\":[],\"modified_at\":1726995223.779376,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation", - "offset_ms": 127 - }, - { - "direction": "recv", - "type": "text", - "payload": "_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"021a49ce92e7476a582236b73b6e3535\",\"labels\":[],\"modified_at\":1726995223.802855,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6a40eac34dc70bf8dc5def5b0073fa\",\"labels\":[],\"modified_at\":1726995223.772679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c553fc274e111c629dd000aeec4c2b7\",\"labels\":[],\"modified_at\":1726995223.802104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df570e55b17fd5b868f21fdaaa452f90\",\"labels\":[],\"modified_at\":1726995223.83469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8e13752690827fa5e282140c5762e8\",\"labels\":[],\"modified_at\":1726995223.773442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b20b811f7244af9d9b23c2761c84b693\",\"labels\":[],\"modified_at\":1726995223.833935,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a5afa9a0787a0de471b3ee2c02657c1\",\"labels\":[],\"modified_at\":1726995223.808684,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8732cb4c313abb97189c10f0054108\",\"labels\":[],\"modified_at\":1726995223.775718,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed76a423a40fae6a4f24c824afc7805\",\"labels\":[],\"modified_at\":1726995223.833237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60203a103ce1b8ad003b1909fb4295b3\",\"labels\":[],\"modified_at\":1726995223.841088,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75a7375b9fceab8ece8c8d79beec2075\",\"labels\":[],\"modified_at\":1726995223.78008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d4429655a28d7c4d11c8ac748d6ec40\",\"labels\":[],\"modified_at\":1726995223.836044,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09fe4444cdc9cd9c1cb1d6365af990f\",\"labels\":[],\"modified_at\":1726995223.774958,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd10e1850ddc2620520d0c61a8bd97c6\",\"labels\":[],\"modified_at\":1726995223.804328,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4251e01f23bc9625e8a30bf7203a470a\",\"labels\":[],\"modified_at\":1726995223.835367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743fe98bbc2fed1b1af8b35cf2fb0ec9\",\"labels\":[],\"modified_at\":1726995223.774193,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6269259dcc0345571feab5284d7d09b9\",\"labels\":[],\"modified_at\":1726995223.803587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"524dd66763944a8be56ef44aa306ce9c\",\"labels\":[],\"modified_at\":1726995223.809514,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81b1a35be54fea6be3a192e4c82541f8\",\"labels\":[],\"modified_at\":1726995223.801083,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63bbd707bde7aeba07b3b5ecf5b7fa17\",\"labels\":[],\"modified_at\":1726995223.77192,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45170e964613947df7b4c57ebc0acd48\",\"labels\":[],\"modified_at\":1726995223.805066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8207f151f883386419a3a7979d3e5a37\",\"labels\":[],\"modified_at\":1726995223.83675,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e1e9be0c3cae58fefc0f6b8691e7327\",\"labels\":[],\"modified_at\":1726995223.764679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a81c4266cbdb0d23e04e4ae57619dceb\",\"labels\":[],\"modified_at\":1726995223.777271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6adb060e525a0b02802e9e8b6afa176\",\"labels\":[],\"modified_at\":1726995223.798783,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e88cf00ff5ffb15ab94f37a9aba66c0\",\"labels\":[],\"modified_at\":1726995223.806537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ede71d69993e45389dde366b477559a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.zwave_controller_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ada086edb92a8f505bced7c2559caac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8115e52cb16c7a28f096995d2b3b67e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f44e4ed83c8b09e72ec4ffd1df79953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f359fcdc3ab75ebc7bfb58acf0fe25e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46e839f2f5b0c124ad2a0b5c355967fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7b78974ef1f75948f492f64fd4859ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f780def514df1d90ed58dc922b80c574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.69.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_controller_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96d8fc5c5e35a76c655c9b71b67ef899\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.69.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a133bfa2a01f055c0c8d1bd38418a9\",\"labels\":[],\"modified_at\":1728721846.252105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e3e85a4be70951809ca9f5dfe3e4f27\",\"labels\":[],\"modified_at\":1728721846.252322,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6422ed2bc95eec7c77e8299c3132dd3b\",\"labels\":[],\"modified_at\":1728721846.252479,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e3039be25344df3c303f10d2af506\",\"labels\":[],\"modified_at\":1728721846.252618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"493c98ca3f5d28add9b1e76d9ea0fd2a\",\"labels\":[],\"modified_at\":1728721846.252884,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.69.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e9c3189a4b2c3bc9beaba32e4f6d17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.69.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba107fafd299fefa29cb886864a6b6ff\",\"labels\":[],\"modified_at\":1768937324.649113,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.69.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e97d839fc36f285ba34c95e0aedfb525\",\"labels\":[],\"modified_at\":1728721846.253026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.69.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_controller\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a09ee2d6dae31c200ed543531a11a022\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_status_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1aa247cfe4361de79507e8ccf24a9abd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf005657afa97b1d708b15d9ce67af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c16c9234ee62e39da6d416bd74c4bf36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9964c19a9f2c7334e16ed21f53a3b47f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch ", - "offset_ms": 132 - }, - { - "direction": "recv", - "type": "text", - "payload": "3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89981bfb5fb0a71346ba5c4a7fd7f436\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4bee7cdfbbbb6c2df376f6acbc9f8e0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a4d1c9f055f635a8a634822ce0443b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6dc9f7340d74772ba42c3d47103bc06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57972bc34dc5d7e963a491a8f73724f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a2e8fc6466088be70d409688c666748\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f693ad03c26b3259e108bc893124dc78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf35e53c8dc9a7f47de20aa646f2a06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a5ec9e8137600e298bee781d72b83af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"284a0c5a0e4fbb0bcfedfc117d6d0cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae04ca93744aa073da36ab542919ff8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"049d7e26a1fd2ebae088bd47e33c28c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f3c6220aeebafd0398bd96fade2132\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be4b4db30be6b69c892b44b359c6b20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80d8ed745bc23622d5388e9075693bb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"306db4629c8a60e5464dd368235e8317\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c04dfad2dc4762af4bb76906a45d36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b439907fac4276ebd5799a625ec1ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb5b5d71754b964eebf3dabae76e6cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_dc_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b6fdcf38fa8ab2b6dee499c7d18e08f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.garage_controller_basic_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f54c77989f4d5e8568905b09f0c46f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"949433e099fb4164e0fafef364d9d3be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.large_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage-variant\",\"id\":\"7103f21d0a7b132c69440a9d6979648a\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Large Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.small_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage\",\"id\":\"efa8ffc287061c04b28a05e2d6789429\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Small Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_back_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"200b3bc82d4792b83862ab4c8cbb5d60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Back Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836786749\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_front_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25b6b2f05b818b741e6862688a763aff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Front Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836943690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x17\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c29cfef30f97af820f587cd0d380f6d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x17\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x87\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4dc3db0b7fb0e8835ad90f9649d49ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x87\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x87\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_water_valve_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b60d57c74b8a0fc026da3c5efe1ca529\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Water Valve unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Water Valve-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.neck_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b16d267f43e86640e991f613d652ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Neck Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"neck_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.migraine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e0cd7c0a5bad5564b84ba8e22f577d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Migraine\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"migraine\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.back\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a96f0af191e7ef39888e595237fc79d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Back\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"back\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.water_intake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81a9b155d2aa5e2ce0c7cb5dca44c82c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Water Intake\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"water_intake\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b24234ca56ac77e9c79f6e353a9de91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"648e83e3c8bf58cd2e4eff867c7f26fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc3f2404fff79b6deefc2d10c7d221fa\",\"labels\":[],\"modified_at\":1724358474.764135,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.mariah_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45abb940e65545be9eba91e9c7c27266\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:14:0f_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.joint_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78f692acbb46a9d5516120af473ee045\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Joint Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"joint_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de63e43f6a93586a800fa07684f40d6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724140995216\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b26a6c2d503838f2bd69b2b4425daae8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141048676\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68e5beb6d9c92149ac9c90cd78e98694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141102872\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.thermostat_aux_heat_only\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10172ebe8ddeadf985bb596b028dcae9\",\"labels\":[],\"modified_at\":1732123640.2771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Auxiliary heat only\",\"platform\":\"ecobee\",\"translation_key\":\"aux_heat_only\",\"unique_id\":\"511883021980_aux_heat_only\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":1724358474.76478,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.mariah_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4fed1642c4e2312aef35b63ec334976a\",\"labels\":[],\"modified_at\":1724358481.090975,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:14:0f_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543171,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_start_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20a9befee49729b0b2137b2abfa3f2da\",\"labels\":[],\"modified_at\":1724358911.543261,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric start date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_start_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543599,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_end_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65d71d7e1d0a884417f030f39de51b62\",\"labels\":[],\"modified_at\":1724358911.543669,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric end date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_end_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.98836,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.ha_floorplan_your_imagination_just_became_the_new_limit_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3784e07efac13a5e30236d87aea4fec0\",\"labels\":[],\"modified_at\":1724359451.989217,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.989902,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.dahua_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e20245435d618d476b342520dc05bde5\",\"labels\":[],\"modified_at\":1724359451.989949,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990389,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.emporia_vue_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33d53b6ba7f741c6d34066bffe18929", - "offset_ms": 137 - }, - { - "direction": "recv", - "type": "text", - "payload": "7\",\"labels\":[],\"modified_at\":1724359451.990431,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990856,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.average_sensor_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83923fd4d6f02182318adda6b96afc53\",\"labels\":[],\"modified_at\":1724359451.990901,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991326,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.lovelace_home_feed_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30d80177caf3df3331d797d783c5539a\",\"labels\":[],\"modified_at\":1724359451.991374,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991795,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.smartthinq_lge_sensors_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cd6da87bfe167df17bccc9b0bc3f160\",\"labels\":[],\"modified_at\":1724359451.991841,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.99502,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.fold_entity_row_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d2c850e540e1848f6d18f94e1d33df8\",\"labels\":[],\"modified_at\":1724359451.995069,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995516,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.card_tools_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa13dab5ed75447d38ec11bb05b39148\",\"labels\":[],\"modified_at\":1724359451.995558,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995977,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apsystems_ecu_r_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6355ba3eab69573857aa3095dfe8bb29\",\"labels\":[],\"modified_at\":1724359451.996022,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996442,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.hacs_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee6b6e287f399d2a0f06", - "offset_ms": 142 - }, - { - "direction": "recv", - "type": "text", - "payload": "9f2f3630f9de\",\"labels\":[],\"modified_at\":1724359451.996483,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996903,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.number_box_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4973abd138f62d11c94d23869d4332c6\",\"labels\":[],\"modified_at\":1724359451.996945,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997365,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.layout_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f6016a8e966604387a938ca589078bb\",\"labels\":[],\"modified_at\":1724359451.997407,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997831,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.opensprinkler_integration_for_home_assistant_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b81d07934da5c7e0354b8fcffd03768d\",\"labels\":[],\"modified_at\":1724359451.997883,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.998293,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.auto_entities_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7eaa56b622d4a80a22c66036a4e7bff\",\"labels\":[],\"modified_at\":1724359451.998341,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.000211,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"057af5b48646a036f034fd05c24730ac\",\"labels\":[],\"modified_at\":1728248033.394848,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00067,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.dahua_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39b3a5e25ed21ff451dd821e74135856\",\"labels\":[],\"modified_at\":1728765061.996176,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dahua update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00105,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.emporia_vue_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e29e7a00297a5a491404aa12c42c1323\",\"labels\":[],\"modified_at\":1726802997.261126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Emporia Vue update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001406,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.average_sensor_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"10b897f9ab5ff47d44ed99b8cad96a01\",\"labels\":[],\"modified_at\":1728269633.52911,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Average Sensor update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001753,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.lovelace_home_feed_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"692a965a89752f7152ac33da536bbed1\",\"labels\":[],\"modified_at\":1774138612.944037,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lovelace Home Feed Card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.0021,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3cb7c37711861e8a4f3c5450350f13c1\",\"labels\":[],\"modified_at\":1728226433.446449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SmartThinQ LGE Sensors update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.002442,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fold_entity_row_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f07711c04f71f779880758ee4fd3ca0\",\"labels\":[],\"modified_at\":1750126348.796186,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"fold-entity-row update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003037,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.card_tools_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8857ce93625614d4a532e41e988a77ca\",\"labels\":[],\"modified_at\":1774138612.945999,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"card-tools update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003384,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apsystems_ecu_r_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eb5eead0182826b4bd85b3cbbc8b855d\",\"labels\":[],\"modified_at\":1741914692.185678,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"APSystems ECU-R update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003737,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.hacs_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b4d63ea37ba5c94123db67da9a7b4a\",\"labels\":[],\"modified_at\":1725474380.986863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"HACS update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004085,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.number_box_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf9428ea6400cb62210ef5a817aa3f4\",\"labels\":[],\"modified_at\":1774138612.947972,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Number Box update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004425,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.layout_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9814393596a8063e564904eea508d5\",\"labels\":[],\"modified_at\":1724359470.337507,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"layout-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004773,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64aa16e9bfa85282bdb6b21e1f285a0c\",\"labels\":[],\"modified_at\":1728377633.939246,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler integration for Home Assistant update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.005134,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.auto_entities_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c1b0f1673df40ae25aff2e19e9bdb999\",\"labels\":[],\"modified_at\":1746450676.644499,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"auto-entities update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.878711,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d782eae7ac9b06c199b0499afff0d330\",\"labels\":[],\"modified_at\":1725237298.640764,\"name\":\"Living Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.880189,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a40c8c00fa4561861b93cac2ae12162\",\"labels\":[],\"modified_at\":1725237298.642678,\"name\":\"Living Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.620171,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95350dcc7aab2e2b8ad42eff96a3bbe9\",\"labels\":[],\"modified_at\":1725239509.709835,\"name\":\"Office FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.621822,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"457ea4d9622eaa89f01768b2d3cb13b7\",\"labels\":[],\"modified_at\":1725239509.711619,\"name\":\"Office FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9119d30965efa939f043665b8f522c7\",\"labels\":[],\"modified_at\":1725122973.950769,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d74e8506dabac922300249b97a64fd92\",\"labels\":[],\"modified_at\":1725122989.160884,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f75ee8a8e6a0e889e600b497c966f4be\",\"labels\":[],\"modified_at\":1725123000.642922,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.88148", - "offset_ms": 146 - }, - { - "direction": "recv", - "type": "text", - "payload": "7,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a80cd1fd55b60d92e924c5d0a86b57bf\",\"labels\":[],\"modified_at\":1725123140.792999,\"name\":\"Living Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.62291,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65796cc5504c6f97911d5984b7697240\",\"labels\":[],\"modified_at\":1725123172.764679,\"name\":\"Office Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.623792,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4870514fbeca2b830d674880c226e4b1\",\"labels\":[],\"modified_at\":1725123300.434383,\"name\":\"Adam Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.625331,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ae3bf2a8005788c86e4ed1db0e26deba\",\"labels\":[],\"modified_at\":1725123348.631538,\"name\":\"Leksi Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.626608,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"92cd99596879bed65510157a3e4440b8\",\"labels\":[],\"modified_at\":1725123370.960249,\"name\":\"Mariah Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.882516,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_couch_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df55257bb93d1c4d83ab27bb28cc7088\",\"labels\":[],\"modified_at\":1725128801.063257,\"name\":\"Small Couch Occupied\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.884521,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.main_couch_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d5054b087303392f4b4c1afa3087c65f\",\"labels\":[],\"modified_at\":1725211786.993681,\"name\":\"Main Couch Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.885552,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.massage_chair_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6166b7fcdd2cb9ddf567fd2ef3444519\",\"labels\":[],\"modified_at\":1725216435.355422,\"name\":\"Massage Chair Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.041669,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.mariah_room_fp2_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05362f331bbb95c88b007da2281c2835\",\"labels\":[],\"modified_at\":1725237352.484952,\"name\":\"Mariah Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.047465,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"572e2d9b32244570b0d0b314a4c0b609\",\"labels\":[],\"modified_at\":1725237352.487786,\"name\":\"Mariah Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.051823,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5970db3a2e7b0259e89db44e4cfa579\",\"labels\":[],\"modified_at\":1725237416.812842,\"name\":\"Mariah Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.055599,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff08f0de11c1b85bc8cd0d449bc0c733\",\"labels\":[],\"modified_at\":1725237437.467906,\"name\":\"Mariah Room Bean Bag\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.059074,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6bfab91f865d492c15136b5c01e3ea3\",\"labels\":[],\"modified_at\":1725237447.998816,\"name\":\"Mariah Room Bed\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2696\"},{\"area_id\":\"mariah_bedroom\",\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237505.317515,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"scene.mariah_in_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fb3c6924d403f71d58b0bb0dabf3c01\",\"labels\":[],\"modified_at\":1725237505.338758,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Mariah In Bed\",\"platform\":\"homeassistant\",\"translation_key\":null,\"unique_id\":\"1725237502868\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237787.837052,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_purple\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"624dd2844883b69d29ed148095cfedd4\",\"labels\":[],\"modified_at\":1725237787.837879,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Purple\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_purple\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237915.884351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d456942a6323ea80effd232373cc5b99\",\"labels\":[],\"modified_at\":1725237915.885773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238041.890769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"75cf52bb1c878e6bff34b625af14e080\",\"labels\":[],\"modified_at\":1725238103.797624,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up_initial\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238636.640793,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3b6a0b1778090f2e8c408dda4f83c35\",\"labels\":[],\"modified_at\":1725238636.641973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238624495\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238701.670496,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9999f46a955a0e9f9084655c2278aae\",\"labels\":[],\"modified_at\":1725238701.671689,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238682447\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239006.346545,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4ce3b7950ba257b7202c193ad300ec6\",\"labels\":[],\"modified_at\":1725239006.347468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Beanbag\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238993576\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239193.188985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f01bb92164b255a0efc6d56ad8e2d267\",\"labels\":[],\"modified_at\":1725239193.189985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off_motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239220.921769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7ab674921f77ca79b116b8ad3510f592\",\"labels\":[],\"modified_at\":1725239220.923107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725239208837\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725240282.042413,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7ca8c0f7712e5307b5d9763e9de9b94\",\"labels\":[],\"modified_at\":1725240282.04309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.352226,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45c2f5c4dc505611cb256120f1f2830\",\"labels\":[],\"modified_at\":1727942594.370094,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.395121,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"642124e3cca72e7af2215ef9a52ec5b8\",\"labels\":[],\"modified_at\":1727942594.403475,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.425326,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"784abe3673b46c36d82dd6392e364987\",\"labels\":[],\"modified_at\":1727942594.425962,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.45199,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"150bd1465c22a43804cecfd9a73b625d\",\"labels\":[],\"modified_at\":1727942594.452773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1728721845.869036,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b63b865295f97c1a420158b97b7759ea\",\"labels\":[],\"modified_at\":1728721845.869115,\"name\":null,\"options\":{},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeout_ack\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.793984,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385bc6fdb93d7ac940f95ec7929b93a2\",\"labels\":[],\"modified_at\":1729542987.794601,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.818634,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd8c93ee004038b3809d9bf5e9651e47\",\"labels\":[],\"modified_at\":1729542987.819224,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927412.116135,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"955ffcb77910a5ce5c785cbb4567a5f4\",\"labels\":[],\"modified_at\":1730927412.117253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927396308\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.917166,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"987472eb0c0a9d61f145fe1ffa7ec389\",\"labels\":[],\"modified_at\":1730927493.919085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.920247,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"252a7a535fed97b7201a3d818cbf6b41\",\"labels\":[],\"modified_at\":1730927493.923132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.925051,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.entry_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97c48c7149d9b2887c6c759a19330130\",\"labels\":[],\"modified_at\":1730927493.927034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.928963,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.entry_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500c84effc8332e2f1c41a3075838240\",\"labels\":[],\"modified_at\":1730927493.932234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:cb:b8_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.935595,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.entry_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743ad90a794f64c648bd1898865e94f4\",\"labels\":[],\"modified_at\":1730927493.936077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:cb:b8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927707.36645,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1265c862bfdaa5054cae39b5f86e369c\",\"labels\":[],\"modified_at\":1730927707.367325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"173092768715", - "offset_ms": 153 - }, - { - "direction": "recv", - "type": "text", - "payload": "2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927799.13572,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d209c365471b448fef5272375db2ff0\",\"labels\":[],\"modified_at\":1730927799.137491,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927783620\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.182084,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf28a6cb7c5941b7f5f4a22f00a9f0e\",\"labels\":[],\"modified_at\":1731010174.182936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.185823,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff2608f2319d6a14116e79184fb9de\",\"labels\":[],\"modified_at\":1731010174.186057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.188286,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02c6d610044ed99bb98012037e946b99\",\"labels\":[],\"modified_at\":1731010174.188925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Water Alarm Water temperature alarm status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.189509,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c63c08e0a24247681b3d434ba4fb34cb\",\"labels\":[],\"modified_at\":1731010174.19004,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"No data\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.190342,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abb7f974abebcb04c1b547a6286cded4\",\"labels\":[],\"modified_at\":1731010174.190851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Below low threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.191145,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f614798b9e419b24613abcca2ed35048\",\"labels\":[],\"modified_at\":1731010174.19163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Above high threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.764381,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac6c25ec61299c2cb06e3968752d2b33\",\"labels\":[],\"modified_at\":1732137151.765016,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.71.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.765454,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"470d94d96fdc410faa1a1d853ce54872\",\"labels\":[],\"modified_at\":1732137151.765996,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.71.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.766523,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bdd8a3d8d5649e3c59bcd0afe21a3233\",\"labels\":[],\"modified_at\":1732137151.766708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767048,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e664059fc7a8cd2a4c332b3dd7c088\",\"labels\":[],\"modified_at\":1732137151.767202,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767524,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167a34dc614f039f41fc040f39e15d2c\",\"labels\":[],\"modified_at\":1732137151.767682,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.76799,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b457d5cbaa8a6d30f5db0cfa9205e7c\",\"labels\":[],\"modified_at\":1732137151.768142,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768433,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"efb4c2b5944fd9687778e2300f221aba\",\"labels\":[],\"modified_at\":1732137151.76858,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.71.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768882,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e0206961390409df0866659ba3bde3c\",\"labels\":[],\"modified_at\":1732137151.769029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.71.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.769331,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45bfe6ad87c79146ddc2780321ecc45c\",\"labels\":[],\"modified_at\":1768937324.655714,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.71.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.770858,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7befa0f701f255251d4f0713e34362f\",\"labels\":[],\"modified_at\":1732137151.771513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.71.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.588866,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2668e06370022ffa63e0af58450c4deb\",\"labels\":[],\"modified_at\":1768937324.772972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1", - "offset_ms": 159 - }, - { - "direction": "recv", - "type": "text", - "payload": "}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.590101,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e406cccffc6c5b1a623fd47a73eba1f\",\"labels\":[],\"modified_at\":1732137162.590693,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.591473,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02301ae4db885a81128ada934ab4a086\",\"labels\":[],\"modified_at\":1732137162.592025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.592528,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6fee332c76665dc7ef1990beab6911\",\"labels\":[],\"modified_at\":1732137162.592694,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593141,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb96048cc18af78626c04d902a8e7007\",\"labels\":[],\"modified_at\":1732137162.593303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593752,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bded064f1e92e2734f097e5c6fc559b\",\"labels\":[],\"modified_at\":1732137162.593913,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.594349,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7628d05dcf62a79ba33c64966408e4a7\",\"labels\":[],\"modified_at\":1732137162.594936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.595438,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5f170a01f0cacbeb2fd47e3cedac5f\",\"labels\":[],\"modified_at\":1732137162.595608,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596071,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d11c36c8b1ae89a2329b8466196adb6\",\"labels\":[],\"modified_at\":1732137162.596235,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596681,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"322ec7947d8e42919a0133cd17e116f7\",\"labels\":[],\"modified_at\":1732137162.59686,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597312,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_minimum_reporting_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adf1bb1bfe2a4f11cadf90f298ff2d35\",\"labels\":[],\"modified_at\":1732137162.597473,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Minimum Reporting Frequency\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-172\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_battery_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0afe97af7c4e124df81a1ac9cc483560\",\"labels\":[],\"modified_at\":1732137162.598073,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-182\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.598509,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10efd918aa86083fadb425ff9a4a4a34\",\"labels\":[],\"modified_at\":1732137162.598687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-183\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.59912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3c5669678178150a506c354e6f1be9\",\"labels\":[],\"modified_at\":1732137162.599283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-184\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.599718,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_brightness_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913286fe33112a9c3d531a34472f5945\",\"labels\":[],\"modified_at\":1732137162.599878,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-185\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601005,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_multi_sensor_vibration_sensor_enable_or_disable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3db884502b02d5d6a290bdf2d41907c\",\"labels\":[],\"modified_at\":1732137162.601212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration sensor enable or disable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601721,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4f6c95db11d3ac17bca07d2264430a4\",\"labels\":[],\"modified_at\":1732137162.601885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602321,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e453c0781a8c76f1e73aefc41ad58342\",\"labels\":[],\"modified_at\":1732137162.602485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602937,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5581de38027d90f3ef0cb1cd2c41d2a0\",\"labels\":[],\"modified_at\":1732137162.603098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.60353,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_temperature_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2fedd7c6df14c4b5c04f34a712b7e8\",\"labels\":[],\"modified_at\":1732137162.603692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for temperature sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-173\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604137,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_humidity_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e70223c7a145435b2ed9e879cd97c40\",\"labels\":[],\"modified_at\":1732137162.604311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for humidity sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-174\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604784,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_light_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"126c174154d818c34882bf702cd2ecb1\",\"labels\":[],\"modified_at\":1732137162.604956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for light sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-175\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.605428,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f8387b33452ea29b9bf9b484030fe46\",\"labels\":[],\"modified_at\":1732137162.605656,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-201\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.606111,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e4b96482125c77b71a934b2d26f18e\",\"labels\":[],\"modified_at\":1732137162.607041,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-202\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.6076,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e78741347ca06e5ec1b6e8c3ba8b559\",\"labels\":[],\"modified_at\":1732137162.607783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-203\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.608276,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46015d5ffd1da337365d54035bbbec1f\",\"labels\":[],\"modified_at\":1732137162.608489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609037,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5515fb214b05e9d99121d850fdc2cc3e\",\"labels\":[],\"modified_at\":1732137162.609207,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609708,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36b46883ad9a46c08d9ace6a631f3ab0\",\"labels\":[],\"modified_at\":1732137162.609873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.610376,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e5ec6faa8b7d0368a1aaef25db69cfae\",\"labels\":[],\"modified_at\":1732137162.610934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.611673,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7eadc541b21bdc09a3ede440e16e781\",\"labels\":[],\"modified_at\":1732137162.612885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.61343,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2ee927581c1eeef7e93ff0d97ddee896\",\"labels\":[],\"modified_at\":1732137162.613993,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.614532,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dcdb2a7c64feec4cb475111ab74f4d8f\",\"labels\":[],\"modified_at\":1732137162.6151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.615626,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88ae53a601694ce99968bd1f2e333c08\",\"labels\":[],\"modified_at\":1732137162.61618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.616467,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0edb4b570f956fbd585e38c96895ee89\",\"labels\":[],\"modified_at\":1732137162.616941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.617512,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"813c7f2ffa0892c3422fa632fefc12fd\",\"labels\":[],\"modified_at\":1732137162.618824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.619386,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93dc4ae4941e37f57821eab3fd04fdcb\",\"labels\":[],\"modified_at\":1732137162.619911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.620392,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6557f3d6a9a2cf2d58f3637dab11b0fc\",\"labels\":[],\"modified_at\":1732137162.621174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.621782,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7728624fe2d08c453eb1f5570b13110\",\"labels\":[],\"modified_at\":1732137162.622362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.62405,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_multi_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e01d9271034ccc4742137810a44c7296\",\"labels\":[],\"modified_at\":1732137162.624683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.633871,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28458c3031c3f4c248b9a590649b56b8\",\"labels\":[],\"modified_at\":1752106041.646984,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 1 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_1_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.634984,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8233a76f8e5b57101fa68fa5d761e95d\",\"labels\":[],\"modified_at\":1752106041.647528,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 2 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_2_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.635932,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4306e274bbda0cdb3c63207a6f31f939\",\"labels\":[],\"modified_at\":1752106041.647924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_rain_delay_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.636864,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8cfc6b3d9aa316b1a16b51c6c90236c4\",\"labels\":[],\"modified_at\":1752106041.648321,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Paused\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_paused\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.637837,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_program_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d677537788a5eafcb8532c16cf717224\",\"labels\":[],\"modified_at\":1752106041.648738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_program_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.638843,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s01_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78da84e6aefcc386e0046bf1b665406b\",\"labels\":[],\"modified_at\":1752106041.649173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.640317,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef03c61878db30aef1069ae462af17\",\"labels\":[],\"modified_at\":1752106041.649602,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.641282,\"device_id\":\"b", - "offset_ms": 165 - }, - { - "direction": "recv", - "type": "text", - "payload": "0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s03_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e7f2050e9cf5b99317afc5bc8437b60b\",\"labels\":[],\"modified_at\":1752106041.649991,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.642249,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd1dcda93262483eb387ef6990169370\",\"labels\":[],\"modified_at\":1752106041.650391,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.643239,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s05_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabc42d8716a5866c0d562652bb54f56\",\"labels\":[],\"modified_at\":1752106041.650775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.644241,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s06_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4f5a122107cab3853f733992b28f8c9\",\"labels\":[],\"modified_at\":1752106041.651155,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.646097,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s07_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3293c0b56291ae6e9a7bd65e0abd60ab\",\"labels\":[],\"modified_at\":1752106041.65154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.647084,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s08_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44907512c87223c107c95f467afd32ac\",\"labels\":[],\"modified_at\":1752106041.651931,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.64834,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s01_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a38e3beb90e104dd21a41eb83801ef5\",\"labels\":[],\"modified_at\":1752106041.652574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S01 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.649353,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_lawn_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68796744a1de3fd9f2849c34c91293d8\",\"labels\":[],\"modified_at\":1752106041.653615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Lawn Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.650323,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s03_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7192a3ad6d844197c490a376e3f70b1\",\"labels\":[],\"modified_at\":1752106041.65404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S03 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.651977,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9199ba6acba78346f517315046715e7b\",\"labels\":[],\"modified_at\":1752106041.654442,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Flower Bed Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.652985,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s05_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ac557888704caa59ca96935fd70b6d\",\"labels\":[],\"modified_at\":1752106041.654835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S05 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.653945,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s06_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6edb59dd3e64c4913f7de4e938acd59\",\"labels\":[],\"modified_at\":1752106041.655236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S06 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.654928,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s07_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"43667b7d50dd98b035e656e0bab89356\",\"labels\":[],\"modified_at\":1752106041.655641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S07 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.656158,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s08_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf30ad107bbd19dba22c07d3614de624\",\"labels\":[],\"modified_at\":1752106041.656036,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S08 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.657793,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_interval_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab30ba1fa24ea82ab2abbc82c046d16f\",\"labels\":[],\"modified_at\":1752106041.656454,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Interval Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_interval_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.658844,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_starting_in_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70fc9278f25b33ebbc97bee258bc426\",\"labels\":[],\"modified_at\":1768937328.473047,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Starting In Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_starting_in_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.659895,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"532c0ab02f8bacd4922c9e8fb929b233\",\"labels\":[],\"modified_at\":1752106041.657319,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Count\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_count_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.660553,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82c9f077606745c02474ab5be55a620f\",\"labels\":[],\"modified_at\":1752106041.65765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Interval\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_interval_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.661207,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ff12afe9d9a6186ccedc30b97f98c5b\",\"labels\":[],\"modified_at\":1752106041.657982,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.662274,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start1_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5eaab58a3eaa4725ee1acc2c7d0af43\",\"labels\":[],\"modified_at\":1752106041.65843,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start1_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.663542,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start2_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"900d108248145e047c6222d5dab38a6d\",\"labels\":[],\"modified_at\":1752106041.658749,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start2_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.664261,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start3_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53547b2a17ba809162f4c80e4c95c494\",\"labels\":[],\"modified_at\":1752106041.659059,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start3_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.66517,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_restrictions\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98120ea7a8c6aec01a0b4c930f4d271a\",\"labels\":[],\"modified_at\":1752106041.659582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Restrictions\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_restrictions_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.666191,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86585bafecd310548350429db5de5ac4\",\"labels\":[],\"modified_at\":1752106041.659999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.667173,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_additional_start_time_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ecea61af97b2c0c60f95fe1aea7a1c\",\"labels\":[],\"modified_at\":1752106041.660415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Additional Start Time Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.668408,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_start_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c19fa2860614bd4a8f05e40abc011676\",\"labels\":[],\"modified_at\":1752106041.660824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670177,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start1_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41990b44f367572d2e3191a12b36cdcc\",\"labels\":[],\"modified_at\":1752106041.661229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start1_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670831,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start2_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd85f5a98d6ad86127c3b5823860fec6\",\"labels\":[],\"modified_at\":1752106041.661525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start2_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.671452,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start3_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a20cd58ad5a61fee98b1af89696b25\",\"labels\":[],\"modified_at\":1752106041.661818,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start3_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.672332,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_last_run\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dcb6bda0ee19761e85c6fade1412faef\",\"labels\":[],\"modified_at\":1752106041.662311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Last Run\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_last_run\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.673368,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5559a9931dd1e25341ea309e5a82f85\",\"labels\":[],\"modified_at\":1752106041.662722,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Stop Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_rdst\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.674302,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_water_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c8cf60018b734e890992bd9eed2ec34\",\"labels\":[],\"modified_at\":1752106041.663111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Water Level\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_water_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676033,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55cbcd1e26e5440341dfb0355bd8bcc7\",\"labels\":[],\"modified_at\":1752106041.663513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Flow Rate\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_flow_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676994,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_draw\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2fdebd9b4d3a941ed6738378fd82c4\",\"labels\":[],\"modified_at\":1752106041.663901,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Draw\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_current_draw\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.677946,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"004c2dddd6a671840404bde623b57bec\",\"labels\":[],\"modified_at\":1752106041.664278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_devt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.678559,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"928cbf681537aefdcec79f502a31c202\",\"labels\":[],\"modified_at\":1752106041.664568,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Pause End Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_pt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.679532,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s01_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7c0622cc402dd16d31691f5bbd346a0\",\"labels\":[],\"modified_at\":1752106041.664954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.680486,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_lawn_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec3d3107b963ae9e98697b474d274f97\",\"labels\":[],\"modified_at\":1752106041.665365,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.682227,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s03_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee3da72518ce48c980b2b30be13c8807\",\"labels\":[],\"modified_at\":1752106041.665741,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.683445,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_flower_bed_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e68cff1ef73136d91264bef3338e6b8e\",\"labels\":[],\"modified_at\":1752106041.66612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.684415,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s05_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3fa7d6a18fd72776a962c38ebab8505f\",\"labels\":[],\"modified_at\":1752106041.666497,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.685369,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s06_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0400d09413e1943988a75450678b1ebb\",\"labels\":[],\"modified_at\":1752106041.66687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.686365,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s07_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8eeb163f3069a24eb8b02be77dabfe38\",\"labels\":[],\"modified_at\":1752106041.667242,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.687354,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s08_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a67713de10858c8f5573df5bf7deff48\",\"labels\":[],\"modified_at\":1752106041.667621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.688636,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.opensprinkler_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a0dc8f5e507c1f6fde72f904788cdbb6\",\"labels\":[],\"modified_at\":1732137663.689179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"OpenSprinkler Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_controller_enabled\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.689659,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_program_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5814850390edeb9e2eeda752197bc5c\",\"labels\":[],\"modified_at\":1750061531.449132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.690656,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_monday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a2e95f50238ccb6e70e50e56b98b27\",\"labels\":[],\"modified_at\":1752106041.668769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Monday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_monday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691244,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_tuesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5359ae42aaef47628647352704d15ec6\",\"labels\":[],\"modified_at\":1752106041.669071,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Tuesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_tuesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691842,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_wednesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edd1e6010cbe67594ea1ee82924f6f8c\",\"labels\":[],\"modified_at\":1752106041.669369,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Wednesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_wednesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.692443,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_thursday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4472ffa505c8f15ca6ab865630355d4\",\"labels\":[],\"modified_at\":1752106041.669655,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Thursday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_thursday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693014,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_friday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1be9033a6ff2cb2f995d8ef74c0afa5b\",\"labels\":[],\"modified_at\":1752106041.669939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Friday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_friday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693609,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_saturday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4abfd9b07e0f49d65f187324b9feddd\",\"labels\":[],\"modified_at\":1752106041.670226,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Saturday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_saturday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.694193,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_sunday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4357c7a7797385e7b9355358ded32f94\",\"labels\":[],\"modified_at\":1752106041.670505,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Sunday", - "offset_ms": 172 - }, - { - "direction": "recv", - "type": "text", - "payload": " Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_sunday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.69484,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.front_program_use_weather\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5914f46ad2cfb68aad3c6706cb684a8\",\"labels\":[],\"modified_at\":1752106041.670809,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Use Weather\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_use_weather_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.696024,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s01_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee933341e59eab4e1de01dfb380d57d4\",\"labels\":[],\"modified_at\":1732137663.696604,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S01 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.697116,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_lawn_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27734f41473d59fab6ac03f37eb7bfb8\",\"labels\":[],\"modified_at\":1732137663.697653,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Lawn Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.698106,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s03_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cddda4b9abd4a2112b5d386fb355d349\",\"labels\":[],\"modified_at\":1732137663.698787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S03 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.699266,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aebefeb6ed4d1b726994cfd307f4cd2a\",\"labels\":[],\"modified_at\":1732137663.699922,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Flower Bed Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.700567,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s05_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1b9b1f74a2038ccf2d6ada0f37c6fa\",\"labels\":[],\"modified_at\":1732137663.701324,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S05 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.702531,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.", - "offset_ms": 179 - }, - { - "direction": "recv", - "type": "text", - "payload": "s06_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2dd24c218d32a94dd0335de195f7f2d2\",\"labels\":[],\"modified_at\":1732137663.70317,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S06 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.703647,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s07_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d911d53c2592a07306a7b6b3b3fa66\",\"labels\":[],\"modified_at\":1732137663.704181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S07 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.704672,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s08_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"35c35dbbf2e3f45e3f06fa1dbae6b749\",\"labels\":[],\"modified_at\":1732137663.705194,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S08 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.706649,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"text.front_program_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37e6efeffb3cda3c638bab8e88d2538f\",\"labels\":[],\"modified_at\":1752106041.673929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Name\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_text_program_name_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.709345,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"time.front_start_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3218db77bd10bc723c7584475171ab4f\",\"labels\":[],\"modified_at\":1752106041.675042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.71041,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start1_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd2cee6ac188f1157bc1dabe9135722f\",\"labels\":[],\"modified_at\":1752106041.67576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start1_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711008,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start2_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8099b78938edadefa49d3f10af5d3a33\",\"labels\":[],\"modified_at\":1752106041.67606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start2_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711572,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start3_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"960046c7225148a4e2e04959c16b02f6\",\"labels\":[],\"modified_at\":1752106041.676347,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start3_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.982321,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"176bdb7963a4d2e8e0993dd991c2d61a\",\"labels\":[],\"modified_at\":1732138416.983212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.73.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.983825,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3830b7b3aafeadc0f0a4a4cafdbba3c7\",\"labels\":[],\"modified_at\":1732138416.984423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.73.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.984956,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a40c07eeee574d0a58ea7e537b5dddb\",\"labels\":[],\"modified_at\":1732138416.985133,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.985534,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2445fa8e4bd61ebde86370bc8523e1\",\"labels\":[],\"modified_at\":1732138416.985692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986061,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f41c04d85d79bf9677d75b8c16c04b\",\"labels\":[],\"modified_at\":1732138416.986233,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986748,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"194631aec7814b1c0eeba1cf4e786d0a\",\"labels\":[],\"modified_at\":1732138416.986932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.98735,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae9b1ef37b45bab86290b6d49def769b\",\"labels\":[],\"modified_at\":1732138416.988081,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.73.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.988538,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98007b9b486441a51a5279bb7fed6b8a\",\"labels\":[],\"modified_at\":1732138416.988715,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.73.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.989091,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49dc7f599fdd1f2027fe2bcf95006dff\",\"labels\":[],\"modified_at\":1768937324.663851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.73.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.990462,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33557f07cdf75bc2412ad0a885c0bc44\",\"labels\":[],\"modified_at\":1732138416.991131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.73.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.790002,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72e8b62740080ea3f946f208f1fb7bc7\",\"labels\":[],\"modified_at\":1768937324.779845,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.791422,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d04acf192d2fd0fc6179ab20b4104f4\",\"labels\":[],\"modified_at\":1732138423.792057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.792664,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f328919b5fbd52d7e3554c431eaecda5\",\"labels\":[],\"modified_at\":1732138423.793293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.793874,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57f5ea17ee03c8aef502d38ef8bd6b1b\",\"labels\":[],\"modified_at\":1732138423.794042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.79457,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd876b6092259cb5ead6b986d88ee635\",\"labels\":[],\"modified_at\":1732138423.794748,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.795911,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555c9ad71f1f7fdd6ee1463b6969d21\",\"labels\":[],\"modified_at\":1732138423.796098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.796629,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec00430092b4eeab0664d84f21df0171\",\"labels\":[],\"modified_at\":1732138423.796797,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797307,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88dc5c6dce5ae4332a1d45a4f0cc4c99\",\"labels\":[],\"modified_at\":1732138423.797468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797983,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ac88bfe9cceaa214b06d93c173a4837\",\"labels\":[],\"modified_at\":1732138423.798146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.798681,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc6960dcb05013fd42b9c69458102c16\",\"labels\":[],\"modified_at\":1732138423.798846,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.799334,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07a1c78242bf060670017b91e7d94d35\",\"labels\":[],\"modified_at\":1732138423.799489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.800068,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"043056745e8987e49706de0b21d04793\",\"labels\":[],\"modified_at\":1732138423.800234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.804869,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"daf1f79fbd90cabfc5a34ad780956cdb\",\"labels\":[],\"modified_at\":1732138423.805095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.806501,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbb8694e79a2ad14cb64c8f8e5d47a2f\",\"labels\":[],\"modified_at\":1732138423.80718,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.807718,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7424d3a9e7da60ac2ba9d4adfd79a18\",\"labels\":[],\"modified_at\":1732138423.808298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.808844,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24c0c8ec26f7f4075cd8e45ffcde07a1\",\"labels\":[],\"modified_at\":1732138423.809401,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.809877,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22bf5cdc43c8ee4de64819afa890cc68\",\"labels\":[],\"modified_at\":1732138423.811783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.812418,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8312156799f26c4fd9c0c0e868d613df\",\"labels\":[],\"modified_at\":1732138423.81303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.81356,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cde146585342c60fa01d113994424977\",\"labels\":[],\"modified_at\":1732138423.814241,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.816756,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a15df092ba0c6a7154348a4898157ad4\",\"labels\":[],\"modified_at\":1732138423.817406,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.618014,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416b91acfddf3047384e7ee2ae08296c\",\"labels\":[],\"modified_at\":1732138684.618664,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.75.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.619114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22ca26c888e4f320444bfe76a2069291\",\"labels\":[],\"modified_at\":1732138684.619621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.75.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620099,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3617768155b9135fc6e5f44b7e21189c\",\"labels\":[],\"modified_at\":1732138684.620274,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620594,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"118bc1f4edbe3b8896b0d0a6751133e3\",\"labels\":[],\"modified_at\":1732138684.620752,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.621063,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c365245a707d6329e913801bd91ca5d1\",\"labels\":[],\"modified_at\":1732138684.621225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.62154,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75eb84dd5f8d9bc95ca286dc1eeca79d\",\"labels\":[],\"modified_at\":1732138684.621706,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"", - "offset_ms": 187 - }, - { - "direction": "recv", - "type": "text", - "payload": "Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622015,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2777138368a9abe7f9f042f0023f48b\",\"labels\":[],\"modified_at\":1732138684.622179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.75.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622502,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c57670c418667c196d39dca2483a5d14\",\"labels\":[],\"modified_at\":1732138684.622961,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.75.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.623544,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15d78da0a4398cd66194710995979ef2\",\"labels\":[],\"modified_at\":1768937324.668105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.75.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.624153,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b3ad094b6fb47d54160dc27a2402c7a\",\"labels\":[],\"modified_at\":1732138684.624744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.75.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.636665,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fa00abf3918f8fac60b707bed85cdd7\",\"labels\":[],\"modified_at\":1732138695.636933,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.637438,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa0f8a73745bfcdc301019929f9f395\",\"labels\":[],\"modified_at\":1732138695.637612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.63806,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4687608966a4d41618657f50e8d41a50\",\"labels\":[],\"modified_at\":1732138695.638228,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.638762,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfafac5c6126794a57742fe36400fea6\",\"labels\":[],\"modified_at\":1732138695.638934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.639408,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03f80773d857d3dacb7fd5e038bb1f31\",\"labels\":[],\"modified_at\":1732138695.639583,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640039,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a365309305395eecd9b2293a9b2ed220\",\"labels\":[],\"modified_at\":1732138695.640208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640663,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e34194de8abc885606521034b1889ed\",\"labels\":[],\"modified_at\":1732138695.640834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.641306,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_motion_untrigger_send_basic_cmd\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99cf610a23717a99dbfe052a0bb6ea34\",\"labels\":[],\"modified_at\":1775549231.59514,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ared\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.64198,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_configuration_param_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b0ce3efe64c82a980bac45f2c10a14\",\"labels\":[],\"modified_at\":1775549231.595476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Settings Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-254\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.642575,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df497c8d1113a36c54c4db878e0fca8b\",\"labels\":[],\"modified_at\":1732138695.642925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.643371,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbfd1827b608ec30e50a2c8d9ac1738a\",\"labels\":[],\"modified_at\":1732138695.6439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.644367,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"067ff38baebfeba542fc2d93fd6d846b\",\"labels\":[],\"modified_at\":1732138695.64489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.645399,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d4d2fb65ea95c82c89912955ce2d74f\",\"labels\":[],\"modified_at\":1732138695.645909,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.646344,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a746d156e0579cb6a0c282ec8423459d\",\"labels\":[],\"modified_at\":1732138695.646873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.647407,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afe52a71944a7bce54e82309066779eb\",\"labels\":[],\"modified_at\":1732138695.648124,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.648719,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ccfe4098bf64d024b3a4280d44249f06\",\"labels\":[],\"modified_at\":1732138695.648905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.649411,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e4dca10b749b4af9b227c82fb79d73f\",\"labels\":[],\"modified_at\":1732138695.649587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.650062,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ea778c5ee2223334224e979796972\",\"labels\":[],\"modified_at\":1732138695.650629,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.65114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e84349c9c3f7be88ffdb3b431a0ba7\",\"labels\":[],\"modified_at\":1732138695.652399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.653016,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"714c36211355e8c6eed8b0f405f1af18\",\"labels\":[],\"modified_at\":1732138695.653613,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.654109,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7baadd3ceacdd507c216212cb3b87068\",\"labels\":[],\"modified_at\":1732138695.654668,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.655381,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4c051cf51f0348ae219dc014e260222e\",\"labels\":[],\"modified_at\":1732138695.655966,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732139452.718891,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed7dbfad7f175f21a652c7d0d3330d8b\",\"labels\":[],\"modified_at\":1732139538.777695,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1732174703.971423,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_lights_left_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"924db9892cc5519731a5c110545b3061\",\"labels\":[],\"modified_at\":1732174703.972284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Lights Left On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1732174695099\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.375013,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b816b35414f8bc2d381fc987e434b35f\",\"labels\":[],\"modified_at\":1733163448.545247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Connection state\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_connection_state_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.41395,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_restart_required\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61f46e69a48027efacc7d58134f627a3\",\"labels\":[],\"modified_at\":1733163448.547781,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart required\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_required_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.45896,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bfd3f57c36e237bbb9ad6afb80870b6\",\"labels\":[],\"modified_at\":1733163448.551286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.504733,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba7340b4cbd21643896dea7f309921f9\",\"labels\":[],\"modified_at\":1733163448.643092,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Log level\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_log_level_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.548301,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25f4a31cb1ccecc4e9469f5ea9cc3e0e\",\"labels\":[],\"modified_at\":1733163448.646729,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.593799,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_coordinator_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b842f63a9b81e3a2af0ef251ecf7ab4\",\"labels\":[],\"modified_at\":1733163448.649525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Coordinator version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_coordinator_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.644285,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_network_map\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12df011646a6b17600d15ab9fa6fe99c\",\"labels\":[],\"modified_at\":1733163448.653364,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Network map\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_network_map_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.690207,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aca42208b299223d614f58e3feb2c840\",\"labels\":[],\"modified_at\":1733163448.656796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Permit join timeout\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_timeout_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.783081,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b33f74080c92f71e53d49d2fc60e406\",\"labels\":[],\"modified_at\":1733163448.659761,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.829562,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e381ec7dcd1341f5776bd0a2886f9209\",\"labels\":[],\"modified_at\":1733163448.662249,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.873645,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a31d7d3cbcf76b4365c2756f2418ca31\",\"labels\":[],\"modified_at\":1733163448.665131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action angle\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_angle_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.917858,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_device_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a754f3acf910cd43563ed2676eedb040\",\"labels\":[],\"modified_at\":1768937325.657919,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_device_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.961537,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_power_outage_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb5cc9dfece2a14128321a8c8ba0044c\",\"labels\":[],\"modified_at\":1733163448.672203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power outage count\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_power_outage_count_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.00603,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_from_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9624c92d6b8366ef9cd1804493185dab\",\"labels\":[],\"modified_at\":1733163448.674787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action from side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_from_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.049561,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac02738c9db3", - "offset_ms": 195 - }, - { - "direction": "recv", - "type": "text", - "payload": "275fac7690e531555c11\",\"labels\":[],\"modified_at\":1733163448.67793,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.093516,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_to_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c008909747cd28dd536a03d115d711a\",\"labels\":[],\"modified_at\":1733163448.680929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action to side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_to_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.137499,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0e64fef54c101ab96c4081bad5a2ad8\",\"labels\":[],\"modified_at\":1733163448.683803,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.225948,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a932bc8c951ba62827fe0f990e2702db\",\"labels\":[],\"modified_at\":1733163448.686366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.313491,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_desk_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a28d2af38fd6ac7279788810b8f4d7\",\"labels\":[],\"modified_at\":1733163448.688208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.405348,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_cabinet_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f0bb80add1fa704cc495207b3f5d194\",\"labels\":[],\"modified_at\":1733163448.691535,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.740788,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df49492914ec67f302e0b6a69c122293\",\"labels\":[],\"modified_at\":1733163448.695336,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Permit join\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.27003,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_desk_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e62b257bc1586c7d6f6c0d9757293a\",\"labels\":[],\"modified_at\":1733163448.698409,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.357407,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_cabinet_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81a443a3981f42bf8049cb72eb3726f2\",\"labels\":[],\"modified_at\":1733163448.70122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1733166139.84886,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_z2mqtt\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad1ef16f58ed42f31138cf882cbd1923\",\"labels\":[],\"modified_at\":1733166139.849744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Z2MQTT\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1733166130068\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733166143.681489,\"device_id\":\"c4e6de4e26e939f7d433bf6d0a56df00\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.desk_cube_last_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42f966c6395b8ea360e7aa399ca72b13\",\"labels\":[],\"modified_at\":1733166143.682204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"last side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"desk_cube-e600b772e2d38b5b159093786d5bf1b2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.273786,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.thermostat_temperature_display_units\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3f00ecf5048b3f9e64a704e2ca9d92e0\",\"labels\":[],\"modified_at\":1733470323.274554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Temperature Display Units\",\"platform\":\"homekit_controller\",\"translation_key\":\"temperature_display_units\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.275631,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.thermostat_current_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6a708b72d19d3425a4bffde4773acf9\",\"labels\":[],\"modified_at\":1733470323.276196,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Current Mode\",\"platform\":\"homekit_controller\",\"translation_key\":\"ecobee_mode\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.276884,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"02eb281ddab89f579541da3c48364480\",\"labels\":[],\"modified_at\":1768937330.226836,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Thermostat Current Temperature\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.277912,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_humidity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aada76d6b800aa198307edc8f2f94b49\",\"labels\":[],\"modified_at\":1733470323.278441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Current Humidity\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.279066,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a34e9a572df91bb7a2bea56b6c7befc\",\"labels\":[],\"modified_at\":1733470323.279596,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Motion\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_56\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.280059,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a53e234c9a95713683719a42f1f7d16\",\"labels\":[],\"modified_at\":1733470323.280586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Occupancy\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_57\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.281426,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1dc2c5f590596a957c5d442d276f9551\",\"labels\":[],\"modified_at\":1775463025.83871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.282857,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.thermostat_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea789899d09226775d0daa530027b9d\",\"labels\":[],\"modified_at\":1733470323.283385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_1_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.28388,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.thermostat_clear_hold\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f25cd194cab996c6b0d11611f99101c\",\"labels\":[],\"modified_at\":1733470323.28457,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Clear Hold\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_48\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.854459,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0990beda4adbced67f9da8fbf14a5734\",\"labels\":[],\"modified_at\":1733904292.858855,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.892119,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e84579ecf7f13526a23c78731d3755\",\"labels\":[],\"modified_at\":1733904292.895779,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":1736319447.525713,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b9ac173954a17489fd6438677e48e78\",\"labels\":[],\"modified_at\":1741148806.093313,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Compressor minimum temperature\",\"platform\":\"ecobee\",\"translation_key\":\"compressor_protection_min_temp\",\"unique_id\":\"511883021980_compressor_protection_min_temp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.905972,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f04cd994bf4a7ca806e873689f0a05\",\"labels\":[],\"modified_at\":1736320519.906751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.79.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.907344,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e78e8aa7ecee5b3adb88cf6760e660\",\"labels\":[],\"modified_at\":1736320519.907957,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.79.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.908601,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aed21f201e4e9e49dc6e2fbfa6b269f\",\"labels\":[],\"modified_at\":1736320519.908898,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909112,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11d59ab7cf13cb711f9f6aa4d904b40f\",\"labels\":[],\"modified_at\":1736320519.909248,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909421,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea3a75a361da66c42a17ab240ac6619\",\"labels\":[],\"modified_at\":1736320519.909546,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909714,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9098616b205b24cbad4a88c83997e963\",\"labels\":[],\"modified_at\":1736320519.909949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.910119,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519aa11c201477c7828a3bc98fd1133d\",\"labels\":[],\"modified_at\":1736320519.910246,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.79.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911034,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bec59707ccd7dc529a90b1f098e5463\",\"labels\":[],\"modified_at\":1736320519.911218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.79.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911435,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef05212c0e42c4bfe401b3c4a440be4b\",\"labels\":[],\"modified_at\":1768937324.673569,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.79.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911768,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e515cf0760d43f4a81b2b3979145422\",\"labels\":[],\"modified_at\":1736320519.912168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.79.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.889798,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03c6b2e96c8518f922c1f7976a43224f\",\"labels\":[],\"modified_at\":1736320523.890247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.890604,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cfadce8334aa142551bb0271cb3a332f\",\"labels\":[],\"modified_at\":1736320523.890983,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891298,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e97ff3d04362f3398435b9c09280c19\",\"labels\":[],\"modified_at\":1736320523.891644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891976,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1be6ea19b6705198c44062cd8c886913\",\"labels\":[],\"modified_at\":1736320523.892111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892381,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1163e30b6367ba70cdb0bbe818bd86a\",\"labels\":[],\"modified_at\":1736320523.89251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED I", - "offset_ms": 206 - }, - { - "direction": "recv", - "type": "text", - "payload": "ndicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892784,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003c87cfb9a0c7a08e1e6a9413bb72be\",\"labels\":[],\"modified_at\":1736320523.892915,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893181,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a74f8edd31d0d23fcb5d7911f5de558e\",\"labels\":[],\"modified_at\":1736320523.893314,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893609,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd4b36349b64e4afb0efbd8cae27ceb1\",\"labels\":[],\"modified_at\":1736320523.893743,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894017,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dce04321343b8f8650a1638e540c066\",\"labels\":[],\"modified_at\":1736320523.894147,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894415,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a26041ffe1d767c1eb6d43d5eaa1062\",\"labels\":[],\"modified_at\":1736320523.894549,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895246,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"335173b1290e32b28674d76b3139a7e3\",\"labels\":[],\"modified_at\":1736320523.895405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895685,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b023c61c1897b503e351ab61f1397b60\",\"labels\":[],\"modified_at\":1736320523.895824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896095,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18346fff64001fa0e036649a9ce026a3\",\"labels\":[],\"modified_at\":1736320523.896229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896493,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c84119a15d609af8e002b03a3113d945\",\"labels\":[],\"modified_at\":1736320523.896637,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896904,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be85935d305056837922385a2d2166d\",\"labels\":[],\"modified_at\":1736320523.897033,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897297,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba44272b6f19db495f0bad8e04150bdf\",\"labels\":[],\"modified_at\":1736320523.897427,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897689,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60c44e307fd48158ef5a870f6e1ea15f\",\"labels\":[],\"modified_at\":1736320523.897823,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898087,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"779e519eb982bf17eafbb4185d8a5538\",\"labels\":[],\"modified_at\":1736320523.898218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898501,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param017\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13eb4a7de3ff753f4f4551bb6b34c3fc\",\"labels\":[],\"modified_at\":1736320523.898633,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param017\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898906,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param018\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2aade9b24c3cf098837c05f198a84196\",\"labels\":[],\"modified_at\":1736320523.899034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param018\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.899325,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a75845967c301f447fdadd705ccd7bb\",\"labels\":[],\"modified_at\":1736320523.899681,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.900013,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cce3b69f3c06d161dec626b5790ce5b3\",\"labels\":[],\"modified_at\":1736320523.900352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.901702,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e73cbc35e18958125287a74471c3a7\",\"labels\":[],\"modified_at\":1736320523.902118,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c40ab8344787dc7d21e29d547af9168\",\"labels\":[],\"modified_at\":1736353596.37888,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"config_subentry_id\":null,\"created_at\":1736353647.022559,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9b5fcaa227f65f8d411267b0c87e17c\",\"labels\":[],\"modified_at\":1736353647.026856,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Garage Motion\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354201.335657,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9b4fba2f11f641562e2a0cf02f5193a8\",\"labels\":[],\"modified_at\":1736354201.33641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354191063\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354274.958347,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"830666f260932ede8c27eb30fa0f2acd\",\"labels\":[],\"modified_at\":1736354274.959061,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354261558\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356766.764731,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f39e4da6bae1a1fb17133e0994052d7\",\"labels\":[],\"modified_at\":1736356766.76768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"1e0e99c393cebaf6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.582007,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a426428dce7d3a5ad82a464d6c13626\",\"labels\":[],\"modified_at\":1736356803.582649,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.882889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"109baa4874d527c5dce0fa51e7ec766e\",\"labels\":[],\"modified_at\":1736356803.883446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.157783,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18486e2eea948c77d599307cb1afac40\",\"labels\":[],\"modified_at\":1736356804.158354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.504037,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8b32e5fb84db954de2baea306396bcdf\",\"labels\":[],\"modified_at\":1736356804.504525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.770611,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7076de51a9429320f8f79a3b02daee09\",\"labels\":[],\"modified_at\":1736356804.771166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.094326,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0957b1480c95f751131df14c11de93e7\",\"labels\":[],\"modified_at\":1736356805.094874,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.332161,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b9d7f3508915fa3d10cc3763c4c732b\",\"labels\":[],\"modified_at\":1736356805.332734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.632478,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"654a35e29ec254b14f7342b941c57ebc\",\"labels\":[],\"modified_at\":1736356805.905853,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.134424,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ab3ad53acb2fb31265c2beaf81a787\",\"labels\":[],\"modified_at\":1736356806.223628,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.408371,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4a6ac60b8a79e875715714e9d98b53\",\"labels\":[],\"modified_at\":1736356806.65203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.77282,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9a1414d4439efae40503ca6f2d0de1c1\",\"labels\":[],\"modified_at\":1736356806.918576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.0732,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad998071e0851fcdac692503e773cad\",\"labels\":[],\"modified_at\":1736356807.073755,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.47584,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d14678412ea3738987ba070e0d1dc47\",\"labels\":[],\"modified_at\":1736356807.476394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.789064,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b94f06998a4a37f7fa272ebb5d4a82\",\"labels\":[],\"modified_at\":1736356807.792482,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.131893,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3de7df881a6322e0971ccea176dddd43\",\"labels\":[],\"modified_at\":1736356808.132439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.44137,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0585654f850aa6c80809d8159b522c\",\"labels\":[],\"modified_at\":1736356808.441885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.789329,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"14f7490f06cca0ba2fd96f2482289589\",\"labels\":[],\"modified_at\":1736356808.789536,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.075127,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"157241e5f848a341290b22d44b2c6cc3\",\"labels\":[],\"modified_at\":1736356809.075701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.53918,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e11a13791aa5e28f584841a514467af6\",\"labels\":[],\"modified_at\":1736356809.539734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.885361,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b318f00270d6a9b45165c6e5a44f637\",\"labels\":[],\"modified_at\":1736356809.885939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.259692,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52087a4595d9da9fbde6eea04ad63196\",\"labels\":[],\"modified_at\":1736356810.260095,\"", - "offset_ms": 227 - }, - { - "direction": "recv", - "type": "text", - "payload": "name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.533183,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fee843fda76fc8d65a653091ced38e8\",\"labels\":[],\"modified_at\":1736356810.533737,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.955986,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11f9a4558ce5421169edbeb2e555d5cd\",\"labels\":[],\"modified_at\":1736356810.956558,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.034081,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be48034f51cdaff9ee7e90fe0fef9d98\",\"labels\":[],\"modified_at\":1772683905.232172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.297521,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0819605111bcbcd4f7e39d21c88a07\",\"labels\":[],\"modified_at\":1772683905.835153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.540434,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e47ff59093cdd8c4b107074e038dcb3c\",\"labels\":[],\"modified_at\":1736399063.500589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.909769,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46db01c2adedfbe43630a5f6dccc6a99\",\"labels\":[],\"modified_at\":1745524780.005163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359657.453126,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3c001f67d93fb5258ae48c47210beb2\",\"labels\":[],\"modified_at\":1736399064.263031,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.581695,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ead35b09a45c83eee2915b09e240cf5\",\"labels\":[],\"modified_at\":1736399064.531165,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.882863,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"297937f666f3e5a757b1165cbc567ea3\",\"labels\":[],\"modified_at\":1736399064.803276,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.137825,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6389ef9fa7957cc4e8fd6626ea88768\",\"labels\":[],\"modified_at\":1736399065.081707,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.363443,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bedtime_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7af1d7a08626154d89c6fe3bcff2049a\",\"labels\":[],\"modified_at\":1736359659.36398,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bedtime mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bedtime_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.625494,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4b1ce8d630d3c1139af9939d53abb39\",\"labels\":[],\"modified_at\":1736359659.626054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.876657,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2de0b22a75bc9020376fa995d4f55f\",\"labels\":[],\"modified_at\":1736359659.877219,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.132724,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27be5d92b8d529284e3b279099754ea2\",\"labels\":[],\"modified_at\":1736399067.294751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.376811,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0d40b3310f8c0e746ca68a5444b0d1b\",\"labels\":[],\"modified_at\":1736399068.107397,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.60476,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d8083b32c92d976e8df45388ba480189\",\"labels\":[],\"modified_at\":1736359660.605316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359661.793629,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adaa4c83bc9bca3d19a9af0ec81a8eea\",\"labels\":[],\"modified_at\":1736399795.169023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.177957,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53eb4bdb941f55dbbd581722fbf5fcfa\",\"labels\":[],\"modified_at\":1736359662.178469,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.645451,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01129317545bbe3d974404fc7b754d4f\",\"labels\":[],\"modified_at\":1736359662.64603,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359663.612969,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41d3cf71221566d53676a59927079525\",\"labels\":[],\"modified_at\":1736399795.946725,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.24639,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9dc6b7eb95805f4edcd634365fed345\",\"labels\":[],\"modified_at\":1736359664.246953,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.510519,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7cb0a33d907765f791a568845f3ca99\",\"labels\":[],\"modified_at\":1736359664.51107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359665.204889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23e948de201d1840aef0bcac3f026dcc\",\"labels\":[],\"modified_at\":1736359665.205434,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359666.440523,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5707e58d3dc6e2aac0394c2fcb3b7819\",\"labels\":[],\"modified_at\":1736359666.441115,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359667.195641,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"814ba5368dd8ce19d270c59f3aa70d95\",\"labels\":[],\"modified_at\":1736359667.196212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359668.184418,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d79100a0ce88a95bb3508f92917c50e\",\"labels\":[],\"modified_at\":1736399797.665211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359669.14242,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09a91b37c035dc8468fb33c46d22b688\",\"labels\":[],\"modified_at\":1736399798.122323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.04832,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d6892d2d211d5450673f97825289382\",\"labels\":[],\"modified_at\":1736399798.705635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.992047,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"013180467fa74f25bf8aeac4685c0bb6\",\"labels\":[],\"modified_at\":1736399799.392385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359671.938631,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"beb1135710edcf430ee9c09b403bb4f5\",\"labels\":[],\"modified_at\":1736399799.790352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359672.866807,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6230302d762bf3ab79d12409c1231bbf\",\"labels\":[],\"modified_at\":1736399800.787298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359673.78006,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8be95f5af00e6d22af4f2e5ac47c6fdf\",\"labels\":[],\"modified_at\":1736399801.429003,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359674.698165,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72b59c954d688b0c5d56dc7515ecb8fe\",\"labels\":[],\"modified_at\":1736399802.363037,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359675.62217,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42c8a56ab854162a1745cb4a09dbdb4f\",\"labels\":[],\"modified_at\":1736399803.362446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359676.543017,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e317baaf0f76275291f5c2d076ee5e5\",\"labels\":[],\"modified_at\":1736359676.543581,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359677.44848,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"273ecd3a847f25375673692d0e17e105\",\"labels\":[],\"modified_at\":1736399805.439232,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359678.422497,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40b84792dccc1ab0c45ddb0dd47ace3f\",\"labels\":[],\"modified_at\":1736359678.423076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359679.312512,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7048d27edebd7601ca231221f6b27f69\",\"labels\":[],\"modified_at\":1736399807.564816,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359680.283382,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1743057c6757d698d0d65799731be65b\",\"labels\":[],\"modified_at\":1736359680.283927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359681.140505,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_on_body_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b75d2c31d19e391f5d178240a6c0209e\",\"labels\":[],\"modified_at\":1736359681.141105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 On body sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_on_body\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.090116,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2dead3b819e75b6b5211443a5ac78f4\",\"labels\":[],\"modified_at\":1736359682.090675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.9708,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34c63b944355c9e51b84ba3f6b774b6e\",\"labels\":[],\"modified_at\":1736359682.971298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359683.958379,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a7bf80c63ca3bee1b4879fb6b1ba99d\",\"labels\":[],\"modified_at\":1736359683.958927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359684.857759,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47ce2137b53c5b8f6d94331b3e025002\",\"labels\":[],\"modified_at\":1763328460.580366,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359685.654766,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ef2b4cd3a27c1b0051ac47549a23b72\",\"labels\":[],\"modified_at\":1736359685.655329,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359686.705391,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0a92448dcdd542b9e3e8a75fe04559a9\",\"labels\":[],\"modified_at\":1736359686.705956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Internal storage\",\"", - "offset_ms": 234 - }, - { - "direction": "recv", - "type": "text", - "payload": "platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359687.625097,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ab731ae8b74fd38f20f4fb6c43506c5\",\"labels\":[],\"modified_at\":1736359687.625639,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359688.516154,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_theater_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"703096c37b80a7d5fa418e41d4f81c31\",\"labels\":[],\"modified_at\":1736359688.516736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Theater mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_theater_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359689.529591,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b843d7d77fd0e55c1b9dbc9bcbc183f\",\"labels\":[],\"modified_at\":1736359689.530093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.333626,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab5205e7d9e3858de62ea0bb4794194c\",\"labels\":[],\"modified_at\":1736359690.334183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.652265,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fad870f9abcfa3727367793912e2f758\",\"labels\":[],\"modified_at\":1736359690.652862,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359691.299905,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wet_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6912d4a233b925946eb92a607354856e\",\"labels\":[],\"modified_at\":1736359691.300455,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wet mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wet_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359692.209767,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_activity_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6c82536cb995ebbba982c2ab021ced8\",\"labels\":[],\"modified_at\":1736399825.35309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Activity state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_activity_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359693.154691,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39a8afb6f701ab75cfc7fdb255e13a6f\",\"labels\":[],\"modified_at\":1736359693.155251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_floors\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359694.058948,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ff694331b621b1f0fda4e48e8bbcc53\",\"labels\":[],\"modified_at\":1736399827.024194,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.003274,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_calories\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d9e973ac42cfc50c48e30ad90288748\",\"labels\":[],\"modified_at\":1736399827.952805,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily calories\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_calories\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.81776,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2e45bb02534ec3078c8e0eea4344ca\",\"labels\":[],\"modified_at\":1736359695.818316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.856213,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e71d567db688d94b4e0e0f224fb9ce28\",\"labels\":[],\"modified_at\":1736803158.868554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.887145,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20c1bb2e7c3adbd94bfdfbdf8b652b8d\",\"labels\":[],\"modified_at\":1736803158.895143,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.925194,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"139f6cd0dd468aa9019150651d43f434\",\"labels\":[],\"modified_at\":1736803158.934833,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.958586,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d27e6bddb02baaf8770ba59450229223\",\"labels\":[],\"modified_at\":1736803158.959123,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.000035,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adad2dae764b1b4c5e4f1b8615f7c6ec\",\"labels\":[],\"modified_at\":1736803159.000571,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.020193,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"130892cbc52a3a5d41acf63fc52264a7\",\"labels\":[],\"modified_at\":1736803159.045045,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.05282,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4df84fa332afe1a1ba6e2afbe3e0c538\",\"labels\":[],\"modified_at\":1736803159.053349,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1737067561.611876,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_sensor_2_sensor_state_co2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bddd6f808427ba2a97adca93c8768213\",\"labels\":[],\"modified_at\":1737067561.612126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sensor state (CO2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-CO2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1740257490.056992,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de2bdae5c394ce75a2e72d945fd67d78\",\"labels\":[],\"modified_at\":1740257490.057769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Solar ECU Unavailable\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1740257477923\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.753328,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.under_cabinet_lighting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47a17625819d6de9a9a5a9fcb068dfd3\",\"labels\":[],\"modified_at\":1742764374.448547,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_light_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.742879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.under_cabinet_lighting_effect\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f83446880146584e49ffe7ca9d992136\",\"labels\":[],\"modified_at\":1742764374.450385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Effect\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_effect_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.780879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbc2aaaed253d3bbe2c0ea5e8596772d\",\"labels\":[],\"modified_at\":1742764374.496804,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Do not disturb\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_switch_do_not_disturb_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.829072,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.under_cabinet_lighting_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb2a38c1e988902be72a7518cea08f79\",\"labels\":[],\"modified_at\":1742764374.541366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467771.203002,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ef0cd9a1858bc9149e47113717459b5\",\"labels\":[],\"modified_at\":1745467771.203562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.019608,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9411a9c653ef38ea742ed08dc2a31067\",\"labels\":[],\"modified_at\":1745467772.03278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.047222,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37f7acf271e127f4e49d357bb0c5bb68\",\"labels\":[],\"modified_at\":1745467772.060087,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.227616,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc0faadddf515e78993cb2525101a9e9\",\"labels\":[],\"modified_at\":1745467772.228166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.295831,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2710c8eb328c4a060bfab6e1a34674fb\",\"labels\":[],\"modified_at\":1745467772.313176,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.391191,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7cc10320bf0eac221b1bbe0e37984f\",\"labels\":[],\"modified_at\":1745467772.408751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1745524781.207297,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"545c407bdcb5d35ec63d78f7a8878b00\",\"labels\":[],\"modified_at\":1745524781.207876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1745542172.503223,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18e492ba2733085e4e9f4ff0a5428df0\",\"labels\":[],\"modified_at\":1745542172.50526,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CO2 Alarm unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-CO2 Alarm-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.46243,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"747f703192d22d8ec8759bc94a1fce76\",\"labels\":[],\"modified_at\":1748219109.463014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.640996,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5198dc56db91ba7df5b10c7a015e581\",\"labels\":[],\"modified_at\":1748219109.655051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.685402,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb41fd2f446a5f8881e816b46c3f8feb\",\"labels\":[],\"modified_at\":1748219109.685973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.721723,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3d0012049fbeda8166b02790dc37b92\",\"labels\":[],\"modified_at\":1748219109.722298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.757491,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eba82b80d5619332290deb4a3efb5c84\",\"labels\":[],\"modified_at\":1748219109.758093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.785413,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5e763389817f6ec085e23be56ee54f5\",\"labels\":[],\"modified_at\":1748219109.792204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWP", - "offset_ms": 242 - }, - { - "direction": "recv", - "type": "text", - "payload": "QBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.110811,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee83713b4ec50e5a22b0f247fa5bc1c5\",\"labels\":[],\"modified_at\":1749590887.112776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.113208,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa86888ae5a955cc2ca0fb3ce1559700\",\"labels\":[],\"modified_at\":1749590887.11367,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.114151,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_shower\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"244d25b21371ef06dfbe70c38a8e3a27\",\"labels\":[],\"modified_at\":1749590887.11467,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.11557,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_shower_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"197264aec52c5bb54e81ebf28f841d6d\",\"labels\":[],\"modified_at\":1749590887.115711,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:82:fb:6a_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.694619,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"217b95c6b680c1836cdf60eb9da2f503\",\"labels\":[],\"modified_at\":1749590895.696348,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.697451,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003565fb8b8be878769578dc74c69752\",\"labels\":[],\"modified_at\":1749590895.699001,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.701685,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.matter_bath_toilet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a965f5cf56792192cef7e0ab7b9a31a7\",\"labels\":[],\"modified_at\":1749590895.703552,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.708213,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.matter_bath_toilet_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84160aed320a4e66dd6c9ad44039bd9b\",\"labels\":[],\"modified_at\":1749590895.708736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:83:1f:53_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"config_subentry_id\":null,\"created_at\":1750061075.141771,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49204eb2a92de917a9e42ff6f8f588f5\",\"labels\":[],\"modified_at\":1775870416.949195,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Master Bath Lights \",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180319,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_param027\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ea8e9374eae954b3bbd8d18020ca120\",\"labels\":[],\"modified_at\":1752102847.180555,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param027\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180971,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_separate_inputs_from_outputs\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca290e9cdd8d4d5d6b3073329b06547b\",\"labels\":[],\"modified_at\":1775490675.663286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Input Trigger\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.1822,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fb5086cf8fcc21f5e28d90e0db54c78\",\"labels\":[],\"modified_at\":1775490675.663838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"config_subentry_id\":null,\"created_at\":1759378690.394779,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"calendar.maya_school\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cca23ca8717983fe71c89426ca56c7b5\",\"labels\":[],\"modified_at\":1759378690.395441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maya school\",\"platform\":\"local_calendar\",\"translation_key\":null,\"unique_id\":\"01K6HJ8M54G71Y4477XK05AGBG\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386477.277947,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4097cd598a3a06c6f0daff8cad6ca79\",\"labels\":[],\"modified_at\":1759386477.279521,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1759386477130\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386507.028808,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be669aa5658d128e8ffcd6168710677f\",\"labels\":[],\"modified_at\":1759386579.806063,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387437.349538,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4820d645ddc7e05d31da79d542bdfe\",\"labels\":[],\"modified_at\":1759387437.351339,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"band day 2\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387072.988787,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_button.band_day_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3dc6766f5367c3f345af29958d10bc\",\"labels\":[],\"modified_at\":1768937321.234765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"collection\":{\"hash\":\"1b24d0ddf479ed85340a79f72c595317\"},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day 3\",\"platform\":\"input_button\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498155.515729,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_phone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c3949e0a3c86ebd635f939b4da67b68\",\"labels\":[],\"modified_at\":1760976737.49654,\"name\":\"Adam Phone\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"51e12b25d85b4b1e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.63507,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b25ffeb9832412e4729bc9a3554e791\",\"labels\":[],\"modified_at\":1774279284.833829,\"name\":\"Adam Phone Battery level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.848698,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bceafcf813f3d0c7f5875af49aa7014c\",\"labels\":[],\"modified_at\":1772691190.431663,\"name\":\"Adam Phone Battery state\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.380282,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52a1a4199f6226c81e7a9e280bf8a5c2\",\"labels\":[],\"modified_at\":1772691194.336662,\"name\":\"Adam Phone Charger type\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.561785,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f78b5a31c1f1797cecc8021a4bc283c\",\"labels\":[],\"modified_at\":1763016724.667262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.150666,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"753010fef896a676a949100adf1a5df3\",\"labels\":[],\"modified_at\":1760976737.499635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.996611,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093bf4d5f49f15e5238231d70b093df3\",\"labels\":[],\"modified_at\":1760976737.502342,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.632604,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b21e81370aec744ff4cef9a8bf0ef00\",\"labels\":[],\"modified_at\":1760976737.502738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.837407,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7107aad5e9b8e1943301af2a059e93ea\",\"labels\":[],\"modified_at\":1760976737.503069,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.908791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47c1557ded81eebf8aa0a96ac63d2841\",\"labels\":[],\"modified_at\":1760976737.503394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.362775,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29de90a8bd56b781a47d398184b68cb6\",\"labels\":[],\"modified_at\":1760976737.503709,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.387797,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b09b3df0b3a9f47a8e6eb4bb0725a8d\",\"labels\":[],\"modified_at\":1761859609.313035,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.086212,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"06c5550926c6fdd6b5ff1b6d10511768\",\"labels\":[],\"modified_at\":1760976737.504334,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.677976,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e02d2deb740d7a31ec1ac86e66289584\",\"labels\":[],\"modified_at\":1760976737.504647,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.113948,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e6cfd871a0249cfa6fcfa5cb067c22a\",\"labels\":[],\"modified_at\":1760976737.504954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.052956,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23b032cf9074ee4d0ccd20a2c7b170a8\",\"labels\":[],\"modified_at\":1760976737.505278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.298484,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"511534407bbe94e987b4e6b18616dbd7\",\"labels\":[],\"modified_at\":1760976737.505582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.564591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"630126c44d79334d10daaac76b3e6da6\",\"labels\":[],\"modified_at\":1760976737.505883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.859128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54186ed87499f0363a7a795031ac8091\",\"labels\":[],\"modified_at\":1760976737.506183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.072203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c107fd5dd3a23152c737aeacfb93f12e\",\"labels\":[],\"modified_at\":1760976737.506487,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.114625,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fc30dd8af197aa5604097778df128b90\",\"labels\":[],\"modified_at\":1760976737.506796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.74326,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a99fecae7b35c0c91c2d87db9221d854\",\"labels\":[],\"modified_at\":1760976737.507", - "offset_ms": 249 - }, - { - "direction": "recv", - "type": "text", - "payload": "099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.11767,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa5f2c7ce053d4544cf8d6062e90490e\",\"labels\":[],\"modified_at\":1760976737.508044,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.804439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6473733425a0a0786d883979d5b4aa81\",\"labels\":[],\"modified_at\":1760976737.508353,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.173261,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_wi_fi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1794c62e4b88cb613114ae22f6763cc6\",\"labels\":[],\"modified_at\":1760976737.508622,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.044578,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42417c7948736cba9d2a5224ad710014\",\"labels\":[],\"modified_at\":1760976737.508885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.833075,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b941b110fe0ebe77e2578dbf0457db9a\",\"labels\":[],\"modified_at\":1760976737.509153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.523966,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"120365806cf1ad9034b62efe0f58c093\",\"labels\":[],\"modified_at\":1760976737.50941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.731496,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad43a289a78ae9decb7a8bb8636ec15b\",\"labels\":[],\"modified_at\":1760976737.509663,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.578065,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82b4fccab26e5f8d9dc5b863a430eabb\",\"labels\":[],\"modified_at\":1763016726.90644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.923363,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681210dd7cb2b664dfc7160e4b59f9e8\",\"labels\":[],\"modified_at\":1760976737.510166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.508973,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"76b86a4aaafcf69e892ab189d3a5a37d\",\"labels\":[],\"modified_at\":1760976737.51042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.354383,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1337823dd9fe63383689acfe28169998\",\"labels\":[],\"modified_at\":1763016726.688987,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.723152,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e043cb0b1e1d248cb65f41b026f07c34\",\"labels\":[],\"modified_at\":1760976737.510914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.143052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2be1edbc1804fca84d30e0ff2af37d3\",\"labels\":[],\"modified_at\":1763016727.38029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.53214,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f72f7f7a26dd97cc36f76faefadc3116\",\"labels\":[],\"modified_at\":1760976737.511404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.594056,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff782efae98210cfe14a22d3d01023bd\",\"labels\":[],\"modified_at\":1760976737.511651,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.047203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f003eadb014be21895e4c4dc182b09c1\",\"labels\":[],\"modified_at\":1760976737.511895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.846127,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9688273e8fc0f9d29c7fae09c089596d\",\"labels\":[],\"modified_at\":1760976737.512138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.422557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85a174f235fbda9b9cdd6ef97bdb64eb\",\"labels\":[],\"modified_at\":1760976737.512378,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.203052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8a9981a0cce9ee63b08edc8b74a776ca\",\"labels\":[],\"modified_at\":1760976737.512621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.726411,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ded137b29a2ac9791fc1f1d244796b0a\",\"labels\":[],\"modified_at\":1760976737.51286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.751762,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"750907f9a2ecaf511d6767527d52e002\",\"labels\":[],\"modified_at\":1760976737.513111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.94591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cd9c953d266dd30bc5eb3151a5f2f66\",\"labels\":[],\"modified_at\":1760976737.513705,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.654737,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ac1339b135ff5cb6054610e09599cd4b\",\"labels\":[],\"modified_at\":1760976737.513999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.100199,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6559562de9368b5176d4c2bab69341be\",\"labels\":[],\"modified_at\":1760976737.51426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.317375,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e5aa6887ffe1c9ba20be2f9dad865c9\",\"labels\":[],\"modified_at\":1760976737.514516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.522632,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2d58c1b05145799f6a0e942e418637b\",\"labels\":[],\"modified_at\":1760976737.514765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.816273,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff01611593ce914c8e55b99746ade7bb\",\"labels\":[],\"modified_at\":1760976737.515013,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.856176,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1df9caee459458f4261ba3769b30a2fd\",\"labels\":[],\"modified_at\":1760976737.515262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.027941,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84ef8a67d8861618e18ec8e2201925f9\",\"labels\":[],\"modified_at\":1760976737.515509,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.497115,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ef002fc4b535738730128cd41020e5dc\",\"labels\":[],\"modified_at\":1760976737.515764,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.248154,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b7742f63b3eca975967469453a345b\",\"labels\":[],\"modified_at\":1760976737.516015,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.542876,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d10a7204fe5e2ea0fa40d8ae5a3144b\",\"labels\":[],\"modified_at\":1760976737.516268,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.257567,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"685e196a4c4f6c3101615348fb51dd51\",\"labels\":[],\"modified_at\":1760976737.516516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.499288,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586179dae81f48674014b0857ed88ee4\",\"labels\":[],\"modified_at\":1760976737.516767,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.717817,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6034cd7356664dc063906e2f52a0a3\",\"labels\":[],\"modified_at\":1760976737.517018,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.94185,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"66165e96b66d1a023f8e8737fbe9e2d0\",\"labels\":[],\"modified_at\":1760976737.51728,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.528186,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ea8b6d6b10896ddbdf5ae9fafbbecc6\",\"labels\":[],\"modified_at\":1760976737.51753,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.252135,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385366fcc059b77a728168515f2586f2\",\"labels\":[],\"modified_at\":1760976737.517778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.461271,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f58c113ad08028f0af872124030c30f\",\"labels\":[],\"modified_at\":1760976737.518028,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498158.942049,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cba6a4bdd6a805551cc283b957b22e63\",\"labels\":[],\"modified_at\":1763016721.943079,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.192313,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2c38371850e50f3e5988540443f5c5d\",\"labels\":[],\"modified_at\":1760976737.51852,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.577028,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16f7fe2f79e1b1f0db02866ac85a4bc3\",\"labels\":[],\"modified_at\":1760976737.518771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.336206,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73631aa51e0e6a1d7794697379003876\",\"labels\":[],\"modified_at\":1760976737.519354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.260623,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"32245ba0b08e126f84726702cb6db8bc\",\"labels\":[],\"modified_at\":1761859609.314665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.171655,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0d32ff833fcd601cd32f482eb5f1c9a\",\"labels\":[],\"modified_at\":1760976737.519914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.382664,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7711c9412df10e8fe9452f68a7038e60\",\"labels\":[],\"modified_at\":1760976737.520171,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.610829,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a08d9ebbb81e0c3fc7a08d30d98e3b7", - "offset_ms": 256 - }, - { - "direction": "recv", - "type": "text", - "payload": "e\",\"labels\":[],\"modified_at\":1760976737.520425,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.121172,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2cc61e1c263d63262ab756c2a5e9d31\",\"labels\":[],\"modified_at\":1760976737.520676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.498003,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81e3fb1a860e34c3494dbee1d95fe70f\",\"labels\":[],\"modified_at\":1760976737.520924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.21988,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3af3544de87e7dbab445e7a8029afa34\",\"labels\":[],\"modified_at\":1760976737.52119,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.731054,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db1336da12c043c7c61d784c7a622187\",\"labels\":[],\"modified_at\":1760976737.521439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.428907,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"553383b37e8d644518a821ebf99f99b3\",\"labels\":[],\"modified_at\":1760976737.521685,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.943883,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23a5abddd967354312c03855e037976f\",\"labels\":[],\"modified_at\":1760976737.521932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.518682,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0be097c7eb3dbe6aef6a25e3a6cd8ef\",\"labels\":[],\"modified_at\":1760976737.522174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.180681,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e09414a784c4b8a03feca8292b47fc\",\"labels\":[],\"modified_at\":1760976737.522426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.937301,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bfcdb749179ca990270164a9c1aace4c\",\"labels\":[],\"modified_at\":1760976737.52267,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.759405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f329d40f3cb4c98261ecbcca9d730f7\",\"labels\":[],\"modified_at\":1760976737.522917,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.012128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f894e57866a8b946f69234a7c97291\",\"labels\":[],\"modified_at\":1760976737.523164,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.284899,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"148c211961e1b76470e79174b4283b73\",\"labels\":[],\"modified_at\":1760976737.52341,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.985246,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f71e7d4f62b65e5450706d56114cc93f\",\"labels\":[],\"modified_at\":1760976737.523665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.763524,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d835075c5dbbd4973e040149a3f7514\",\"labels\":[],\"modified_at\":1760976737.523911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.601118,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d62adbd002ce98615faf711cc7a26d5f\",\"labels\":[],\"modified_at\":1760976737.524157,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.141649,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663371403a63a19124a1b4abc6b27be8\",\"labels\":[],\"modified_at\":1760976737.524405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.336255,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"112988ca48584654f5650f5359c7e4bc\",\"labels\":[],\"modified_at\":1763017007.83862,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.582052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a877e0462d77e8dd3e37703c0c12842c\",\"labels\":[],\"modified_at\":1760976737.525423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.843111,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e19e322d38c79279c958e4aa96c1dddd\",\"labels\":[],\"modified_at\":1760976737.525683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.275509,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00aca62e34295f7facd401ad154fe8e6\",\"labels\":[],\"modified_at\":1760976737.525937,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.858586,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33498cbeacef2dcdc4f033a0b26838cd\",\"labels\":[],\"modified_at\":1760976737.526188,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.07771,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e6c658d666885b7bcae24ba94db552e\",\"labels\":[],\"modified_at\":1760976737.526437,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.856422,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"607fc15e13eb6e05972e82df9e2b66c3\",\"labels\":[],\"modified_at\":1763016727.1138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.70849,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73bb92c35f39f034be36798feb770698\",\"labels\":[],\"modified_at\":1760976737.526939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.916128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28017fee78f1ddd7f4142211e16c0d30\",\"labels\":[],\"modified_at\":1760976737.528024,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.157067,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff11b226bb853a90c464d79f8178ce33\",\"labels\":[],\"modified_at\":1760976737.528323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.366557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40dd3bb633abe1862d801f81b3ce8980\",\"labels\":[],\"modified_at\":1760976737.528584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.978133,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9fce7d56272a707de807cc72548ee17a\",\"labels\":[],\"modified_at\":1760976737.530283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.801608,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"401a043f2c726c93b7b23b4564a1f94a\",\"labels\":[],\"modified_at\":1760976737.53057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.02263,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28e13521bf85269ec4c9f0a082f0c6b7\",\"labels\":[],\"modified_at\":1760976737.530838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.345391,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b190136a43f7bcf64e68901f7d275935\",\"labels\":[],\"modified_at\":1760976737.531099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.594556,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"951499259e3906795a24cd53fc3d1249\",\"labels\":[],\"modified_at\":1760976737.531357,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.156068,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f6bc7f4a033172190b30075550a37521\",\"labels\":[],\"modified_at\":1760976737.531615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.285791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"404a79d1477c10408dde8e055ae80b2e\",\"labels\":[],\"modified_at\":1760976737.531871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.353564,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b1f9968e09762e9bda52a6df2fbd23c7\",\"labels\":[],\"modified_at\":1763016724.247126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.78676,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e40f6aa713fca29f4bd8a635509859c\",\"labels\":[],\"modified_at\":1760976737.532386,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.7486,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df9290d342500fe2636c79ddbc9952bd\",\"labels\":[],\"modified_at\":1760976737.53264,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.96248,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d61cf3fe32f5fe3b39fa7ec9dae68b7\",\"labels\":[],\"modified_at\":1760976737.532893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.23677,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9aa7c0a93561eb0c9c492db8575a1989\",\"labels\":[],\"modified_at\":1760976737.53315,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.443444,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e929af2da1a8fd0c0c9e2eb613c88c3f\",\"labels\":[],\"modified_at\":1760976737.533399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.176575,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b2353cba1cfc2ba0270b144f2043de0\",\"labels\":[],\"modified_at\":1760976737.533645,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.397439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1af3533513a0c5338f0e1f7900eaf9e5\",\"labels\":[],\"modified_at\":1760976737.533893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.507945,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18af8f2d02f6418723e32a510e19391c\",\"labels\":[],\"modified_at\":1760976737.534144,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.906106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"144ae42445c05a952df5ef29aa014a17\",\"labels\":[],\"modified_at\":1760976737.534396,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.18106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62bfd57e3cb228991c9b903d59e6587f\",\"labels\":[],\"modified_at\":1760976737.534646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.176689,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c294c624ab78af85b8acb03e41009e22\",\"labels\":[],\"modified_at\":1760976737.534894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.73368,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b20652958edaaf0ef0042d2a97318da\",\"labels\":[],\"modified_at\":1760976737.535255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.515405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f69443e387af0b10bf4cffad511cab3e\",\"labels\":[],\"modified_at\":1760976737.535554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.963861,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"57e733b28e1a7f745cd42b1588ea7b92\",\"labels\":[],\"modified_at\":1760976737.535819,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.383975,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3757ce7c4b5a7037d34b233e1626b5bb\",\"labels\":[],\"modified_at\":1760976737.536076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.520076,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_bssi", - "offset_ms": 263 - }, - { - "direction": "recv", - "type": "text", - "payload": "d\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d093158049a91d9ec6342c460f7697d\",\"labels\":[],\"modified_at\":1760976737.536331,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.290619,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b54445aea1c6b5a23c7a7f8756d331f\",\"labels\":[],\"modified_at\":1760976737.536584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.432903,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41dc6b0212fa61d780912d275265cd1a\",\"labels\":[],\"modified_at\":1760976737.536834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.76291,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49e886aeaca51ef663020c9d6adedd4d\",\"labels\":[],\"modified_at\":1760976737.537084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.966045,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"97423ae7ee25d6b9c6138c20f803937d\",\"labels\":[],\"modified_at\":1760976737.537345,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.640943,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"641af75b3fbe0762c553b05543247e0a\",\"labels\":[],\"modified_at\":1760976737.537592,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.578752,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f98be744eca04298b701b1d066cf33f2\",\"labels\":[],\"modified_at\":1761584275.553227,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.584734,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"38be44c9b9441e8136de779aff02c4d4\",\"labels\":[],\"modified_at\":1761584275.555476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.625112,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eaaa8aa99a75156fd029e017b2345aa3\",\"labels\":[],\"modified_at\":1761584275.60354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.675625,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70710798be185d2ee29eb867eb9f8222\",\"labels\":[],\"modified_at\":1761584275.644775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.796301,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param019\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5c6e0fb47a0136310e04a22d88fc83\",\"labels\":[],\"modified_at\":1761667162.796517,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param019\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.797016,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_param020\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e23bda23aa0ac99b0116586ea0a1b92\",\"labels\":[],\"modified_at\":1761667162.797168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param020\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1761667201.291363,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87fb7ada2339f2039551943482ae1358\",\"labels\":[],\"modified_at\":1761667201.292122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1761667192807\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c2862a4df8f6bd691cf5d04a6dfd54c\",\"labels\":[],\"modified_at\":1761690295.874343,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Headphones connected\",\"platform\":\"roku\",\"translation_key\":\"headphones_connected\",\"unique_id\":\"YJ002K604601_headphones_connected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7cd833409d36d7f019fd3e2c56a3099f\",\"labels\":[],\"modified_at\":1761690295.875222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports AirPlay\",\"platform\":\"roku\",\"translation_key\":\"supports_airplay\",\"unique_id\":\"YJ002K604601_supports_airplay\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a220cc398a638aa2eab462c5dc09595\",\"labels\":[],\"modified_at\":1768937324.483172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports Ethernet\",\"platform\":\"roku\",\"translation_key\":\"supports_ethernet\",\"unique_id\":\"YJ002K604601_supports_ethernet\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6165850622ccf0780a12cb93f99fbe6b\",\"labels\":[],\"modified_at\":1761690295.876894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports find remote\",\"platform\":\"roku\",\"translation_key\":\"supports_find_remote\",\"unique_id\":\"YJ002K604601_supports_find_remote\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d7e470b926897e7baf7da15c69c1a5f\",\"labels\":[],\"modified_at\":1772591841.640657,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3921d505142fc5a908c983dbda85e39\",\"labels\":[],\"modified_at\":1761690295.882215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.living_room_tv_application\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be671b5fc39f53da44534bf656ccfcbc\",\"labels\":[],\"modified_at\":1774121824.587607,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Application\",\"platform\":\"roku\",\"translation_key\":\"application\",\"unique_id\":\"YJ002K604601_application\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b34030d711baecbca2bd7babbb9523f4\",\"labels\":[],\"modified_at\":1761690295.884134,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app\",\"platform\":\"roku\",\"translation_key\":\"active_app\",\"unique_id\":\"YJ002K604601_active_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6a7cd59919db06d42748a1849f35440\",\"labels\":[],\"modified_at\":1761690295.885026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app ID\",\"platform\":\"roku\",\"translation_key\":\"active_app_id\",\"unique_id\":\"YJ002K604601_active_app_id\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1762452953.450373,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"353b8458de409f30f3da7f59dd2279ae\",\"labels\":[],\"modified_at\":1762452953.451146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room TV - Off - Idle\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1762452936157\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.79738,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4bc33ac1bdf05a5a4ad0efe2cf243cd\",\"labels\":[],\"modified_at\":1766477279.797958,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.80.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.798349,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a14d2d0b96e1d99308488b35cfe32d6b\",\"labels\":[],\"modified_at\":1766477279.798784,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.80.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799203,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"acd5e1535a0b58f433b138c0b6faf421\",\"labels\":[],\"modified_at\":1766477279.799355,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799642,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"378e7086f5619183bd617e93465aa802\",\"labels\":[],\"modified_at\":1766477279.799778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800052,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d59fdf37e7ce07ae033e5e4a7871a74\",\"labels\":[],\"modified_at\":1766477279.80019,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800465,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"042c7a9cd428a17c8fedf3be0152a3be\",\"labels\":[],\"modified_at\":1766477279.800606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800883,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f68eb2507739535d9913773ab943d15f\",\"labels\":[],\"modified_at\":1766477279.801023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.80.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.80138,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3369734c52812a3a3ee4bbe2560f1ad\",\"labels\":[],\"modified_at\":1766477279.801562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.80.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.801858,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd7ddf313a54743de6d1f72a3d7bd312\",\"labels\":[],\"modified_at\":1768937324.809754,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.80.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.802282,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62306b73556be6a658a2970154edf24b\",\"labels\":[],\"modified_at\":1766477279.803236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.80.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.228835,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce76270335388122109676234797a801\",\"labels\":[],\"modified_at\":1766477296.229428,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.229892,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21621c315a84182b4f410308413f7b21\",\"labels\":[],\"modified_at\":1768937324.853995,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.23085,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75446919eaeef4477c5765e479030bd7\",\"labels\":[],\"modified_at\":1768937324.85453,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.231761,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2adf7a33a0ac224ec14b279aa8347cdf\",\"labels\":[],\"modified_at\":1766477296.232285,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.232869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"352a62902d4625293870ccad5a0e8ce7\",\"labels\":[],\"modified_at\":1768937324.855306,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.233759,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"959edfed6f06b47aa8cfffad60cb3b27\",\"labels\":[],\"modified_at\":1768937324.855699,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}", - "offset_ms": 270 - }, - { - "direction": "recv", - "type": "text", - "payload": "},\"original_name\":\"Reset accumulated values\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.234957,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e94b9747cdafaf5de7e0065d9bea1787\",\"labels\":[],\"modified_at\":1766477296.235117,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.235534,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d032c73c25b557c150eb9a1554ab27a8\",\"labels\":[],\"modified_at\":1766477296.235674,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236042,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b282d98fd058c4a3fc14cd5cab2ed0d\",\"labels\":[],\"modified_at\":1769099101.051939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_energy_kwh_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03aba463e32ff9cd002a085bc096c2a7\",\"labels\":[],\"modified_at\":1766477296.236667,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy (kWh) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_current_a_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44ed91985e8e2345c6d85aa23ca1ebcc\",\"labels\":[],\"modified_at\":1769099101.052448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current (A) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-35\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237544,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_voltage_v_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8c9afc6dd91370538afa4d09be302d2\",\"labels\":[],\"modified_at\":1769099101.052763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage (V) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238041,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_overload_protection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24702ae99561a23fa90891c83b007f12\",\"labels\":[],\"modified_at\":1766477296.238175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Overload Protection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238538,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a643dcd0c18ea735dc117372cbd9c4\",\"labels\":[],\"modified_at\":1766477296.238676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9278543cbfa4150cf96b9825a399dce\",\"labels\":[],\"modified_at\":1766477296.239179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a20c9254c9e99e639df912c45870f78\",\"labels\":[],\"modified_at\":1766477296.239678,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24004,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9f5c165e12ba64506d0eaf24e58fd09\",\"labels\":[],\"modified_at\":1766477296.240905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241404,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a8223d52922cf9b4adff20414916eee\",\"labels\":[],\"modified_at\":1766477296.241556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241944,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39ecfec962692eccc82d3081e479f8b4\",\"labels\":[],\"modified_at\":1766477296.242085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242445,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"91b749f9293951042533d2401e898b94\",\"labels\":[],\"modified_at\":1766477296.24258,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242942,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e391e07c8a08dd2a25df2be663bcfbac\",\"labels\":[],\"modified_at\":1766477296.243077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243424,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3c85d30cdac3aafebede8607197ce65\",\"labels\":[],\"modified_at\":1766477296.243556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243913,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dacd0709ac8eb1359a94e7710f78784\",\"labels\":[],\"modified_at\":1766477296.244051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244403,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b054386465dab5e8e5b9b8d7c18d91df\",\"labels\":[],\"modified_at\":1766477296.244534,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244894,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f902120e1bceb78e61c17590fe38269\",\"labels\":[],\"modified_at\":1766477296.245029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245392,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fad06e4d9f3d509906b6338e4b79a65\",\"labels\":[],\"modified_at\":1766477296.245527,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245884,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68d921eab0fa608d5f6c2dadd993dccd\",\"labels\":[],\"modified_at\":1766477296.246023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.246994,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b090c9d937ff7066c525cc564347a594\",\"labels\":[],\"modified_at\":1766477296.247152,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24754,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2b9a5eb299f5a41546cecb74eb4db\",\"labels\":[],\"modified_at\":1766477296.24768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248038,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ead661391dda43c8a9cff95e08d325f9\",\"labels\":[],\"modified_at\":1766477296.248173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f79cf7061a486a5938ef84ca4f41ca3f\",\"labels\":[],\"modified_at\":1766477296.248675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da59ba2e721740da07c9e1fce8eeb446\",\"labels\":[],\"modified_at\":1766477296.249177,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b311235ba306b94712f179b47a13304\",\"labels\":[],\"modified_at\":1766477296.24968,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.250039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eed8930162c1f50fb3efa88ed014a90\",\"labels\":[],\"modified_at\":1766477296.250175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25053,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"943fe31b185242de7233f509c6714ad4\",\"labels\":[],\"modified_at\":1766477296.250661,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251018,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e41a3fe1c2e739c5c0b08c01ba04964\",\"labels\":[],\"modified_at\":1766477296.251151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.2515,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f339b2e6b6df648e6ca92d60bf56623\",\"labels\":[],\"modified_at\":1766477296.251636,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251984,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19bb03a5b1ae0e40e13d9da02ae88aa0\",\"labels\":[],\"modified_at\":1766477296.253395,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.253836,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97b7a04a80a5cdf61867e56d866b6dce\",\"labels\":[],\"modified_at\":1766477296.253989,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.254358,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f60a5f4e92244effdf0936a193c2e55\",\"labels\":[],\"modified_at\":1766477296.2545,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25486,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eb52f03fe8467f94f87c777a7a350c0\",\"labels\":[],\"modified_at\":1766477296.254997,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255351,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_usb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cc335594f81afccba401289b6b502d8\",\"labels\":[],\"modified_at\":1768937324.860358,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (USB)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-34\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255867,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cc3f8a76c39d2050f2ca01c684f502d\",\"labels\":[],\"modified_at\":1766477296.256325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Over-load status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.256729,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45740620b4805cce189bb1ae036fcd9b\",\"labels\":[],\"modified_at\":1766477296.257184,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Over-load detected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.257687,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04246652716b229857e01efec2e38e67\",\"labels\":[],\"modified_at\":1766477296.257835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25825,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63039bbbd456696f096140397e346135\",\"labels\":[],\"modified_at\":1766477296.258392,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.259279,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63ad70871975f5f5d34c36a3bc238c67\",\"labels\":[],\"modified_at\":1766477296.259764,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.260212,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c3075512fe6a8b1b0fcb12082a49d76\",\"labels\":[],\"modified_at\":1768937324.86197,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.261175,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"568c6e02c40f5c3a555cdd0db313a4de\",\"labels\":[],\"modified_at\":1768937324.862516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262093,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b395a875cae5455761476ff388705320\",\"labels\":[],\"modified_at\":1768937324.862985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262992,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f06ff5e731abcb200fdf4ce8c56d7a8b\",\"labels\":[],\"modified_at\":1768937324.863363,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.263832,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37ae354122a69445674d2c8a74c662e3\",\"labels\":[],\"modified_at\":1766477296.264255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.265295,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2531dc116e28190045ae5672d09ebe3\",\"labels\":[],\"modified_at\":1768937324.866356,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.266195,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6f6c69f0ddef207889934c80289ca86\",\"labels\":[],\"modified_at\":1766477296.26662,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267047,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc336050e207d78bd1ba0f3bba28051a\",\"labels\":[],\"modified_at\":1768937324.867025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267979,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe9d9f695586d322624d93d749bbcc61\",\"labels\":[],\"modified_at\":1768937324.867472,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.26889,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"01988ea7826bbd8f6ed128469da20098\",\"labels\":[],\"modified_at\":1766477296.269415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.270015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf8ef299aa298fd3248a48bac27ac029\",\"labels\":[],\"modified_at\":1768937324.868225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.271554,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c97f", - "offset_ms": 278 - }, - { - "direction": "recv", - "type": "text", - "payload": "990f08dbf8bfb2e36f79dcf8ce3f\",\"labels\":[],\"modified_at\":1768937324.868598,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.272394,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a2d1328c988166cd19fcc662a187aa9\",\"labels\":[],\"modified_at\":1766477296.272806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-4-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.273243,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50a06ac0b5cc38dd737642d4c89a7b51\",\"labels\":[],\"modified_at\":1768937324.869253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.274164,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d375f897f48b0c3979382b79f793ce7c\",\"labels\":[],\"modified_at\":1768937324.869703,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.275064,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66472225aa97981e6655a6197be3821e\",\"labels\":[],\"modified_at\":1766477296.275574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.276183,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaaeda5a465e1272738851dfaca0bb89\",\"labels\":[],\"modified_at\":1768937324.870776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.278333,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0e4675689b5404d93f71ebfc1d7379f\",\"labels\":[],\"modified_at\":1768937324.871166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.279172,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7093c72b49a8f2d940f6b823759f028\",\"labels\":[],\"modified_at\":1766477296.279589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-5-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.280015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da6ce7565775e6386bc5449a208859de\",\"labels\":[],\"modified_at\":1768937324.871832,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.28095,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0ebf85251bc2805df5a1617f98725cf\",\"labels\":[],\"modified_at\":1768937324.872271,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.281873,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416e2d0423d1f41bd4b56b6bd81b964f\",\"labels\":[],\"modified_at\":1766477296.282883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.283571,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee94a4c4b5043f4b3107f935049eba10\",\"labels\":[],\"modified_at\":1768937324.873009,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.284479,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1f1ce22f894ebe0933234d04a843de8\",\"labels\":[],\"modified_at\":1768937324.873387,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.285287,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c0cacfb741929580682337f02a692ff3\",\"labels\":[],\"modified_at\":1766477296.285701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-6-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286074,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"537517b1a5530389a93a15939111bc6d\",\"labels\":[],\"modified_at\":1768937324.873956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-6-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2db9999532c1e7a9ed05488f029cf7f\",\"labels\":[],\"modified_at\":1766477296.287284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-7-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.287657,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e343a71bdbc71812276c9427c7be85b\",\"labels\":[],\"modified_at\":1768937324.874499,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-7-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.289939,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa5a18f80f779019ca3f23d010909f4d\",\"labels\":[],\"modified_at\":1766477296.290448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477441.695525,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd09b25c9105ef44432c19688ac32e1\",\"labels\":[],\"modified_at\":1768937324.865485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477542.697583,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"faa614fa04d30ee895cd1ff09546164d\",\"labels\":[],\"modified_at\":1768937324.865972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":1768937323.145127,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17e0ae17cdd955a63df94aadb4a81bca\",\"labels\":[],\"modified_at\":1768937323.145187,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46291,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_avg_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7600251cc55099e6789858d8dd0c6b54\",\"labels\":[],\"modified_at\":1768937324.462981,\"name\":null,\"options\":{},\"original_name\":\"Avg. signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.463148,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99723fdd7485a7d6bb927d5bc468a2a9\",\"labels\":[],\"modified_at\":1768937324.463195,\"name\":null,\"options\":{},\"original_name\":\"Signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46361,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.zwave_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b8620184feb8e076a3dcbc4862fa35d\",\"labels\":[],\"modified_at\":1768937352.32353,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.686858,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd5c271fa69e1cb2e08837126e390603\",\"labels\":[],\"modified_at\":1768957339.60269,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.690717,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"06894aa51ff0e9d62478d9bfb5d6b7d1\",\"labels\":[],\"modified_at\":1769108140.491853,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.691308,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632aed480ee30ce82ac8ba8afd55e91f\",\"labels\":[],\"modified_at\":1769108140.492738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.71521,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eab179038325dced95da0495d530c83\",\"labels\":[],\"modified_at\":1768937352.324438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.715894,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69ac603ee53e2fa3e583a9e7e61979e5\",\"labels\":[],\"modified_at\":1768937352.324557,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.776916,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"944905c91677260a69d3c4fb169af92f\",\"labels\":[],\"modified_at\":1768937352.324779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.785768,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"141eddff457c88321aa49743e5165cb7\",\"labels\":[],\"modified_at\":1775491285.628223,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1768937325.683515,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"803942d09c418a98aae2af768bde2657\",\"labels\":[],\"modified_at\":1768974704.217654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":1768937332.413279,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_preset_position\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79c985bf4b12ca603756fd8c2f4d00fe\",\"labels\":[],\"modified_at\":1768937357.407137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Preset Position\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_preset_position\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.683464,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18d7f0c9095f29d981bfa5129a5c8719\",\"labels\":[],\"modified_at\":1768937355.683876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684339,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23798e61c080b6b8bb9292d41b753ebd\",\"labels\":[],\"modified_at\":1768937355.684708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684947,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0506bfac83008cc2d1ce31972a6f2785\",\"labels\":[],\"modified_at\":1768937355.685312,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.685556,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4b56bbe1e3393cda2a02b5958aa3772\",\"labels\":[],\"modified_at\":1768937355.685892,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.68613,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f334207a3706ffc4bdea3fcc21b27f0\",\"labels\":[],\"modified_at\":1768937355.68646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f91be395aa637b853783d80af21df6ea\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88f797601578a44b7f18fe2d310f5c8f\",\"labels\":[],\"modified_at\":1768937820.170123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:26:9F-light-front_porch_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf", - "offset_ms": 287 - }, - { - "direction": "recv", - "type": "text", - "payload": "7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.729653,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_external_switch_multiple_click_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"911f689ea83e4f559f934622cbfaf55e\",\"labels\":[],\"modified_at\":1769099083.729723,\"name\":null,\"options\":{},\"original_name\":\"External Switch: Multiple Click Detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.743385,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34c37d47d0530bffe97567dab6f0a423\",\"labels\":[],\"modified_at\":1769099083.743449,\"name\":null,\"options\":{},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.058963,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c34673f93ef0696b560de0710c886316\",\"labels\":[],\"modified_at\":1769326461.249458,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061192,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34a76e058ab3f8062606e039bb6f7d75\",\"labels\":[],\"modified_at\":1769326461.349576,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061905,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"327d27c3b2d11d6b5ed0a7c67feae89c\",\"labels\":[],\"modified_at\":1769326461.949935,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [A] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.476924,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.overseerr_last_media_event\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1241c0fd94296f38dd4beef033a35d11\",\"labels\":[],\"modified_at\":1769188672.47763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last media event\",\"platform\":\"overseerr\",\"translation_key\":\"last_media_event\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-media\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.478287,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bbb89d6744aa52101d6b2d634dd3a3d2\",\"labels\":[],\"modified_at\":1769188672.478886,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total requests\",\"platform\":\"overseerr\",\"translation_key\":\"total_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.479308,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_movie_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25b77947e4e5901105419056fabf10a0\",\"labels\":[],\"modified_at\":1769188672.479959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Movie requests\",\"platform\":\"overseerr\",\"translation_key\":\"movie_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-movie_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.480365,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_tv_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d94898a7d080d06b0f08ca6451625f7\",\"labels\":[],\"modified_at\":1769188672.480955,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TV requests\",\"platform\":\"overseerr\",\"translation_key\":\"tv_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-tv_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.481447,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_pending_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e190d80632de506998d2cef0552efc3\",\"labels\":[],\"modified_at\":1769188672.482418,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pending requests\",\"platform\":\"overseerr\",\"translation_key\":\"pending_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-pending_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.482777,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_declined_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fc5b3ab324f29fd3454426a63274bc4\",\"labels\":[],\"modified_at\":1769188672.483266,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Declined requests\",\"platform\":\"overseerr\",\"translation_key\":\"declined_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-declined_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.483584,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_processing_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6304a3cd9a5400d32e011d1a277523a3\",\"labels\":[],\"modified_at\":1769188672.484082,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Processing requests\",\"platform\":\"overseerr\",\"translation_key\":\"processing_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-processing_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.484437,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_available_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f9e7f08d9c31ca040fa2066e660551\",\"labels\":[],\"modified_at\":1769188672.484959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Available requests\",\"platform\":\"overseerr\",\"translation_key\":\"available_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-available_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.485331,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00735f8a4a910a0d1254f132ba93de9a\",\"labels\":[],\"modified_at\":1769188672.485849,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total issues\",\"platform\":\"overseerr\",\"translation_key\":\"total_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.486201,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_open_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8ccc6de99805f93f168264e67c712ca\",\"labels\":[],\"modified_at\":1769188672.486713,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open issues\",\"platform\":\"overseerr\",\"translation_key\":\"open_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-open_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487069,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_closed_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc5f4929fb61b84f1593ac32c2e1396e\",\"labels\":[],\"modified_at\":1769188672.487587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed issues\",\"platform\":\"overseerr\",\"translation_key\":\"closed_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-closed_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487953,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_video_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c23a9db4525e8ccd6821507bbce056d\",\"labels\":[],\"modified_at\":1769188672.488474,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Video issues\",\"platform\":\"overseerr\",\"translation_key\":\"video_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-video_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.488825,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_audio_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1677624b1402c112c6e4345588afb313\",\"labels\":[],\"modified_at\":1769188672.489362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Audio issues\",\"platform\":\"overseerr\",\"translation_key\":\"audio_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-audio_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.489714,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c90b1860175195d2a23fccb791504ca0\",\"labels\":[],\"modified_at\":1769188672.490236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Subtitle issues\",\"platform\":\"overseerr\",\"translation_key\":\"subtitle_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-subtitle_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912183.185244,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34a32d14426d3e169ae057627439d98d\",\"labels\":[],\"modified_at\":1771912183.186014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - Off - Timeout\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912170361\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912395.891354,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"773273d151b8c8d49b92ee8627d586d2\",\"labels\":[],\"modified_at\":1771912395.892381,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - On - Door Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912391140\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.625986,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b07a6abab79d073c5be007066b3a3b6d\",\"labels\":[],\"modified_at\":1774116424.626947,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bed Occupied Stable\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bed_occupied_stable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.627238,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6fda5463b7f7691786174b39cbc043\",\"labels\":[],\"modified_at\":1774116424.627924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bedroom Motion Confirmed\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bedroom_motion_confirmed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.957554,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3e5033899feeede780f2808f7b73e24\",\"labels\":[],\"modified_at\":1774116432.958181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.958454,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_nap_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b706a2024115adbf2d36028c6713abcf\",\"labels\":[],\"modified_at\":1774116432.958992,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Nap Detection\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.14926,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4563dd8ceda742b1447360a08afd99e7\",\"labels\":[],\"modified_at\":1774138030.911495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149593,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2d62fcd0d6717798722ba043bce9d40\",\"labels\":[],\"modified_at\":1774138030.911857,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149824,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"806b34a0f2af42d04d3883b58f48a6ef\",\"labels\":[],\"modified_at\":1774138030.912047,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"58122b4c7d81745a9de83d7435a88559\",\"labels\":[],\"modified_at\":1774138030.912215,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150246,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46650fb68d9b63404a046c228467c62c\",\"labels\":[],\"modified_at\":1774138030.912379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150448,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8b8c08c11a816b5e91c5d45b883066e\",\"labels\":[],\"modified_at\":1774138030.912537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150653,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a94089b7222280376a7dad9ef1bf2a92\",\"labels\":[],\"modified_at\":1774138030.912696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152103,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa674acc6fb02b01c66b3433930e2d01\",\"labels\":[],\"modified_at\":1774138030.91286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152289,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5a7edad01fc39a518660614518bcdf2\",\"labels\":[],\"modified_at\":1774138030.913011,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.154985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d16f049693b501d63ea5473129d3198e\",\"labels\":[],\"modified_at\":1774138030.9132,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1pct\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.155394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bffe32a5b8efb97c7c5e604c2bc2abc4\",\"labels\":[],\"modified_at\":1774138030.913358,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_halloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.156076,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54146ec2dbaad8902fd311d6c18d996b\",\"labels\":[],\"modified_at\":1774138030.913521,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.15684,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d740742a1b722377a0897440fd402bbe\",\"labels\":[],\"modified_at\":1774138030.913681,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a62870971ca19efe980ffc144f1a1899\",\"labels\":[],\"modified_at\":1774138030.913831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157231,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"949278d55db1a4d8246fa35f91e617f2\",\"labels\":[],\"modified_at\":1774138030.913979,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Day\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157424,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"276ef5e2cd3663a6236c81c36f446fc6\",\"labels\":[],\"modified_at\":1774138030.914128,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Night\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_night\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157587,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a84f593ccf99ee4dedf54fd732754e2c\",\"labels\":[],\"modified_at\":1774138030.914274,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774138612.949732,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mushroom_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d59320285d90702b2c855475ee95639e\",\"labels\":[],\"modified_at\":1774138612.95", - "offset_ms": 295 - }, - { - "direction": "recv", - "type": "text", - "payload": "0796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mushroom update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774139555.128573,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mushroom_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c33c28bb04498effba938ec97b5b805\",\"labels\":[],\"modified_at\":1774139555.128638,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140343.854706,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mini_graph_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56350d9930148e8fd5d61e880540724\",\"labels\":[],\"modified_at\":1774140343.855222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"mini-graph-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140477.398217,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mini_graph_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d58d70df50c79d3213bbf8236a5fe6ce\",\"labels\":[],\"modified_at\":1774140477.398278,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.352598,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681707778436ce05e7199951846ef14d\",\"labels\":[],\"modified_at\":1775489223.761484,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.421699,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c98623c4f1d03a6794ba466def6392\",\"labels\":[],\"modified_at\":1775489223.761621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.690469,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30c8f6f016a9a07d3072df92bf9c837f\",\"labels\":[],\"modified_at\":1775489223.761751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.769537,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fec7537b3f51428841c6f12821476333\",\"labels\":[],\"modified_at\":1775489223.761895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.155983,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4f68f200753e31f0a21132e2ff02e3c\",\"labels\":[],\"modified_at\":1775489223.762023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.222085,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf10bec5854978fe997fc5eb6d1db426\",\"labels\":[],\"modified_at\":1775489223.76215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354869.951525,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dbb9d05d05fcd2ca67c6fd8472bab9eb\",\"labels\":[],\"modified_at\":1775489223.762284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354870.020436,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd61a8fe509fc46135e34167d34e5b3\",\"labels\":[],\"modified_at\":1775489223.762414,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355638.331143,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5144d05444588d3e7a500ac509fae21e\",\"labels\":[],\"modified_at\":1775489223.762539,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355657.972878,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a3162680c956e4ed166e74ca65dbf31\",\"labels\":[],\"modified_at\":1775489223.762673,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356334.664723,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73fe68c3f5230ab53809f13454c7f7ce\",\"labels\":[],\"modified_at\":1775489223.762806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.604859,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f0456298a746305de2207d41a214c7\",\"labels\":[],\"modified_at\":1775489223.76293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.686933,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9e93e6a89fec209b2154e4b4aa5c0\",\"labels\":[],\"modified_at\":1775489223.763054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.039186,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3725b439d15a4d1e0e0b8ef16c5bcec8\",\"labels\":[],\"modified_at\":1775489223.763189,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.114222,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09f3eb747f5823fe21b96763355a9fd3\",\"labels\":[],\"modified_at\":1775489223.763316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.671129,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4cb866d53da98bac0fdd3d9a50958c1\",\"labels\":[],\"modified_at\":1775489223.763449,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.73551,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bdb1093192bc6e83a24ef3ef98ef251a\",\"labels\":[],\"modified_at\":1775489223.763579,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.683881,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"17948118ea0453a21060b9ac3c3bd35f\",\"labels\":[],\"modified_at\":1775489223.763821,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.752892,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2bf26cdc24ddb324070b32bf95efb\",\"labels\":[],\"modified_at\":1775489223.763949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.611255,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2de2190bdb6019e1ebaf8f9f6db56d92\",\"labels\":[],\"modified_at\":1775489269.20277,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reset total energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_reset_total_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.720667,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2b188397cf5cf91ade7924d39597fc\",\"labels\":[],\"modified_at\":1775489254.288937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn off\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_off_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.725676,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ba3493529496e8be49faa472f4272\",\"labels\":[],\"modified_at\":1775489254.289157,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn on\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_on_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.730362,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817a29630544a8935b5b5208cfad3a6a\",\"labels\":[],\"modified_at\":1775491843.189477,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power rise threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_rise_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.735072,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb512790cefd801f44d3170bcbe18fb3\",\"labels\":[],\"modified_at\":1775491843.201122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power drop threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_drop_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.782524,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f1e618efc7019719ba1c008909ae61b\",\"labels\":[],\"modified_at\":1775489269.203071,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power-on behavior\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_on_behavior_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.808614,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a65df0e6618f2527a49b04cb44ddc8d\",\"labels\":[],\"modified_at\":1775586383.664326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.810039,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6da142d344b25e493d4e7150811898a9\",\"labels\":[],\"modified_at\":1775489269.20327,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":1},\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.81576,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6fd914af279d2e8f766c6a3ff2de023\",\"labels\":[],\"modified_at\":1775489269.203513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_humidity_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.817887,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_pressure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd3458814c78abb0afee054f005cdd78\",\"labels\":[],\"modified_at\":1775489308.697985,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Atmospheric pressure\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_pressure_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.819624,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b51cd3241371b7561f77450e43672efb\",\"labels\":[],\"modified_at\":1775492079.877324,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.821311,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89221a788e97735b88a9981fc28d3fbe\",\"labels\":[],\"modified_at\":1775489227.821354,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.822693,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_power\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0950382cdf5c1ae4e598bc5443a02839\",\"labels\":[],\"modified_at\":1775520590.696024,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.825626,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d9bb9d1c71c5dd2c20a45dc1b6dea2c\",\"labels\":[],\"modified_at\":1775491830.269932,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.828464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07990395421c102974cefa27b6a9b997\",\"labels\":[],\"modified_at\":1775489254.291151,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Frequency\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_ac_frequency_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.830508,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_power_factor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7fffd049106dfd91742c2374ec66011a\",\"labels\":[],\"modified_at\":1775489227.830555,\"name\":null,\"options\":{},\"original_name\":\"Power factor\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_factor_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.832056,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b1f2d89a6fa56eaa6ebd7a325233c5b\",\"labels\":[],\"modified_at\":1775520597.935816,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_current_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.833866,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1dec75cbe9a7ba93bf0f0846e5fe5fac\",\"labels\":[],\"modified_at\":1775525154.098723,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.836162,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbdff817ee00883d0aa353adead094b5\",\"labels\":[],\"modified_at\":1775489227.83621,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.84296,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1de84ba2dcb17a277ea97a987f467d07\",\"labels\":[],\"modified_at\":1775489269.203705,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.844464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3be8da09eeb8e0acc452fa4a9ba78a5\",\"labels\":[],\"modified_at\":1775489269.203885,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Metering only mode\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_metering_only_mode_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.850014,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcee0811885c8854563443ba4dced1ab\",\"labels\":[],\"modified_at\":1775489306.418611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1775549231.594472,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_vibra", - "offset_ms": 303 - }, - { - "direction": "recv", - "type": "text", - "payload": "tion_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9db7f91c5b54278bf3f7a80f5df91bc\",\"labels\":[],\"modified_at\":1775549231.594723,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.825542,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5077add4bf45e912a2ef646bae511f14\",\"labels\":[],\"modified_at\":1775678362.82721,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.827502,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f3761580a85a1bd3953bddb2c989d35\",\"labels\":[],\"modified_at\":1775678362.828154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000004\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.828418,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be7a1d87aaf721c4188bf8bec50329f4\",\"labels\":[],\"modified_at\":1775678362.828943,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000005\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.37481,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167b598bb2635889c041d73857d27990\",\"labels\":[],\"modified_at\":1775868913.129506,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.376546,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa1b588575b52fe468f5b0b654084236\",\"labels\":[],\"modified_at\":1775868913.130469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.613679,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00cfdcc6fd718b086b498d183ec763fe\",\"labels\":[],\"modified_at\":1775868913.131303,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.615726,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb552019b26731f2c51b5b208e46821\",\"labels\":[],\"modified_at\":1775875660.872463,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.618016,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a715ee29ebb812ad53ff3962471973c\",\"labels\":[],\"modified_at\":1775868886.618058,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.61896,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fed74cd33f82ba6c78036a9cebbf06\",\"labels\":[],\"modified_at\":1775868913.133053,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62005,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6aa5184211eb3c2d8ccd38a3b494e66f\",\"labels\":[],\"modified_at\":1775872197.350263,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62157,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62526651242478435d1e767d473d0b01\",\"labels\":[],\"modified_at\":1775868886.621614,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.622608,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c40a87b4581f5eae3d7a6360360a4fc\",\"labels\":[],\"modified_at\":1775868913.13455,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.624775,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d40ea24dbd15c204e20d4041d24cd2d0\",\"labels\":[],\"modified_at\":1775868886.624821,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.640178,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_fed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"339abf0c4de7f4ba8ac9610f75299234\",\"labels\":[],\"modified_at\":1775868913.135283,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.641542,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.tracker_one\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4dde6447448035238f372ce06801427\",\"labels\":[],\"modified_at\":1775868913.136075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.643148,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_sink_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2195ff58fb96b2adfde3932a8dba49a5\",\"labels\":[],\"modified_at\":1775868913.136902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775869869.03551,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apexcharts_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59310574b32edd03da9449e2fc1b7504\",\"labels\":[],\"modified_at\":1775869869.036084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"apexcharts-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870068.253425,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.track_tracker_one_log_press\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"251e799623f0dc9e26c3a81c1bcc0e30\",\"labels\":[],\"modified_at\":1775870068.254211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TRACK - Tracker One - Log Press\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775869806572\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870401.81351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.fish_fed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86abac3ce035a999bd58f59520b2f4f0\",\"labels\":[],\"modified_at\":1775870444.348953,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Fish Fed\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"fish_fed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870404.195975,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.tracker_one_presses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"563381785d898580a4ec98b5d47f8241\",\"labels\":[],\"modified_at\":1775870428.194489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tracker One Presses\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"tracker_one_presses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775870404.57426,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apexcharts_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3c39d6ccf8398fd21217517712467e\",\"labels\":[],\"modified_at\":1775870404.574316,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485157,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15bd4e2db4610819856a0a96d8fb46ac\",\"labels\":[],\"modified_at\":1775870556.016822,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Fish Fed - Latch On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485897,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_fish_fed_reset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb491690a44f98c51901d58d37cdd2d8\",\"labels\":[],\"modified_at\":1775890800.094108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Fish Fed - Reset\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211862\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"config_subentry_id\":null,\"created_at\":1775959350.075729,\"device_id\":\"bd61b07f6c18d67ffd4150ebf11743fa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18f6e46b7275812f380f65c45ab68432\",\"labels\":[],\"modified_at\":1775959350.076865,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Car in Garage\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"44:17:93:1B:60:94-binary_sensor-car_in_garage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067514.535912,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52f365b0d3680334baa51a6a1268693d\",\"labels\":[],\"modified_at\":1776067514.537586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067515.336196,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ba17144d4b28c18b1610c9e6524f080\",\"labels\":[],\"modified_at\":1776067515.337787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"}]}", - "offset_ms": 313 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_remove_entity_registry_entry.json b/cassettes/test_entity_registry/test_remove_entity_registry_entry.json deleted file mode 100644 index a907dce8..00000000 --- a/cassettes/test_entity_registry/test_remove_entity_registry_entry.json +++ /dev/null @@ -1,445 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:59.789218+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 11 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"name\": \"smoke_registry_remove_test\", \"id\": 2, \"type\": \"input_boolean/create\"}", - "offset_ms": 12 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"id\":\"smoke_registry_remove_test_14\",\"name\":\"smoke_registry_remove_test\"}}", - "offset_ms": 22 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entity_id\": \"input_boolean.smoke_registry_remove_test\", \"id\": 3, \"type\": \"config/entity_registry/remove\"}", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 30 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 4, \"type\": \"config/entity_registry/list\"}", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.updater\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48544df94cdd8858d51e4825d887b87f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Updater\",\"platform\":\"updater\",\"translation_key\":null,\"unique_id\":\"updater\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.adam\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af3cc6ab1d311d80445a2911bab8a736\",\"labels\":[],\"modified_at\":1774112250.228571,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"collection\":{\"hash\":\"8ea23eafe65450db9d5d7917f1e1808a\"}},\"original_name\":\"Adam\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"adam\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"52fc2b39306eecd553aa2d1275b23f13\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.logan_s_landing\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc17bdf0b19aac327302b5ed8e37842\",\"labels\":[],\"modified_at\":1776067736.245874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Logan's Landing\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"home\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.remote_ui\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"662f53bf96ef56470f84c30f01b8db1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Remote UI\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-remote-ui-connectivity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.jenni\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"867ce61cfc7ab736b355b85c14411b09\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"jenni\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1566df05da78124d095f06fd3478d69d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Front Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015141627\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ff73de8af671e02bdb687bc221a551\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Lock Back Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629015238936\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stair_chandelier\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73856bdb53725526e8e63e078c9ebebe\",\"labels\":[],\"modified_at\":1775870416.949593,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.stair_chandelier\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a4c91300d5c0eebf9260967a60a018\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_routine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70c959e47b0e9e5e4b826c5900cad954\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Routine\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629617283234\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9bd88b769429a941a9478debe90a70a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785091384\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.wake_up_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f995f568522466041f6955cdbcc536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Wake Up Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"wake_up_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_leksi_lamp_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c348fbb7c91293d0d89150a1e883d05c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Leksi Lamp - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1629785279492\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_cat_bathroom_door_closed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f204a6e1edd3b3c13d9dc6e48613dd20\",\"labels\":[],\"modified_at\":1741730439.823744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Cat Bathroom Door Closed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950849970\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b4711ee4a97eb0c7c20e508d9b5c2afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631950974058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2cc79375b1f971d1a5e8e393733e821\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Kitchen Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631951014424\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8e2a310dc06849858f204cad33666aa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952292117\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37007cf65958ceae04ddd495d3be6771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952347170\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_stair_chandelier_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6221addad0ec6c1d678b405921c56c42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Stair Chandelier - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1631952450891\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_lamps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ead5a9e4369bbe20f36cdc5cdbb169bf\",\"labels\":[],\"modified_at\":1775870416.945327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.living_room_lamps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05c094b96331a2e72fa623591306c435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb5b70bdb5e625b89f9c05075b86919\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Occupancy\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-occupancy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d2c826662df9e49d3b4c59696b2198d\",\"labels\":[],\"modified_at\":1728721845.856414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":\"ecobee\",\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3bc3484981e75dcef88140475f41ad\",\"labels\":[],\"modified_at\":1768937324.405202,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"289469882a9d4c390942a2c28d21e837\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980-ei:0-humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73aca607e21724f9c52d8d593ec4d76a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7ebb8f03146939f38815de610add87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895391373\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_white_motion_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3381c206b02ec2b698ffba1019a5e8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Kids Room Motion White\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895431041\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.master_bath_lights_off_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54fa204f71e05ab0e55d9f4409aa6ac2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off Motion\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1632895565944\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":\"user\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_motion_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b122a6403b1e6102b774c5f91d37a109\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Door Motion Alarm\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_smart_motion_human\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b041853caeba17cf928939638155c248\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Human\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_human\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_button_pressed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0247c03858e81ac316c24dbea6f0bd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Button Pressed\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_button_pressed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_invite\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b490d78c9b4cbaafadf0c893b801a05c\",\"labels\":[],\"modified_at\":1730406829.425846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Invite\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_invite\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_door_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bcca1ae5fefcacfd0ef6dcb4d8b7b11d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Door Status\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_door_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_call_no_answered\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0f14d3b72d1f98e8ed47fbecd5b419\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Call No Answered\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_call_no_answered\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_infrared\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e21d212136e8f6167e23615634933ebf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Infrared\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_infrared\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_main\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dc52219ced77a446fe360690a4cc784a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Main\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Main\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28587a1f49ec36f599f8f42020999c28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d86893f808d91f26b6859f432eac7d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Red Alert\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"red_alert\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0c880ea25f8f95f5f4149b3b3dbde52a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Illuminate\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c375ec26f63adaba2a3600d0884e4", - "offset_ms": 48 - }, - { - "direction": "recv", - "type": "text", - "payload": "6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Show Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"show_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212fbb3cd5dfca24ca5dfee46fa297da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Kids Room\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_kids_room\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"abf611beb1cf6771f05cea144108c5a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.kid_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0296bfaeadf38a3c2c643aa0fa317ffc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kid Dance Party\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"kid_dance_party\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ad4a44c058301709a2c85029eb3a928\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633315499530\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72c0da4ff910be4448a82584819265d5\",\"labels\":[],\"modified_at\":1758172744.684397,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633316964978\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33ec4ea4e5c89927fda1517f3c16fbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317039614\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30cd2b7857a2400001b3c24d6828ffcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317101093\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_kids_dance_party\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ac91a924370b63b79e242b921321b50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Kids Dance Party\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317161375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb22ada93ef655ba18e9b9e9168627e4\",\"labels\":[],\"modified_at\":1758172743.683117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633317518311\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_kids_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf072fca0aaa7e3cb0d7edf9000ec1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Kids Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633318458266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_show_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39ea7e6d5efb9cb8e90240ca9498b48d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Show Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633321371244\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_illuminate_living_room\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a338e143092fc0aac6088733d8f992\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Illuminate Living Room\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633323598789\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_red_alert\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64928aa007ddb8ca5083b35e7f8ccd60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Red Alert\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1633329926454\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1412ca1484c26fc0f1b15b903c39c979\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b549da1714cb046914a04ae5f9df208\",\"labels\":[],\"modified_at\":1768937324.521669,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:0F:FC-light-front_porch_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f1a54ce97cc4d298e3ebede755c053\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f32cf07f4683f55bcab89798695a46\",\"labels\":[],\"modified_at\":1768937324.493498,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"BC:FF:4D:48:23:60-light-front_porch_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4473c2dbc00d6320702cda169c7a91c8\",\"labels\":[],\"modified_at\":1775870416.945947,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Porch Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.front_porch_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c474f9af1ecc77455a800c66b4682d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cf5e19c579425ff2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb03e342c2822bb15c887a38425c17d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1637480683670\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_on_dusk\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea302a8d7dd8f0aad892f4ab3a0129ed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - On - Dusk\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606004641\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b408a1694e51a832ebd0110266ae9b95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606124541\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_restore\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67d608cf2a32ab837f3f638603121f6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Restore\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606172266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_porch_lights_off_after_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c47fb544830a808c164453e004ccaa80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Porch Lights - Off - After Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1638606436231\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2911270340373d6692ced07821d91a\",\"labels\":[],\"modified_at\":1775870416.946362,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.master_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_ceiling_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1a9fe62dd87298be3e20bf76dc5ede2\",\"labels\":[],\"modified_at\":1775870416.947281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_ceiling_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f184a5dcee5c41d074c34bcf6f0788a\",\"labels\":[],\"modified_at\":1775870416.947891,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Office Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.office_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.illuminate_master\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23f3071c3353df3f910d738281ccebf0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminate Master\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"illuminate_master\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec4945d179a66d50aeda49d07fd8d1d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Master Lights Off\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edc8c107b4d7bdde4ea4ea619fbb029a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639120832058\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.google_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"712ed0c3c619a6f18ead981897ff48cf\",\"labels\":[],\"modified_at\":1745898587.722042,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"GOOGLE - Master Lights Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639715090770\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d82e452611e452407b78b0ef3b5ca41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.jenni_has_driven\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a3c8889231a5bf5d75dea1ab9619b42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Jenni Has Driven\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"jenni_has_driven\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_close_garage_door_leave\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22831cf5534857f869f81216a62334ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Close Garage Door - Leave\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639718580516\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_open_garage_door_arrive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"524e32ae2138f47b68e69030d244bbbe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Open Garage Door - Arrive\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1639724678294\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_security_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"066e17ebc66789db48cf2e304ed5379d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Security Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_security_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3002756754c22bdc89b0046fb4d2cbb8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"camera.front_door_sub_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85dcc97f2bb788c39ebc5175f6c653dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Sub_2\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_Sub_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.nap_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"944bf3860f83ebc3f9fab66742d581b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Nap Time\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"nap_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_master_lights_on_weekday_morning\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae5f17c250b517908480297107e4f37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false", - "offset_ms": 48 - }, - { - "direction": "recv", - "type": "text", - "payload": "},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Master Lights - On - Weekday Morning\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641177479575\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb7ed0ee5f58ab9e7d2801bfdfee8fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188755198\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a1917bd219066d9a31dddd40526ac3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641188941984\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.adult_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1fbc8990624c59d6baebd252a9927d20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Adult Bed Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"adult_bed_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7dda3951af520ed7aa14de0528021459\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641190435073\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_door_open_10_min\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"143a15957bf22bdb04ac5c7772a2ce51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Door Open 10 Min\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641191518035\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.bed_time_persistent\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ebdc4128b00a85d18f09c1a3f4df0da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Bed Time Persistent\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"bed_time_persistent\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_bed_time_persistent_off_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7e1d8b9bd1cf3e328c05b5577a8cd13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Bed Time Persistent - Off - Wake Up\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641192891526\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2af5d760ba8ab63f823839e9455f953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b578d45bd122395c5de1934f8f46e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Away\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225378269\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.presence_set_home\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a8af2ebb3869fa92d132d3d3d00ac804\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"PRESENCE - Set Home\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225411475\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51ccecfcf007db71262f1935420252e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Large Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d1ebd3722f10011fa664fec57ed37472\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Close Small Garage Door\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"close_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"471dfdb1b7068471e0e1fcfea1e471ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225671056\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e582eb57efe5d94969905cf1bff8f81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641225729228\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"651aa5c71d4b4b596f4a13407ce60767\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Large Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226072324\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.iboff_close_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cdb6f8074feda911c7b4db1a1e0478e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"IBOFF - Close Small Garage Door\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1641226100136\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.pause_master_bedroom_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b91da8b1552452b28294bcc304b4f8bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pause Master Bedroom Lights\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"pause_master_bedroom_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"timer.garage_door_closed_recently\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"90320387b4e4ec3a3c7cbd84dbc5ad90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Garage Door Closed Recently\",\"platform\":\"timer\",\"translation_key\":null,\"unique_id\":\"garage_door_closed_recently\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_nap_time_over\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f25dc80c5eb3444609b559695bcff2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Nap Time Over\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1643176701270\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_disarming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"889c9705fedda7305ea5fc7107f5a56e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Disarming\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_disarming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_door_ring_light\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01c245ad5b42f3410ceadf17493c617d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Ring Light\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_ring_light\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_door_smart_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d98b2a6e9c31c4c5aebe6deef37adab3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Smart Motion Detection\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_smart_motion_detection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_porch_lights_off_bed_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2e11abfde42f19a5057b1b585c72c3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Porch Lights - Off - Bed Time\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1652512982739\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e04623ca1cdd79fb8087c8cadfc8a27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"468809c6fd06ce648ffd4890de5cc742\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4f4ac0f275a156c8d2384faebbeb939\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandalier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6571da15bd6e6aaf28760a38252de8f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stairs_chandalier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b323727cf823f62522377f2dd6b67c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1124603e90858bd2a7c8eeaa4ef0c908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91edb81063054b8b29e5bc0aee5ca722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leks_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a55fd0624053c3fc70a102047121f57f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kitchen_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68111fcc2532b27a80ba3cc01980d288\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kitchen Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kitchen_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0fe65477af3a205470a1ccced0b63d2a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42f50125299f3927c531c18b669aaa60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"261cda58fa35c9826e2e8a9e46548ff6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4bbd43bfe7fd1687e3f9474bf5306d86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bath Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bath_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48c6d2458f235bc19dff653c6f3bfbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"134f2a9c097befabd5c7d358e36a7a6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door_lock\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3dfacb9c1a377c0cc5390b71bd2955e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16ffd02c1f172e132bc50ed2bf793eaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8487a8d303943a19ac5668fa6c21f68b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73d67204eb476a06333ef8f4adfe5ef7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Living Room Lamps Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"living_room_lamps_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24288404b3c7dd6c44ff56181d1124e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"864b5cd1631ecb4437a6a0a50c7257e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.desk_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"722bcebdf2dd4b683a717d50365989dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Desk Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"desk_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_large_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2caeff606e9499afc9924c3338e29c0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Large Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_large_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_christmas\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e869294cbe465647705bafc2c47d8477\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Christmas\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_christmas\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85e9eb0070a496e7fa87eba9e56abbd3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0989c392a71f038b4ce8fe25569ac13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37cbb875f4dfc9ba34dd3b3e17930562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.toggle_small_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a1e6bfae1dfa193385ec058c31f2fb9d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Toggle Small Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"toggle_small_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e487877af8428842b8d8007616674a62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aa3800e7a126f118ae9b7666deaa2314\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56cd7bf3d052edfdad8981918cd6267\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fddd2acbdfde2f3570dba13d43190b0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6a231953d122e3658bdd77cdcd797f16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24022be80cfdf60a4115c7bad5b035ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec52255713718153f0196eae444e4fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89ea19ac476812b23f5fa073e720b4a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eef0de05d0aa24da9c82355406167041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.kids_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7940e0e30fc1e1fcc4c9b7a48565002\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Kids Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"kids_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_fade_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663c860aed914fba5858948be314cbe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights ", - "offset_ms": 49 - }, - { - "direction": "recv", - "type": "text", - "payload": "White Fade On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_fade_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6be2f831d75032a3ad7b684508d65e16\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.notify_phones_about_garage_door\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ece1f2275efa510e2dd20151a04ed9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Notify Phones About Garage Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"notify_phones_about_garage_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_ceiling_lights_meeting\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"372e3957cccc5cb8619ea55b6ad0795b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Ceiling Lights Meeting\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_ceiling_lights_meeting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"754734721fc9477df34eeb036bb991bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.living_room_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f7c8ae1fc9b54bf0123181ee762641\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dead_zwave_devices\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ca6ff31d8ab85a686150917f46387b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Dead ZWave Devices\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"dead_zwave_devices\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f63024643aed08b3bfac6124ecf6ad55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Detected Activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59f0788b350cff3ed3e4c80681032694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11670cf20ba415249941c61df360a87c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Sleep Segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6349ef75a1840deb307830662b0981ad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4516a2d3d10614f0276006803376821c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9a1de4c001b65b023873dc67b2e1aeb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e26c607d067a78c441b7f9cc75dba4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f9b0a9b9747f274c8ec2c4049f13188\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2591a8696175650360ecb04c34ebde3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Standby Bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c29b2793fa42375476a4961a9cb9f3c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 App Importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4c4aa34addf089c6e0d44c3dbb69fd8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Ringer Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6b402edad0d1f3609fe2ea219651b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Audio Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabac057a1daed31e37304dddb21888c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d033", - "offset_ms": 50 - }, - { - "direction": "recv", - "type": "text", - "payload": "80fb776af8c689f558f3d81ec56c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mic Muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c849b40230913371f3ae86450152296\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb4b92f25deb1c26c4d3a75796804cd6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Music Active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63c6ddd0e2c380c423406f865ab4466b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aece69b417cbd569b31f9e3f03cbaa5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"08d4816026b16e5765055bcb256faaaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"167a38f51480e27d6f32ea9bd21cffe4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b36dc595459a5eb7754d1bd53f679d9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fa664a57085896e92fe622bcfad9ffd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level System\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4947061539f7e448c220cbbe3d9791ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79866ed9f3d374f668978f602c522936\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Volume Level Accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"754c6b6be3ff40167959413eee71a769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bf324078f46e09e10914ddd9ad39ea18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f2ae98f237b3a3c18efcfb76a44309\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Is Charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d588b0f08c94af014bcad08dfd9c82bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Charger Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"af35ad533bc818679f6142f0fba98ae9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Battery Health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4eeb5c4fc5a9c4740e441917048cb56c\",\"labels\":[],\"modified_at\":1768937323.674991,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 6 Battery Temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41e620a9902d2503fadcb5049f62bd3a\",\"labels\":[],\"modified_at\":1768937323.675654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 6 Battery Power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0bea36868dc2852f26e606cb5585978b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7c392d0e5b5805c04c01a8de1d19c6a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Bluetooth State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f5694e88652fbe7b4aea3571cd3ad68e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 BLE Transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0c86f94983c08b0aee46a117de5db3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Do Not Disturb Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_6_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4925d0a68fae8a6820872b19a33e5e86\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Work Profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6e361c77027c92ca103f02ee555a17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Geocoded Location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"61959a38850d543f21bb0e1569e0ede8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e12b5bf1dc6312d8adfe9566a8cddbc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Device Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4213bef8495768305cd59cdf35ca4b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e97bb579088e5ea424b616dd154aa791\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Keyguard Secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f66c0118c076670fb52aaffa7ba1997\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Used App\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2f9ae155ba2acb94d2e58ff2481cd0dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4984eeb61df82c1962b1568de93ae1e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Update Trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c379a58d167afdca3215f4bdad404860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Light Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed4aca22759c17dad01d4267be06c9c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093eab6b381d30ac54b915f31a1ffe6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 High Accuracy Update Interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5b1fcf09cfe62058415e538ad489578\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e7c731edc371565fad28bffa63f26fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Data Roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3345b994bae95f98a977b05251d2c18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"36a81e770148fbf8c3501c4034d8b519\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"393daf81b19a2e000076de43a50e0d5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a86d523635b1107073a00863ea200833\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Link Speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf293b8e7370ea8c4cede0e10f834424\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5dcf1e1bbef07ef59ddfe608cbc0132d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aea0472231ddd7b05ac99a683af7c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 WiFi Signal Strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"660adb553e2a9af427c52f135747f7f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Public IP Address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"176bca32b338d93754f9c7be44fa07f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Network Type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0285447de022be2a252f35fa4ad7fd5d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Next Alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586470a0e2dff113e76d335d791c7cd8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4359e632b04270993df87c3fe628cf32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Last Removed Notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c9addd802bcc76b59bad7b47f376a6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Active Notification Count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"422e2b7d93661fb5bf555757d9aff815\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Media Session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4816202ee229e1793e3f4118768d562\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Phone State\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6c47cf4f550f86dd82efbe37e4d94c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"978bf765161185ef6cfd1d543281d100\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3da6d97d96132bbaf358275ffac29b85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c969863cd8081060eb057eea1b261e46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Doze Mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_6_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"859d0df2447518ce6d43471eeb66ff04\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Power Save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ada0b3b5277c155272a320fdb3d308e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Pressure Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbfa1364f9833d410ae76130415c30f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Proximity Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a8b1e9e42181e7f2598315ecbfcd15c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Steps Sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2dfe5cda59186cdf2870eb4805567d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Internal Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ed6c593bbd2acc4ff1fff9f30bd8655f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 External Storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_current_time_zon", - "offset_ms": 51 - }, - { - "direction": "recv", - "type": "text", - "payload": "e\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"60436b2e4c4506cbf65bbe328d971eb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Current Time Zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a2fadec84d4c8c45bb51cb557092dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c088aa9a3a0892284a692665a13625e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4a8a05e4ae43df88bc2ba18d31bc976\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db3a97e3ec912", - "offset_ms": 52 - }, - { - "direction": "recv", - "type": "text", - "payload": "bb7ef3afb01868c097b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5a96bfeab8ef33995d19d1c286975ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f0f857a8968c9cf06c05d1eb7ed8e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:a3:c8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"599fa49165ca52cdaa308a9291244c32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.living_room_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69bbcb02486b22633b2e78f73ed39657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:39:c4:36_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"zone.school\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df94776e25d1b4c511664437c6d8cd8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"School\",\"platform\":\"zone\",\"translation_key\":null,\"unique_id\":\"school\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec6368556983ccd7323a40edadf2e38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Beacon Monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_6_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2160869c0d0023d5de9f7280cff177e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Accent Color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4a271570b65d434d446bb1d4f61c92ad\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_6_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9f2220a04f3d0be4796b6fee9d9b28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 6 Screen Brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"cec8ad49d669e406d13c3a39ce5e3d978c43fa43da8c587226b12c24125eafea_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98521848d3efe121dc305c63a3ae9482\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_hallloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.adam_away\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd0dc4211c81c4003e1b7c52010f64b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Away\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"adam_away\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.pixel_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea4b856a58974c9350f0dc8531733eb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e7b49dcd25a0e17a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"752981de05fcf25b9881f49201d2d259\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e583b4572c572a970b8e4f79740d1d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84d1e072ec6a946787dd954f39def970\",\"labels\":[],\"modified_at\":1733904291.14561,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65f441123d912ddae3e6d32aa9719fa8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd925eb2c0373b46333f9982693cc539\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8add6e050c44b030b775c0900d7d955b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca4da0e5938f0ad9b79786aebfc94261\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6da88d50b1815e413cb3c18effddca46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b9ee129cb84e064e54f6b6f2a68bfd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b56def15f41aad4941106a5a95a55bd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7427f7c8df98d3cbaba16fb1cbf5f27e\",\"labels\":[],\"modified_at\":1769764244.706022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d92a1c422ab0a536d81c42d8ae646da5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ca15e3b72854b67b5f6bd20861d12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6c4b3a155edb068cee9c57e4b9114bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2600df00617c34fd4a6f7085fa9ad2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9d033d4f9202f91a6b56293e16399cc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d704b74e9a8a5a2a3bbabbc7aceac39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fba7cd65763c03f75099ea4f8f2df62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4048c62fc405ce5317c7353ddecc8db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44607a13e9e0906a7b252b2367029b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ffff734debf22a5da1f04227ed7ce61\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7851ce9b8b45d02c259b100099695bcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e75244fd4d702e9e24eed421f19f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80553ce4ab17b8e3a3c8a0e9f2333369\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df84eb0485292a8dd0738dd75af58ea6\",\"labels\":[],\"modified_at\":1772660779.072245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"962b89bb2e91c9e72416f05984d53a0e\",\"labels\":[],\"modified_at\":1751875652.892459,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a32c673dec6f143954907e9d833d05c1\",\"labels\":[],\"modified_at\":1751875652.921495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d73b8b9674d497ee18d5fc04803bfaae\",\"labels\":[],\"modified_at\":1769764245.433226,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc442861fb551a6a06c1f1789d3a8d47\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8176790314abc637bb78fce1af28dd95\",\"labels\":[],\"modified_at\":1768937323.679914,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"°C\"},\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Pixel 7 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5b470b4aa7c1d7e469ff00bf06256925\",\"labels\":[],\"modified_at\":1769764245.566513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Pixel 7 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cfe1476f76e9b5e40c2665623a580dcc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c501a24867cf1e75b62a7d084fe6153b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"241a1502ecaf8436b468ad0986728e9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"976abf783a6596bb6e4ad93e5eef6ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aafd4d0f25e0058e7691e4b900fd888d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9432ea9dde7daf", - "offset_ms": 53 - }, - { - "direction": "recv", - "type": "text", - "payload": "b7f04fa0fb66caf0d4\",\"labels\":[],\"modified_at\":1733904292.9764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9742771b1ceab90f1b14f82fe2f991\",\"labels\":[],\"modified_at\":1769764246.412117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9140026578f8696f95b3a23e7b4b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2eb9199ce7a259686aa22ed1201bcd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aefcada6f1ae5cd573ecafaed1f82cc9\",\"labels\":[],\"modified_at\":1726775504.304137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"327a9df8b4a560f9869c8a795aa427d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b8aa5d978c603d98ee826e002c5a51f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1935dba47b0942142c6137d75189c165\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b24892dd730b588b3ef58a9c5f6433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"683870d1b12dbfbe9958d3bbbd483be2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05628de07b292547de3074d0fecb63c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b52583e588d331b5489ad61d42d1b894\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea6754e922d43ed5faefd1c37aff673\",\"labels\":[],\"modified_at\":1726996801.234221,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"67a5374ec1ce04d4b1fc7f504a5f5ceb\",\"labels\":[],\"modified_at\":1726775486.464706,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9989c20892e290c5f68ba8011da7480\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ac9c525c7baa10637bfa0bfcf5221a8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d33788e0c059d59c257f087a1473354\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6858fb1bfe673ad16c733d32e0e2eea5\",\"labels\":[],\"modified_at\":1736454087.142562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f8ecd430a0259a766ff87dd14850905\",\"labels\":[],\"modified_at\":1736454087.172581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ede90797f1d7ac76694a6f43d9bc8c45\",\"labels\":[],\"modified_at\":1736454087.212097,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"baa0e4cb851227a8feaf9d6df17e9fe3\",\"labels\":[],\"modified_at\":1736454087.244039,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_wifi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"212276650f0469c6b78f1aa1555eb08e\",\"labels\":[],\"modified_at\":1736454087.284983,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2c26aa9370eb6b26b415452c8aa37fa", - "offset_ms": 55 - }, - { - "direction": "recv", - "type": "text", - "payload": "6\",\"labels\":[],\"modified_at\":1736454087.322599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5559192d4b1724258755211fd6c0eb2d\",\"labels\":[],\"modified_at\":1736454087.355909,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f2f1af76340c415aee598869f15f6b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ba5e415bd21554388b021818724eebb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49817327a16217538f7b5d10768914e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f382990d6af13a6f0f40861b861e446a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"acbdc6c80e798bd40e688481d54f3dfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69b15ae82de7ad1a7193e870c8a928e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8c39f19cdbc833df680ac7b7aeae2a1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"343e97cbda69dad188ebbf6b8c98cbbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95999d30a8740282d4530ca4dcc83763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8dc6554bf62986c588c250443bbd9a30\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501fe56c13dba2403f8e9f6305853d85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45103882a134b44b710984e492b782d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"89602f6616e58d5fe6968e27e9de7f75\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f509ed5dc970c87935cd8abb4447cbdf\",\"labels\":[],\"modified_at\":1768937323.68247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Pixel 7 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce994d74c8d3dacc5f2b3f3ad1c4c862\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b81c76adf96efe95f486bca48df59198\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea6b5d6c0a7555063714d5e8fb0966b9\",\"labels\":[],\"modified_at\":1726996802.141611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e86041c03757821fbe478098482d762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f7c6db6916cfc8884490f24662d6d6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"179461930c9335bff09691616b8a316c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d7bf3b13d2aa43a53bff5d32eb3b6a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b76e1c633c646f74498a1b4022d4aabd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ccd80680e8a746bace2ed530127ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80e2b40eedb5c0e07e4ff8fd494b798b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"51f7f20cb4853fc0b780e3f12cf45927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:c4:36_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5886dafcda7de079d037032d194960e6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f0afd1ec6dd2925c7d3aa877f10716\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:39:a3:c8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab1ff41ba82a1e9a081c62b4a4e05baa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_lamp_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc50d543f3d0de8dce6f30e83abaa051\",\"labels\":[],\"modified_at\":1768937324.522894,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_lamp_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:33:BF-light-office_lamp_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.pixel_7_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74f90347b451e99fe4564a5f9034b2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04350d1332ac239890df047ed24bd6ec\",\"labels\":[],\"modified_at\":1775870416.948326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Dining Room Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.dining_room_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_base_station_power_switch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd59869adefb3c2668706287d79ad134\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"VR Base Station Power Switch\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"switch.vr_base_stations\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"554456bc549d0c50d8ad023679b633b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn Off VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.vr_base_stations_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"974317cf2fdad27a6ff88ffdfe415537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Turn On VR Base Stations\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"vr_base_stations_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067739.720447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94b349a8c075517a154253fb630c014c\",\"labels\":[],\"modified_at\":1775360982.274551,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f55335bb75f173f6fd401e50a1e6ebb\",\"labels\":[],\"modified_at\":1775360982.275026,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8424b92182bb8b52c940680327e1b956\",\"labels\":[],\"modified_at\":1775360982.275471,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86c88fab85fb335a99f5bbc40d5f6157\",\"labels\":[],\"modified_at\":1775360982.275902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00578db2e0fd380276579a29772a6ad2\",\"labels\":[],\"modified_at\":1775360982.276323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"091e225f048950d7bc9b58b427089acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d4ccd77c43917949c6f8998592f6d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bath_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72f6d099f1b60f2bef38928d26cd8c1b\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Lights Motion Off\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bath Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1681343760386\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.scaredy_cat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"875026434592cfe2277e6b60284b69ea\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Scaredy Cat\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"scaredy_cat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d709cb65d0bf72bdd756ad8e1f4ed26e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights On\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_scaredy_cat_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1c060ca1926ddc648dccc6a4ed79a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false}},\"original_name\":\"AUTO - Scaredy Cat Lights\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1685999337743\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.upstairs_hall_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0468ec0ea3a7c492de483fe1e2a6f3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.alexa\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Upstairs Hall Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"upstairs_hall_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bc61ccd7457d16d4521b75efa4de5263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"090f0966fdfe9202896f95e917094db9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"", - "offset_ms": 57 - }, - { - "direction": "recv", - "type": "text", - "payload": "options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_successful_messages_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33efabd658a938a3c84616668b943ad1\",\"labels\":[],\"modified_at\":1728721845.865992,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zw", - "offset_ms": 59 - }, - { - "direction": "recv", - "type": "text", - "payload": "ave_controller_successful_messages_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b46c1986a992590e543ab83dcc22be\",\"labels\":[],\"modified_at\":1728721845.86621,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful messages (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_messages\",\"unique_id\":\"4182894947.1.statistics_messages_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47716215f6c1e4e0c958a2bd847d04b7\",\"labels\":[],\"modified_at\":1728721845.866372,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c0f16bdb9a7af253322e7f2c68037a1\",\"labels\":[],\"modified_at\":1728721845.866525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"messages_dropped\",\"unique_id\":\"4182894947.1.statistics_messages_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_messages_not_accepted\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32047f8c6fedd304c0195365947e01c5\",\"labels\":[],\"modified_at\":1728721845.866674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Messages not accepted\",\"platform\":\"zwave_js\",\"translation_key\":\"nak\",\"unique_id\":\"4182894947.1.statistics_nak\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_collisions\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8508325f21df882e069374d85c2412c\",\"labels\":[],\"modified_at\":1728721845.866818,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Collisions\",\"platform\":\"zwave_js\",\"translation_key\":\"can\",\"unique_id\":\"4182894947.1.statistics_can\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5d1890f3771adcfbc650417995884fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeoutACK\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67397fab6dfc1efeb76db69e09cd2518\",\"labels\":[],\"modified_at\":1728721845.866966,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.1.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_timed_out_callbacks\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cb0ec827d35594d68324c943295da67\",\"labels\":[],\"modified_at\":1728721845.867108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out callbacks\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_callback\",\"unique_id\":\"4182894947.1.statistics_timeout_callback\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"682c4418ccc9d59ab4766feb2876d337\",\"labels\":[],\"modified_at\":1768937324.461784,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_0\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79be22754c52e9d3ba249c79d09b8c3d\",\"labels\":[],\"modified_at\":1768937324.462018,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 0)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_0.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3b9e078797343e12caf9f44a0b0f5b23\",\"labels\":[],\"modified_at\":1768937324.462198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96bd4450ea3aa2dc0fefa5cdcca29ec6\",\"labels\":[],\"modified_at\":1768937324.462371,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 1)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_1.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_average_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d30b0a3a5acb331ecf9bd7faecf3c553\",\"labels\":[],\"modified_at\":1768937324.462545,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Avg. signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_current_background_rssi_channel_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67ff38d870a2330331c2b8ce6d626c9d\",\"labels\":[],\"modified_at\":1768937324.462722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal noise (channel 2)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_2.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f177b710b34d34badf49d64727b08927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.4.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a73d8ed5443f8307691ac47b75cb6513\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.5.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad589416f84ee0a4bae7247f7101e698\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.6.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08fbadd4e068fb26c4d98b53f492e322\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.13.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb6e3d9400e10748fbb5b95f4d2c14df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.14.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9657d799395ad95f249170d72f4515ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.16.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be10ca3bcb5bc1051a357c059873eeb5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.17.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e9cf7a82a0f823c8cd07af1e9828c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.18.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a463e1a6b3777f832e1c78e3c725c8a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.20.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d13a24ca75cc9b0a0413f9f7c0f7c5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.24.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48d8ac6919beb5fd1f7b6715fbe12b43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.25.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f233496fe9a9cdb2df78bff33a2b836f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.26.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97d6f8217dc1118036bf98bcd10f4133\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.28.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80029cb154657f9d9c91b39ba1e31549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.29.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46570cdf00c69acca5931fa450785a9a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.30.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35b093dc4c64641b23021740e8cd27a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.36.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a65fc8863f070a02d939d1b8306a2d8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.37.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53ee574e53ebda2b8e3f989a3ba13fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.38.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30654040cc3e65801967d3b7cb69b1df\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.39.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"544683dd8a7cc50d1bd208a73f4e3307\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.40.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ebe35465fe37aac78f69ed1222d264c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.66.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab0c922ac84db0b313a9c93dc22c6ee1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.4.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8385c6cfa7f0c4997be41b6a49a4b8de\",\"labels\":[],\"modified_at\":1728721845.982674,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e386cb6e210fc89df0fab411faf5afd4\",\"labels\":[],\"modified_at\":1728721845.982907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.4.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9c808db283e54ab2446bab6fb1cc994\",\"labels\":[],\"modified_at\":1728721845.983117,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba1e80a8483cdfc2899d23b81aed739c\",\"labels\":[],\"modified_at\":1728721845.983281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.4.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f42d47a34b6f9e3f87ae053978ee85\",\"labels\":[],\"modified_at\":1728721845.983435,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.4.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9be484fd8a2b1135e0eb46e741acd273\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.4.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"693765a84e9f3e3dcad716f4eeec22eb\",\"labels\":[],\"modified_at\":1768937324.528833,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.4.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"012352a68babdcf20b6cf95f876e926f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.5.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f672471b5c978420e5f1dba57dc4733\",\"labels\":[],\"modified_at\":1728721846.000478,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c4b943d6fb6f596b29d6d977e0e46f3\",\"labels\":[],\"modified_at\":1728721846.000702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.5.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9873f4f992eed491065ac7a2f339a7bc\",\"labels\":[],\"modified_at\":1728721846.000876,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69032bd476a7b17eade17059e08180a4\",\"labels\":[],\"modified_at\":1728721846.001035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.5.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb63ebe968c8197ed6fd472701949976\",\"labels\":[],\"modified_at\":1728721846.001179,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.5.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69dbe60b2c6ede995a5e608d08544cf1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.5.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46b8ead388ec6b9bbd189354e8d592ac\",\"labels\":[],\"modified_at\":1768937324.530131,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.5.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4cda4cccf1bf41fafadcd00681b40751\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.6.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3", - "offset_ms": 61 - }, - { - "direction": "recv", - "type": "text", - "payload": "da25ea5b1606150ef66a9080137bdcf\",\"labels\":[],\"modified_at\":1728721846.008122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69e11426422fa9379fb37cc8b90b0100\",\"labels\":[],\"modified_at\":1728721846.008333,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.6.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6068bcf6b64da799f454a39f75d219d\",\"labels\":[],\"modified_at\":1728721846.008489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e19fe563fa9afb307a1d1ec0af6a47\",\"labels\":[],\"modified_at\":1728721846.008639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.6.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7c137d08211c63fc135d56ad8079b20\",\"labels\":[],\"modified_at\":1728721846.008782,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.6.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632b4444df9edd83dc36ddefc3105924\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.6.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b89faa5aa8c37389c327d33c0bed5f5e\",\"labels\":[],\"modified_at\":1768937324.535509,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.6.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c48a9484b52fe684114f779a2fb5404\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.13.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4c6df2834c4defdd486be1e9a612c07\",\"labels\":[],\"modified_at\":1728721846.026245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"511e3b988f5150cf206ecff8b0a48afe\",\"labels\":[],\"modified_at\":1728721846.026539,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.13.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e77fec708cbd9dafd349afe5a826a6f\",\"labels\":[],\"modified_at\":1728721846.026691,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d788a6b3695255083009f04d3dbf84a0\",\"labels\":[],\"modified_at\":1728721846.026831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.13.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bf7f721885b7646b04081641fc9b9d8\",\"labels\":[],\"modified_at\":1728721846.02697,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.13.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4461e4c669a848b9ef3223240813573e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.13.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"308b0682ae88de559074a6de7c53834e\",\"labels\":[],\"modified_at\":1768937324.541059,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.13.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_room_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"705c92b125e5de1380f3c18794369bf2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.14.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6521456f61c04ec8fe7b1e5b097d37\",\"labels\":[],\"modified_at\":1728721846.034872,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00c3b60e2e3cec4899e63d54e900e047\",\"labels\":[],\"modified_at\":1728721846.035075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.14.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec9cb65a35afed1951ae88b782595f5\",\"labels\":[],\"modified_at\":1728721846.035255,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"231a387ade3bdaa4a66853272db8b0ea\",\"labels\":[],\"modified_at\":1728721846.035404,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.14.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb1ecee5163bce8480c0fd35a09c6769\",\"labels\":[],\"modified_at\":1728721846.035575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.14.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"85069e58b15d22ef66a4bd97c6129f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.14.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c8fb660cd92b5d242ab5d679ccd7b33\",\"labels\":[],\"modified_at\":1768937324.546124,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.14.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c336a49feefaaa0e9faa1a38535c422\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.16.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d93c331bf5198470ef4ce4f524c52272\",\"labels\":[],\"modified_at\":1728721846.042608,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e863df09902ad83c56a2841cb51f576\",\"labels\":[],\"modified_at\":1728721846.042868,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.16.statistics_commands_", - "offset_ms": 63 - }, - { - "direction": "recv", - "type": "text", - "payload": "tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"798ee7f183a63fe89f1e942c636b3bf9\",\"labels\":[],\"modified_at\":1728721846.043022,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42ae2ffc8bde328a61b8ae4373aa5eb9\",\"labels\":[],\"modified_at\":1728721846.043158,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.16.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ea12c6f7d52404e2147b808e1242b41\",\"labels\":[],\"modified_at\":1728721846.043281,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.16.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7ce0933d67d34e56e76dd1709593328b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.16.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dca82438215fb7fafede9cce49acda\",\"labels\":[],\"modified_at\":1768937324.551074,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.16.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"304e4ebde63c0b6724afd5e92cd59f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.17.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cdf393e8f27ba0fa618069c16022a026\",\"labels\":[],\"modified_at\":1728721846.051416,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40c570bea89d10e15145cb64ee1f7ab9\",\"labels\":[],\"modified_at\":1728721846.051615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.17.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b2edd3fbab7394bab0c14cbe7637c5\",\"labels\":[],\"modified_at\":1728721846.051761,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4353c6bd553ecb2277ca7b997c50c85f\",\"labels\":[],\"modified_at\":1728721846.051897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.17.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83be3dae9ec35473d348b3c5133411d5\",\"labels\":[],\"modified_at\":1728721846.052036,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.17.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3adf44d744835c998ccc919bce886ec9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.17.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7e70ca5aba67a4a230b2722299052e\",\"labels\":[],\"modified_at\":1768937324.557331,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.17.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a07cf5d4224ba6239a13744c18dd235\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.18.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7caa0248d8ee1076f41ddb3cc2c89f8e\",\"labels\":[],\"modified_at\":1728721846.057035,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001bf6da6163b4586b7f7d920b182c3\",\"labels\":[],\"modified_at\":1728721846.057227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.18.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"407a6b9aee48fb0bb041de319bdc8731\",\"labels\":[],\"modified_at\":1728721846.057394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"474a984405d6ad3fa524af6f21852079\",\"labels\":[],\"modified_at\":1728721846.057527,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.18.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc3da0f80245bad1dd0b080c05f60ce\",\"labels\":[],\"modified_at\":1728721846.057654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.18.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"338d555606471bf4656042ddeac2dd42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.18.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"debf128d126cc42f9d9678a177a3d7ce\",\"labels\":[],\"modified_at\":1768937324.561345,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.18.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da1541fbce94275ba5cbca676f2702f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.20.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e4917ca0de8cb75740c3cf980a2b1f\",\"labels\":[],\"modified_at\":1728721846.06327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bac1b4c13d182d12c16822efc7415f3c\",\"labels\":[],\"modified_at\":1728721846.063447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.20.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04070ea7d7a035faa87209770e527115\",\"labels\":[],\"modified_at\":1728721846.063587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e29111b9581f147ea8a636aa9ca50c\",\"labels\":[],\"modified_at\":1728721846.063714,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.20.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77c23d9ce3ce745eab3994897b4c2d7b\",\"labels\":[],\"modified_at\":1728721846.063839,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.20.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9831210a5f148ffec0c960a3cef41eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.20.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ad24989273058ab1e0afede3384b0f9\",\"labels\":[],\"modified_at\":1768937324.565645,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.20.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52d9aa715f3b1cefbfb68ebd33ff9b74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.24.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05d8bcc97db99a59b495eb3c76a683c2\",\"labels\":[],\"modified_at\":1728721846.070907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe6722a9cc2ab68e12b30784f31b1428\",\"labels\":[],\"modified_at\":1728721846.071086,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.24.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2bb1f0bb2a2687cc1a615a13447f6c3\",\"labels\":[],\"modified_at\":1728721846.071316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c2e48f0bdf3f152646733a2065a7869\",\"labels\":[],\"modified_at\":1728721846.071476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.24.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8793d6ce94921703ff9d4ef6d283102\",\"labels\":[],\"modified_at\":1728721846.071605,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.24.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b971039f576f806395a3bfe630bed910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.24.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3ba969b6fccae3a10caf0bd81dacb57\",\"labels\":[],\"modified_at\":1768937324.570316,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.24.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e199fcdf8a82e3cd5b2aaee7e98b3ed3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.25.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d118bd28fcac0c0e418c5fa26c908ae\",\"labels\":[],\"modified_at\":1728721846.079745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d036715c2c04cea631fb5ef537052fe8\",\"labels\":[],\"modified_at\":1728721846.079932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.25.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57325db8a7fb10afd15751aa94309c1c\",\"labels\":[],\"modified_at\":1728721846.080103,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0b56df69f1ed80a097a437a7234a8e9\",\"labels\":[],\"modified_at\":1728721846.080229,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.25.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887eef5e7ba55d9e0936e56bc66c567e\",\"labels\":[],\"modified_at\":1728721846.080355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.25.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afc9d72e408779d20b34dc1f01ad3536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.25.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcda026ec929142ce3cbfa14747dfaf4\",\"labels\":[],\"modified_at\":1768937324.576948,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.25.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1583858de49ba4c0a4b4ff2ee0c29d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.26.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f5033b58cce7dc54c076c8d180392f0\",\"labels\":[],\"modified_at\":1728721846.088895,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43147453f1b24bccb5c5f5e5e62f7068\",\"labels\":[],\"modified_at\":1728721846.089144,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.26.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4387dbeacfa284722783b317dacae2b\",\"labels\":[],\"modified_at\":1728721846.089304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d1c22a4b346df44287e85024006f90\",\"labels\":[],\"modified_at\":1728721846.08945,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.26.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"535c8d77519ba41280c4a64ec64bcb51\",\"labels\":[],\"modified_at\":1728721846.089582,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.26.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b08f4bb01195276c704b25cdd96196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.26.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b0af79a6c4a5379175d0900063ac555\",\"labels\":[],\"modified_at\":1768937324.583385,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.26.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abc77ab50d0d3573e9e10357e6b4092b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.28.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8cd26d45d0e80aab853b7d479f30848\",\"labels\":[],\"modified_at\":1728721846.098327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17f324aa672663f6a659ee494545522e\",\"labels\":[],\"modified_at\":1728721846.098537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.28.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37fb21bcbda4df8298f567ba2d598434\",\"labels\":[],\"modified_at\":1728721846.098676,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c00a5c5168ae3d928deb75654328af4\",\"labels\":[],\"modified_at\":1728721846.098803,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.28.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8c544aed3196548a02205a35243f93\",\"labels\":[],\"modified_at\":1728721846.098936,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.28.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab6a89acdc4cc754d27d035797994522\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.28.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf69f70d0", - "offset_ms": 64 - }, - { - "direction": "recv", - "type": "text", - "payload": "6538e49a0517a65e09e86d0\",\"labels\":[],\"modified_at\":1768937324.589758,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.28.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a77e2f997e7096c9b763729289da0222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.29.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"570afd43cc017753eead4837bedc9bc8\",\"labels\":[],\"modified_at\":1728721846.105962,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa61e5c4f5406900003bcd53d7ea9d8d\",\"labels\":[],\"modified_at\":1728721846.106143,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.29.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1d9e9b71984b9ff29afff4c6bdc040d\",\"labels\":[],\"modified_at\":1728721846.106288,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a19383165b4ccf9d801c9c7f26f50ff1\",\"labels\":[],\"modified_at\":1728721846.106452,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.29.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3becb6b0af1994c2005db257d3c08b6c\",\"labels\":[],\"modified_at\":1728721846.106636,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.29.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19e1560eba677195d70fe919a6144950\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.29.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef43746b3d59b9ebed78786a6a0dfe9f\",\"labels\":[],\"modified_at\":1768937324.595077,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.29.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfb0c54c7cf85ab1e4adc409f895e19b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.30.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1fdfa3a2d14760b9475ad822051c5428\",\"labels\":[],\"modified_at\":1728721846.113654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e4b1a6e975cf9b1d9994e5c0fc96fe8\",\"labels\":[],\"modified_at\":1728721846.113904,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.30.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2940e9491fc8082f8a7566fd97155363\",\"labels\":[],\"modified_at\":1728721846.11411,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912541a2fa4cda4138a5d43e32b01c9b\",\"labels\":[],\"modified_at\":1728721846.114314,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.30.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09a2c2e79f06f78cac686eb78b5a0983\",\"labels\":[],\"modified_at\":1728721846.114484,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.30.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8184bb20bb3ac0aad8c150c92d9b60ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.30.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"595b480ffb15cb31f87e003a704469b6\",\"labels\":[],\"modified_at\":1768937324.600438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.30.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02636c3d8887bce10db55744cf1fb300\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.36.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3659d233ee1194e78d575c8259c79d75\",\"labels\":[],\"modified_at\":1728721846.119874,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ab37c037a538751cc745fc318c53375\",\"labels\":[],\"modified_at\":1728721846.120105,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.36.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ebf0493baaeefaaf3727add303ef097\",\"labels\":[],\"modified_at\":1728721846.120293,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7aa05f5e8e60454c434e760f09ba7d0\",\"labels\":[],\"modified_at\":1728721846.120469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.36.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad7f8e9a7534ce6f62dea3787f34512\",\"labels\":[],\"modified_at\":1728721846.120604,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.36.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817b83fa9b3b611ef9148d3a1c7b9458\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.36.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"207b9f016771de3f0791a50db497c513\",\"labels\":[],\"modified_at\":1768937324.604321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.36.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32ed05ddcea53a4e1ab8ffe90200bb11\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.37.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fe4ae53649255d1e27d0064fd803ab9\",\"labels\":[],\"modified_at\":1728721846.126048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08e5d0574d23b7feab02b70f64bcaf5\",\"labels\":[],\"modified_at\":1728721846.126233,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.37.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e3ac4ad5973a9fc59e74f034b3f8a9d\",\"labels\":[],\"modified_at\":1728721846.126379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f451b1f3ff73499f3efa7843ba1fda53\",\"labels\":[],\"modified_at\":1728721846.126518,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.37.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a513a0bfadb8e062eb3d5ca06378ee1\",\"labels\":[],\"modified_at\":1728721846.126652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.37.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb48677e23288d884f9c18b559952cff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.37.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d2e87e3ea7659f4c1ec2f9581b248ab\",\"labels\":[],\"modified_at\":1768937324.608389,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.37.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5565c442b090e06c8f7eb6342f92e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.38.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6184498ceaf1572ecb710a88977504a\",\"labels\":[],\"modified_at\":1728721846.135332,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f8631a758d2f4b056f007426987b5d3\",\"labels\":[],\"modified_at\":1728721846.135525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.38.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8186ffa61a7c07f827a82f6ed999ef4b\",\"labels\":[],\"modified_at\":1728721846.135673,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4e9a80844eb2d564dc68cf1827019af\",\"labels\":[],\"modified_at\":1728721846.135808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.38.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0205fe39e1a0a4578c09918f54f68fb7\",\"labels\":[],\"modified_at\":1728721846.135937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.38.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a43cd34777a3876325239f0c80882549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.38.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cddfcbe8d05af4ead30b2c9a732e8d97\",\"labels\":[],\"modified_at\":1768937324.614863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.38.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa7663cdf3be9fb9aa633722f02fe95\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.39.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"185eb8e01e811aa96f1055db2eba082f\",\"labels\":[],\"modified_at\":1728721846.146856,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7507b2bae3374108dd49ab35772c96e8\",\"labels\":[],\"modified_at\":1728721846.147069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.39.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11720db84f8dac252640168c91fae5b5\",\"labels\":[],\"modified_at\":1728721846.147219,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2415ed4c820427b452628be0746dcb0\",\"labels\":[],\"modified_at\":1728721846.147361,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.39.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"605baca0427b42514da2eaf78807a67f\",\"labels\":[],\"modified_at\":1728721846.1475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.39.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6d2b90ddc8284b68e378215f59d0f6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.39.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f93c038fdf85ec4247f1559f1b415\",\"labels\":[],\"modified_at\":1768937324.622387,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.39.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5999ecfd025c3cc7800a4a89aa08edfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.40.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"917be806129eacb471d1ee0d0509698a\",\"labels\":[],\"modified_at\":1728721846.155502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"94e074b915ef0ae11677a926f8f4e3d1\",\"labels\":[],\"modified_at\":1728721846.155744,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.40.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84a23599661784c7f5dd79065fe6bc72\",\"labels\":[],\"modified_at\":1728721846.155897,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e6d217bcbe4d21e0ac74a35882afd3d\",\"labels\":[],\"modified_at\":1728721846.156027,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.40.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d101cc55ce6cddcf624e76cbd806cc2\",\"labels\":[],\"modified_at\":1728721846.156151,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.40.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e96d40f2a5ff985cc298963049a9848c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.40.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a4374928a53f5685eb1db6dd22fa3d\",\"labels\":[],\"modified_at\":1768937324.628793,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.40.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db458cfaf86d76636a7d2bf0895309de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.66.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5270f9954244bb65705d47f9136e1aa2\",\"labels\":[],\"modified_at\":1728721846.230051,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82399c66db015194b4f3e070808696a1\",\"labels\":[],\"modified_at\":1728721846.230244,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.66.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471598b270ecac776090a8d2c01bda06\",\"labels\":[],\"modified_at\":1728721846.23039", - "offset_ms": 66 - }, - { - "direction": "recv", - "type": "text", - "payload": "6,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae71812be09a23822eafc01198f60890\",\"labels\":[],\"modified_at\":1728721846.230531,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.66.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e76593d32bda68336de64e105ec8f0cb\",\"labels\":[],\"modified_at\":1728721846.230667,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.66.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98d943f3a15d678a077164e12b0b6f8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.66.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"162a16ffb4efe6d9bec61e35df2cef00\",\"labels\":[],\"modified_at\":1768937324.632659,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.66.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db32b0a9239e3164b238a78d332fcc09\",\"labels\":[],\"modified_at\":1728721846.270694,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c11d0e40cda08b41a09ae52d89dd462\",\"labels\":[],\"modified_at\":1728721846.271147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-alarmLevel\"", - "offset_ms": 68 - }, - { - "direction": "recv", - "type": "text", - "payload": "},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20a58486d4ac94d1c4627100475635e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a37d873a73a470f8610b1d170620e9c8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c53aead1aed9f2d07387815e701ea7cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd37a59131eebc3d3efb87e3b9a180fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb13b83675e38a3d6fea9f88a7fd514c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d95d516b1ca9219bf2fca27f7f2908\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b844ef9e2e6426121768a751759fe087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd47e78959ada5340c2f57306fa58db0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c37787e174ef03e1765d9bef617982bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60ead9b3b7d23ce46d5d7e26d8940d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d51696e440645ca3f4b8529e028f971d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_power_management_power_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"237fa206e122aa41369fa1c33d8d0a8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Power status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77483a0a861c0237c93f510811bd0c72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_idle_system_software_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22e6ae4f8004df116af0e2b635af2c29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Software status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2648ad9b3ede6e6a150d9efb636b049c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2d88cfc6df1889a40731747606245be\",\"labels\":[],\"modified_at\":1728721846.274493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdea929adacbc2d74c59d113df4e814e\",\"labels\":[],\"modified_at\":1728721846.274952,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcabb74ebe7fa1ef4dfc174b377e74be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"139db407d0314d892e9399e794a94160\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9717997085ccceefc242700248840be7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e249ef83acfce3deefa5a3a95e68bbd\",\"labels\":[],\"modified_at\":1768937324.702562,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f52e426d962ba92d279ea46fb81cfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a516cccd0dfde572f7ffe400ccc573ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69cc3fc9e5decb87fd544bd9c59b2d6e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28b1032c218c390994d8cf969ce895d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02d8d11b76cfc3587daeee2a51de2670\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bathroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2abee3d97931b898d557d8b57204b5b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de10b3dccbd140d07b82ee3cbe00869a\",\"labels\":[],\"modified_at\":1728721846.285949,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"285d1906223aa890187af6f521ac5aa6\",\"labels\":[],\"modified_at\":1728721846.286414,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9768e0fe86fe22a99d2bd1e6fa4a50a1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad5520faefe19b4022eb20391dffd559\",\"labels\":[],\"modified_at\":1768937324.709538,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5816a5b2d76cec6a8f87bce0e5613c69\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66c6daf5be1551275842e31ca471799e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b103e540c009d00db923ae148d2ad3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3070f845f294440ea467f871f4e9758d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffe6be3b9f35cddc7519f62786d0eb4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b43884450e42b01a842b6373fab6954c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ff72dd6844c777f6523a15e4e86c4938\",\"labels\":[],\"modified_at\":1728721846.290665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a530ee6f5837210fe17a7eb90140108\",\"labels\":[],\"modified_at\":1728721846.291104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fbc10825a215ccf77771ac04d53a720\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0af0ae3d27d1b34515317f6f40dee262\",\"labels\":[],\"modified_at\":1728721846.294166,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74bdfa251036d94a97f241789a25b689\",\"labels\":[],\"modified_at\":1728721846.2946,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e698758cc618d42a7e6118d812ecf07d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.cat_bathroom_door_access_control_door_state_simple\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2216fe6d827ae6564c3f5b55619314e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Door state (simple)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple)\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93cbf85dbce888c01dcd21f2d1c99370\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"183772562af3d9507f5f27c5b0ba0f38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c6433560756c9431e1df77c42b6d28a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.cat_bathroom_door_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f6a57de7a98d6ac7b2e945d771fddb1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78debeb2eab74d07e95f30c8b4852e4a\",\"labels\":[],\"modified_at\":1768937324.729745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e70bb4917587f9b8a1d3bd96cadd5cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817943eab67fd9798445262f476064a7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ca751c70c4d7fedf4bf8070434d7e6d\",\"labels\":[],\"modified_at\":1728721846.301652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44d8898092357555eefe4ecad44dee1f\",\"labels\":[],\"modified_at\":1728721846.302076,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf7330eb6dadaa91ec87c23ee00ae26a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c56e9d8fcf2d8ec59e77e00072f24838\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.office_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4446cf0c58d47c700287c9c21432bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ffd7dbad382df41d7195eccfe18810d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security ", - "offset_ms": 70 - }, - { - "direction": "recv", - "type": "text", - "payload": "Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e0906e8e3e7e8461a822528b1cc2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.office_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43b135c801d45745f3cf05c1bf20284d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a58405b84ac4e8dcaf4e760967791caf\",\"labels\":[],\"modified_at\":1768937324.733974,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f994629b2715d3c8dcf982027a8a780d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"762c0ea162380dc2056fd5704a2719ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7eaab4a2744c4902a408c6debc79cf37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d848e0323383acb9c5ddc423cbfd950a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"908ab6e73ada2695a0b1c8d01e975190\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d2852c957d65076fae9aa19748c9d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aeb0433e0d87026a6fbd8afc78aae33f\",\"labels\":[],\"modified_at\":1728721846.306497,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f989704f396de0f609d4b0351f2c0f9\",\"labels\":[],\"modified_at\":1728721846.306925,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a737baa4dc868142fb3dadc46322ab27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e14f8fb1c155d58e6f6f00768c1fbcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"defadd1bbcba92ba76af88f17a4b6948\",\"labels\":[],\"modified_at\":1728721846.310189,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0014deb8f599a19a01599b67b85ba0cd\",\"labels\":[],\"modified_at\":1728721846.310607,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"904cf14860d4bd4c39b88c6ffc505eae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2a2c87ca142a9691153c08e98c9484\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.large_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cb608eabbcb86e1939bbfd47af08077\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.large_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1cc16282de895c102c625666255dd1a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9654b1744b3eff83e9fe67c5f490209\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e48cf8e1095ef4f80ad4c5a40bfeedaf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b5e2609b44518d7b650ed31366f9844\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"846632f2affb52790f552049838b285e\",\"labels\":[],\"modified_at\":1728721846.313113,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc5b74a375f77f6146ac469f4317556c\",\"labels\":[],\"modified_at\":1728721846.313655,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e31ea48aa516d44a0e74bd58e0bce5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2657140005056de27f2fd24f0f8c406e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.small_garage_door_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f53dddb446efd5b75c2c104009de5a9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.small_garage_door_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56a286889a09b67cb4f3da4901dcbaa2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c06542330d8cd6459f5a6d000a45daad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17949bbabe2791d81f4839fe3e9110fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_motion_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"523a483aa227e0b389baa33d916a600b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99761b8c80b75889a0e4d4e1e8d894ca\",\"labels\":[],\"modified_at\":1728721846.318031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_motion_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d64a13fcd28fd09e1e1e8eb2cd8fa56\",\"labels\":[],\"modified_at\":1728721846.318493,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70a2a1679ee20d747ff2a3a413f1e105\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f235f0b2abe04b471ec5b5e5dee4a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bc89c05c4c94a30db7238452914e215\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98571f78a667d1495fe0cf9836c9472c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e1e09dde3dbf7a35f9cd2d43962adf7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"52c7ca7b64871829a52196f9006ab15f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8203802817bf1ad148be4fa89c851d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2584fd64a2409ee7a09a132954035e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98b7c7cf21f957af7621433d77abcb1c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"beed0d43ff1aeede01dfb858e8c5970b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"921320ca502d44f294ef98cf28935e13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f3f60bb56320ae0aafa2079eb81f15e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d821dccb30962b1463ccc94505f53052\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e964cccf2a7ab8f0eb0eb913f676f05f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_power_has_been_applied\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c84d95a9ef4cc438fc83d1cdbebba33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power has been applied\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Power Management-Power status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_system_software_failure_with_failure_code\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12ae7f7b84f0b2f02972e196ce9a93f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System software failure (with failure code)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-System-Software status.4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e42e6ff5ff57f588c006928612396ab9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d486aec5330d75337491301294bb4435\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"346c374272b05752ac5fc931704ab571\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e36b9133e1d28872231dea0fb93528d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bathroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37d17dc9e2421530e61ab1fa54776f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9496b4f3a9d78224c587705a5efdbff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc277f4c90c74fb8271cce66304ddca1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_sensor_state_door_window\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"", - "offset_ms": 72 - }, - { - "direction": "recv", - "type": "text", - "payload": "b666349984f09005c3ea218b605990dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Door/Window)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-48-0-Door/Window\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf1377a4d496a97ca0468993f9d02d34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b237c13f8ff2d948207447d610bf79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7e258cdb97757b5d1dcb2cfcb1ca601\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd811627fcc5a2efe088ba85498824a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a034873b733f7302c12f77357cb7d63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a06a139b75a0038df888efc160b6d718\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f342fffebdbb3961b6c7cb1483bdea7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fbd66619e5a006f253944775dbbe19", - "offset_ms": 78 - }, - { - "direction": "recv", - "type": "text", - "payload": "e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.cat_bathroom_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe112a32c778fc5e1a85b57ddc7caee2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"269d59ba2afbf01a89976e87a7aa1210\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fdd6e83c70df50995811a7b4e2a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"461339479072e6cfa6a97b02f9607e66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bedroom_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4359424baa64e986b59fa41d415ab1a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.large_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc8aa0c17996ff85c861eaf8d5b0cf84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21eabeec28b1aaccd01363d19dfa11ba\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bb5accdf9f56c10d895bd732f109ea3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d7d60da7940314cd626bd834af5e727\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"388577ab65bace3f26ee0ac8154104c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b33e66f09619f185899bf4fd71502c5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"531f0295e3afb7186a34bc84e036e106\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb697eb52f8e49d6847614e6c87ec81f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.large_garage_door_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6c5c1713703f37c2d0c9dc58ab71d78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_garage_door_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa66284a36aad4743c9457b43009c3d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2dbebd1dffc9b31aa00702afca47fa85\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.small_garage_door_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"742d317e9b1b93196a64e738fe81c3e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_tamper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5694abb63a3d7d0f1fef64ca7ced652\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Tamper)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Tamper\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_sensor_state_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11e92860f380e2aed665f5bfbbcc4c5e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor state (Motion)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-Motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_motion_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7db329966d8fcaf7bf8f2a1a041f7972\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b27167efcf1befafb40ba35f59517cd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48fa14c557be3", - "offset_ms": 90 - }, - { - "direction": "recv", - "type": "text", - "payload": "aac0f57468322f7eb26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb55ba8a855d25dd7428036e0cd0558e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ade08beb8063bcea7d4994e3339ae993\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_binary_sensor_report\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b9cdda5ff0c3b9cc4a989febec670ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Binary Sensor Report\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_invert_binary_report_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8a2920baf84268bd89b048d09e651e0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Invert Binary Report Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_association_group_2_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d8ce0431cacc919f6654e0d26866a2ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Group 2: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05eff5902e0611fb8f7bebfb06af26cc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-81\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"576780787e0d9a68a0bf4ca262fd2e15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c83da5113e06a426ab49e391daa6f61b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bathroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2219269962fa6d6e19aeb17527475e5a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5588863a4b18d8b348a74149bba2221\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec633310e97c80c59c6315eddbaffb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"95ba1e0f0980a5e81a9ef637b5ba7137\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d19e1a41099b9e58ae2ac48892f7d7a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.cat_bathroom_door_sensor_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a191ceeb0e05a37927f92d920b7e346\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Sensor Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e06c6e040bcfbfa49d9e4e0f15ae549\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fa47306024f7160e82fb2166d71503a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44754edc6ab7eab6babc1a133ecdb743\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68a3fe093a4715fbb03c1f6ddbfd4315\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e025e5d17b85cc5f449e4d48ae663657\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"130711c5025aa11d4938873aa2b2ef5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a640b780d8eed0ce27f6b553fb0cabe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.large_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f692df4d0a05b8ad1192c699fed5eda5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_closed_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6353d49e24aa16d649ccc114e076", - "offset_ms": 92 - }, - { - "direction": "recv", - "type": "text", - "payload": "84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.small_garage_door_open_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc6a70fe7c7b6f1cbf485e3b2b3e6be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open Angle\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a088a5d0f5d09b2c15852d0c0e787b7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"964462020e6e73b0b0169f5a61eeb044\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22fb495535a4ebd7554ace311e87e8ab\",\"labels\":[],\"modified_at\":1768937324.754808,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f062bd2af5cfe5046c59f564790afee9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47e5be29e488997e90937e83b9da396f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b7c79a5c504e2f3eef63f7237af33d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1562e743cda38cd488936d23e22b58f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99afb89d564e6c8b5f415c28ce8491b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4292496fbf98923806f65951145caf42\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62c38c853703ab58d017fdffcfa06a03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"35ac42b0024d325caa77eefbb92fd9b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_supervision_report_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5127f16f1631b5877cf467e2d58c1c7c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supervision Report Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_low_battery_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"55c1d4c91d596bd4191f48a726f50433\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-90\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_automatic_report_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7407cd1518c4dcebc6ef6c5d8e7da423\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic Report: Battery\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-101\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_max_number_of_transmission_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6415881cf9e2c0b61be6abfa112e5cf4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Max Number of Transmission Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-65280\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_transmission_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2725a94f79899b5a4970b5c4d3b9e418\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Transmission Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-112-0-4-255\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4704baadf1151fcb1af4eb70c654e09e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30ee61c6ac77872bef422f8ab9ac933a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0732e5ee938297a9f5b973ed48b06d3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24e11985867ee122b198a79d40d53bed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bathroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e0ad69f430a72ac40230febd6dcff06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"73efe848e7f6628deb3e86f815638a6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e11e57268a63a858310fd24ac8994a26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3929bbaa3f8cd13a3aeef2e57952959\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42e94a93f2db059304acaaf69c17af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d643c40ce27169788c2810ecad316e60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_on_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"90198efa0dea712c09f423bc7fab9741\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: On Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_group_2_off_delay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21c9e490e8efe764f099f91b18f22c7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Group 2: Off Delay\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_battery_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cf3a65f5e9b1fbef950e3e779e92faab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.cat_bathroom_door_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bd57910353ffae53801fd8a4f1b5f0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"454f88037ba03f08b83dccfd939ddb4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b426c8fffa9d853c719d4ff70196f3e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6824baa7a41d44d33603b4c760879101\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f0b56e360639ff5daf69a28f3036e79\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.office_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eafd82385841281bfe024783dda13491\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ce75698c6edf211b8ff2e161520b411\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b98a93997b7667b4711d2831983de8a5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b5734672a2c09d8f0f6f0e233752b945\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99e3d86cf2c0a6fc7015cbfe7d79a060\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcc9e480f72433ef3b4ddfe4a5d6dfa3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bba437e48b66a4689e26bf8b75377b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.large_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5bd8a6289b290db5a819a7507404574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_application_level_retries\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c540b165eb0ed98e6dcef5b988de2c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Application Level Retries\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.small_garage_door_retry_wait_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f131df2fc89b340d5ea5d8f7553075a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Retry Wait Time\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e0b6740cab7d3dc04b516dde24dc616\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b37302459fe4a8e950d1cebd8a395e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_motion_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e103d6684aeb59d2b23569b207ba4b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1360a0cf141f9ddedb50eac50ed00ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ac8de408549fc851b81f2ffacfb1b1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bathroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db63a6e036511328bd6ece0876ee562a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b2b981534f8171df4c6da3f420af24f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.cat_bathroom_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"583b41419d24459b2457700e28653e14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"912457da9847cd4c455444e5e3f4b02b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d9f921b3ad910d1de65af1ca97cf54e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.large_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe738ced38fd9513231370dfbd42e0b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.30.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.small_garage_door_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e39d012d9fc6092736ecec03677116f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.36.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_motion_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6db261bcc15334e1bd64fd2fa62f1cf8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4f46c5e88175f5336c08f0ab4b7580be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5544ef469f053ffa8759c7294efa6ea2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4a34eaf48d2c692542296f0e8a7e5d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3c7cf072f2a8ee7bd8b5d3a2cd179fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46ea4278b577244adfc", - "offset_ms": 95 - }, - { - "direction": "recv", - "type": "text", - "payload": "842379d0aef1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b396ff111d07c8a2336ffb8b9f73e25\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6128229fb9f940def07e9c96cf14fc6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1274c94252cb99885059e3bc453f9d55\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bc4bd805d7619c9a1b04076c931616c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2984b5f884cac4f2c289443dc2062126\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff64a4970c47dd1e208dc6113f29e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2e22fcbf052b73b858a5895ddce0eac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2e19645094c9d18821b943096dbfb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e205c1906cbc3351074944002bdd1128\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b64991bc065b8ccdcbbc057f446b1995\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c14062b8523902321eadf7b3b974257\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dbdb7cecb5c85ea349569e68c3b5db5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fb06bb52f2e78831d67c9bf81a0d07b\",\"labels\":[],\"modified_at\":1728721846.268738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7a0060798e93dae0faef390c32c1c1f\",\"labels\":[],\"modified_at\":1728721846.269198,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8bda4ab6b68f9cf6d154e58d087f0dfe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"876da9cde9c3be1845863f537752d364\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c034573ffd52e5a3d3bda9ba303df881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04c854aaf4c81f1a2d429a4a710b960a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c51654eb9bcb7b8bde5f10aa2a6ac2b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37b229da70e600b50c4da7fdd12d386e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.back_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad8b88418744a70fe17230e705c04e4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2d44675bc66f37477a1df4661470f7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e093e8f61c9dde686aec60b62b160f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d1ca4fe6518f80345d12cdb048bca05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f5e73212ea9ec168cfe8f89cc5ecc5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"619631e25ad31c44d797b3373abc0121\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"41c5da359bd07253c5906ea3d1d5c9bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_porch_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69ab1adac8e2d678e29ca7cfc3663b5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d18f196a4578f9f03c18c42a349f4942\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"828bed1781d3ed491bb52194aa5f52c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb03e8f944a74a8d6f22cacb69a179e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ceea1e88fa6359162498d39710e76608\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32c94f61cfaa021fec2a7c42c0187dcf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f35b908065d262cbc20ce40e77913ec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf6e4fba44f0f1074fdb8f59a099f984\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"698ef67888799c78702f6e5993f9b043\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0141219b641271db80532f3e4c208a8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_porch_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6945bdd9b5c1286839ec2feda660167\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13524b9ae17c60833721f597a438923b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5bff288f871c8d3234915db1df3aecac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_room_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0120415d97c3741ccebf80955941d0f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b225c98bbae007535c42703d08744762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c4ddfb2b2ea1632b65135e6b4696b1", - "offset_ms": 97 - }, - { - "direction": "recv", - "type": "text", - "payload": "a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"400140978e8261edd5986a6631c65408\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_off_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef58559c864967045bec692f21ffc889\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93b1acb4134dc4868cc73ba3a2b2719d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_room_light_auto_turn_on_timer_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee02aeef4ca9d0bfbaa379d5510c5af2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08b5fb9ce8c93a2fdba273d6e9e2bc1d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b3e485ee289f8b2389d5d8586ac10af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"295c55ea37ede32f5d0542f2084a8fdf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"af540de79c1a76846557cb5422a2440e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80c1b96899d7ba609ce43f5d3808e905\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e9642d047ce619369c413e6338734b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee3f22dd95d9b04f3bec4b329181605\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5263aec80e35c0827a946676a4aca38a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab751aacbd342317bd0a72094ab1e3d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_room_light_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"205523a60b2f2cb5043d22106d05b771\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_room_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c71d1dd5aac2f57ef4e5d93a800dc49d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.back_porch_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23eefb89f7598b1b12ddeb6aa9fa790b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54bb5483d9b560378be5ed481d8c6f15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e010955d7518d31854c9e4aab3f27196\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db9bfa3b546ed6770a643c10cd880ff1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7df987a19ef8c7183f8bc12db92dedf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9010dbccfdc1900b1f762399bfbfb817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3f2828ba1b43661dcea26810294801f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cd7149d9366d9601a3da20992991bc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-", - "offset_ms": 99 - }, - { - "direction": "recv", - "type": "text", - "payload": "7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1033ca0a8c4bb87068b0b0ce5045202\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4b736f4e34f5b44cc71a6c173a28bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9d0afdbaee1c21cb97bf8ead789fd05\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b7501814ada140ebbc75cba95bd508c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c14c404b2807aad042575bd543388bdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e509fce7fd82a687c5380cabdb85304\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f77247ea5f57e1024e9a33057575058\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e8e9d058603365d951ca1000c07f04f9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3b1909b7eb73dc73e68f2db669bacd1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc97dc24ca8dbf5b4cd695ec9f18062\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e458d225d20e0d47500ef79aacc1fe7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d1eff5533638de7fbabbea2304821f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.back_porch_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dd61553487e0f10f1c0046b93c7421c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44fa78eab4837b85fd7e18b97b690646\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7fb980b446c6bba6e7fca57e53537b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"834c2fb0c37edbf7b9b7cf32759d7793\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17cf457e684ec08236fb7454df043269\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7cae94a92bf02857f8185574b9b2275\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.back_porch_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dee0b93328e4119a8c1edde7101029e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbb5600871de8d1cf42b880a544aab10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce87e6ae3b11ea4e45fed434c0633010\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc5b08b6a1940f42619bd2cbaf4a6cac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7612f009094e943b1e129312251b6db1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c69bb67dd0462ed5dd00def8ad53220e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1655d96ffffc5c9f04e400af601b4047\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2c82f032d22bc8734679d92ea0de83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12b3ea55e15328ea4d540058ed33d507\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"74ce228c87059e06b84516671ac20763\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a341d131322622995e0a4dcc4c2fb896\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c6e47f1cc69120985b15d8613036a9bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b496ac89474549c88080fae26ab63448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d02dae110c56c726715e529953d922be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8220ab6bb0cc1fc23c6858361deeb46c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9c73a2a70d12be24ecb2bcaf74c1eb9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26e03526e28cfbb18f893ebcc3dfc0c6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98a1532b78d15322829fff6448682702\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.stairs_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cee8d5a14a38130a77623414ce6ee4fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bee0b4d100f784a89f713cf59ae7eda8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fceb8d7e9aae08b848cb5dc97b345c3d\",\"labels\":[],\"modified_at\":1768937324.720737,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f6e6ad930ee7d37c2aeec57f725e8dbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.stairs_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"77913513918309cf18ebe9a75f1af7bf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9925ebcc60e4395ed603afbf5a139a72\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.stairs_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"64ef85094caeca25ae98fa076d8c6ab2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.right_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63eb7490ebbdb77e4e07c750649c0110\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa8df4191c90e2069a0650185f007b01\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe3864550a3efb648fe327037ea10625\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8522f9d656d4ee8d60c972ef318b12e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"381daefc1183f93859612b03573ac4e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6dad265890c82659855a7c138b8ff20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2143f3dff81f749104e0882d5274088b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ba145ce3192c0052224a1909e8bfed\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5cad207f07383af83050f38c418d4f0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10ece451d2f337805ce9472f298d5025\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f40809067c9ee7888788e40620862448\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b230d1dbc4c26ac2bd56e50bef6b57e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bceed13702f89123dd582c5438326a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba603234d4704fa0d097770442b26637\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9b570d6459263411f32ba20823378e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"540f56f2db42ef17ea074b6d12c6a8d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b882b539f37696ac5b0d72346094808\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.right_upstairs_hallway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e335a2340c99f5c831c30988019f4291\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1496ff3411098998299e6b70a8a6ac8d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3e68f4e23f1a8c2db67c33fb020b7ad\",\"labels\":[],\"modified_at\":1768937324.724768,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57ec7dd098b7d22f35ef2adb35070c44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.right_upstairs_hallway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"580b0c98b0af40ef97ebe8526b5dd762\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.right_upstairs_hallway_lights_identify\"", - "offset_ms": 101 - }, - { - "direction": "recv", - "type": "text", - "payload": ",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfc7acfeb1f1383b3f1193746d7effa9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.right_upstairs_hallway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ffd52e582ef700cc04806eef2286427\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f104dff69eb4b8929dca5770b0071c4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca88deb31ee64fe9db769663ff3ca08\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"28846a193465e0feaf80158a9d92cd87\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df83d525d06cd5c6cb8935d53899ecb6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8aa35ed55a01305e566d54d73c674a13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4efd6b7a05ab072f70351db23b242817\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96372675cb474b8a3a33403573ccd041\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19d3b1945550830c400d18eec7936d10\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"768825fc5893ae8c1a68cee71f34d430\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22f0f3f4d2f6f41f46a7fc5883c19f7d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f779f56acb8df9a45c5e26e1d34aaf94\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e88349529a6577002d4572cdcfa7ad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4113ed3a769b963fd4a00ddd0932f173\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc9935b81c48df8d37aee1e17845afbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05286428dda0b418578fa164c2ec2f41\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7993ea69eaa97bcabc92f958925362ab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.left_upstairs_halway_lights_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9bb313fae31e282e00d2a262c1be84e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a33f6dc15ebeb5c65a8da89a90da3c76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eacc493fd250cbccb936a793286c7939\",\"labels\":[],\"modified_at\":1768937324.728547,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eddfdec1717ef07c1a822b3f1c6d417c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.left_upstairs_halway_lights_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36bbc32f88ebae70bf8372daf6ea6f84\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.left_upstairs_halway_lights_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"824e2082cd5cfa0b434b927daf025f91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.left_upstairs_halway_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f0851ad45568021e7ae5eab17e2673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"797330642b50fd7cc717526490b5cd3c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81aa7a7763b626a16c33da9baf51a380\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08710d667a90994008b9c2e51f4bbf49\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c7586cb4377fac8037833b67b9b555e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bff0a946287e8e81b4791204fb0c4b6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c91612079311a00400f01a0e5906a212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ba6d0c2e53883635ee9ac22d8e850f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_1_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede8b905bcee1104ef3416e5edadc25a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1ec16e8db40ca002ed689cad642b9f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05f81c05fdfc78fd9a4f8f4a1c8b8640\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_auto_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53e8b9304e649c2f34dd0959606500ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b036c6bc350aaed23e9f86bc06cbd2c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a3739602f92462bbeac62fddc838fbf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"471c0a1606542b0d7f960c1d2922d7bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_external_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce49f041cf870cffd3f0df35ebb0b76c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: External Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_relay_2_impulse_duration\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048378228b0fc98e250dd66ec6ac6ad9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Impulse Duration\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d5e40022e450e73c4b5ab1198e302462\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d78bb4acc54d779836cde9c8c6a2f8f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"79490028fdf09eeafcc7a7e0ad2d160f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f1ed32bba3d33dd34695c661fa72adc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_ceiling_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51e3619b9800abefc65f0b522124c7b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a1866797815d855c958561d455ffd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.master_bedroom_ceiling_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f0626cca53d88f5dcf005b18180e9305\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bedroom_ceiling_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea487f330dfbaf833ebf624ed9896db3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.kitchen_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a635928a8b31bab1a27474ac2f6a4c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56e02b860edbebacfde760983dc798f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e605e68d92150816bc124ec684b725f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ff656e62d6fe3600aa3adbc8fb526a6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ec53255b3eaeab829b0d155c429e1d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a08806049e02892d2f6a3d53113f1db8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3f3c6699a41458e7aec2b1989f540a80\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0933863db47ac364ff1d232f8b46e9f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63481afc3a760089087eca73a0f651d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bc8957d79e5cb80b0c1a20820dc97b0a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a60f74fb0f1301397480c82b1d54ed5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b504e536735dfabc28835d2876bbb23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5fbeb6d2c5a857c79c70e7bb0561fad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fc4e4d47d9a676285c15a975e1d3c36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97f291f24fbe5a30e18bb12dce1a6676\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_3_way_switch_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d21bfd9435eda404f287c3abbad94d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"3-Way Switch Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0444d51382f134ceeb06a73d4f3a1cce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting B", - "offset_ms": 104 - }, - { - "direction": "recv", - "type": "text", - "payload": "ehavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c05a4adf47ff0104122a9e4dbf7fadd2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4aeaa7e71c122a5d88a3b1882ad8dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b17374a4c0dcb067542fc6a74220221\",\"labels\":[],\"modified_at\":1768937324.749696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15c2353076b1bc70f96467ea60e93883\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_local_programming\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b8266fddd3dd1a3fc9c9044bd7f7d4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Programming\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18011a3dcbe5a7f5c93c03f151658078\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.kitchen_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2e6dbe9ad453568e0826d771078d367\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b381daedd22399332d0c2", - "offset_ms": 107 - }, - { - "direction": "recv", - "type": "text", - "payload": "3beca269986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.jenni_office_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1db1d985f5d174ebf175d27b918704de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e96da560109bfc549eb175d77df5239\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b773d9a25d7bd00ebb8c9b90fcfbd8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5deaf7bef811b681c4e8b76c77d2db39\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a8dfa6c8c5decf4c4be882afc702163\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef6eb92baab404af7fd61ba41069d9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e5b7d53a4b2adf058011f65f0e4ac19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c184dbdd6ad17f8784d17e874aa0d0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"967915145f0ef87b05cf3ec61ff92c4d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e7d97417712b18fdd39510f53345f54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_control_groups_2_and_3_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9e05ed0d78214c146c191a7915fc2af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Control Groups 2 and 3 With On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5524e4843b13f72a0b8d3c36529cecbd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_ramp_rate_off_on_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"462517ea07b522dda3d29a5d77358b07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off/On (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_minimum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97bfc53818e1e5d2b0c76cd8c7ca68f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Minimum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_maximum_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad2f5c181c586e3bc45dbfd170cc8b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maximum Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_double_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a205de2be1537a999eb4d266b7086c40\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Double-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_single_tap_upper_paddle_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da5602526297ba1f96d40f0e7ecc0f5c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Single-Tap Upper Paddle Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_enable_disable_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e10162dc3c84afe280c5a18dd51e9b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cc24c82d16bd17b6b68e0b2f6f3f4ea6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_dimming_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6001f6b44d64baa1ab159b150b478007\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Dimming Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_light_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e80550caccd4b20ad35acf4ca40d92e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_local_dimming_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6b3bb5ca29c4ba1a5f51a07c342319\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_custom_brightness_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d442915fe41090821ed760f0fccea89e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Custom Brightness Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_night_light_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ae41e29abd52b9682303ac5e2c41635\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night Light Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7de9997e9e1a3ef46e7bef4deb0a659\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0f95b7e389e44036f819bfaa12835a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_light_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c9b9926bc3aead0f4952441c76387ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"lock.front_door_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e18e30d8c73b2b7d8f56d6d8a72444c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_current_status_of_the_door\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5da04a067a75da78e01daf28eba1cebc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current status of the door\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-doorStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_beeper\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef81d350ae0a3120308f207a382754b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Beeper\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_vacation_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c93b8d9c39bfb59bb63bc28a67369b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Vacation Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_lock_and_leave_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c4bd8ae88880be45a949ba732dc061b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Lock and Leave Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50561c8d822c3b26d448cccf525cd1b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b49703ed535bcef72a83f0289633087\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_alert_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bdd2faee34bb34a5f744a8881cbcc68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Alert Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_tamper_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e5c2c80d8e6863d72a81c9dfe05218\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Tamper Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_disable_local_controls\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93d5ca265b8193cdc3e97680c6db647f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Disable Local Controls\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d95b3c17713874a2a9d757e5515f9a0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_mechanical_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eff4988dfe92e73c693e77473291a68\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mechanical Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_electronic_failed_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aac4d6311ff78700b94194d61356c75c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electronic Failed Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_auto_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4448f7a424cac4aa39698e8890b4d84c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Auto Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_user_code_pin_length\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adeeb59701ce2173bd76622bf5fc040a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"User Code PIN Length\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_electrical_high_preload_transition_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8102a65d592a4a456c8cda46f495d8a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Electrical High ", - "offset_ms": 110 - }, - { - "direction": "recv", - "type": "text", - "payload": "Preload Transition Count\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_get_bootloader_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ff20be2fc93225ec08b44330ce05f90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Get Bootloader Version\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_alarm_kick_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e23cb4f3bd96aff481106795ea4ac53c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Kick Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c38948afd63807d9bea536058af2f4\",\"labels\":[],\"modified_at\":1728721846.364993,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6dd9482ca71561ce5ec70dbb6aea6b3\",\"labels\":[],\"modified_at\":1728721846.365587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_lock_jammed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d299d44ce26d096fc59656441c155e91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock jammed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ccf12162192b1db183d5e658ca8d5ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_lock_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"048c4c8a57e47dc7142d8ea6fa196a6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Lock state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Lock state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7984cbb544e0ef6af868a938894a37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e58a5f4844984223a08cc57a1e2b5f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_charging_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1eee0f58b4efc0fafbd2a40a8e11ed43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Charging status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-chargingStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_rechargeable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bcd7f656cc785bc98cbe8849648c0967\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Rechargeable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_used_as_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0bed885a5d924aba589b2583d05fd15\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Used as backup\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_overheating\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eb6de87313ec6de004fa95b00aa6f927\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Overheating\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-overheating\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_fluid_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d361feb6237b762704e0461d6fa7d83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Fluid is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowFluid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_recharge_or_replace\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b012aac779c2d71e28c4010032f7bcb0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Recharge or replace\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-rechargeOrReplace\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_is_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8381ddf293ea7f56e0b6dc25d7a2f0de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery is disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-disconnected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_battery_temperature_is_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ee4d83b710c21b6d1294eba54624b4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery temperature is low\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-128-0-lowTemperatureStatus\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_door_lock_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eedec08306572ee3292cda66ec9bad50\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.front_door_lock_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ad3a714fdec28accbdd4c4e7de89a29\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4db29e68a9831d8b83fbc34af4098986\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b6a0c3b3f6f37b85e7d467dfca44c1ac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea03c7aa1a8f7ee7ccad99b3c9ff4d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d565a0520b9f6299ef5cdcbeabfcda4e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15cb859569c08f27db39dd118e8e87dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8507c90d370cbd16116be434d5246222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6474656dc92c4ffc2d68061062d4bd44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2ffa582700b450ce0892f6635734eef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3dbad0e6f48a425781d17739f8795734\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6871d61691047f5f5f8a2003ab06bc35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2bf28252f61cd3cae9f59c22db2e929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status\",\"platform\":\"zwave_js\",\"translation_key\":\"controller_status\",\"unique_id\":\"4182894947.1.controller_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b6f1921f63105e65d33f275bbb06769\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e2878_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.adam_desk_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a7b32509cfd8e8b57f2135f982e8d34d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.adam_desk_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"744a5b039fbf04b72c13f42cb57c30a2\",\"labels\":[],\"modified_at\":1736355683.891054,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e2878_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4409a3f2be06b369227045d72f072caa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e2878_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.adam_desk_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b40a7ba376de7ec1f911de7228cc76f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e2878_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a23c6bc5a4861c4f54a86066cf26e1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e2878_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e29a3d1eab9e6e7b39d4981814c1c07e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e2878_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.adam_desk_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9743c6abc46883a073a15fe1d32450b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e2878_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.adam_desk_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e52b7a6ef89176f6d30ae8b3bd7604\",\"labels\":[],\"modified_at\":1768937324.880394,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e2878_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08d27aac87ed1eef797f4f56dbf0e5ef\",\"labels\":[],\"modified_at\":1768937324.881003,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e2878_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d396a6bef670fc54d085c5d175f16a3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e2878_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e1f6a989fe00bcf10daa6fbdffd74c8\",\"labels\":[],\"modified_at\":1768937324.881525,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e2878_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6852f43897d8fc7e5b971354177bc7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e2878_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a2dd7622b83b59be4b859d62aae5fcfa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e2878_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"246aa304d51aacbe8c81d224279f1b60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e2878_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e787a2f31cb2b020e5a02ccecdb5194e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e2878_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c038f834fbc5de4047db5d693de5520f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e2878_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e318495a5de2c0ad46f0d9fcc212a1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e2878_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_desk_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61cefcdb814557288d2f15616147ffe2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e2878_", - "offset_ms": 113 - }, - { - "direction": "recv", - "type": "text", - "payload": "ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a25d33a371e9d37b9e359fb3ab60102\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e2878_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"985029c1c4a205b9050eb47bfcb58278\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e2878_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88d63901ab44f88f1b109674d78fbe6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e2878_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.adam_desk_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2da4ffaa9bcb00cf00f6048f46031c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e2878_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4238b9742fd11df4e9a4c95f41add3f5\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.adam_desk_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"596f907cc32b91ddcfc55730d567ad23\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e2878\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a1dc1ed378fd6ca5ea8531b3a2b0290\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"463d4f8bcc15b05ea1ac493576708a05\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"48456beebaa2358ea71c3fdc9cf7ea53\",\"labels\":[],\"modified_at\":1768937324.522171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:08:8B-light-office_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"93c6c6544539cf899bad569ce9440560\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"260f603c708075690f0a0dc262c440cc\",\"labels\":[],\"modified_at\":1768937324.521066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:1A:86-light-office_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d4f33c22b2f134128499d170a9f81a2e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4316012718b14810c7ed8651d3e040ad\",\"labels\":[],\"modified_at\":1768937324.523393,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:05:0C-light-office_light_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c2328f12915a88e139203759aa099d80\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.office_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c58a3dcff1651522f7a004fa77854cf\",\"labels\":[],\"modified_at\":1768937324.525846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"office_light_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C8:C9:A3:B7:07:3D-light-office_light_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fd4b4a826ba1ce85b11c2a14483964f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b81fb595012241623d52d08e29f7834\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6c3957d10bb011bb12b3e6c41b598191\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd09a74fbce16b1ab27aa2b8ce22df44\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26ef71b3733fe8af29953704041e8b92\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8f82b3e8f2771f0ab24c9839a858b0d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5dc545b29708c4c982c585913d9fa6f1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":\"firmware\",\"unique_id\":\"b0a7321e20e8_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bed_lights_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63092158204e47a86900ac1d94b85d76\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bed_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"765ce6a13ad4d227fd7d1df51c057076\",\"labels\":[],\"modified_at\":1736357560.669652,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"wled\",\"translation_key\":\"segment\",\"unique_id\":\"b0a7321e20e8_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_speed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae1c3396e8bd72eb45ffd91d3d440d7e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Speed\",\"platform\":\"wled\",\"translation_key\":\"speed\",\"unique_id\":\"b0a7321e20e8_speed_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.master_bed_lights_intensity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"887f889588a56f03619560b36016847b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intensity\",\"platform\":\"wled\",\"translation_key\":\"intensity\",\"unique_id\":\"b0a7321e20e8_intensity_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_live_override\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd63c27148c664154b448d68dab14850\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Live override\",\"platform\":\"wled\",\"translation_key\":\"live_override\",\"unique_id\":\"b0a7321e20e8_live_override\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_playlist\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c120e6c6942aca4361e8d3482d529b13\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Playlist\",\"platform\":\"wled\",\"translation_key\":\"playlist\",\"unique_id\":\"b0a7321e20e8_playlist\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.master_bed_lights_preset\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80be9a2f4eb93931f72869f82ee1a25d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Preset\",\"platform\":\"wled\",\"translation_key\":\"preset\",\"unique_id\":\"b0a7321e20e8_preset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.master_bed_lights_color_palette\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b348375076eb71644edfa2d3a1a3fe5\",\"labels\":[],\"modified_at\":1768937324.888442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Color palette\",\"platform\":\"wled\",\"translation_key\":\"color_palette\",\"unique_id\":\"b0a7321e20e8_palette_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_estimated_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"14e92db25cdfa8cefc51b2e1ccc83517\",\"labels\":[],\"modified_at\":1775500964.404141,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Estimated current\",\"platform\":\"wled\",\"translation_key\":\"estimated_current\",\"unique_id\":\"b0a7321e20e8_estimated_current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_led_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1f90598e2bc0b94fba4961f07483be83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED count\",\"platform\":\"wled\",\"translation_key\":\"info_leds_count\",\"unique_id\":\"b0a7321e20e8_info_leds_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_max_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b2dc11642030b46b55567615c6b50cb5\",\"labels\":[],\"modified_at\":1775500964.40468,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Max current\",\"platform\":\"wled\",\"translation_key\":\"info_leds_max_power\",\"unique_id\":\"b0a7321e20e8_info_leds_max_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_uptime\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c5a5a22be58f4439bfb5957f1b1ccdd5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Uptime\",\"platform\":\"wled\",\"translation_key\":\"uptime\",\"unique_id\":\"b0a7321e20e8_uptime\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_free_memory\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab698dbf37373681bc08bbff54a7537\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Free memory\",\"platform\":\"wled\",\"translation_key\":\"free_heap\",\"unique_id\":\"b0a7321e20e8_free_heap\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_signal\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c22ea2a613d675a1479eb45f1993f33\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi signal\",\"platform\":\"wled\",\"translation_key\":\"wifi_signal\",\"unique_id\":\"b0a7321e20e8_wifi_signal\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b80991556b6a76854ca712e3dfc7496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi RSSI\",\"platform\":\"wled\",\"translation_key\":\"wifi_rssi\",\"unique_id\":\"b0a7321e20e8_wifi_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_channel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed1e6c2b75bdc80fbfffad3c6cdb0aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi channel\",\"platform\":\"wled\",\"translation_key\":\"wifi_channel\",\"unique_id\":\"b0a7321e20e8_wifi_channel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_wi_fi_bssid\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99a6c55ed1a3ec824f83cd8b9306930c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Wi-Fi BSSID\",\"platform\":\"wled\",\"translation_key\":\"wifi_bssid\",\"unique_id\":\"b0a7321e20e8_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bed_lights_ip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66a0bbe3b51a4c4457e91b25d434b43f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"IP\",\"platform\":\"wled\",\"translation_key\":\"ip\",\"unique_id\":\"b0a7321e20e8_ip\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_nightlight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a74556a0d4547c7c831b8f1e4753759\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Nightlight\",\"platform\":\"wled\",\"translation_key\":\"nightlight\",\"unique_id\":\"b0a7321e20e8_nightlight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_send\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7820433bb9beed63af31d3821944f306\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync send\",\"platform\":\"wled\",\"translation_key\":\"sync_send\",\"unique_id\":\"b0a7321e20e8_sync_send\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_sync_receive\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd7061bcac8bbe254b1298b5e4a41c1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sync receive\",\"platform\":\"wled\",\"translation_key\":\"sync_receive\",\"unique_id\":\"b0a7321e20e8_sync_receive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.master_bed_lights_reverse\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1040da8c80ca7bbdcbed89aafe909b35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reverse\",\"platform\":\"wled\",\"translation_key\":\"reverse\",\"unique_id\":\"b0a7321e20e8_reverse_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ef0442b07cb3d600e063d54936c4bb8\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bed_lights_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f6ee68ac821fe83edcd517dd51b7fd9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"wled\",\"translation_key\":null,\"unique_id\":\"b0a7321e20e8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_bed_lights_red\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b80f0761cf4c725fabc1df8de30f0f4c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Bed Lights Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_bed_lights_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5d1ff20197a688334ed61ae0ef24610b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698022261893\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"375e166e0cda4a49184ddc7a3baaa4fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1698131438659\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1516392955dea9d5c3987f65e1a21ae5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49f262f6cf884c0de68c44d465232ef2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b77573023fd0e45cbd803efb780ad2c2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.13-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3302b58f4523b9775deccc77aa05bf99\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.front_room_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a5224c58b24307c45e10299f3348cee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.14-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aacbb82d04534e5b5b389236a4c0f63b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.back_porch_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c0bd108d5e399f94d25c3", - "offset_ms": 116 - }, - { - "direction": "recv", - "type": "text", - "payload": "8981e1fa74\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"717eec56b8ef81c8619737a303b154b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.stairs_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ced631fd54d05c61c0e74631e41c81e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.24-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7494f61b328a3fda8a55ab7a5fdf222\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.right_upstairs_hallway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2e84cbdbcc51e4f48baf7214e76d722\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.25-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71648192af447198dd4f8300ccc532e3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.left_upstairs_halway_lights_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0ea641a89e1d849c3373b2c337c3a66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dc0ff81ebe53c633db166a1af91cfaf5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.master_bedroom_ceiling_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e763fb2e22c28f390add28e636c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30be942857ce762791d50422aa7504d1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"65a42c0fb4d243662d5cac0c4dd55944\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2abe6c30c0dfc40abca673632cc24f2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.jenni_office_light_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b4dc28ae7f2524ca27c1706b5f16c88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449f7707b0eabb9773200603b8bb1b32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.back_door_lock_current_lock_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"20890daf170f69687407391661d973ca\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current lock mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-98-0-currentMode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71e0f4e90a3faba0db0361d78e006929\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a82370728b30adefa3817e4cd46987b9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.pixel_7_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79efb54b9582819a0637c7c994db3c02\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d5643409303cb984fe3b1510f5253f2\",\"labels\":[],\"modified_at\":1758660536.913726,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd2c1ffa1fefe471a1db8c7975915cab\",\"labels\":[],\"modified_at\":1758660536.914575,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3e7f93fb1fc2ce5a89138f056d261f6c\",\"labels\":[],\"modified_at\":1758660536.915203,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ffc5c7999492de07a6ac08ddfbd6cd7\",\"labels\":[],\"modified_at\":1758660536.915773,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94f4819071ac098d75745bf9217ebafe\",\"labels\":[],\"modified_at\":1758660536.916339,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"24e6b1481a08d56efb9baac5d336b79d\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"762e6d3ba10d31145566124175888acb\",\"labels\":[],\"modified_at\":1758660536.916906,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"USD\"},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7822208038_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b99d149c424b019412d5967bf59e2b03\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a8664760514c651576ea096f12a1f392\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1eff1ca3d5d08ce4e23061d9208cdf6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a7:98\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e7c85d28851cdab4a8b94234ab2b27fe\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cf765d081c1063cc980327cd4b896b2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a7:98_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"250a48d09c2d5e25299e39b9a7a31a0c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3f5c4f6251c9e5d461d24460a10568f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"810731b1b401be39f6e86bf0db1694e5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:6d:d8:6c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e5195cd73547d8e57410274d0692668b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aaabb95ae0d93dc3cb445aa90193ade\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:6d:d8:6c_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500bedb57e5c713e97640f8346c53669\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30a484b77d3b1466b9fbd3f5347769e7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ede974f57b59c7ba6453e2b9713b1b63\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:40:f0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"56b2bd2bad51549c8df78419df115430\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"408ef0bacefad7f762354332eb3df58d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:40:f0_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58e0d06d601277431a4397c287295dab\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b90fcb72d686e7f16f444e550870f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"562d26b904b539814c5ad4460facd881\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:e4:6e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8734c3303d143bebf6af8d0be8ed8db3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"82cfe763a98e9bf75c35410890e39def\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:e4:6e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"affe0aa48114f479c924abd9c9d5ae4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_4_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ad9ecd3f5664ecafb765d2a1b1c52651\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16d12c6b79c955c505c8ecd86eaa19be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:ca:59\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3ee69f3763e36baf1758c6a80f59aeac\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_4_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"298bf015afa9856b33dc43e85563138f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:ca:59_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5387707cbd7934a7f17ad2bfc2edaac6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_5_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd375e9778adf92ad651ebdbc6a2a4b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ccd49fabdd295c62319e1e568a8bb00\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:fc:44\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"802a7cd7a1922930ee6905445e87db89\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_5_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4097f2af48e3dd76fdb6f8d500af3e93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:fc:44_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9a", - "offset_ms": 119 - }, - { - "direction": "recv", - "type": "text", - "payload": "c185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"26b67877c9a2b2cb3a8215b88a6bf42d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bath_6_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d92c178e01c229bef991c42a015295c7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"947a6a6c9d9b978f8a32ba22a2b3852a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:56:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"80ffd131460f6dda9ac185d0fddc4bc1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_6_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1453d3b4b1b9be768f4db7b8b7ba4f8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:56:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4db62557803ea897de2e45c2dbdcbb3f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_bedroom_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c25ec789c92b4385836706e4644e878\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bedroom_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"168cb748cc49f12a335dd8dfe3dcdc07\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:b5:89\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"010f1552f88b0dab959c6d9aa220b619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca28d3e1aaa9e4f900aa7ca1ca3f9aae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:b5:89_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d255bd26c49c0b8316f7e69de655ab0f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"stt.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b596632825fe1076787e2e00a1d029d2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-speech-to-text\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"tts.home_assistant_cloud\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2927fa130f0baaf124411cfe176ebead\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Assistant Cloud\",\"platform\":\"cloud\",\"translation_key\":null,\"unique_id\":\"cloud-text-to-speech\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e19a53d8400b62c1b8986a02b5b5b0a\",\"labels\":[],\"modified_at\":1728721845.983581,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.4.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4a2df5dbf8c580bcacc36d1c0bda2dce\",\"labels\":[],\"modified_at\":1728721846.001319,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.5.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dbf2992a8bf82bdea8f5b4f3edf59345\",\"labels\":[],\"modified_at\":1728721846.008929,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.6.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c51e645aa81bae453ef263a04042aa64\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9d534d2f4ef518b830eb886757e17e71\",\"labels\":[],\"modified_at\":1728721846.027127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.13.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9945cb3cd3420de62d8cb37166d3688b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_room_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"701f561124e85d69fe250c6f5ccddbc1\",\"labels\":[],\"modified_at\":1728721846.035759,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.14.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.back_porch_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11b8ba7d5ac2d0d7b15ded3b394797bb\",\"labels\":[],\"modified_at\":1728721846.043408,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.16.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bathroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"703ae656d9dc0a91ed9349e574913af1\",\"labels\":[],\"modified_at\":1728721846.052172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.17.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5f933c2cb7825c0c98616a1cd0baf665\",\"labels\":[],\"modified_at\":1728721846.057779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.18.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.cat_bathroom_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b467e6ece5165bf28ef33e1806d567c\",\"labels\":[],\"modified_at\":1728721846.063963,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.20.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ed883a07e2fc3b9407c1d3a25c9d32b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4deacb3773ea5ede7d53b9b0c4cc1b98\",\"labels\":[],\"modified_at\":1728721846.071734,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.24.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d7a76aad62c189d0559317abaf727e43\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.right_upstairs_hallway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"907ff6d2edd7e5fe5373d1f1409792f2\",\"labels\":[],\"modified_at\":1728721846.080476,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.25.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.left_upstairs_halway_lights_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"862115a3de075173eb494c7860ed31df\",\"labels\":[],\"modified_at\":1728721846.089722,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.26.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b423d803ad851f36a74255a889186bb\",\"labels\":[],\"modified_at\":1728721846.099062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.28.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47516de4224b0eef5c0d003c0513060d\",\"labels\":[],\"modified_at\":1728721846.1068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.29.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dfa8edb8e58f7b5694283eff97d27b74\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.large_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d6f7dbe7caae310dd09d478d46a3028\",\"labels\":[],\"modified_at\":1728721846.114612,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.30.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"90fdf313d83fc3bbbb03eb5623e73a29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.small_garage_door_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a6278dc427336c377caa1e58c30ff092\",\"labels\":[],\"modified_at\":1728721846.120738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.36.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bedroom_ceiling_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f72a7429de924578f7b9c3fb6d781a7\",\"labels\":[],\"modified_at\":1728721846.126794,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.37.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4411a0bf4d7bb1ed0f6f11343dfcd199\",\"labels\":[],\"modified_at\":1728721846.136087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.38.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_light_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7b6bd22bb44d0c9f184f996e2ae77d69\",\"labels\":[],\"modified_at\":1728721846.14763,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.39.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_motion_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a26fddcd069cceb68a34e3461a6e0a03\",\"labels\":[],\"modified_at\":1728721846.156271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.40.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe7380af04fc4c2d01ce456a97f9ef8\",\"labels\":[],\"modified_at\":1728721846.230796,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.66.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_486d_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e62d502703a6419c34e8edd95c486814\",\"labels\":[],\"modified_at\":1725239521.486838,\"name\":\"Dining Room FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_486d_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7bb8fbf51788176cdb83547a004935fd\",\"labels\":[],\"modified_at\":1725239521.488668,\"name\":\"Dining Room FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"643d73eb1fbe0ddfcaa75370f3c8389e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a43b45ea88de4d9219e8d2841b42ea4e\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c8ff4235cfd3e7028fc093f3f4adfd8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_dining_motion_detected\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c3298e1c38a53b3c870fed75d6968c07\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Kitchen Dining Motion Detected\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-486D Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"75:F2:CC:D7:B3:40_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f041b32270f9966ec39f26bc7e960f1e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d3b01ba742159dfe7108108439717868\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d46581f02785bb70fdee35529c92d263\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"1c:d6:be:69:d7:2c\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6bffd588d27f8aad7cc650604b61c2a0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c74bfa7715f144957d804f646c4799bb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights On White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_on\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25c3d5677fdc630832ee84427cd99536\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902139116\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_dining_room_lights_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cbcd941a74a5a7396aad84ed9fc7dabf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Dining Room Lights - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1707902226266\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3f98937a77978b4644ecd2e3b22e8c7d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.leks_lamp\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7fc3837a77f3b273d02c5bb1bf0170f\",\"labels\":[],\"modified_at\":17689373", - "offset_ms": 122 - }, - { - "direction": "recv", - "type": "text", - "payload": "24.523879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"leks_lamp\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:E8-light-leks_lamp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.office_lamp_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c89435003eea4c6873d070c3c97fe473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Office Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"office_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3d27d28caa96a13c6ea25d0171638780\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1da40bd512b39f99dd627edb13c06403\",\"labels\":[],\"modified_at\":1768937324.524838,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_3\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:68-light-front_porch_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d054016a6b2f868c331522d5f2a024c3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a43e095361249391c95d346bead29de\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d6e9bd72ac413f4c9765807a7a8829e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d43bf2ed96db238ff6d5a3d55b74102c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:4c:4e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ef87c19a0a7bf3e1d05ad31a2aa69b83\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5cfc016d624d22f58b972535e2c588e9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:4c:4e_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ab8095363203057cbe0b359e78a434fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e08f36a4038ba7e9ed484f4e40550a93\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e32158757eb5aba850a4d85abb2be672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:92:15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d0017cf87d5ad5a8331309329cd99df6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43eb4d024a7ef32436fc15eda451e656\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:92:15_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ddded55b837de9c9ba5d6b539445a14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.stairs_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4dc39ab3f597be7b5698f6d43b17afc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.stairs_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4a3dfc05ea5897c3f4ca6d122a9e755\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:a1:2d\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a06fc36485f9093858869afbf03fbd0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.stairs_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d66b459d9b3468bce28a13faf238f788\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:a1:2d_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66bd7310f75118cb61fe4439c1b2dbaa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_1_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9e4f14bcbc3db07c23bde15014153663\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08167d99b04cd3119c18bc3a2a03dc54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:50:fc\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"46955239e1d934bb2a143a6f68917fe4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_1_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"78908f51b09bf8868105eeca61df8b51\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:50:fc_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c312f3943f53f013a1698197beec7d9b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_3_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be1582024ad1873d0529a0f5b617a21e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce297c2ac2bc5a14ebb49b8600041d2e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:75:d4:63\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"429d0bb169653ab7e832ea85a977cb58\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_3_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0f550f0c1c6f6cdd1f2308b2e154000\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:75:d4:63_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de8b6bdb93fd71244574b16898e15903\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.dining_room_light_2_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0197af3b4e34cdf7ec9a96ce8415728f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.dining_room_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bd54501fcc95714cad1dcc1cd31f4a2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:72:9b:c1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9c89a53518ce63afd13427776fde6ead\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.dining_room_light_2_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"148c8043f4ec331449594ce281de74dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:72:9b:c1_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"40777cf802aff4a5b6ed5e3d5c0883f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_keypad_temporary_disabled\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c03f2a67067cb61528fa31b6ad9b94dc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Keypad temporary disabled\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33c056e4fecb95c459544ce4bd40bc90\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_access_control_keypad_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8810cf2748e6123026bb56d1577b6b14\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Access Control Keypad state\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Access Control-Keypad state.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_lock_intrusion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ba7328fddb154e27b647e31c8da72fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Intrusion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"05c1a4ad242b4000e29be97d7bd1c3dd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_home_security_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"27cf5f296894b7daac381bf03d05ed66\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-Home Security-Sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.back_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"469441c2849c8da30a2a3175c2bd6d6d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5a2de0bde5a2e1cfb2116303d6f5be9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"dd8b04dc513907334b2c60ebdf7a5423\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13c83850a4f8bfbe494ca9f383a652d7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.4-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e979bf5003d332a9115b787a3d2dd2b3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.front_door_lock_system_hardware_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfe12fde8dd7a18b5da9350bfc48afae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"System hardware failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.front_door_lock_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"53fccaec9ce8f17e7d03d9dc4c33cc19\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.front_door_lock_idle_system_hardware_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e27853184c40850e3134ef8116e8673b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle System Hardware status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-113-0-System-Hardware status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.back_porch_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb7eeef067360dbb615665e6de5054b6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"fb36d3e06df5eb3f7e0781073660589e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_light_param007\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e0a5aed8a599743541e88238fe0839cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"param007\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.39-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e632ddf5ed06b6df996980dcd58537b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.68.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2be995612da3708ee3aeabf4ad49d8da\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.68.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47608e4f8a0b2cedbf2cfff1d12cb4d6\",\"labels\":[],\"modified_at\":1728721846.246357,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"538ed7a8af31562cd0d7c19f8a64c8e0\",\"labels\":[],\"modified_at\":1728721846.246572,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.68.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5fe7e5df6a5ce5a5694b4ef947580b6d\",\"labels\":[],\"modified_at\":1728721846.246723,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bbab6b72b677a179c8bc1228ec0fa29\",\"labels\":[],\"modified_at\":1728721846.246866,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.68.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f6ab96f4e24907de", - "offset_ms": 125 - }, - { - "direction": "recv", - "type": "text", - "payload": "75d4f673141590\",\"labels\":[],\"modified_at\":1728721846.247,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.68.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"830fd955b0b9dd786b18a7cee2c59bf9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.68.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee2102e9596641854623dacdf86a7c10\",\"labels\":[],\"modified_at\":1768937324.645237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.68.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0ab9f2342cbb08659c90acff506df3b8\",\"labels\":[],\"modified_at\":1728721846.247129,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.68.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b57a46d4c309703d4a6c50351952ca1f\",\"labels\":[],\"modified_at\":1768937324.765615,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c4d6945336b15e0bba9b9345eea008b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"430cb36836ea27ca6cc4cce37605dad4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519b5afe350cad9e05b31596d69a6e8c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1d050ee7382f25f72284e5cbadeff8d0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f44484b3ec3f6e65dc64ca21de50c405\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"86bdfd735092c7fc659929e894fbc672\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.upstairs_hallway_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fdf886269a2fde49bd57cc2cbbd7fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"587df372365d29ba4d904980f49162ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.upstairs_hallway_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c7888f5a2bca7dba8bd7f8db8e02292\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6b273f3e4da902102c22068005d31362\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4923aba2eedfab503063be97268d349\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83882c656fefd0303211e999c22a2765\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.upstairs_hallway_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17b020ebb60e265e372186ff5dec78fa\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a821ce10588a5f5c21dca0d5a1caf1ce\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.upstairs_hallway_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c2caa9b84384312cc3ee01843fcba18\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmtype\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df2245766365111ead8a1797d4aa1628\",\"labels\":[],\"modified_at\":1728721846.369908,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_alarmlevel\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b21dcb9411ff471644d3bf7cc1f88d5\",\"labels\":[],\"modified_at\":1728721846.370379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.upstairs_hallway_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b2a820515542e566358f93aea435a81\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.upstairs_hallway_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1598869d84f6256ea9af4669c9f1b726\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.upstairs_hallway_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2672687dfc897fee1ea56b169bb7c5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2119dc1ccc97edeb6e783ce5f0f7ad88\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f562bfb09408687492fae4843c9aa192\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7ad9ecfe03131cd3738d0a0ce1ffc37\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aab59415957dbb20b62b5aedb141e753\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e50482b2832b1c9478fd4d009eb8216e\",\"labels\":[],\"modified_at\":1737489134.76617,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966121423\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_datetime.night_tv_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2320f4922c41ae3049550a876bddadb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Night TV Time\",\"platform\":\"input_datetime\",\"translation_key\":null,\"unique_id\":\"night_tv_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ae4f862e8267f53ba0ec595a391bd85\",\"labels\":[],\"modified_at\":", - "offset_ms": 129 - }, - { - "direction": "recv", - "type": "text", - "payload": "1737489109.545107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966772353\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_lamps_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5ce35a8be192434170cdc92d71e7ef8\",\"labels\":[],\"modified_at\":1737489123.678107,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room Lamps - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1708966888905\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a445cca6a8488132b472a230b330f318\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5573fa82dd22dbb781b44be9e07155e0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.kids_tv\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d07c497e4fb52fab5ac3b5d5dd718797\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"androidtv_remote\",\"translation_key\":null,\"unique_id\":\"f0:a3:b2:93:b3:80\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9ed5_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41418b9d9c10e3c186e587bc21a21d95\",\"labels\":[],\"modified_at\":1725239498.826997,\"name\":\"Master Bedroom FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9ed5_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2995f0a20e4c3a95dc980037bc879f\",\"labels\":[],\"modified_at\":1725239498.828766,\"name\":\"Master Bedroom FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:bed\",\"id\":\"95df3f7dcf7e25696d4211430a78abd8\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"03dc995e582e7761e1a9f056d9a752d2\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"00391291035eaa13172e995887643dd1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a98bfa777044d7a32f28229955f913b1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_not_bed_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":\"mdi:motion-sensor\",\"id\":\"45e20dec6491a8436efbbf62938683e1\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bedroom Not Bed\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9ED5 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:DB:B2:83:73:23_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87bee964e12f4f43e8a77ca865687cf5\",\"labels\":[],\"modified_at\":1725149744.14575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709059722839\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_9e8c_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b94ad5130258af70f3e44df53f10b5a\",\"labels\":[],\"modified_at\":1725239534.482943,\"name\":\"Master Bath FP2 Identify\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_9e8c_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"69e5ff06047fee172494a676c9595b1b\",\"labels\":[],\"modified_at\":1725239534.484731,\"name\":\"Master Bath FP2 Light Sensor Light Level\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5bccd1e7de01b713e1b365a5823ad3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2080a737e85dba8c1c13d14ca844aa8f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a01f8c146e6efbef9b59bc6d6f5c3be1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49f9688732c5429b62c5cf2c39f5ebdd\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Master Bath Presence\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-9E8C Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"2D:48:9E:E3:CF:D4_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_bed_lights_off_not_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"435b08e125fd43d1e5d67ed0d123fb6b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Bed Lights - Off - Not Bed\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1709189535560\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_play_area_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"face7a647c70a0aef8bcc7901e21d7e8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"MOTION - Play Area Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1710749651371\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.play_area_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09ad60b2d7e23af2bc93b52cb0ab7e50\",\"labels\":[],\"modified_at\":1775870416.948704,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Play Area Lights\",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"light.play_area_lights\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"89ade4a77d68f39308de36b2d0c44cc8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.left_upstairs_hallway_lights\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d1c843ff67b3c61ea82140a73d5ad090\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Left Upstairs Hallway Lights\",\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.26-38-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3cfa9649d5b814c5dff763cd6b76d9f\",\"labels\":[],\"modified_at\":1726995223.727702,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9b1734fd1032a711e2680a994926fa7d\",\"labels\":[],\"modified_at\":1726995223.730126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fea3aafb794c254c9981d05e2e69067\",\"labels\":[],\"modified_at\":1726995223.732286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f336d4a0a9c91ae0de81eb73b5e182\",\"labels\":[],\"modified_at\":1726995223.734449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f526bff502fe80b455c4e763a3a3db97\",\"labels\":[],\"modified_at\":1726995223.737066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"43050533225ce62a16ed7cd33bd9e2d7\",\"labels\":[],\"modified_at\":1726995223.739279,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39cbc62a9910f6be46f1f17a716b402a\",\"labels\":[],\"modified_at\":1726995223.741579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e63", - "offset_ms": 132 - }, - { - "direction": "recv", - "type": "text", - "payload": "76da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913acb2bc62696d8db53f8508f1e1270\",\"labels\":[],\"modified_at\":1726995223.743703,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fdb198312585d22902b2185c35214cfb\",\"labels\":[],\"modified_at\":1726995223.746068,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a70affbb4ed972f8daec3166aa396f50\",\"labels\":[],\"modified_at\":1726995223.748907,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"254c8b3136732d3bc8a34d91b8673ef8\",\"labels\":[],\"modified_at\":1726995223.751225,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2e8694cb975a4e0c029556b1ba338d81\",\"labels\":[],\"modified_at\":1726995223.753406,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e0f89e58dac6a89d1cf0c76e956fc2\",\"labels\":[],\"modified_at\":1726995223.755504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"051e2e640e4c3291b09d55d3687c1471\",\"labels\":[],\"modified_at\":1726995223.757082,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f517ec7ef72b04193123c414c8c3f735\",\"labels\":[],\"modified_at\":1726995223.758519,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c26cf28b3b3dc9a6bf25c27fa43aae86\",\"labels\":[],\"modified_at\":1726995223.759977,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"971283eea4ef6a48d36d89350283bcec\",\"labels\":[],\"modified_at\":1726995223.761297,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e9c3ea47b54daf6eb45abb3b17ad3724\",\"labels\":[],\"modified_at\":1726995223.780765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c44b3196aad16deed838f7a23fdb4098\",\"labels\":[],\"modified_at\":1726995223.783536,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5133e25e8f01dddbb6746b990b08f5ab\",\"labels\":[],\"modified_at\":1726995223.784321,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9909d6d28676cc7831e49bde2470a7c8\",\"labels\":[],\"modified_at\":1726995223.785069,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8482199ceba01d96d231e5f3a9dd368c\",\"labels\":[],\"modified_at\":1726995223.785825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23ee7b10cef9e4662e75be22310cefc2\",\"labels\":[],\"modified_at\":1726995223.78661,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd7c6e19c030f7196a8c11ba4b23fc41\",\"labels\":[],\"modified_at\":1726995223.787367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e51d01dd8e96eb9b04bf64f2a2decc90\",\"labels\":[],\"modified_at\":1726995223.788115,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"", - "offset_ms": 136 - }, - { - "direction": "recv", - "type": "text", - "payload": "fd490e9ecc4785dca9e2c059f36deffc\",\"labels\":[],\"modified_at\":1726995223.788879,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7a4924a9ed506f1a7eb6ee0c5cbd0b8\",\"labels\":[],\"modified_at\":1726995223.789713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1a65aba3769dcf7d73471f08ee7487e\",\"labels\":[],\"modified_at\":1726995223.79048,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9c01253348f061043bbdb1f1507a49c\",\"labels\":[],\"modified_at\":1726995223.791252,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d489d218083ad29b42fc36fef922cc13\",\"labels\":[],\"modified_at\":1726995223.792031,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"67713a70d56c5297ff28330a8713287b\",\"labels\":[],\"modified_at\":1726995223.79278,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b9b7724b86925b6394800d7c6891b28f\",\"labels\":[],\"modified_at\":1726995223.793535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49962449d9f171c587ef0081e1cc465e\",\"labels\":[],\"modified_at\":1726995223.794287,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f4a5682eb43905036502e20f0d7cdf2\",\"labels\":[],\"modified_at\":1726995223.79504,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4df9269002f04292ea5a51edd4f8c6\",\"labels\":[],\"modified_at\":1726995223.79579,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dd1fa6fe3de99351f0c2e5b83f26c15\",\"labels\":[],\"modified_at\":1726995223.796556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e69b62987fd5a78948f6cfdc65527fe6\",\"labels\":[],\"modified_at\":1726995223.811631,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"178c13bf6bbbb8549bf450a4b37821e5\",\"labels\":[],\"modified_at\":1726995223.81238,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3024e13f42fd5cab2a73aaddfcf2f83a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60db789ceb739a57754a71f6a6341c62\",\"labels\":[],\"modified_at\":1726995223.815043,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea6561cf99b4f43d851dd4f68f23ec25\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.range_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaac7be99d399d761408d7db5905d168\",\"labels\":[],\"modified_at\":1726995223.815764,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bc5ffde4635f4a5dc50d82c570481045\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dryer_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15733449911ed88087bdb00ce20a0bdf\",\"labels\":[],\"modified_at\":1726995223.816558,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3b4685a2ebafebce95f137cb70f5ac2b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.washer_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"429e1e416e644ac2e44b56eef5823108\",\"labels\":[],\"modified_at\":1726995223.817315,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"15b23b9502265387668b46bffae9c76f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bath_gfci_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"08656fa710c862cb6e1223682c8c5dc3\",\"labels\":[],\"modified_at\":1726995223.818008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d6bc92c6a85f0f48156de9d6bfc723c2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dining_room_outlets_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1df54d5c58a731bbfab080b1a87906b6\",\"labels\":[],\"modified_at\":1726995223.818713,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4e0d7973553d9f0454e9460e57b532e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.microwave_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc787e9c0359d3254b83bd29ba368af\",\"labels\":[],\"modified_at\":1726995223.819405,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9e6e6376da888039cd232b25ec8861da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_1_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7d473447060f92cff978b9a385e9e68\",\"labels\":[],\"modified_at\":1726995223.820087,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a1eab00f0675009317a09ffe04180a61\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_outlets_2_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"055386324f02620a24c7ac18946b8bf3\",\"labels\":[],\"modified_at\":1726995223.820745,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"92c6c099c77a87108291078dc94bd2de\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jacuzzi_tub_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"76b3a961774fe3c039a138cfd39bb5b4\",\"labels\":[],\"modified_at\":1726995223.821464,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"d77ef836948fa8bc2f757ca33d42e6f6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1d47fcf2e0a7f8584fd0e2f3c7df26\",\"labels\":[],\"modified_at\":1726995223.822171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"028c4fa5221fa55ee73e82764c4c56e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6664341496258104260c74c65e71e362\",\"labels\":[],\"modified_at\":1726995223.822825,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55198a8ed890d8156c947b45f776ef01\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb8d289562757807719ada54917fd1b\",\"labels\":[],\"modified_at\":1726995223.823475,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b9ebb99ce2014fa991db3e97207a43b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f21ff74ba7e2a3ef0d9c35584ff6eff1\",\"labels\":[],\"modified_at\":1726995223.824163,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"94b14485e0bea34d5a3a2ed8de06f479\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a5d811edc4036d76580e45069c0c9d4a\",\"labels\":[],\"modified_at\":1726995223.824852,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"35f55985584eaaa75ee355af7c67555c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b1dabea2c9416bad06dd40deacf241ca\",\"labels\":[],\"modified_at\":1726995223.825603,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"446f9559a2a1711fdf460343c99d98b0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49200ecce06beddd4ae77d277f4e14ff\",\"labels\":[],\"modified_at\":1726995223.82625,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"130f099795e179960e686be08879d188\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd926acee83d1a62199e77a8dfb0aa05\",\"labels\":[],\"modified_at\":1726995223.826914,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5cfc7f992cd13d18b31d203202f0640f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d5fd1ebd4c46c2508f368824f8e8152\",\"labels\":[],\"modified_at\":1726995223.828388,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"374bd03f3288701ca77ca7bbf3c3fb06\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_secondary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2f8d02c9a7424a0357cba3b49eaebb\",\"labels\":[],\"modified_at\":1726995223.829147,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.320944-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_current_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2393f3fae020b53ab99954ca957c3a89\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Current Power\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_current_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_today_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6d7106ff82fcb4a141f250d27a389e4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Today Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_today_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ecu_lifetime_energy\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"96d9d3cb20150a5d688099ee3d59ebcd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Lifetime Energy\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_lifetime_energy\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1f5897cc45878de2eb2c5a5f1dff53bc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad685a605a9e3440bda5246f75285600\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_qty_of_online_inverters\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a1ff8defd768f741f55d65e9a7f1d5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"687378e33ac65e5d1c22ce92420ebe2f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f9a7c5493056d56a29653e33999a7ea9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645235_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d95ca2a85ce23754796fb7dfc047a34\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18bc901d7dfcde1fde8bd62fae8a5113\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"55d41de55f2d05a0e1e4e33889aa5ba3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645235_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ca63b9ad9d43371a52ac3613c109af07\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645235 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645235_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e07bc3bcceaeb880e71ed355f609b238\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd7571675990539e04f4f8a77406c490\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"211dbb3a7c69779aecea73e41f9c6473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645251_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"498fc8386aa58186c1fe7da679696211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e9e1ed71597a80a21a1881c86b442e6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a0ea76e15630993eb9c8db802a3150c1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645251_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3babf3437ebf12fd772a1aa54f4ab6f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645251 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645251_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9e09f448a85712812e396a7f9cc1d393\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f9e1810e5a0c6896a04a053cc67f82a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f93e1a44de3fc2012749ef93295ddd9f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645255_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c20dea6e1ee110ac5ced5123e4947d32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"026a47e3e1d3993dc0ba1ad3c7446bf2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"01852de7dbb773a53eaf3ffb185df059\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645255_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"63dc709ee9f548ea607f688f93cf3234\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645255 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645255_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a06c4b37c7f1e33fe923bbd3149d2211\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52154fde2fa3736366353ce80d9143fd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5655856d7f5e8bd562dd95b8b8552212\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645714_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7839750c868429f82ea60be31065090b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"345ca71bd27275be777e84858b01aeca\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a9265a893e0110f7a728e8b888d12365\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645714_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f2714bb3fe47257fb7d75ed619377c", - "offset_ms": 140 - }, - { - "direction": "recv", - "type": "text", - "payload": "4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645714 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645714_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6ca87da2f07b93a7514c465435b42fc2\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11ff9bdd285d12419a16b1c4046b164d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"501f530e38c0a5ffb668116d0338b7e6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645722_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79635f34cc537787519a607cef9c2b54\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04f5ba7c71b00f927719dd6d1f76a24e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"7aca4fad8b97e203a6ed9a871682b65e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645722_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22a79eb3bd15b816fbd2353b874fb8c2\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645722 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645722_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4e289027532937da275a2afe8a1e54b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c889610feda4c5d2919574a4a4b2e9fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d6767893333bd2dd2faae401b17f6287\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646825_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9719fafdbf800c3e41c1247e9ddec3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"709f79ac43c1de05cd9b92356daa783f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"eb941f86e8b5402093edbdfefa4c1a92\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646825_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bbde1b266563b56db9b76c48b5e4c802\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646825 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646825_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2cea749b7d0157bda9c8b3b8da7d0c46\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ddd7cef675562790ac794cf05db84eb7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3c559183ae7d9c9e8da0b9e9b52d2c43\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646861_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"361a1fc2a89ff20381d82750957d8e6c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"99764c4bfbb97e8902e9a2ffbd269940\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2101c2173a600fab79216e357d8009eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646861_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6dd91fa0dddc72d17c5e9bc5febcb1bc\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646861 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646861_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d0458b6571acce21bda18fa4ed91f5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"967c6fffba2e2da7a3df57bd136547a4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"089c111078e7402a6d5d28aa89648473\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646863_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d4c2fa1d9b5d9f01caeaceef8fa3b38\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"456f0dd0f5c3770d056cc3764dc13d64\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"64156110f175ed9b32382c378dc8e25b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646863_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77885fc4334d3e5779eaa71dac27688f\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646863 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646863_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d0917ede83bd0ea1b545fb27ae2a4ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a36bcb574711bfe4e239bc12d85c031d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ccaf61f0c36aa89e2cc6b95d91fb0471\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646866_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05811a50db6dd93844c0b196d39d2acd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"383a71bc0095d7e93746e6ea4f917198\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"27ea9bd6d9ceb4a706e55d190e26ae8a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646866_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62cebac91c63149058b957314fb161b4\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646866 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646866_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4f283b802affc5a6ca5f1c7fc5de091\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee406fe27a3eec7c0c329ac2825c475a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"168791062da8f11816f49242dac4076e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646875_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"31ea3d07718bab198b5b9fc6af1dad97\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"305d5bd7a5ce07000c053958fcd55f12\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6892baea1c60fb5c004a0325971d5ccc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646875_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8835ef4f2b23d870d8155e9d6d5601\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646875 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646875_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fdd8ffe94c60d06b945af26a4352cb3d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"140d724fb5d154e0c3e6baab9f1b2c8a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"45d3fcce547a5c666959dfc27b70823c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646883_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"869b21114a648290559184a15408ed5f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e821ed6d71bb8f39e7b129afe3af4d9d\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f56af3667362f12c8e95fb1a271c9380\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646883_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00d279b67b2610254703b2f54f7c19fb\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646883 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646883_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"70fd486013d17ba726e8011eb3a73a3b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d40dc815657ac375ec8fc97364d0587d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42be692b3321a3c3b636ca3c45f84b83\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646115_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e32b957382e291736c3509dfdfd9aa4a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"03f49ee636edc9301e014dade638cb4e\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9799bee4e34bf13a3ee95c2537c5c3f4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646115_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3846da42a87cde40ac6aea0bfc100b05\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646115 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646115_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"223c68438e658441b8a74c18d7440baf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c161128d74cde1b9df0a", - "offset_ms": 145 - }, - { - "direction": "recv", - "type": "text", - "payload": "c526abe9a06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7b1a0a10460e1b2b3ede2e562a703f5b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646133_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adc4e9307e5f4586c50c9b3d85f66b27\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33f66484a0035b233ab171ed3b696fa6\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"8ec1cc119ebb10fca4debb0b1b5cc72e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646133_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"592ca6e323759a3be3e15662afff9297\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646133 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646133_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"893b80ec5dd05fb72fd00141fb518e32\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d688d2d1bf1a31622070b2fb094c4cf\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4e72cd5d23acb39a4f9bc63cd0a21b1\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646710_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"da85884355ff3f4994596e259973be64\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2f84c45e7569a132689cdd9ed95b065\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f1d9668f5f9f022b157340ab7359b5d9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646710_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a1f3186ff560113bb369dd97d7817da\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646710 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646710_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3db09b81e63e277131f85a8131a8025d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0b16c038d6c97b603911b86046cd25af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c4eff38935461680017f59921787a34f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646832_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6d18af827376be02cc0d3a1b6f9e01ee\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98977f8e3432f6e1ff5ebc307b85bf5c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ce454f923524dcbda8f069a40c1c7e65\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646832_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4561d19a5716fbe7e1234f629b30767a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646832 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646832_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1e9a028e3c404f0497df004b9975faad\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f02043ae6d3212ba58eff7b1f7747496\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1712170208fdab217e72e9ccd1bfd12d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645939_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"22e1a76aaf68da0ffb5403b0d2e2e274\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70909c374becd6dd73c82b4ff632b3c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ab9dd1b8bd2bbb2007ec851bc9a57c4d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645939_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0eae697b783ebba9efdb307f5ac8880a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645939 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645939_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c413014864a571a604089ceeb62ed55a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39450e87b48a58faf8da5a7a85133642\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5b1e2afd4751933180abf85fc4807f4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646859_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a967fc1ae03d7238ecea72c0a0ee0d6f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbe669bd0773be004f53e90bcb0df11a\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"daf999abf55fecc477605620fb119e27\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646859_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56cddc0e777db2dbcc227171ce9f8054\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646859 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646859_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79b07b22b2ee648f66881c503ff3745d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d58f33bac449e9831ab4e1e98bc8409\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3859824896da3b25243af7a06a9ac8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000646131_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39adcc1e155986621cc39a150c750070\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"56317bf1aeaba04d33f714030392e692\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4b19c0c32774ca5b8777b4742abdf8ca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000646131_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25113df24a5179f21d9e43126c27f58c\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000646131 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000646131_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"466f741572070700ef6306949735069e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Temperature\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_temperature_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b12a0cd54325f7f91fee567870e913f6\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Frequency\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_frequency_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_voltage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74e4b4ca3efba5d75a1727aa21c083fb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Voltage\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_voltage_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.inverter_702000645958_signal\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"569cc4587b3157e2f58acd98ad72443d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Signal\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_signal_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"74526ec1a4f846d0ddfaef484bc13493\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 1\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea498ce825118f23c39be4b83b90644e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.inverter_702000645958_power_ch_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4203eae9736a10d438a8ee366d836774\",\"labels\":[\"inverters\"],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverter 702000645958 Power Ch 2\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_702000645958_power_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_using_cached_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f8eb498aa41b793797942795f06c310e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Using Cached Data\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_data_from_cache\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.ecu_restart\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2bd4ab12752eaaa02b11c84a1e3290b7\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Restart\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_restart_ecu\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_query_device\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0ca0562ffcb02644dafae6227b475d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Query Device\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_query_device\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9d0e2839e3199d0d61520d01c1dd329f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.ecu_inverters_online\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0a21329364115517cea604476281c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ECU Inverters Online\",\"platform\":\"apsystems_ecur\",\"translation_key\":null,\"unique_id\":\"216200104730_inverters_online\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.kitchen_light_scene_003\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c5d8e19b2f7ef7dad358b83e242a65d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene 003\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-91-0-scene-003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_led_indicator_confirm_configuration_change\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d25ae85a81c5a18a3965894f77da168e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"LED Indicator: Confirm Configuration Change\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e465c51bf88dbc32a6785a7b6dad1f62\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_3_way\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"71fd02485d1c3201235dfebb5dcfe3b0\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: 3-Way\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d0e703e04564a595e11b85dc51d5afdb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Z-Wave\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_send_status_change_report_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3cc9b9913efd0c2f8819a21443737e28\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Send Status Change Report: Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"449a3a66c448b698823d287dee56c864\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Manual Control)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_on_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"553ae2641fa529953c7c9c90ea018e2c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate On (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_ramp_rate_off_z_wave\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09447a340f5a951b315041b5dc38910\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ramp Rate Off (Z-Wave)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.kitchen_light_scene_control_remote_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4108e95bdb9ab52a683d50b3c1eeb35\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene Control: Remote 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1afd3a3ab7db8137c3b9c3441deb4109\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.kitchen_light_local_dimming_speed_dimmer_and_group_3_and_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96fb107556a5754998e6d4d86ade7860\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Local Dimming Speed (Dimmer and Group 3 and 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.38-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"24813797e3fe66e246880f75f276e964\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 IPv6 addresses\",\"platform\":\"mobile_app", - "offset_ms": 149 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_regular_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea0442a91f3c09d591f5ddfd39b6057b\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in regular position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5632\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_open_in_tilt_position\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0152622d192ee621b119886a52d711d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is open in tilt position\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.5633\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_usage_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7d94a13fb61185a29df32572fff71f7\",\"labels\":[],\"modified_at\":1758660536.917488,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric usage to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_usage_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"80eeb792b9601da317217fe3bdc1d46c\",\"labels\":[],\"modified_at\":1758660536.917716,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_usage_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2068d0dc53aa2c783a1b70575e6d7755\",\"labels\":[],\"modified_at\":1758660536.917878,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric usage\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_usage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_cost_to_date_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d71e0683e8fa779d02db54bf283e7f92\",\"labels\":[],\"modified_at\":1758660536.91804,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric cost to date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_cost_to_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.current_bill_electric_forecasted_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dad1b34b38e43714428e109ed8d1c945\",\"labels\":[],\"modified_at\":1758660536.918202,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current bill electric forecasted cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_forecasted_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"config_entry\",\"entity_category\":null,\"entity_id\":\"sensor.typical_monthly_electric_cost_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f895402c9d8d3bbe9eacb657e5a92be\",\"labels\":[],\"modified_at\":1758660536.918462,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Typical monthly electric cost\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_typical_cost\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.total_inverter_watts\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bb73b03eeb9a43d362378e6ef0a89fb7\",\"labels\":[],\"modified_at\":1768937322.85093,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Total_Inverter_Watts\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"43febd2c80fd35383b1796826e76aad9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"notify.thermostat\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de018507a30e449b6455fef4fe0fedc8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"ecobee\",\"translation_key\":null,\"unique_id\":\"511883021980_notify_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"0ffbd90ab3bdee9a04e0e066a46c2d94\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eebcb05ee23fa77b122afde9ce221d20\",\"labels\":[],\"modified_at\":1768937324.525363,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_1\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:34:6F-light-mariah_light_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1dd305fbfb47d33a89aa39aa5305aa6c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6bec4f47de87f948d86a066bb2ab2c70\",\"labels\":[],\"modified_at\":1768937324.526369,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"mariah_light_2\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"C4:5B:BE:DF:32:24-light-mariah_light_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a815fe83e1ed7dc52f51fbdcc13b71\",\"labels\":[],\"modified_at\":1726995223.830482,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e558dddb1abc1eeeaedc81b16c01f9e9\",\"labels\":[],\"modified_at\":1726995223.838912,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"56d69a23bcd42abf56831b1b71694eb0\",\"labels\":[],\"modified_at\":1726995223.777968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ea41eb2988113acb81e0177ccf960731\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.living_room_13_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"581ec35adc2c957a76a2c7fd60ef8633\",\"labels\":[],\"modified_at\":1726995223.807272,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e52835bcd7056629b1f1a99e20075585\",\"labels\":[],\"modified_at\":1726995223.837479,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47538b6ae63e2feeba44c44fae84ffa1\",\"labels\":[],\"modified_at\":1726995223.776542,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ee7238b36b9659be8a2f4ad0ab094296\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.loft_11_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2833708ebf6506c52dd79313ad59d26d\",\"labels\":[],\"modified_at\":1726995223.805802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a1602432411104b1ff4945fed97b8e1a\",\"labels\":[],\"modified_at\":1726995223.763548,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"1c637bd97120fd575722ee807dfe03eb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solara_1_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c02d2d704d9242c0fbbed6a12f6213d\",\"labels\":[],\"modified_at\":1726995223.798062,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8d105430a04958aac57cef96114b7c07\",\"labels\":[],\"modified_at\":1726995223.831134,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9eae8ff171be93ebed91308be8af407\",\"labels\":[],\"modified_at\":1726995223.838195,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d811fdd8bfa49dab565b28ada1eac2ba\",\"labels\":[],\"modified_at\":1726995223.829815,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a920c156a1c4ac8ed2c8c7e1167e51\",\"labels\":[],\"modified_at\":1726995223.762419,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"79481e66d37128d78fdb6bb748a23ae4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_123_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b11670409d6bdf9aacdf2aa240b77fda\",\"labels\":[],\"modified_at\":1726995223.797323,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-1,2,3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4aba70109c330d3dbe361ef2f93ae3b\",\"labels\":[],\"modified_at\":1726995223.765802,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a56194f193842b6926637417fbce5d3\",\"labels\":[],\"modified_at\":1726995223.831809,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"ed36c466d1f14b7674b86bca4e0cc9fb\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_3_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3566ef3b27ff4ad879bf2679940865a\",\"labels\":[],\"modified_at\":1726995223.7996,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9344a735c3f7b30f4f067902c5e8699e\",\"labels\":[],\"modified_at\":1726995223.842465,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d473f6cd0d1bd253b226a132ea261d92\",\"labels\":[],\"modified_at\":1726995223.810927,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa0f97c72bd513df9f4ae63f90bcde63\",\"labels\":[],\"modified_at\":1726995223.843171,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2e66b80deddd302cb5630371a4d5a82f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_balance_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555d62f0d7d846827fea1966f7a795f\",\"labels\":[],\"modified_at\":1726995223.782285,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-Balance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b738544dccea104b025e9d0e05eb0a0\",\"labels\":[],\"modified_at\":1726995223.843932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c40bea97cdfe8019f77e266d54c0e023\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainsfromgrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f3279a9c16bede20195a82db3a2d5ac6\",\"labels\":[],\"modified_at\":1726995223.813127,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsFromGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"82e34cd7fd3ffb666ed6d60ff71d3ae1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_mainstogrid_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"edf1ee16bcab171c1c577c63ab97f10c\",\"labels\":[],\"modified_at\":1726995223.813846,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-MainsToGrid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d546166876e4b211dd195567284dc59\",\"labels\":[],\"modified_at\":1726995223.781575,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"083bdec6d96d2f404c70507685f3dd3e\",\"labels\":[],\"modified_at\":1726995223.84177,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"bf1e9219229346a25721d33b2e3bf272\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.1025_primary_totalusage_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9dca79ad23d502629a88f7013fa68932\",\"labels\":[],\"modified_at\":1726995223.810227,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-TotalUsage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"16aa1de89eab7ad3ed129eb4cc0ac3c6\",\"labels\":[],\"modified_at\":1726995223.771136,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e4964ba1e71db161a6472592eb9e740\",\"labels\":[],\"modified_at\":1726995223.80033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"2367589ec24b43e0c32bf7e11dc6ce81\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.ac_4_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8570560d08e0567d3efebba878cdb6ab\",\"labels\":[],\"modified_at\":1726995223.832485,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4aebf740e9f7b9bd6c98c37d306197a6\",\"labels\":[],\"modified_at\":1726995223.778671,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3fe20c2ae51", - "offset_ms": 153 - }, - { - "direction": "recv", - "type": "text", - "payload": "615b00769343092fafd6a\",\"labels\":[],\"modified_at\":1726995223.807968,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"167777cf8462864ac0be610750d72959\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_2_master_bed_14_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"068e413358fd64469c9a6e6f35b42a3d\",\"labels\":[],\"modified_at\":1726995223.839642,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aed56680f8f167daeb016cde5c2ba644\",\"labels\":[],\"modified_at\":1726995223.84033,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8fc85df1d90cebda5ab8b19c32436ae0\",\"labels\":[],\"modified_at\":1726995223.779376,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"021a49ce92e7476a582236b73b6e3535\",\"labels\":[],\"modified_at\":1726995223.802855,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d6a40eac34dc70bf8dc5def5b0073fa\",\"labels\":[],\"modified_at\":1726995223.772679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c553fc274e111c629dd000aeec4c2b7\",\"labels\":[],\"modified_at\":1726995223.802104,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df570e55b17fd5b868f21fdaaa452f90\",\"labels\":[],\"modified_at\":1726995223.83469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"02a13cc2360185c07bb085c8f25c0e93\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.dishwasher_7_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd8e13752690827fa5e282140c5762e8\",\"labels\":[],\"modified_at\":1726995223.773442,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3a38c6ee6a713b688f80e4218707ed08\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.disposal_6_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b20b811f7244af9d9b23c2761c84b693\",\"labels\":[],\"modified_at\":1726995223.833935,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"beafe54c89fd085ae802bcdc36b41e22\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.bed_3_and_4_15_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3a5afa9a0787a0de471b3ee2c02657c1\",\"labels\":[],\"modified_at\":1726995223.808684,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae8732cb4c313abb97189c10f0054108\",\"labels\":[],\"modified_at\":1726995223.775718,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1ed76a423a40fae6a4f24c824afc7805\",\"labels\":[],\"modified_at\":1726995223.833237,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60203a103ce1b8ad003b1909fb4295b3\",\"labels\":[],\"modified_at\":1726995223.841088,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75a7375b9fceab8ece8c8d79beec2075\",\"labels\":[],\"modified_at\":1726995223.78008,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4d4429655a28d7c4d11c8ac748d6ec40\",\"labels\":[],\"modified_at\":1726995223.836044,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f09fe4444cdc9cd9c1cb1d6365af990f\",\"labels\":[],\"modified_at\":1726995223.774958,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"e0b13e693a81e197f165660716fd96a3\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_lights_9_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cd10e1850ddc2620520d0c61a8bd97c6\",\"labels\":[],\"modified_at\":1726995223.804328,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4251e01f23bc9625e8a30bf7203a470a\",\"labels\":[],\"modified_at\":1726995223.835367,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743fe98bbc2fed1b1af8b35cf2fb0ec9\",\"labels\":[],\"modified_at\":1726995223.774193,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"00ec964c47154eb125fe020f440ec1e5\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_lights_8_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6269259dcc0345571feab5284d7d09b9\",\"labels\":[],\"modified_at\":1726995223.803587,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"185f4943eaa94d21ff38e01633fb41aa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_gfci_16_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"524dd66763944a8be56ef44aa306ce9c\",\"labels\":[],\"modified_at\":1726995223.809514,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81b1a35be54fea6be3a192e4c82541f8\",\"labels\":[],\"modified_at\":1726995223.801083,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"236e6757ab9092162f8034db8bc4226f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.furnace_5_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63bbd707bde7aeba07b3b5ecf5b7fa17\",\"labels\":[],\"modified_at\":1726995223.77192,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45170e964613947df7b4c57ebc0acd48\",\"labels\":[],\"modified_at\":1726995223.805066,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"41eacdcb1b607fcc2bd5a4baa5155dcf\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.entry_10_1d\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8207f151f883386419a3a7979d3e5a37\",\"labels\":[],\"modified_at\":1726995223.83675,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy Today\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1D.340254-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e1e9be0c3cae58fefc0f6b8691e7327\",\"labels\":[],\"modified_at\":1726995223.764679,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1min\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a81c4266cbdb0d23e04e4ae57619dceb\",\"labels\":[],\"modified_at\":1726995223.777271,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":1}},\"original_name\":\"Power Minute Average\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.instant.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"23eb0fd923b5c5af3ca8e2b3545826da\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.solarb_2_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6adb060e525a0b02802e9e8b6afa176\",\"labels\":[],\"modified_at\":1726995223.798783,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"c0d6dbe71d873e095589824197604be9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_bath_12_1mon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e88cf00ff5ffb15ab94f37a9aba66c0\",\"labels\":[],\"modified_at\":1726995223.806537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"display_precision\":null,\"suggested_display_precision\":3}},\"original_name\":\"Energy This Month\",\"platform\":\"emporia_vue\",\"translation_key\":null,\"unique_id\":\"sensor.emporia_vue.1MON.340254-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ede71d69993e45389dde366b477559a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.zwave_controller_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8ada086edb92a8f505bced7c2559caac\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bathroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b8115e52cb16c7a28f096995d2b3b67e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f44e4ed83c8b09e72ec4ffd1df79953\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f359fcdc3ab75ebc7bfb58acf0fe25e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.master_bedroom_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46e839f2f5b0c124ad2a0b5c355967fe\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"3972240de3cb3fe917ccd6b211b0644c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.upstairs_hallway_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e7b78974ef1f75948f492f64fd4859ec\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.68-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f780def514df1d90ed58dc922b80c574\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.69.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_controller_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"96d8fc5c5e35a76c655c9b71b67ef899\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.69.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a133bfa2a01f055c0c8d1bd38418a9\",\"labels\":[],\"modified_at\":1728721846.252105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e3e85a4be70951809ca9f5dfe3e4f27\",\"labels\":[],\"modified_at\":1728721846.252322,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.69.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6422ed2bc95eec7c77e8299c3132dd3b\",\"labels\":[],\"modified_at\":1728721846.252479,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee7e3039be25344df3c303f10d2af506\",\"labels\":[],\"modified_at\":1728721846.252618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.69.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"493c98ca3f5d28add9b1e76d9ea0fd2a\",\"labels\":[],\"modified_at\":1728721846.252884,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.69.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4e9c3189a4b2c3bc9beaba32e4f6d17\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.69.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba107fafd299fefa29cb886864a6b6ff\",\"labels\":[],\"modified_at\":1768937324.649113,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.69.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_controller_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e97d839fc36f285ba34c95e0aedfb525\",\"labels\":[],\"modified_at\":1728721846.253026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.69.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_controller\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a09ee2d6dae31c200ed543531a11a022\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_status_after_power_fai", - "offset_ms": 158 - }, - { - "direction": "recv", - "type": "text", - "payload": "lure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1aa247cfe4361de79507e8ccf24a9abd\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Status After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf005657afa97b1d708b15d9ce67af26\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c16c9234ee62e39da6d416bd74c4bf36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9964c19a9f2c7334e16ed21f53a3b47f\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89981bfb5fb0a71346ba5c4a7fd7f436\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4bee7cdfbbbb6c2df376f6acbc9f8e0e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a4d1c9f055f635a8a634822ce0443b8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_1_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6dc9f7340d74772ba42c3d47103bc06c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57972bc34dc5d7e963a491a8f73724f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8a2e8fc6466088be70d409688c666748\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f693ad03c26b3259e108bc893124dc78\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_2_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf35e53c8dc9a7f47de20aa646f2a06\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a5ec9e8137600e298bee781d72b83af\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"284a0c5a0e4fbb0bcfedfc117d6d0cb3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_off_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae04ca93744aa073da36ab542919ff8e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-Off Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_controller_relay_3_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"049d7e26a1fd2ebae088bd47e33c28c9\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_auto_turn_on_timer_unit\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45f3c6220aeebafd0398bd96fade2132\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Auto Turn-On Timer Unit\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_1_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be4b4db30be6b69c892b44b359c6b20\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 1: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_2_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"80d8ed745bc23622d5388e9075693bb4\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 2: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_switch_3_manual_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"306db4629c8a60e5464dd368235e8317\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Switch 3: Manual Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_1_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"58c04dfad2dc4762af4bb76906a45d36\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 1: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_2_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32b439907fac4276ebd5799a625ec1ef\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 2: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_relay_3_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dfb5b5d71754b964eebf3dabae76e6cb\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Relay 3: Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_controller_dc_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b6fdcf38fa8ab2b6dee499c7d18e08f3\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.garage_controller_basic_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f54c77989f4d5e8568905b09f0c46f9e\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"949433e099fb4164e0fafef364d9d3be\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.large_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage-variant\",\"id\":\"7103f21d0a7b132c69440a9d6979648a\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Large Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"5596f65c8a39008470f9577926977ecd\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.small_garage_door_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":\"mdi:garage\",\"id\":\"efa8ffc287061c04b28a05e2d6789429\",\"labels\":[],\"modified_at\":0.0,\"name\":\"Small Garage Door Switch\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Basic (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.69-32-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_back_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"200b3bc82d4792b83862ab4c8cbb5d60\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Back Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836786749\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_front_door_left_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"25b6b2f05b818b741e6862688a763aff\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Front Door Left Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1720836943690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x17\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c29cfef30f97af820f587cd0d380f6d5\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x17\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_unknown_0x87\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f4dc3db0b7fb0e8835ad90f9649d49ae\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"UNKNOWN_0x87\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-UNKNOWN_0x87\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.kitchen_water_valve_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b60d57c74b8a0fc026da3c5efe1ca529\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Water Valve unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-Water Valve-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.neck_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b16d267f43e86640e991f613d652ece\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Neck Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"neck_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.migraine\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e0cd7c0a5bad5564b84ba8e22f577d\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Migraine\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"migraine\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.back\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a96f0af191e7ef39888e595237fc79d8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Back\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"back\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.water_intake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81a9b155d2aa5e2ce0c7cb5dca44c82c\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Water Intake\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"water_intake\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b24234ca56ac77e9c79f6e353a9de91\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.mariah_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"648e83e3c8bf58cd2e4eff867c7f26fc\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.mariah_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc3f2404fff79b6deefc2d10c7d221fa\",\"labels\":[],\"modified_at\":1724358474.764135,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:14:0f\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.mariah_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45abb940e65545be9eba91e9c7c27266\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:14:0f_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_number.joint_pain\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78f692acbb46a9d5516120af473ee045\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Joint Pain\",\"platform\":\"input_number\",\"translation_key\":null,\"unique_id\":\"joint_pain\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de63e43f6a93586a800fa07684f40d6a\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724140995216\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b26a6c2d503838f2bd69b2b4425daae8\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141048676\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_office_lights_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68e5beb6d9c92149ac9c90cd78e98694\",\"labels\":[],\"modified_at\":0.0,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Office Lights - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1724141102872\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.thermostat_aux_heat_only\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10172ebe8ddeadf985bb596b028dcae9\",\"labels\":[],\"modified_at\":1732123640.2771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Auxiliary heat only\",\"platform\":\"ecobee\",\"translation_key\":\"aux_heat_only\",\"unique_id\":\"511883021980_aux_heat_only\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"config_subentry_id\":null,\"created_at\":1724358474.76478,\"device_id\":\"b1f0fa10aa0c83d3312320496a2c6d6a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.mariah_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4fed1642c4e2312aef35b63ec334976a\",\"labels\":[],\"modified_at\":1724358481.090975,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:14:0f_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543171,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_start_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20a9befee49729b0b2137b2abfa3f2da\",\"labels\":[],\"modified_at\":1724358911.543261,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric start date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_start_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"config_subentry_id\":null,\"created_at\":1724358911.543599,\"device_id\":\"0d83e23cbae955f2ecb72cc70fcaf812\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.current_bill_electric_end_date\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65d71d7e1d0a884417f030f39de51b62\",\"labels\":[],\"modified_at\":1724358911.543669,\"name\":null,\"options\":{},\"original_name\":\"Current bill electric end date\",\"platform\":\"opower\",\"translation_key\":null,\"unique_id\":\"pgn_7827917479_elec_end_date\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.98836,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.ha_floorplan_your_imagination_just_became_the_new_limit_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3784e07efac13a5e30236d87aea4fec0", - "offset_ms": 162 - }, - { - "direction": "recv", - "type": "text", - "payload": "\",\"labels\":[],\"modified_at\":1724359451.989217,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.989902,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.dahua_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e20245435d618d476b342520dc05bde5\",\"labels\":[],\"modified_at\":1724359451.989949,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990389,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.emporia_vue_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33d53b6ba7f741c6d34066bffe189297\",\"labels\":[],\"modified_at\":1724359451.990431,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.990856,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.average_sensor_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"83923fd4d6f02182318adda6b96afc53\",\"labels\":[],\"modified_at\":1724359451.990901,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991326,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.lovelace_home_feed_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"30d80177caf3df3331d797d783c5539a\",\"labels\":[],\"modified_at\":1724359451.991374,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.991795,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.smartthinq_lge_sensors_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9cd6da87bfe167df17bccc9b0bc3f160\",\"labels\":[],\"modified_at\":1724359451.991841,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.99502,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.fold_entity_row_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d2c850e540e1848f6d18f94e1d33df8\",\"labels\":[],\"modified_at\":1724359451.995069,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995516,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.card_tools_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa13dab5ed75447d38ec11bb05b39148\",\"labels\":[],\"modified_at\":1724359451.995558,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.995977,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apsystems_ecu_r_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6355ba3eab69573857aa3095dfe8bb29\",\"labels\":[],\"modified_at\":1724359451.996022,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996442,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.hacs_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee6b6e287f399d2a0f069f2f3630f9de\",\"labels\":[],\"modified_at\":1724359451.996483,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.996903,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.number_box_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4973abd138f62d11c94d23869d4332c6\",\"labels\":[],\"modified_at\":1724359451.996945,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997365,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.layout_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f6016a8e966604387a938ca589078bb\",\"labels\":[],\"modified_at\":1724359451.997407,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.997831,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.opensprinkler_integration_for_home_assistant_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b81d07934da5c7e0354b8fcffd03768d\",\"labels\":[],\"modified_at\":1724359451.997883,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359451.998293,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.auto_entities_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b7eaa56b622d4a80a22c66036a4e7bff\",\"labels\":[],\"modified_at\":1724359451.998341,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.000211,\"device_id\":\"87bbe0463d9b03d5b24ec280b4691ed6\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.ha_floorplan_your_imagination_just_became_the_new_limit_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"057af5b48646a036f034fd05c24730ac\",\"labels\":[],\"modified_at\":1728248033.394848,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ha-floorplan 🖌🎨 | Your imagination just became the new limit update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"188323494\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00067,\"device_id\":\"767ffbd37dee727285d61d3a2156ac05\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.dahua_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39b3a5e25ed21ff451dd821e74135856\",\"labels\":[],\"modified_at\":1728765061.996176,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dahua update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"366911690\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.00105,\"device_id\":\"768ceb432e6b065d67c56e397179ba62\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.emporia_vue_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e29e7a00297a5a491404aa12c42c1323\",\"labels\":[],\"modified_at\":1726802997.261126,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Emporia Vue update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"247362100\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001406,\"device_id\":\"f0837be721988caeb60cf616a7f4abe3\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.average_sensor_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"10b897f9ab5ff47d44ed99b8cad96a01\",\"labels\":[],\"modified_at\":1728269633.52911,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Average Sensor update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"204192861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.001753,\"device_id\":\"d2c37de0132889968db959664cddcef1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.lovelace_home_feed_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"692a965a89752f7152ac33da536bbed1\",\"labels\":[],\"modified_at\":1774138612.944037,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lovelace Home Feed Card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"174016256\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.0021,\"device_id\":\"7bb7c017062e4715041f7e0d64391ac0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.smartthinq_lge_sensors_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3cb7c37711861e8a4f3c5450350f13c1\",\"labels\":[],\"modified_at\":1728226433.446449,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SmartThinQ LGE Sensors update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"250022973\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.002442,\"device_id\":\"b32edae3e40078429a50c0fbcd51e12a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fold_entity_row_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f07711c04f71f779880758ee4fd3ca0\",\"labels\":[],\"modified_at\":1750126348.796186,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"fold-entity-row update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"150781994\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003037,\"device_id\":\"d17f62d08125b1e4fb3dd7afcbeed566\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.card_tools_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8857ce93625614d4a532e41e988a77ca\",\"labels\":[],\"modified_at\":1774138612.945999,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"card-tools update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"161403328\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003384,\"device_id\":\"9e4684eea30c8a7c7fd089047bed43e4\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apsystems_ecu_r_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eb5eead0182826b4bd85b3cbbc8b855d\",\"labels\":[],\"modified_at\":1741914692.185678,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"APSystems ECU-R update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"325643349\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.003737,\"device_id\":\"abbbd06d3d858b2794f7463cfac90449\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.hacs_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"91b4d63ea37ba5c94123db67da9a7b4a\",\"labels\":[],\"modified_at\":1725474380.986863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"HACS update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"172733314\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004085,\"device_id\":\"34b62b6b1d688d53ee02d93bbec30db1\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.number_box_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fbf9428ea6400cb62210ef5a817aa3f4\",\"labels\":[],\"modified_at\":1774138612.947972,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Number Box update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"304967918\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004425,\"device_id\":\"b5d7def986011046adedcd27d486c1bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.layout_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d9814393596a8063e564904eea508d5\",\"labels\":[],\"modified_at\":1724359470.337507,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"layout-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"156434866\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.004773,\"device_id\":\"f77d93da9f2088a69cc9fcfb04cb1adf\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.opensprinkler_integration_for_home_assistant_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"64aa16e9bfa85282bdb6b21e1f285a0c\",\"labels\":[],\"modified_at\":1728377633.939246,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler integration for Home Assistant update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"120696364\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1724359452.005134,\"device_id\":\"291ec30c74e7d70b151c915f9fca5f78\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.auto_entities_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c1b0f1673df40ae25aff2e19e9bdb999\",\"labels\":[],\"modified_at\":1746450676.644499,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"auto-entities update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"167744584\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.878711,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_ccfa_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d782eae7ac9b06c199b0499afff0d330\",\"labels\":[],\"modified_at\":1725237298.640764,\"name\":\"Living Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.880189,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_ccfa_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a40c8c00fa4561861b93cac2ae12162\",\"labels\":[],\"modified_at\":1725237298.642678,\"name\":\"Living Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.620171,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.presence_sensor_fp2_1182_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"95350dcc7aab2e2b8ad42eff96a3bbe9\",\"labels\":[],\"modified_at\":1725239509.709835,\"name\":\"Office FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.621822,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.presence_sensor_fp2_1182_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"457ea4d9622eaa89f01768b2d3cb13b7\",\"labels\":[],\"modified_at\":1725239509.711619,\"name\":\"Office FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"a7f01860a9f9bef062312f8eefc89b67\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f9119d30965efa939f043665b8f522c7\",\"labels\":[],\"modified_at\":1725122973.950769,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.28-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"6dca33fd0f0528315d37ce8c03a5786b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d74e8506dabac922300249b97a64fd92\",\"labels\":[],\"modified_at\":1725122989.160884,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.29-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"adb02fff4c55b74e3a532c54ca972b96\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bathroom_motion_detection_pir\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f75ee8a8e6a0e889e600b497c966f4be\",\"labels\":[],\"modified_at\":1725123000.642922,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.17-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.881487,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"", - "offset_ms": 167 - }, - { - "direction": "recv", - "type": "text", - "payload": "binary_sensor.living_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a80cd1fd55b60d92e924c5d0a86b57bf\",\"labels\":[],\"modified_at\":1725123140.792999,\"name\":\"Living Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.62291,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.office_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"65796cc5504c6f97911d5984b7697240\",\"labels\":[],\"modified_at\":1725123172.764679,\"name\":\"Office Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.623792,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4870514fbeca2b830d674880c226e4b1\",\"labels\":[],\"modified_at\":1725123300.434383,\"name\":\"Adam Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.625331,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.leksi_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ae3bf2a8005788c86e4ed1db0e26deba\",\"labels\":[],\"modified_at\":1725123348.631538,\"name\":\"Leksi Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"config_subentry_id\":null,\"created_at\":1725122919.626608,\"device_id\":\"740e50ec18bb89efc0f6ca0cd846f6ff\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_desk_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"92cd99596879bed65510157a3e4440b8\",\"labels\":[],\"modified_at\":1725123370.960249,\"name\":\"Mariah Desk Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-1182 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"E0:0E:62:FC:31:84_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.882516,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.small_couch_occupied\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df55257bb93d1c4d83ab27bb28cc7088\",\"labels\":[],\"modified_at\":1725128801.063257,\"name\":\"Small Couch Occupied\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.884521,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.main_couch_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d5054b087303392f4b4c1afa3087c65f\",\"labels\":[],\"modified_at\":1725211786.993681,\"name\":\"Main Couch Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2696\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"config_subentry_id\":null,\"created_at\":1725122454.885552,\"device_id\":\"049f212825315900c74706dc4e0e525c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.massage_chair_presence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6166b7fcdd2cb9ddf567fd2ef3444519\",\"labels\":[],\"modified_at\":1725216435.355422,\"name\":\"Massage Chair Presence\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-CCFA Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"FB:08:82:C5:A2:5C_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.041669,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.mariah_room_fp2_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05362f331bbb95c88b007da2281c2835\",\"labels\":[],\"modified_at\":1725237352.484952,\"name\":\"Mariah Room FP2 Identify\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_1_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.047465,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.mariah_room_fp2_light_sensor_light_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"572e2d9b32244570b0d0b314a4c0b609\",\"labels\":[],\"modified_at\":1725237352.487786,\"name\":\"Mariah Room FP2 Light Sensor Light Level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Light Sensor Light Level\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2672\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.051823,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_motion_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5970db3a2e7b0259e89db44e4cfa579\",\"labels\":[],\"modified_at\":1725237416.812842,\"name\":\"Mariah Room Motion Detection\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 1\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2688\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.055599,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bean_bag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff08f0de11c1b85bc8cd0d449bc0c733\",\"labels\":[],\"modified_at\":1725237437.467906,\"name\":\"Mariah Room Bean Bag\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 2\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2692\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725237328.059074,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.mariah_room_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6bfab91f865d492c15136b5c01e3ea3\",\"labels\":[],\"modified_at\":1725237447.998816,\"name\":\"Mariah Room Bed\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 3\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2696\"},{\"area_id\":\"mariah_bedroom\",\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237505.317515,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"scene.mariah_in_bed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8fb3c6924d403f71d58b0bb0dabf3c01\",\"labels\":[],\"modified_at\":1725237505.338758,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Mariah In Bed\",\"platform\":\"homeassistant\",\"translation_key\":null,\"unique_id\":\"1725237502868\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237787.837052,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_purple\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"624dd2844883b69d29ed148095cfedd4\",\"labels\":[],\"modified_at\":1725237787.837879,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Purple\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_purple\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725237915.884351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_white\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d456942a6323ea80effd232373cc5b99\",\"labels\":[],\"modified_at\":1725237915.885773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238041.890769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"75cf52bb1c878e6bff34b625af14e080\",\"labels\":[],\"modified_at\":1725238103.797624,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up_initial\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238636.640793,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3b6a0b1778090f2e8c408dda4f83c35\",\"labels\":[],\"modified_at\":1725238636.641973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238624495\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725238701.670496,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9999f46a955a0e9f9084655c2278aae\",\"labels\":[],\"modified_at\":1725238701.671689,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238682447\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239006.346545,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_on_beanbag\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4ce3b7950ba257b7202c193ad300ec6\",\"labels\":[],\"modified_at\":1725239006.347468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - On - Beanbag\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725238993576\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239193.188985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f01bb92164b255a0efc6d56ad8e2d267\",\"labels\":[],\"modified_at\":1725239193.189985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off_motion\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1725239220.921769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_mariah_room_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7ab674921f77ca79b116b8ad3510f592\",\"labels\":[],\"modified_at\":1725239220.923107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Mariah Room Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1725239208837\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"config_subentry_id\":null,\"created_at\":1725240282.042413,\"device_id\":\"ea8769b4b80ec23ee0aefbd098440aa6\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.presence_sensor_fp2_23f1_presence_sensor_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7ca8c0f7712e5307b5d9763e9de9b94\",\"labels\":[],\"modified_at\":1725240282.04309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Presence-Sensor-FP2-23F1 Presence Sensor 4\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"6A:09:16:7C:35:C9_1_2700\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.352226,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a45c2f5c4dc505611cb256120f1f2830\",\"labels\":[],\"modified_at\":1727942594.370094,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.395121,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"642124e3cca72e7af2215ef9a52ec5b8\",\"labels\":[],\"modified_at\":1727942594.403475,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.425326,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"784abe3673b46c36d82dd6392e364987\",\"labels\":[],\"modified_at\":1727942594.425962,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1727942594.45199,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"150bd1465c22a43804cecfd9a73b625d\",\"labels\":[],\"modified_at\":1727942594.452773,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1728721845.869036,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_missing_acks_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b63b865295f97c1a420158b97b7759ea\",\"labels\":[],\"modified_at\":1728721845.869115,\"name\":null,\"options\":{},\"original_name\":\"Missing ACKs\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_ack\",\"unique_id\":\"4182894947.1.statistics_timeout_ack\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.793984,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385bc6fdb93d7ac940f95ec7929b93a2\",\"labels\":[],\"modified_at\":1729542987.794601,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1729542987.818634,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dd8c93ee004038b3809d9bf5e9651e47\",\"labels\":[],\"modified_at\":1729542987.819224,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927412.116135,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"955ffcb77910a5ce5c785cbb4567a5f4\",\"labels\":[],\"modified_at\":1730927412.117253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927396308\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.917166,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"987472eb0c0a9d61f145fe1ffa7ec389\",\"labels\":[],\"modified_at\":1730927493.919085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.920247,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.entry_light_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"252a7a535fed97b7201a3d818cbf6b41\",\"labels\":[],\"modified_at\":1730927493.923132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.925051,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.entry_light\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97c48c7149d9b2887c6c759a19330130\",\"labels\":[],\"modified_at\":1730927493.927034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:80:cb:b8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.928963,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.entry_light_theme\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"500c84effc8332e2f1c41a3075838240\",\"labels\":[],\"modified_at\":1730927493.932234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Theme\",\"platform\":\"lifx\",\"translation_key\":\"theme\",\"unique_id\":\"d0:73:d5:80:cb:b8_theme\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"config_subentry_id\":null,\"created_at\":1730927493.935595,\"device_id\":\"29060729b0d3b0b608291770a400b0cc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.entry_light_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"743ad90a794f64c648bd1898865e94f4\",\"labels\":[],\"modified_at\":1730927493.936077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:80:cb:b8_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1730927707.36645,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_on_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1265c862bfdaa5054cae39b5f86e369c\",\"labels\":[],\"modified_at\":1730927707.367325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - On - Day\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927687152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":173092779", - "offset_ms": 175 - }, - { - "direction": "recv", - "type": "text", - "payload": "9.13572,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3d209c365471b448fef5272375db2ff0\",\"labels\":[],\"modified_at\":1730927799.137491,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Downstairs Hallway Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1730927783620\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.182084,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ddf28a6cb7c5941b7f5f4a22f00a9f0e\",\"labels\":[],\"modified_at\":1731010174.182936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.185823,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.back_porch_light_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62ff2608f2319d6a14116e79184fb9de\",\"labels\":[],\"modified_at\":1731010174.186057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.188286,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.back_porch_light_idle_water_alarm_water_temperature_alarm_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02c6d610044ed99bb98012037e946b99\",\"labels\":[],\"modified_at\":1731010174.188925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Water Alarm Water temperature alarm status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.189509,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_no_data\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c63c08e0a24247681b3d434ba4fb34cb\",\"labels\":[],\"modified_at\":1731010174.19004,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"No data\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.190342,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_below_low_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"abb7f974abebcb04c1b547a6286cded4\",\"labels\":[],\"modified_at\":1731010174.190851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Below low threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1731010174.191145,\"device_id\":\"58cf753bd6e000057d86c4a2cc6daf4a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_porch_light_above_high_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f614798b9e419b24613abcca2ed35048\",\"labels\":[],\"modified_at\":1731010174.19163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Above high threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.16-113-0-Water Alarm-Water temperature alarm status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.764381,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac6c25ec61299c2cb06e3968752d2b33\",\"labels\":[],\"modified_at\":1732137151.765016,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.71.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.765454,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"470d94d96fdc410faa1a1d853ce54872\",\"labels\":[],\"modified_at\":1732137151.765996,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.71.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.766523,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bdd8a3d8d5649e3c59bcd0afe21a3233\",\"labels\":[],\"modified_at\":1732137151.766708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767048,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e664059fc7a8cd2a4c332b3dd7c088\",\"labels\":[],\"modified_at\":1732137151.767202,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.71.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.767524,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167a34dc614f039f41fc040f39e15d2c\",\"labels\":[],\"modified_at\":1732137151.767682,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.76799,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2b457d5cbaa8a6d30f5db0cfa9205e7c\",\"labels\":[],\"modified_at\":1732137151.768142,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.71.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768433,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"efb4c2b5944fd9687778e2300f221aba\",\"labels\":[],\"modified_at\":1732137151.76858,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.71.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.768882,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e0206961390409df0866659ba3bde3c\",\"labels\":[],\"modified_at\":1732137151.769029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.71.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.769331,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45bfe6ad87c79146ddc2780321ecc45c\",\"labels\":[],\"modified_at\":1768937324.655714,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.71.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137151.770858,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7befa0f701f255251d4f0713e34362f\",\"labels\":[],\"modified_at\":1732137151.771513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.71.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.588866,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2668e06370022ffa63e0af58450c4deb\",\"labels\":[],\"modified_at\":1768937324.772972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.590101,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e406cccffc6c5b1a623fd47a73eba1f\",\"labels\":[],\"modified_at\":1732137162.590693,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.591473,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"02301ae4db885a81128ada934ab4a086\",\"labels\":[],\"modified_at\":1732137162.592025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.592528,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"de6fee332c76665dc7ef1990beab6911\",\"labels\":[],\"modified_at\":1732137162.592694,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593141,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb96048cc18af78626c04d902a8e7007\",\"labels\":[],\"modified_at\":1732137162.593303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.593752,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0bded064f1e92e2734f097e5c6fc559b\",\"labels\":[],\"modified_at\":1732137162.593913,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.594349,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7628d05dcf62a79ba33c64966408e4a7\",\"labels\":[],\"modified_at\":1732137162.594936,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.595438,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5f170a01f0cacbeb2fd47e3cedac5f\",\"labels\":[],\"modified_at\":1732137162.595608,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596071,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d11c36c8b1ae89a2329b8466196adb6\",\"labels\":[],\"modified_at\":1732137162.596235,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.596681,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"322ec7947d8e42919a0133cd17e116f7\",\"labels\":[],\"modified_at\":1732137162.59686,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597312,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_minimum_reporting_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"adf1bb1bfe2a4f11cadf90f298ff2d35\",\"labels\":[],\"modified_at\":1732137162.597473,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Minimum Reporting Frequency\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-172\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.597912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_battery_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0afe97af7c4e124df81a1ac9cc483560\",\"labels\":[],\"modified_at\":1732137162.598073,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-182\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.598509,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"10efd918aa86083fadb425ff9a4a4a34\",\"labels\":[],\"modified_at\":1732137162.598687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-183\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.59912,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3c5669678178150a506c354e6f1be9\",\"labels\":[],\"modified_at\":1732137162.599283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-184\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.599718,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_brightness_reporting_change_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"913286fe33112a9c3d531a34472f5945\",\"labels\":[],\"modified_at\":1732137162.599878,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Change Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-185\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601005,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_multi_sensor_vibration_sensor_enable_or_disable\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3db884502b02d5d6a290bdf2d41907c\",\"labels\":[],\"modified_at\":1732137162.601212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration sensor enable or disable\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.601721,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b4f6c95db11d3ac17bca07d2264430a4\",\"labels\":[],\"modified_at\":1732137162.601885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602321,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e453c0781a8c76f1e73aefc41ad58342\",\"labels\":[],\"modified_at\":1732137162.602485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.602937,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_sensor_checking_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5581de38027d90f3ef0cb1cd2c41d2a0\",\"labels\":[],\"modified_at\":1732137162.603098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity sensor checking interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.60353,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_temperature_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2f2fedd7c6df14c4b5c04f34a712b7e8\",\"labels\":[],\"modified_at\":1732137162.603692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for temperature sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-173\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604137,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_humidity_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0e70223c7a145435b2ed9e879cd97c40\",\"labels\":[],\"modified_at\":1732137162.604311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for humidity sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-174\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.604784,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_report_interval_for_light_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"126c174154d818c34882bf702cd2ecb1\",\"labels\":[],\"modified_at\":1732137162.604956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Report interval for light sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-175\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.605428,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_temperature_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8f8387b33452ea29b9bf9b484030fe46\",\"labels\":[],\"modified_at\":1732137162.605656,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-201\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.606111,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_humidity_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e4b96482125c77b71a934b2d26f18e\",\"labels\":[],\"modified_at\":1732137162.607041,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-202\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.6076,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_light_offset_parameter\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e78741347ca06e5ec1b6e8c3ba8b559\",\"labels\":[],\"modified_at\":1732137162.607783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Light offset parameter\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-203\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.608276,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_multi_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"46015d5ffd1da337365d54035bbbec1f\",\"labels\":[],\"modified_at\":1732137162.608489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609037,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5515fb214b05e9d99121d850fdc2cc3e\",\"labels\":[],\"modified_at\":1732137162.609207,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.609708,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.garage_multi_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"36b46883ad9a46c08d9ace6a631f3ab0\",\"labels\":[],\"modified_at\":1732137162.609873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.610376,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_c", - "offset_ms": 182 - }, - { - "direction": "recv", - "type": "text", - "payload": "ategory\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e5ec6faa8b7d0368a1aaef25db69cfae\",\"labels\":[],\"modified_at\":1732137162.610934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.611673,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7eadc541b21bdc09a3ede440e16e781\",\"labels\":[],\"modified_at\":1732137162.612885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.61343,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2ee927581c1eeef7e93ff0d97ddee896\",\"labels\":[],\"modified_at\":1732137162.613993,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.614532,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_idle_power_management_battery_maintenance_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dcdb2a7c64feec4cb475111ab74f4d8f\",\"labels\":[],\"modified_at\":1732137162.6151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Battery maintenance status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.615626,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_soon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88ae53a601694ce99968bd1f2e333c08\",\"labels\":[],\"modified_at\":1732137162.61618,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery soon\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.616467,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_replace_battery_now\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0edb4b570f956fbd585e38c96895ee89\",\"labels\":[],\"modified_at\":1732137162.616941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Replace battery now\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-Power Management-Battery maintenance status.11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.617512,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_multi_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"813c7f2ffa0892c3422fa632fefc12fd\",\"labels\":[],\"modified_at\":1732137162.618824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.619386,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.garage_multi_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"93dc4ae4941e37f57821eab3fd04fdcb\",\"labels\":[],\"modified_at\":1732137162.619911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.620392,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_multi_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6557f3d6a9a2cf2d58f3637dab11b0fc\",\"labels\":[],\"modified_at\":1732137162.621174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.621782,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_multi_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c7728624fe2d08c453eb1f5570b13110\",\"labels\":[],\"modified_at\":1732137162.622362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732137162.62405,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_multi_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e01d9271034ccc4742137810a44c7296\",\"labels\":[],\"modified_at\":1732137162.624683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.633871,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_1_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28458c3031c3f4c248b9a590649b56b8\",\"labels\":[],\"modified_at\":1752106041.646984,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 1 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_1_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.634984,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_sensor_2_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8233a76f8e5b57101fa68fa5d761e95d\",\"labels\":[],\"modified_at\":1752106041.647528,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Sensor 2 Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_sensor_2_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.635932,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_rain_delay_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4306e274bbda0cdb3c63207a6f31f939\",\"labels\":[],\"modified_at\":1752106041.647924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Active\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_rain_delay_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.636864,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.opensprinkler_paused\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8cfc6b3d9aa316b1a16b51c6c90236c4\",\"labels\":[],\"modified_at\":1752106041.648321,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Paused\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_paused\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.637837,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_program_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d677537788a5eafcb8532c16cf717224\",\"labels\":[],\"modified_at\":1752106041.648738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_program_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.638843,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s01_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"78da84e6aefcc386e0046bf1b665406b\",\"labels\":[],\"modified_at\":1752106041.649173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.640317,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_lawn_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6eef03c61878db30aef1069ae462af17\",\"labels\":[],\"modified_at\":1752106041.649602,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.641282,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s03_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e7f2050e9cf5b99317afc5bc8437b60b\",\"labels\":[],\"modified_at\":1752106041.649991,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.642249,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_flower_bed_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd1dcda93262483eb387ef6990169370\",\"labels\":[],\"modified_at\":1752106041.650391,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.643239,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s05_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fabc42d8716a5866c0d562652bb54f56\",\"labels\":[],\"modified_at\":1752106041.650775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.644241,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s06_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d4f5a122107cab3853f733992b28f8c9\",\"labels\":[],\"modified_at\":1752106041.651155,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.646097,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s07_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3293c0b56291ae6e9a7bd65e0abd60ab\",\"labels\":[],\"modified_at\":1752106041.65154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.647084,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.s08_station_running\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44907512c87223c107c95f467afd32ac\",\"labels\":[],\"modified_at\":1752106041.651931,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Running\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_binary_sensor_station_running_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.64834,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s01_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a38e3beb90e104dd21a41eb83801ef5\",\"labels\":[],\"modified_at\":1752106041.652574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S01 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.649353,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_lawn_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"68796744a1de3fd9f2849c34c91293d8\",\"labels\":[],\"modified_at\":1752106041.653615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Lawn Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.650323,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s03_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d7192a3ad6d844197c490a376e3f70b1\",\"labels\":[],\"modified_at\":1752106041.65404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S03 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.651977,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_front_flower_bed_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9199ba6acba78346f517315046715e7b\",\"labels\":[],\"modified_at\":1752106041.654442,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Front Flower Bed Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.652985,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s05_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5ac557888704caa59ca96935fd70b6d\",\"labels\":[],\"modified_at\":1752106041.654835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S05 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.653945,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s06_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6edb59dd3e64c4913f7de4e938acd59\",\"labels\":[],\"modified_at\":1752106041.655236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S06 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.654928,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s07_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"43667b7d50dd98b035e656e0bab89356\",\"labels\":[],\"modified_at\":1752106041.655641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S07 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.656158,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_s08_station_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf30ad107bbd19dba22c07d3614de624\",\"labels\":[],\"modified_at\":1752106041.656036,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front S08 Station Duration\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_station_duration_0_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.657793,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_interval_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab30ba1fa24ea82ab2abbc82c046d16f\",\"labels\":[],\"modified_at\":1752106041.656454,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Interval Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_interval_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.658844,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_starting_in_days\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d70fc9278f25b33ebbc97bee258bc426\",\"labels\":[],\"modified_at\":1768937328.473047,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Starting In Days\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_starting_in_days_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.659895,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"532c0ab02f8bacd4922c9e8fb929b233\",\"labels\":[],\"modified_at\":1752106041.657319,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Count\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_count_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.660553,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_repeat_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82c9f077606745c02474ab5be55a620f\",\"labels\":[],\"modified_at\":1752106041.65765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Repeat Interval\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_repeat_interval_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.661207,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.front_start_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8ff12afe9d9a6186ccedc30b97f98c5b\",\"labels\":[],\"modified_at\":1752106041.657982,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.662274,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start1_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5eaab58a3eaa4725ee1acc2c7d0af43\",\"labels\":[],\"modified_at\":1752106041.65843,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start1_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.663542,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start2_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"900d108248145e047c6222d5dab38a6d\",\"labels\":[],\"modified_at\":1752106041.658749,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start2_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.664261,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.front_start3_time_offset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53547b2a17ba809162f4c80e4c95c494\",\"labels\":[],\"modified_at\":1752106041.659059,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_number_start3_time_offset_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.66517,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_restrictions\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"98120ea7a8c6aec01a0b4c930f4d271a\",\"labels\":[],\"modified_at\":1752106041.659582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Restrictions\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_restrictions_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.666191,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86585bafecd310548350429db5de5ac4\",\"labels\":[],\"modified_at\":1752106041.659999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.667173,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_additional_start_time_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37ecea61af97b2c0c60f95fe1aea7a1c\",\"labels\":[],\"modified_at\":1752106041.660415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Additional Start Time Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.668408,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.front_start_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c19fa2860614bd4a8f05e40abc011676\",\"labels\":[],\"modified_at\":1752106041.660824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670177,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start1_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41990b44f367572d2e3191a12b36cdcc\",\"labels\":[],\"modified_at\":1752106041.661229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start1_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.670831,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start2_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd85f5a98d6ad86127c3b5823860fec6\",\"labels\":[],\"modified_at\":1752106041.661525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start2_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.671452,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.front_start3_time_offset_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"48a20cd58ad5a61fee98b1af89696b25\",\"labels\":[],\"modified_at\":1752106041.661818,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time Offset Type\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_select_start3_time_offset_type_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.672332,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_last_run\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dcb6bda0ee19761e85c6fade1412faef\",\"labels\":[],\"modified_at\":1752106041.662311,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Last", - "offset_ms": 189 - }, - { - "direction": "recv", - "type": "text", - "payload": " Run\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_last_run\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.673368,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_rain_delay_stop_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c5559a9931dd1e25341ea309e5a82f85\",\"labels\":[],\"modified_at\":1752106041.662722,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Rain Delay Stop Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_rdst\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.674302,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_water_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6c8cf60018b734e890992bd9eed2ec34\",\"labels\":[],\"modified_at\":1752106041.663111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Water Level\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_water_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676033,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_flow_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55cbcd1e26e5440341dfb0355bd8bcc7\",\"labels\":[],\"modified_at\":1752106041.663513,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Flow Rate\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_flow_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.676994,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_draw\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c2fdebd9b4d3a941ed6738378fd82c4\",\"labels\":[],\"modified_at\":1752106041.663901,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Draw\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_current_draw\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.677946,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_current_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"004c2dddd6a671840404bde623b57bec\",\"labels\":[],\"modified_at\":1752106041.664278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Current Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_devt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.678559,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.opensprinkler_pause_end_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"928cbf681537aefdcec79f502a31c202\",\"labels\":[],\"modified_at\":1752106041.664568,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"OpenSprinkler Pause End Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_pt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.679532,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s01_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c7c0622cc402dd16d31691f5bbd346a0\",\"labels\":[],\"modified_at\":1752106041.664954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S01 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.680486,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_lawn_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ec3d3107b963ae9e98697b474d274f97\",\"labels\":[],\"modified_at\":1752106041.665365,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Lawn Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.682227,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s03_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee3da72518ce48c980b2b30be13c8807\",\"labels\":[],\"modified_at\":1752106041.665741,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S03 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.683445,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_flower_bed_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e68cff1ef73136d91264bef3338e6b8e\",\"labels\":[],\"modified_at\":1752106041.66612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Flower Bed Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.684415,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s05_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3fa7d6a18fd72776a962c38ebab8505f\",\"labels\":[],\"modified_at\":1752106041.666497,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S05 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.685369,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s06_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0400d09413e1943988a75450678b1ebb\",\"labels\":[],\"modified_at\":1752106041.66687,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S06 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.686365,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s07_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8eeb163f3069a24eb8b02be77dabfe38\",\"labels\":[],\"modified_at\":1752106041.667242,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S07 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.687354,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.s08_station_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a67713de10858c8f5573df5bf7deff48\",\"labels\":[],\"modified_at\":1752106041.667621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"S08 Station Status\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_sensor_station_status_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.688636,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.opensprinkler_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a0dc8f5e507c1f6fde72f904788cdbb6\",\"labels\":[],\"modified_at\":1732137663.689179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"OpenSprinkler Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_controller_enabled\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.689659,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_program_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5814850390edeb9e2eeda752197bc5c\",\"labels\":[],\"modified_at\":1750061531.449132,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.690656,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_monday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e2a2e95f50238ccb6e70e50e56b98b27\",\"labels\":[],\"modified_at\":1752106041.668769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Monday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_monday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691244,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_tuesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5359ae42aaef47628647352704d15ec6\",\"labels\":[],\"modified_at\":1752106041.669071,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Tuesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_tuesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.691842,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_wednesday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"edd1e6010cbe67594ea1ee82924f6f8c\",\"labels\":[],\"modified_at\":1752106041.669369,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Wednesday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_wednesday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.692443,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_thursday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4472ffa505c8f15ca6ab865630355d4\",\"labels\":[],\"modified_at\":1752106041.669655,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Thursday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_thursday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693014,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_friday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1be9033a6ff2cb2f995d8ef74c0afa5b\",\"labels\":[],\"modified_at\":1752106041.669939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Friday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_friday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.693609,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_saturday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4abfd9b07e0f49d65f187324b9feddd\",\"labels\":[],\"modified_at\":1752106041.670226,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Saturday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_saturday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.694193,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.front_sunday_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4357c7a7797385e7b9355358ded32f94\",\"labels\":[],\"modified_at\":1752106041.670505,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Sunday Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_sunday_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.69484,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"switch.front_program_use_weather\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5914f46ad2cfb68aad3c6706cb684a8\",\"labels\":[],\"modified_at\":1752106041.670809,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Program Use Weather\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_program_use_weather_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.696024,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s01_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ee933341e59eab4e1de01dfb380d57d4\",\"labels\":[],\"modified_at\":1732137663.696604,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S01 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.697116,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_lawn_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27734f41473d59fab6ac03f37eb7bfb8\",\"labels\":[],\"modified_at\":1732137663.697653,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Lawn Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.698106,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s03_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cddda4b9abd4a2112b5d386fb355d349\",\"labels\":[],\"modified_at\":1732137663.698787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S03 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.699266,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.front_flower_bed_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aebefeb6ed4d1b726994cfd307f4cd2a\",\"labels\":[],\"modified_at\":1732137663.699922,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Front Flower Bed Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.700567,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s05_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1a1b9b1f74a2038ccf2d6ada0f37c6fa\",\"labels\":[],\"modified_at\":1732137663.701324,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S05 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.702531,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s06_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2dd24c218d32a94dd0335de195f7f2d2\",\"labels\":[],\"modified_at\":1732137663.70317,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S06 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.703647,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s07_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"51d911d53c2592a07306a7b6b3b3fa66\",\"labels\":[],\"modified_at\":1732137663.704181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S07 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.704672,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.s08_station_enabled\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"35c35dbbf2e3f45e3f06fa1dbae6b749\",\"labels\":[],\"modified_at\":1732137663.705194,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"S08 Station Enabled\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_switch_station_enabled_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.706649,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"text.front_program_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37e6efeffb3cda3c638bab8e88d2538f\",\"labels\":[],\"modified_at\":1752106041.673929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Program Name\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_text_program_name_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.709345,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"time.front_start_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3218db77bd10bc723c7584475171ab4f\",\"labels\":[],\"modified_at\":1752106041.675042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Front Start Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.71041,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start1_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fd2cee6ac188f1157bc1dabe9135722f\",\"labels\":[],\"modified_at\":1752106041.67576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start1 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start1_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711008,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start2_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8099b78938edadefa49d3f10af5d3a33\",\"labels\":[],\"modified_at\":1752106041.67606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start2 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start2_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"config_subentry_id\":null,\"created_at\":1732137663.711572,\"device_id\":\"b0755b430fe7f19f4f7b6a9dd4a65e8d\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"time.front_start3_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"960046c7225148a4e2e04959c16b02f6\",\"labels\":[],\"modified_at\":1752106041.676347,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Start3 Time\",\"platform\":\"opensprinkler\",\"translation_key\":null,\"unique_id\":\"3c_e9_0e_db_fb_82_time_start3_time_0\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.982321,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"176bdb7963a4d2e8e0993dd991c2d61a\",\"labels\":[],\"modified_at\":1732138416.983212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.73.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.983825,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3830b7b3aafeadc0f0a4a4cafdbba3c7\",\"labels\":[],\"modified_at\":1732138416.984423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.73.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.984956,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9a40c07eeee574d0a58ea7e537b5dddb\",\"labels\":[],\"modified_at\":1732138416.985133,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.985534,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7d2445fa8e4bd61ebde86370bc8523e1\",\"labels\":[],\"modified_at\":1732138416.985692,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.73.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986061,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2f41c04d85d79bf9677d75b8c16c04b\",\"labels\":[],\"modified_at\":1732138416.986233,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.986748,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"194631aec7814b1c0eeba1cf4e786d0a\",\"labels\":[],\"modified_at\":1732138416.986932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.73.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.98735,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ae9b1ef37b45bab86290b6d49def769b\",\"labels\":[],\"modified_at\":1732138416.988081,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.73.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.988538,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"98007b9b486441a51a5279bb7fed6b8a\",\"labels\":[],\"modified_at\":1732138416.988715,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.73.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.989091,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"49dc7f599fdd1f2027fe2bcf95006dff\",\"labels\":[],\"modified_at\":1768937324.663851,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.73.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138416.990462,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"33557f07cdf75bc2412ad0a885c0bc44\",\"labels\":[],\"modified_at\":1732138416.991131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.73.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.790002,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_air_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72e8b62740080ea3f946f208f1fb7bc7\",\"labels\":[],\"modified_at\":1768937324.779845,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true", - "offset_ms": 197 - }, - { - "direction": "recv", - "type": "text", - "payload": "},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Air temperature\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Air temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.791422,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_illuminance\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d04acf192d2fd0fc6179ab20b4104f4\",\"labels\":[],\"modified_at\":1732138423.792057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Illuminance\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Illuminance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.792664,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f328919b5fbd52d7e3554c431eaecda5\",\"labels\":[],\"modified_at\":1732138423.793293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Humidity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-49-0-Humidity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.793874,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_temperature_scale\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"57f5ea17ee03c8aef502d38ef8bd6b1b\",\"labels\":[],\"modified_at\":1732138423.794042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Scale\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.79457,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_temperature_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd876b6092259cb5ead6b986d88ee635\",\"labels\":[],\"modified_at\":1732138423.794748,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.795911,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_humidity_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0555c9ad71f1f7fdd6ee1463b6969d21\",\"labels\":[],\"modified_at\":1732138423.796098,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.796629,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_brightness_reporting_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec00430092b4eeab0664d84f21df0171\",\"labels\":[],\"modified_at\":1732138423.796797,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Brightness Reporting Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797307,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.jenni_office_re_trigger_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88dc5c6dce5ae4332a1d45a4f0cc4c99\",\"labels\":[],\"modified_at\":1732138423.797468,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Re-Trigger Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.797983,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4ac88bfe9cceaa214b06d93c173a4837\",\"labels\":[],\"modified_at\":1732138423.798146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.798681,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_led_indicator_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc6960dcb05013fd42b9c69458102c16\",\"labels\":[],\"modified_at\":1732138423.798846,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.799334,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.jenni_office_basic_set_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07a1c78242bf060670017b91e7d94d35\",\"labels\":[],\"modified_at\":1732138423.799489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic Set Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.800068,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"043056745e8987e49706de0b21d04793\",\"labels\":[],\"modified_at\":1732138423.8", - "offset_ms": 204 - }, - { - "direction": "recv", - "type": "text", - "payload": "00234,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.804869,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"daf1f79fbd90cabfc5a34ad780956cdb\",\"labels\":[],\"modified_at\":1732138423.805095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.806501,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbb8694e79a2ad14cb64c8f8e5d47a2f\",\"labels\":[],\"modified_at\":1732138423.80718,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.807718,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f7424d3a9e7da60ac2ba9d4adfd79a18\",\"labels\":[],\"modified_at\":1732138423.808298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.808844,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.jenni_office_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24c0c8ec26f7f4075cd8e45ffcde07a1\",\"labels\":[],\"modified_at\":1732138423.809401,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.809877,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.jenni_office_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22bf5cdc43c8ee4de64819afa890cc68\",\"labels\":[],\"modified_at\":1732138423.811783,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.812418,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.jenni_office_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8312156799f26c4fd9c0c0e868d613df\",\"labels\":[],\"modified_at\":1732138423.81303,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.81356,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.jenni_office_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cde146585342c60fa01d113994424977\",\"labels\":[],\"modified_at\":1732138423.814241,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138423.816756,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.jenni_office_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a15df092ba0c6a7154348a4898157ad4\",\"labels\":[],\"modified_at\":1732138423.817406,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.618014,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416b91acfddf3047384e7ee2ae08296c\",\"labels\":[],\"modified_at\":1732138684.618664,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.75.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.619114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"22ca26c888e4f320444bfe76a2069291\",\"labels\":[],\"modified_at\":1732138684.619621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.75.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620099,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3617768155b9135fc6e5f44b7e21189c\",\"labels\":[],\"modified_at\":1732138684.620274,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.620594,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"118bc1f4edbe3b8896b0d0a6751133e3\",\"labels\":[],\"modified_at\":1732138684.620752,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.75.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.621063,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c365245a707d6329e913801bd91ca5d1\",\"labels\":[],\"modified_at\":1732138684.621225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.62154,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75eb84dd5f8d9bc95ca286dc1eeca79d\",\"labels\":[],\"modified_at\":1732138684.621706,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.75.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622015,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c2777138368a9abe7f9f042f0023f48b\",\"labels\":[],\"modified_at\":1732138684.622179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.75.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.622502,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c57670c418667c196d39dca2483a5d14\",\"labels\":[],\"modified_at\":1732138684.622961,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.75.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.623544,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"15d78da0a4398cd66194710995979ef2\",\"labels\":[],\"modified_at\":1768937324.668105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.75.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138684.624153,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4b3ad094b6fb47d54160dc27a2402c7a\",\"labels\":[],\"modified_at\":1732138684.624744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.75.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.636665,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_sensor_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fa00abf3918f8fac60b707bed85cdd7\",\"labels\":[],\"modified_at\":1732138695.636933,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Sensor Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.637438,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_basic_set\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"caa0f8a73745bfcdc301019929f9f395\",\"labels\":[],\"modified_at\":1732138695.637612,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Basic Set\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.63806,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_basic_set_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4687608966a4d41618657f50e8d41a50\",\"labels\":[],\"modified_at\":1732138695.638228,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Basic Set Value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.638762,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_vibration_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bfafac5c6126794a57742fe36400fea6\",\"labels\":[],\"modified_at\":1732138695.638934,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensor\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.639408,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_motion_detection_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03f80773d857d3dacb7fd5e038bb1f31\",\"labels\":[],\"modified_at\":1732138695.639583,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Timeout\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640039,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_flash_led_on_motion\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a365309305395eecd9b2293a9b2ed220\",\"labels\":[],\"modified_at\":1732138695.640208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Flash LED on Motion\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.640663,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_low_battery_alarm_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3e34194de8abc885606521034b1889ed\",\"labels\":[],\"modified_at\":1732138695.640834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Low Battery Alarm Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.641306,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_motion_untrigger_send_basic_cmd\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99cf610a23717a99dbfe052a0bb6ea34\",\"labels\":[],\"modified_at\":1775549231.59514,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"ared\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.64198,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.downstairs_hallway_motion_sensor_configuration_param_lock\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"72b0ce3efe64c82a980bac45f2c10a14\",\"labels\":[],\"modified_at\":1775549231.595476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Settings Lock\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-254\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.642575,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.downstairs_hallway_motion_sensor_motion_detection_send_binary_sensor_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df497c8d1113a36c54c4db878e0fca8b\",\"labels\":[],\"modified_at\":1732138695.642925,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion Detection: Send Binary Sensor Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.643371,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_cover_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbfd1827b608ec30e50a2c8d9ac1738a\",\"labels\":[],\"modified_at\":1732138695.6439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Cover status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.644367,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_tampering_product_cover_removed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"067ff38baebfeba542fc2d93fd6d846b\",\"labels\":[],\"modified_at\":1732138695.64489,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tampering, product cover removed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Cover status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.645399,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_idle_home_security_motion_sensor_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5d4d2fb65ea95c82c89912955ce2d74f\",\"labels\":[],\"modified_at\":1732138695.645909,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Home Security Motion sensor status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.646344,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_motion_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a746d156e0579cb6a0c282ec8423459d\",\"labels\":[],\"modified_at\":1732138695.646873,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.647407,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_re_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"afe52a71944a7bce54e82309066779eb\",\"labels\":[],\"modified_at\":1732138695.648124,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains re-connected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.648719,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ccfe4098bf64d024b3a4280d44249f06\",\"labels\":[],\"modified_at\":1732138695.648905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.649411,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4e4dca10b749b4af9b227c82fb79d73f\",\"labels\":[],\"modified_at\":1732138695.649587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.650062,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.downstairs_hallway_motion_sensor_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ea778c5ee2223334224e979796972\",\"labels\":[],\"modified_at\":1732138695.650629,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.65114,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_low_battery_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"09e84349c9c3f7be88ffdb3b431a0ba7\",\"labels\":[],\"modified_at\":1732138695.652399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Low battery level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-128-0-isLow\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.653016,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"714c36211355e8c6eed8b0f405f1af18\",\"labels\":[],\"modified_at\":1732138695.653613,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.654109,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.downstairs_hallway_motion_sensor_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7baadd3ceacdd507c216212cb3b87068\",\"labels\":[],\"modified_at\":1732138695.654668,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732138695.655381,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.downstairs_hallway_motion_sensor_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4c051cf51f0348ae219dc014e260222e\",\"labels\":[],\"modified_at\":1732138695.655966,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1732139452.718891,\"device_id\":\"67cb6daf3256f4a3408546825aa5136e\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.jenni_office_basic\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ed7dbfad7f175f21a652c7d0d3330d8b\",\"labels\":[],\"modified_at\":1732139538.777695,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Basic\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.73-32-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1732174703.971423,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_garage_lights_left_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"924db9892cc5519731a5c110545b3061\",\"labels\":[],\"modified_at\":1732174703.972284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Garage Lights Left On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1732174695099\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.375013,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_connection_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b816b35414f8bc2d381fc987e434b35f\",\"labels\":[],\"modified_at\":1733163448.545247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Connection ", - "offset_ms": 211 - }, - { - "direction": "recv", - "type": "text", - "payload": "state\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_connection_state_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.41395,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.zigbee2mqtt_bridge_restart_required\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"61f46e69a48027efacc7d58134f627a3\",\"labels\":[],\"modified_at\":1733163448.547781,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Restart required\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_required_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.45896,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.zigbee2mqtt_bridge_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3bfd3f57c36e237bbb9ad6afb80870b6\",\"labels\":[],\"modified_at\":1733163448.551286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_restart_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.504733,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.zigbee2mqtt_bridge_log_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba7340b4cbd21643896dea7f309921f9\",\"labels\":[],\"modified_at\":1733163448.643092,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Log level\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_log_level_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.548301,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25f4a31cb1ccecc4e9469f5ea9cc3e0e\",\"labels\":[],\"modified_at\":1733163448.646729,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.593799,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_coordinator_version\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5b842f63a9b81e3a2af0ef251ecf7ab4\",\"labels\":[],\"modified_at\":1733163448.649525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Coordinator version\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_coordinator_version_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.644285,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_network_map\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"12df011646a6b17600d15ab9fa6fe99c\",\"labels\":[],\"modified_at\":1733163448.653364,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Network map\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_network_map_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.690207,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zigbee2mqtt_bridge_permit_join_timeout\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aca42208b299223d614f58e3feb2c840\",\"labels\":[],\"modified_at\":1733163448.656796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Permit join timeout\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_timeout_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.783081,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b33f74080c92f71e53d49d2fc60e406\",\"labels\":[],\"modified_at\":1733163448.659761,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.829562,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e381ec7dcd1341f5776bd0a2886f9209\",\"labels\":[],\"modified_at\":1733163448.662249,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.873645,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_angle\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a31d7d3cbcf76b4365c2756f2418ca31\",\"labels\":[],\"modified_at\":1733163448.665131,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action angle\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_angle_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.917858,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_device_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a754f3acf910cd43563ed2676eedb040\",\"labels\":[],\"modified_at\":1768937325.657919,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_device_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.961537,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_power_outage_count\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fb5cc9dfece2a14128321a8c8ba0044c\",\"labels\":[],\"modified_at\":1733163448.672203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power outage count\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_power_outage_count_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.00603,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_from_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9624c92d6b8366ef9cd1804493185dab\",\"labels\":[],\"modified_at\":1733163448.674787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action from side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_from_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.049561,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ac02738c9db3275fac7690e531555c11\",\"labels\":[],\"modified_at\":1733163448.67793,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.093516,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_action_to_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c008909747cd28dd536a03d115d711a\",\"labels\":[],\"modified_at\":1733163448.680929,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Action to side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_action_to_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.137499,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.desk_cube_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0e64fef54c101ab96c4081bad5a2ad8\",\"labels\":[],\"modified_at\":1733163448.683803,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_side_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.225948,\"device_id\":\"e600b772e2d38b5b159093786d5bf1b2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.desk_cube_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a932bc8c951ba62827fe0f990e2702db\",\"labels\":[],\"modified_at\":1733163448.686366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d0007081cb0_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.313491,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_desk_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0a28d2af38fd6ac7279788810b8f4d7\",\"labels\":[],\"modified_at\":1733163448.688208,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.405348,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.vr_cabinet_plug_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7f0bb80add1fa704cc495207b3f5d194\",\"labels\":[],\"modified_at\":1733163448.691535,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163280.740788,\"device_id\":\"9a894d327d56de6122548cc80e89ccb0\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.zigbee2mqtt_bridge_permit_join\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"df49492914ec67f302e0b6a69c122293\",\"labels\":[],\"modified_at\":1733163448.695336,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Permit join\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"bridge_0x00212effff06dbf8_permit_join_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.27003,\"device_id\":\"61cd5195c5a101b7b5abcb3b7ea0b218\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_desk_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32e62b257bc1586c7d6f6c0d9757293a\",\"labels\":[],\"modified_at\":1733163448.698409,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b0029191e66_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733163281.357407,\"device_id\":\"57dab8c30d32ed94cce3538e8420f815\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.vr_cabinet_plug\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"81a443a3981f42bf8049cb72eb3726f2\",\"labels\":[],\"modified_at\":1733163448.70122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00124b00291917ff_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1733166139.84886,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.cube_desk_z2mqtt\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad1ef16f58ed42f31138cf882cbd1923\",\"labels\":[],\"modified_at\":1733166139.849744,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CUBE - Desk Z2MQTT\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1733166130068\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1733166143.681489,\"device_id\":\"c4e6de4e26e939f7d433bf6d0a56df00\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.desk_cube_last_side\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"42f966c6395b8ea360e7aa399ca72b13\",\"labels\":[],\"modified_at\":1733166143.682204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"last side\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"desk_cube-e600b772e2d38b5b159093786d5bf1b2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.273786,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.thermostat_temperature_display_units\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3f00ecf5048b3f9e64a704e2ca9d92e0\",\"labels\":[],\"modified_at\":1733470323.274554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Temperature Display Units\",\"platform\":\"homekit_controller\",\"translation_key\":\"temperature_display_units\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.275631,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.thermostat_current_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6a708b72d19d3425a4bffde4773acf9\",\"labels\":[],\"modified_at\":1733470323.276196,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Current Mode\",\"platform\":\"homekit_controller\",\"translation_key\":\"ecobee_mode\",\"unique_id\":\"39:2E:BC:81:26:E8_1_16_33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.276884,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"02eb281ddab89f579541da3c48364480\",\"labels\":[],\"modified_at\":1768937330.226836,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true},\"sensor\":{\"suggested_display_precision\":1}},\"original_name\":\"Thermostat Current Temperature\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.277912,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.thermostat_current_humidity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"aada76d6b800aa198307edc8f2f94b49\",\"labels\":[],\"modified_at\":1733470323.278441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Current Humidity\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.279066,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3a34e9a572df91bb7a2bea56b6c7befc\",\"labels\":[],\"modified_at\":1733470323.279596,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat Motion\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_56\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.280059,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.thermostat_occupancy_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a53e234c9a95713683719a42f1f7d16\",\"labels\":[],\"modified_at\":1733470323.280586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Occupancy\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_57\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.281426,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"climate.thermostat_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1dc2c5f590596a957c5d442d276f9551\",\"labels\":[],\"modified_at\":1775463025.83871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Thermostat\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.282857,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"button.thermostat_identify\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cea789899d09226775d0daa530027b9d\",\"labels\":[],\"modified_at\":1733470323.283385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Identify\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_1_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"config_subentry_id\":null,\"created_at\":1733470323.28388,\"device_id\":\"d0f9545202206f247b2a5c54f0b66b0a\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.thermostat_clear_hold\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9f25cd194cab996c6b0d11611f99101c\",\"labels\":[],\"modified_at\":1733470323.28457,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Thermostat Clear Hold\",\"platform\":\"homekit_controller\",\"translation_key\":null,\"unique_id\":\"39:2E:BC:81:26:E8_1_16_48\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.854459,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.pixel_7_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0990beda4adbced67f9da8fbf14a5734\",\"labels\":[],\"modified_at\":1733904292.858855,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1733904292.892119,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94e84579ecf7f13526a23c78731d3755\",\"labels\":[],\"modified_at\":1733904292.895779,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"config_subentry_id\":null,\"created_at\":1736319447.525713,\"device_id\":\"354d7786af98b410edcf56caea5a2076\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.thermostat_compressor_minimum_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0b9ac173954a17489fd6438677e48e78\",\"labels\":[],\"modified_at\":1741148806.093313,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Compressor minimum temperature\",\"platform\":\"ecobee\",\"translation_key\":\"compressor_protection_min_temp\",\"unique_id\":\"511883021980_compressor_protection_min_temp\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.905972,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"32f04cd994bf4a7ca806e873689f0a0", - "offset_ms": 218 - }, - { - "direction": "recv", - "type": "text", - "payload": "5\",\"labels\":[],\"modified_at\":1736320519.906751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.79.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.907344,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c3e78e8aa7ecee5b3adb88cf6760e660\",\"labels\":[],\"modified_at\":1736320519.907957,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"ping\",\"unique_id\":\"4182894947.79.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.908601,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0aed21f201e4e9e49dc6e2fbfa6b269f\",\"labels\":[],\"modified_at\":1736320519.908898,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909112,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"11d59ab7cf13cb711f9f6aa4d904b40f\",\"labels\":[],\"modified_at\":1736320519.909248,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.79.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909421,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3ea3a75a361da66c42a17ab240ac6619\",\"labels\":[],\"modified_at\":1736320519.909546,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.909714,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9098616b205b24cbad4a88c83997e963\",\"labels\":[],\"modified_at\":1736320519.909949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.79.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.910119,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"519aa11c201477c7828a3bc98fd1133d\",\"labels\":[],\"modified_at\":1736320519.910246,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.79.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911034,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1bec59707ccd7dc529a90b1f098e5463\",\"labels\":[],\"modified_at\":1736320519.911218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.79.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911435,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ef05212c0e42c4bfe401b3c4a440be4b\",\"labels\":[],\"modified_at\":1768937324.673569,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.79.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320519.911768,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.garage_light_switch_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e515cf0760d43f4a81b2b3979145422\",\"labels\":[],\"modified_at\":1736320519.912168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.79.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.889798,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.garage_light_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03c6b2e96c8518f922c1f7976a43224f\",\"labels\":[],\"modified_at\":1736320523.890247,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.890604,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_001\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cfadce8334aa142551bb0271cb3a332f\",\"labels\":[],\"modified_at\":1736320523.890983,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 001\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891298,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.garage_light_switch_scene_002\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5e97ff3d04362f3398435b9c09280c19\",\"labels\":[],\"modified_at\":1736320523.891644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Scene 002\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-91-0-scene-002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.891976,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_inverted_orientation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1be6ea19b6705198c44062cd8c886913\",\"labels\":[],\"modified_at\":1736320523.892111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Inverted Orientation\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892381,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1163e30b6367ba70cdb0bbe818bd86a\",\"labels\":[],\"modified_at\":1736320523.89251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.892784,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_color\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003c87cfb9a0c7a08e1e6a9413bb72be\",\"labels\":[],\"modified_at\":1736320523.892915,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Color\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893181,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_led_indicator_brightness\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a74f8edd31d0d23fcb5d7911f5de558e\",\"labels\":[],\"modified_at\":1736320523.893314,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator Brightness\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.893609,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_off_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd4b36349b64e4afb0efbd8cae27ceb1\",\"labels\":[],\"modified_at\":1736320523.893743,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894017,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_auto_turn_on_timer\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4dce04321343b8f8650a1638e540c066\",\"labels\":[],\"modified_at\":1736320523.894147,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.894415,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_physical_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a26041ffe1d767c1eb6d43d5eaa1062\",\"labels\":[],\"modified_at\":1736320523.894549,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Physical Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895246,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_connected_3_way_switch\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"335173b1290e32b28674d76b3139a7e3\",\"labels\":[],\"modified_at\":1736320523.895405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Connected 3-Way Switch\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.895685,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_z_wave_commands\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b023c61c1897b503e351ab61f1397b60\",\"labels\":[],\"modified_at\":1736320523.895824,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with Z-Wave Commands\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896095,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_control_group_2_with_on_off_timers\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18346fff64001fa0e036649a9ce026a3\",\"labels\":[],\"modified_at\":1736320523.896229,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Control Group 2 with On/Off Timers\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-7-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896493,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c84119a15d609af8e002b03a3113d945\",\"labels\":[],\"modified_at\":1736320523.896637,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.896904,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_scene_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7be85935d305056837922385a2d2166d\",\"labels\":[],\"modified_at\":1736320523.897033,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Scene Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897297,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_switch_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ba44272b6f19db495f0bad8e04150bdf\",\"labels\":[],\"modified_at\":1736320523.897427,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Switch Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.897689,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_smart_bulb_mode_reporting_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"60c44e307fd48158ef5a870f6e1ea15f\",\"labels\":[],\"modified_at\":1736320523.897823,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Smart Bulb Mode: Reporting Behavior\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898087,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.garage_light_switch_association_reports\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"779e519eb982bf17eafbb4185d8a5538\",\"labels\":[],\"modified_at\":1736320523.898218,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Association Reports\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898501,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param017\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"13eb4a7de3ff753f4f4551bb6b34c3fc\",\"labels\":[],\"modified_at\":1736320523.898633,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param017\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.898906,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param018\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2aade9b24c3cf098837c05f198a84196\",\"labels\":[],\"modified_at\":1736320523.899034,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param018\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.899325,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_indicator_value\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a75845967c301f447fdadd705ccd7bb\",\"labels\":[],\"modified_at\":1736320523.899681,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Indicator value\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-value\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.900013,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.garage_light_switch_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cce3b69f3c06d161dec626b5790ce5b3\",\"labels\":[],\"modified_at\":1736320523.900352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-135-0-identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1736320523.901702,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.garage_light_switch_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e73cbc35e18958125287a74471c3a7\",\"labels\":[],\"modified_at\":1736320523.902118,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_motion_detection_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2c40ab8344787dc7d21e29d547af9168\",\"labels\":[],\"modified_at\":1736353596.37888,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Motion detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-113-0-Home Security-Motion sensor status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"config_subentry_id\":null,\"created_at\":1736353647.022559,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a9b5fcaa227f65f8d411267b0c87e17c\",\"labels\":[],\"modified_at\":1736353647.026856,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Garage Motion\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354201.335657,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9b4fba2f11f641562e2a0cf02f5193a8\",\"labels\":[],\"modified_at\":1736354201.33641,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354191063\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1736354274.958347,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_garage_light_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"830666f260932ede8c27eb30fa0f2acd\",\"labels\":[],\"modified_at\":1736354274.959061,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Garage Light - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1736354261558\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356766.764731,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_pixel_watch_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5f39e4da6bae1a1fb17133e0994052d7\",\"labels\":[],\"modified_at\":1736356766.76768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"1e0e99c393cebaf6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.582007,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5a426428dce7d3a5ad82a464d6c13626\",\"labels\":[],\"modified_at\":1736356803.582649,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356803.882889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"109baa4874d527c5dce0fa51e7ec766e\",\"labels\":[],\"modified_at\":1736356803.883446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.157783,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18486e2eea948c77d599307cb1afac40\",\"labels\":[],\"modified_at\":1736356804.158354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.504037,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8b32e5fb84db954de2baea306396bcdf\",\"labels\":[],\"modified_at\":1736356804.504525,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356804.770611,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7076de51a9429320f8f79a3b02daee09\",\"labels\":[],\"modified_at\":1736356804.771166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.09", - "offset_ms": 225 - }, - { - "direction": "recv", - "type": "text", - "payload": "4326,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0957b1480c95f751131df14c11de93e7\",\"labels\":[],\"modified_at\":1736356805.094874,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.332161,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b9d7f3508915fa3d10cc3763c4c732b\",\"labels\":[],\"modified_at\":1736356805.332734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356805.632478,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"654a35e29ec254b14f7342b941c57ebc\",\"labels\":[],\"modified_at\":1736356805.905853,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.134424,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"44ab3ad53acb2fb31265c2beaf81a787\",\"labels\":[],\"modified_at\":1736356806.223628,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.408371,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b4a6ac60b8a79e875715714e9d98b53\",\"labels\":[],\"modified_at\":1736356806.65203,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356806.77282,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9a1414d4439efae40503ca6f2d0de1c1\",\"labels\":[],\"modified_at\":1736356806.918576,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.0732,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ad998071e0851fcdac692503e773cad\",\"labels\":[],\"modified_at\":1736356807.073755,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.47584,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d14678412ea3738987ba070e0d1dc47\",\"labels\":[],\"modified_at\":1736356807.476394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356807.789064,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"12b94f06998a4a37f7fa272ebb5d4a82\",\"labels\":[],\"modified_at\":1736356807.792482,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.131893,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_pixel_watch_3_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3de7df881a6322e0971ccea176dddd43\",\"labels\":[],\"modified_at\":1736356808.132439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.44137,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d0585654f850aa6c80809d8159b522c\",\"labels\":[],\"modified_at\":1736356808.441885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356808.789329,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"14f7490f06cca0ba2fd96f2482289589\",\"labels\":[],\"modified_at\":1736356808.789536,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.075127,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"157241e5f848a341290b22d44b2c6cc3\",\"labels\":[],\"modified_at\":1736356809.075701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.53918,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e11a13791aa5e28f584841a514467af6\",\"labels\":[],\"modified_at\":1736356809.539734,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356809.885361,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b318f00270d6a9b45165c6e5a44f637\",\"labels\":[],\"modified_at\":1736356809.885939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.259692,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52087a4595d9da9fbde6eea04ad63196\",\"labels\":[],\"modified_at\":1736356810.260095,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.533183,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7fee843fda76fc8d65a653091ced38e8\",\"labels\":[],\"modified_at\":1736356810.533737,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736356810.955986,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"11f9a4558ce5421169edbeb2e555d5cd\",\"labels\":[],\"modified_at\":1736356810.956558,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.034081,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be48034f51cdaff9ee7e90fe0fef9d98\",\"labels\":[],\"modified_at\":1772683905.232172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.297521,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb0819605111bcbcd4f7e39d21c88a07\",\"labels\":[],\"modified_at\":1772683905.835153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.540434,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e47ff59093cdd8c4b107074e038dcb3c\",\"labels\":[],\"modified_at\":1736399063.500589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359656.909769,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46db01c2adedfbe43630a5f6dccc6a99\",\"labels\":[],\"modified_at\":1745524780.005163,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359657.453126,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3c001f67d93fb5258ae48c47210beb2\",\"labels\":[],\"modified_at\":1736399064.263031,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.581695,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4ead35b09a45c83eee2915b09e240cf5\",\"labels\":[],\"modified_at\":1736399064.531165,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359658.882863,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"297937f666f3e5a757b1165cbc567ea3\",\"labels\":[],\"modified_at\":1736399064.803276,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.137825,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a6389ef9fa7957cc4e8fd6626ea88768\",\"labels\":[],\"modified_at\":1736399065.081707,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.363443,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bedtime_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7af1d7a08626154d89c6fe3bcff2049a\",\"labels\":[],\"modified_at\":1736359659.36398,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bedtime mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bedtime_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.625494,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4b1ce8d630d3c1139af9939d53abb39\",\"labels\":[],\"modified_at\":1736359659.626054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359659.876657,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_bluetooth_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2de0b22a75bc9020376fa995d4f55f\",\"labels\":[],\"modified_at\":1736359659.877219,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.132724,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"27be5d92b8d529284e3b279099754ea2\",\"labels\":[],\"modified_at\":1736399067.294751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.376811,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c0d40b3310f8c0e746ca68a5444b0d1b\",\"labels\":[],\"modified_at\":1736399068.107397,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359660.60476,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d8083b32c92d976e8df45388ba480189\",\"labels\":[],\"modified_at\":1736359660.605316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359661.793629,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adaa4c83bc9bca3d19a9af0ec81a8eea\",\"labels\":[],\"modified_at\":1736399795.169023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.177957,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"53eb4bdb941f55dbbd581722fbf5fcfa\",\"labels\":[],\"modified_at\":1736359662.178469,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359662.645451,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"01129317545bbe3d974404fc7b754d4f\",\"labels\":[],\"modified_at\":1736359662.64603,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359663.612969,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41d3cf71221566d53676a59927079525\",\"labels\":[],\"modified_at\":1736399795.946725,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.24639,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b9dc6b7eb95805f4edcd634365fed345\",\"labels\":[],\"modified_at\":1736359664.246953,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359664.510519,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b7cb0a33d907765f791a568845f3ca99\",\"labels\":[],\"modified_at\":1736359664.51107,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359665.204889,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23e948de201d1840aef0bcac3f026dcc\",\"labels\":[],\"modified_at\":1736359665.205434,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359666.440523,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5707e58d3dc6e2aac0394c2fcb3b7819\",\"labels\":[],\"modified_at\":1736359666.441115,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359667.195641,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"814ba5368dd8ce19d270c59f3aa70d95\",\"labels\":[],\"modified_at\":1736359667.196212,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359668.184418,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d79100a0ce88a95bb3508f92917c50e\",\"labels\":[],\"modified_at\":1736399797.665211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359669.14242,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09a91b37c035dc8468fb33c46d22b688\",\"labels\":[],\"modified_at\":1736399798.122323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.04832,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1d6892d2d211d5450673f97825289382\",\"labels\":[],\"modified_at\":1736399798.705635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359670.992047,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"013180467fa74f25bf8aeac4685c0bb6\",\"labels\":[],\"modified_at\":1736399799.392385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359671.938631,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"beb1135710edcf430ee9c09b403bb4f5\",\"labels\":[],\"modified_at\":1736399799.790352,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359672.866807,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6230302d762bf3ab79d12409c1231bbf\",\"labels\":[],\"modified_at\":1736399800.787298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359673.78006,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wifi_state\"", - "offset_ms": 232 - }, - { - "direction": "recv", - "type": "text", - "payload": ",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8be95f5af00e6d22af4f2e5ac47c6fdf\",\"labels\":[],\"modified_at\":1736399801.429003,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359674.698165,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"72b59c954d688b0c5d56dc7515ecb8fe\",\"labels\":[],\"modified_at\":1736399802.363037,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359675.62217,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_wifi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42c8a56ab854162a1745cb4a09dbdb4f\",\"labels\":[],\"modified_at\":1736399803.362446,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359676.543017,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e317baaf0f76275291f5c2d076ee5e5\",\"labels\":[],\"modified_at\":1736359676.543581,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359677.44848,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"273ecd3a847f25375673692d0e17e105\",\"labels\":[],\"modified_at\":1736399805.439232,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359678.422497,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40b84792dccc1ab0c45ddb0dd47ace3f\",\"labels\":[],\"modified_at\":1736359678.423076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359679.312512,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7048d27edebd7601ca231221f6b27f69\",\"labels\":[],\"modified_at\":1736399807.564816,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359680.283382,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1743057c6757d698d0d65799731be65b\",\"labels\":[],\"modified_at\":1736359680.283927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359681.140505,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_on_body_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b75d2c31d19e391f5d178240a6c0209e\",\"labels\":[],\"modified_at\":1736359681.141105,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 On body sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_on_body\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.090116,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2dead3b819e75b6b5211443a5ac78f4\",\"labels\":[],\"modified_at\":1736359682.090675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359682.9708,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34c63b944355c9e51b84ba3f6b774b6e\",\"labels\":[],\"modified_at\":1736359682.971298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359683.958379,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7a7bf80c63ca3bee1b4879fb6b1ba99d\",\"labels\":[],\"modified_at\":1736359683.958927,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359684.857759,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47ce2137b53c5b8f6d94331b3e025002\",\"labels\":[],\"modified_at\":1763328460.580366,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359685.654766,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_pixel_watch_3_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ef2b4cd3a27c1b0051ac47549a23b72\",\"labels\":[],\"modified_at\":1736359685.655329,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359686.705391,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0a92448dcdd542b9e3e8a75fe04559a9\",\"labels\":[],\"modified_at\":1736359686.705956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359687.625097,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9ab731ae8b74fd38f20f4fb6c43506c5\",\"labels\":[],\"modified_at\":1736359687.625639,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359688.516154,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_theater_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"703096c37b80a7d5fa418e41d4f81c31\",\"labels\":[],\"modified_at\":1736359688.516736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Theater mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_theater_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359689.529591,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b843d7d77fd0e55c1b9dbc9bcbc183f\",\"labels\":[],\"modified_at\":1736359689.530093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.333626,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ab5205e7d9e3858de62ea0bb4794194c\",\"labels\":[],\"modified_at\":1736359690.334183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359690.652265,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fad870f9abcfa3727367793912e2f758\",\"labels\":[],\"modified_at\":1736359690.652862,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359691.299905,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_pixel_watch_3_wet_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6912d4a233b925946eb92a607354856e\",\"labels\":[],\"modified_at\":1736359691.300455,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Wet mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_wet_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359692.209767,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_activity_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c6c82536cb995ebbba982c2ab021ced8\",\"labels\":[],\"modified_at\":1736399825.35309,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Activity state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_activity_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359693.154691,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"39a8afb6f701ab75cfc7fdb255e13a6f\",\"labels\":[],\"modified_at\":1736359693.155251,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_floors\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359694.058948,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3ff694331b621b1f0fda4e48e8bbcc53\",\"labels\":[],\"modified_at\":1736399827.024194,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.003274,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_calories\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2d9e973ac42cfc50c48e30ad90288748\",\"labels\":[],\"modified_at\":1736399827.952805,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily calories\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_calories\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1736359695.81776,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f2e45bb02534ec3078c8e0eea4344ca\",\"labels\":[],\"modified_at\":1736359695.818316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_daily_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.856213,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e71d567db688d94b4e0e0f224fb9ce28\",\"labels\":[],\"modified_at\":1736803158.868554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.887145,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"20c1bb2e7c3adbd94bfdfbdf8b652b8d\",\"labels\":[],\"modified_at\":1736803158.895143,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.925194,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"139f6cd0dd468aa9019150651d43f434\",\"labels\":[],\"modified_at\":1736803158.934833,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803158.958586,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d27e6bddb02baaf8770ba59450229223\",\"labels\":[],\"modified_at\":1736803158.959123,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.000035,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"adad2dae764b1b4c5e4f1b8615f7c6ec\",\"labels\":[],\"modified_at\":1736803159.000571,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.020193,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"130892cbc52a3a5d41acf63fc52264a7\",\"labels\":[],\"modified_at\":1736803159.045045,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1736803159.05282,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4df84fa332afe1a1ba6e2afbe3e0c538\",\"labels\":[],\"modified_at\":1736803159.053349,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1737067561.611876,\"device_id\":\"9bbc7b3d6fca3c10a04648120b608107\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_motion_sensor_2_sensor_state_co2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bddd6f808427ba2a97adca93c8768213\",\"labels\":[],\"modified_at\":1737067561.612126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Sensor state (CO2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.40-48-0-CO2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1740257490.056992,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.notify_solar_ecu_unavailable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"de2bdae5c394ce75a2e72d945fd67d78\",\"labels\":[],\"modified_at\":1740257490.057769,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"NOTIFY - Solar ECU Unavailable\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1740257477923\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.753328,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.under_cabinet_lighting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"47a17625819d6de9a9a5a9fcb068dfd3\",\"labels\":[],\"modified_at\":1742764374.448547,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_light_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.742879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.under_cabinet_lighting_effect\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f83446880146584e49ffe7ca9d992136\",\"labels\":[],\"modified_at\":1742764374.450385,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Effect\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_effect_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.780879,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.under_cabinet_lighting_do_not_disturb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cbc2aaaed253d3bbe2c0ea5e8596772d\",\"labels\":[],\"modified_at\":1742764374.496804,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Do not disturb\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_switch_do_not_disturb_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1742764298.829072,\"device_id\":\"6efcea1f4207e1a9dd8d2cf32b88c18b\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.under_cabinet_lighting_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cb2a38c1e988902be72a7518cea08f79\",\"labels\":[],\"modified_at\":1742764374.541366,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xa4c13876e215c8ab_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467771.203002,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2ef0cd9a1858bc9149e47113717459b5\",\"labels\":[],\"modified_at\":1745467771.203562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.019608,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"", - "offset_ms": 240 - }, - { - "direction": "recv", - "type": "text", - "payload": "9411a9c653ef38ea742ed08dc2a31067\",\"labels\":[],\"modified_at\":1745467772.03278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.047222,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"37f7acf271e127f4e49d357bb0c5bb68\",\"labels\":[],\"modified_at\":1745467772.060087,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.227616,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cc0faadddf515e78993cb2525101a9e9\",\"labels\":[],\"modified_at\":1745467772.228166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.295831,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2710c8eb328c4a060bfab6e1a34674fb\",\"labels\":[],\"modified_at\":1745467772.313176,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1745467772.391191,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cd7cc10320bf0eac221b1bbe0e37984f\",\"labels\":[],\"modified_at\":1745467772.408751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"config_subentry_id\":null,\"created_at\":1745524781.207297,\"device_id\":\"6ef54b203030bf850694d33dfe042c7f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_pixel_watch_3_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"545c407bdcb5d35ec63d78f7a8878b00\",\"labels\":[],\"modified_at\":1745524781.207876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Adam Pixel Watch 3 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"8652ca9df898ce1c38c3f907a47a6328c68ae2ddbdf8334ae9eb95211c7fff71_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1745542172.503223,\"device_id\":\"9cc12e6f6143978410d523f7191d1e82\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.kitchen_co2_alarm_unknown\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18e492ba2733085e4e9f4ff0a5428df0\",\"labels\":[],\"modified_at\":1745542172.50526,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"CO2 Alarm unknown\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.18-113-0-CO2 Alarm-unknown\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.46243,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"747f703192d22d8ec8759bc94a1fce76\",\"labels\":[],\"modified_at\":1748219109.463014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.640996,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5198dc56db91ba7df5b10c7a015e581\",\"labels\":[],\"modified_at\":1748219109.655051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.685402,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fb41fd2f446a5f8881e816b46c3f8feb\",\"labels\":[],\"modified_at\":1748219109.685973,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.721723,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b3d0012049fbeda8166b02790dc37b92\",\"labels\":[],\"modified_at\":1748219109.722298,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.757491,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"eba82b80d5619332290deb4a3efb5c84\",\"labels\":[],\"modified_at\":1748219109.758093,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"config_subentry_id\":null,\"created_at\":1748219109.785413,\"device_id\":\"cd1e410d92477844c00bc1da74c7dfb2\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.pixel_7_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a5e763389817f6ec085e23be56ee54f5\",\"labels\":[],\"modified_at\":1748219109.792204,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 7 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"f343412f0e860dd69bda29f092fb430b02ca7145ac92d021ff90693d107e041f_health_connect_sleep_duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.110811,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee83713b4ec50e5a22b0f247fa5bc1c5\",\"labels\":[],\"modified_at\":1749590887.112776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.113208,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.master_shower_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa86888ae5a955cc2ca0fb3ce1559700\",\"labels\":[],\"modified_at\":1749590887.11367,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.114151,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_shower\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"244d25b21371ef06dfbe70c38a8e3a27\",\"labels\":[],\"modified_at\":1749590887.11467,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:82:fb:6a\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"config_subentry_id\":null,\"created_at\":1749590887.11557,\"device_id\":\"2060e82dbefa5c4911ba5de07d86ba51\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_shower_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"197264aec52c5bb54e81ebf28f841d6d\",\"labels\":[],\"modified_at\":1749590887.115711,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:82:fb:6a_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.694619,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_restart\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"217b95c6b680c1836cdf60eb9da2f503\",\"labels\":[],\"modified_at\":1749590895.696348,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Restart\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_restart\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.697451,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.matter_bath_toilet_identify\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"003565fb8b8be878769578dc74c69752\",\"labels\":[],\"modified_at\":1749590895.699001,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Identify\",\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53_identify\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.701685,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.matter_bath_toilet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a965f5cf56792192cef7e0ab7b9a31a7\",\"labels\":[],\"modified_at\":1749590895.703552,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"lifx\",\"translation_key\":null,\"unique_id\":\"d0:73:d5:83:1f:53\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"config_subentry_id\":null,\"created_at\":1749590895.708213,\"device_id\":\"1aedf206ea14a76bc8288c5094649204\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.matter_bath_toilet_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"84160aed320a4e66dd6c9ad44039bd9b\",\"labels\":[],\"modified_at\":1749590895.708736,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"RSSI\",\"platform\":\"lifx\",\"translation_key\":\"rssi\",\"unique_id\":\"d0:73:d5:83:1f:53_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"config_subentry_id\":null,\"created_at\":1750061075.141771,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.master_bath_lights\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49204eb2a92de917a9e42ff6f8f588f5\",\"labels\":[],\"modified_at\":1775870416.949195,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Master Bath Lights \",\"platform\":\"group\",\"translation_key\":null,\"unique_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180319,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_param027\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5ea8e9374eae954b3bbd8d18020ca120\",\"labels\":[],\"modified_at\":1752102847.180555,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param027\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.180971,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.master_bedroom_ceiling_separate_inputs_from_outputs\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ca290e9cdd8d4d5d6b3073329b06547b\",\"labels\":[],\"modified_at\":1775490675.663286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Input Trigger\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1752102847.1822,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.master_bedroom_ceiling_motor_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9fb5086cf8fcc21f5e28d90e0db54c78\",\"labels\":[],\"modified_at\":1775490675.663838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"DC Motor Mode\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"config_subentry_id\":null,\"created_at\":1759378690.394779,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"calendar.maya_school\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"cca23ca8717983fe71c89426ca56c7b5\",\"labels\":[],\"modified_at\":1759378690.395441,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Maya school\",\"platform\":\"local_calendar\",\"translation_key\":null,\"unique_id\":\"01K6HJ8M54G71Y4477XK05AGBG\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386477.277947,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a4097cd598a3a06c6f0daff8cad6ca79\",\"labels\":[],\"modified_at\":1759386477.279521,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1759386477130\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759386507.028808,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be669aa5658d128e8ffcd6168710677f\",\"labels\":[],\"modified_at\":1759386579.806063,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387437.349538,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.band_day_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2a4820d645ddc7e05d31da79d542bdfe\",\"labels\":[],\"modified_at\":1759387437.351339,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"band day 2\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"band_day_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1759387072.988787,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_button.band_day_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f3dc6766f5367c3f345af29958d10bc\",\"labels\":[],\"modified_at\":1768937321.234765,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"collection\":{\"hash\":\"1b24d0ddf479ed85340a79f72c595317\"},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Band Day 3\",\"platform\":\"input_button\",\"translation_key\":null,\"unique_id\":\"band_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498155.515729,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"device_tracker.adam_phone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5c3949e0a3c86ebd635f939b4da67b68\",\"labels\":[],\"modified_at\":1760976737.49654,\"name\":\"Adam Phone\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"51e12b25d85b4b1e\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.63507,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_level\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2b25ffeb9832412e4729bc9a3554e791\",\"labels\":[],\"modified_at\":1774279284.833829,\"name\":\"Adam Phone Battery level\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery level\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_level\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.848698,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bceafcf813f3d0c7f5875af49aa7014c\",\"labels\":[],\"modified_at\":1772691190.431663,\"name\":\"Adam Phone Battery state\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.380282,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_charger_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52a1a4199f6226c81e7a9e280bf8a5c2\",\"labels\":[],\"modified_at\":1772691194.336662,\"name\":\"Adam Phone Charger type\",\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Charger type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_charger_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.561785,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_android_auto\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4f78b5a31c1f1797cecc8021a4bc283c\",\"labels\":[],\"modified_at\":1763016724.667262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Android Auto\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_auto\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.150666,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_app_inactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"753010fef896a676a949100adf1a5df3\",\"labels\":[],\"modified_at\":1760976737.499635,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App inactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_inactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.996611,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_bluetooth_", - "offset_ms": 247 - }, - { - "direction": "recv", - "type": "text", - "payload": "state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"093bf4d5f49f15e5238231d70b093df3\",\"labels\":[],\"modified_at\":1760976737.502342,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.632604,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b21e81370aec744ff4cef9a8bf0ef00\",\"labels\":[],\"modified_at\":1760976737.502738,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.837407,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_device_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7107aad5e9b8e1943301af2a059e93ea\",\"labels\":[],\"modified_at\":1760976737.503069,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Device secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_device_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.908791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_doze_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"47c1557ded81eebf8aa0a96ac63d2841\",\"labels\":[],\"modified_at\":1760976737.503394,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Doze mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.362775,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_headphones\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29de90a8bd56b781a47d398184b68cb6\",\"labels\":[],\"modified_at\":1760976737.503709,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Headphones\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_headphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.387797,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_high_accuracy_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b09b3df0b3a9f47a8e6eb4bb0725a8d\",\"labels\":[],\"modified_at\":1761859609.313035,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.086212,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_hotspot_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"06c5550926c6fdd6b5ff1b6d10511768\",\"labels\":[],\"modified_at\":1760976737.504334,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Hotspot state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_hotspot_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.677976,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_interactive\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e02d2deb740d7a31ec1ac86e66289584\",\"labels\":[],\"modified_at\":1760976737.504647,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Interactive\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_interactive\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.113948,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_is_charging\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6e6cfd871a0249cfa6fcfa5cb067c22a\",\"labels\":[],\"modified_at\":1760976737.504954,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Is charging\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_charging\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.052956,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_locked\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23b032cf9074ee4d0ccd20a2c7b170a8\",\"labels\":[],\"modified_at\":1760976737.505278,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard locked\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_locked\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.298484,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_keyguard_secure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"511534407bbe94e987b4e6b18616dbd7\",\"labels\":[],\"modified_at\":1760976737.505582,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Keyguard secure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_keyguard_secure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.564591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_mic_muted\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"630126c44d79334d10daaac76b3e6da6\",\"labels\":[],\"modified_at\":1760976737.505883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mic muted\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mic_muted\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.859128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54186ed87499f0363a7a795031ac8091\",\"labels\":[],\"modified_at\":1760976737.506183,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.072203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_mobile_data_roaming\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c107fd5dd3a23152c737aeacfb93f12e\",\"labels\":[],\"modified_at\":1760976737.506487,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile data roaming\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_data_roaming\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.114625,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_music_active\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fc30dd8af197aa5604097778df128b90\",\"labels\":[],\"modified_at\":1760976737.506796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Music active\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_music_active\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.74326,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_nfc_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a99fecae7b35c0c91c2d87db9221d854\",\"labels\":[],\"modified_at\":1760976737.507099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 NFC state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_nfc_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.11767,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_power_save\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa5f2c7ce053d4544cf8d6062e90490e\",\"labels\":[],\"modified_at\":1760976737.508044,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Power save\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_power_save\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.804439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_speakerphone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6473733425a0a0786d883979d5b4aa81\",\"labels\":[],\"modified_at\":1760976737.508353,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Speakerphone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_speakerphone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.173261,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.adam_phone_wi_fi_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1794c62e4b88cb613114ae22f6763cc6\",\"labels\":[],\"modified_at\":1760976737.508622,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.044578,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"binary_sensor.adam_phone_work_profile\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"42417c7948736cba9d2a5224ad710014\",\"labels\":[],\"modified_at\":1760976737.508885,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Work profile\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_is_work_profile\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.833075,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_accent_color\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b941b110fe0ebe77e2578dbf0457db9a\",\"labels\":[],\"modified_at\":1760976737.509153,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Accent color\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_accent_color\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.523966,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_active_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"120365806cf1ad9034b62efe0f58c093\",\"labels\":[],\"modified_at\":1760976737.50941,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_active_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.731496,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_active_notification_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad43a289a78ae9decb7a8bb8636ec15b\",\"labels\":[],\"modified_at\":1760976737.509663,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Active notification count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_active_notification_count\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.578065,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_importance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82b4fccab26e5f8d9dc5b863a430eabb\",\"labels\":[],\"modified_at\":1763016726.90644,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App importance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_importance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.923363,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_memory\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681210dd7cb2b664dfc7160e4b59f9e8\",\"labels\":[],\"modified_at\":1760976737.510166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App memory\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_memory\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.508973,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"76b86a4aaafcf69e892ab189d3a5a37d\",\"labels\":[],\"modified_at\":1760976737.51042,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.354383,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_standby_bucket\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1337823dd9fe63383689acfe28169998\",\"labels\":[],\"modified_at\":1763016726.688987,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App standby bucket\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_standby_bucket\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.723152,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_app_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e043cb0b1e1d248cb65f41b026f07c34\",\"labels\":[],\"modified_at\":1760976737.510914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 App Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_app_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498162.143052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_audio_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2be1edbc1804fca84d30e0ff2af37d3\",\"labels\":[],\"modified_at\":1763016727.38029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Audio mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_mode\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.53214,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_cycle_count\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f72f7f7a26dd97cc36f76faefadc3116\",\"labels\":[],\"modified_at\":1760976737.511404,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery cycle count\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_cycles\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.594056,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_health\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff782efae98210cfe14a22d3d01023bd\",\"labels\":[],\"modified_at\":1760976737.511651,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery health\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_health\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.047203,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_power\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f003eadb014be21895e4c4dc182b09c1\",\"labels\":[],\"modified_at\":1760976737.511895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery power\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_power\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498166.846127,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_battery_temperature\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9688273e8fc0f9d29c7fae09c089596d\",\"labels\":[],\"modified_at\":1760976737.512138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Battery temperature\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_battery_temperature\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.422557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_beacon_monitor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"85a174f235fbda9b9cdd6ef97bdb64eb\",\"labels\":[],\"modified_at\":1760976737.512378,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Beacon monitor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_beacon_monitor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.203052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ble_transmitter\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8a9981a0cce9ee63b08edc8b74a776ca\",\"labels\":[],\"modified_at\":1760976737.512621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 BLE transmitter\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ble_emitter\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.726411,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_blood_glucose\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ded137b29a2ac9791fc1f1d244796b0a\",\"labels\":[],\"modified_at\":1760976737.51286,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Blood glucose\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_blood_glucose\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.751762,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_bluetooth_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"750907f9a2ecaf511d6767527d52e002\",\"labels\":[],\"modified_at\":1760976737.513111,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Bluetooth connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_bluetooth_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.94591,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_body_fat\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4cd9c953d266dd30bc5eb3151a5f2f66\",\"labels\":[],\"modified_at\":1760976737.513705,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Body fat\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_body_fat\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.654737,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_battery\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ac1339b135ff5cb6054610e09599cd4b\",\"labels\":[],\"modified_at\":1760976737.513999,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car battery\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_battery\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.100199,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_charging_status\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6559562de9368b5176d4c2bab69341be\",\"labels\":[],\"modified_at\":1760976737.51426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car charging status\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_charging_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.317375,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_ev_connector_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e5aa6887ffe1c9ba20be2f9dad865c9\",\"labels\":[],\"modified_at\":1760976737.514516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car EV connector type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_ev_connector\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.522632,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_fuel\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c2d58c1b05145799f6a0e942e418637b\",\"labels\":[],\"modified_at\":1760976737.514765,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498169.816273,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_fuel_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff01611593ce914c8e55b99746ade7bb\",\"labels\":[],\"modified_at\":1760976737.515013,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car fuel type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_fuel_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498168.856176,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_name\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1df9caee459458f4261ba3769b30a2fd\",\"labels\":[],\"modified_at\":1760976737.515262,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car name\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_name\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.027941,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_odometer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"84ef8a67d8861618e18ec8e2201925f9\",\"labels\":[],\"modified_at\":1760976737.515509,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car odometer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_odometer\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.497115,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_car_range_remaining\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ef002fc4b535738730128cd41020e5dc\",\"labels\":[],\"modified_at\":1760976737.515764,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car range remaining\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_range_remaining\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.248154,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_car_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f3b7742f63b3eca975967469453a345b\",\"labels\":[],\"modified_at\":1760976737.516015,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"mph\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Car speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_car_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.542876,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_time_zone\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8d10a7204fe5e2ea0fa40d8ae5a3144b\",\"labels\":[],\"modified_at\":1760976737.516268,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current time zone\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_time_zone\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498160.257567,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_current_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"685e196a4c4f6c3101615348fb51dd5", - "offset_ms": 256 - }, - { - "direction": "recv", - "type": "text", - "payload": "1\",\"labels\":[],\"modified_at\":1760976737.516516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Current version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_current_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.499288,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_distance\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"586179dae81f48674014b0857ed88ee4\",\"labels\":[],\"modified_at\":1760976737.516767,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily distance\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_distance\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.717817,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_elevation_gained\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ce6034cd7356664dc063906e2f52a0a3\",\"labels\":[],\"modified_at\":1760976737.517018,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"ft\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily elevation gained\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_elevation_gained\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.94185,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_floors\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"66165e96b66d1a023f8e8737fbe9e2d0\",\"labels\":[],\"modified_at\":1760976737.51728,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily floors\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_floors_climbed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.528186,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_daily_steps\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1ea8b6d6b10896ddbdf5ae9fafbbecc6\",\"labels\":[],\"modified_at\":1760976737.51753,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Daily steps\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_steps\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.252135,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"385366fcc059b77a728168515f2586f2\",\"labels\":[],\"modified_at\":1760976737.517778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.461271,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_data_network_type_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0f58c113ad08028f0af872124030c30f\",\"labels\":[],\"modified_at\":1760976737.518028,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Data network type (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_data_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498158.942049,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_detected_activity\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cba6a4bdd6a805551cc283b957b22e63\",\"labels\":[],\"modified_at\":1763016721.943079,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Detected activity\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_detected_activity\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498173.192313,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_diastolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b2c38371850e50f3e5988540443f5c5d\",\"labels\":[],\"modified_at\":1760976737.51852,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Diastolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_diastolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.577028,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_do_not_disturb_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"16f7fe2f79e1b1f0db02866ac85a4bc3\",\"labels\":[],\"modified_at\":1760976737.518771,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Do Not Disturb sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_dnd_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.336206,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_external_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73631aa51e0e6a1d7794697379003876\",\"labels\":[],\"modified_at\":1760976737.519354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 External storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_external_storage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498172.260623,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_geocoded_location\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"32245ba0b08e126f84726702cb6db8bc\",\"labels\":[],\"modified_at\":1761859609.314665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Geocoded location\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_geocoded_location\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.171655,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f0d32ff833fcd601cd32f482eb5f1c9a\",\"labels\":[],\"modified_at\":1760976737.519914,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.382664,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_heart_rate_variability\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7711c9412df10e8fe9452f68a7038e60\",\"labels\":[],\"modified_at\":1760976737.520171,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Heart rate variability\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_heart_rate_variability\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.610829,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_high_accuracy_update_interval\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a08d9ebbb81e0c3fc7a08d30d98e3b7e\",\"labels\":[],\"modified_at\":1760976737.520425,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 High accuracy update interval\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_high_accuracy_update_interval\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.121172,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_internal_storage\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f2cc61e1c263d63262ab756c2a5e9d31\",\"labels\":[],\"modified_at\":1760976737.520676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Internal storage\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_storage_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.498003,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_ipv6_addresses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"81e3fb1a860e34c3494dbee1d95fe70f\",\"labels\":[],\"modified_at\":1760976737.520924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 IPv6 addresses\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_ip6_addresses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.21988,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3af3544de87e7dbab445e7a8029afa34\",\"labels\":[],\"modified_at\":1760976737.52119,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.731054,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_reboot\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"db1336da12c043c7c61d784c7a622187\",\"labels\":[],\"modified_at\":1760976737.521439,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last reboot\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_reboot\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.428907,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_removed_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"553383b37e8d644518a821ebf99f99b3\",\"labels\":[],\"modified_at\":1760976737.521685,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last removed notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_removed_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.943883,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_last_update_trigger\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"23a5abddd967354312c03855e037976f\",\"labels\":[],\"modified_at\":1760976737.521932,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last update trigger\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498177.518682,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_last_used_app\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e0be097c7eb3dbe6aef6a25e3a6cd8ef\",\"labels\":[],\"modified_at\":1760976737.522174,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Last used app\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_last_used_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498178.180681,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_light_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c8e09414a784c4b8a03feca8292b47fc\",\"labels\":[],\"modified_at\":1760976737.522426,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Light sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_light_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498182.937301,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_media_session\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bfcdb749179ca990270164a9c1aace4c\",\"labels\":[],\"modified_at\":1760976737.52267,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Media session\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_media_session\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498186.759405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"6f329d40f3cb4c98261ecbcca9d730f7\",\"labels\":[],\"modified_at\":1760976737.522917,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.012128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_mobile_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"83f894e57866a8b946f69234a7c97291\",\"labels\":[],\"modified_at\":1760976737.523164,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Mobile Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_mobile_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.284899,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_network_type\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"148c211961e1b76470e79174b4283b73\",\"labels\":[],\"modified_at\":1760976737.52341,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Network type\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_network_type\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498181.985246,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_next_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f71e7d4f62b65e5450706d56114cc93f\",\"labels\":[],\"modified_at\":1760976737.523665,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Next alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_next_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.763524,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_os_version\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d835075c5dbbd4973e040149a3f7514\",\"labels\":[],\"modified_at\":1760976737.523911,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 OS version\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_version\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.601118,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_oxygen_saturation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d62adbd002ce98615faf711cc7a26d5f\",\"labels\":[],\"modified_at\":1760976737.524157,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Oxygen saturation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_oxygen_saturation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.141649,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_phone_state\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"663371403a63a19124a1b4abc6b27be8\",\"labels\":[],\"modified_at\":1760976737.524405,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Phone state\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_phone_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.336255,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_pressure_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"112988ca48584654f5650f5359c7e4bc\",\"labels\":[],\"modified_at\":1763017007.83862,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"psi\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Pressure sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_pressure_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.582052,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_proximity_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a877e0462d77e8dd3e37703c0c12842c\",\"labels\":[],\"modified_at\":1760976737.525423,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Proximity sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_proximity_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.843111,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_public_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e19e322d38c79279c958e4aa96c1dddd\",\"labels\":[],\"modified_at\":1760976737.525683,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Public IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_public_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498167.275509,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_remaining_charge_time\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00aca62e34295f7facd401ad154fe8e6\",\"labels\":[],\"modified_at\":1760976737.525937,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Remaining charge time\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_remaining_charge_time\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498174.858586,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_respiratory_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"33498cbeacef2dcdc4f033a0b26838cd\",\"labels\":[],\"modified_at\":1760976737.526188,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Respiratory rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_respiratory_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.07771,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_resting_heart_rate\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2e6c658d666885b7bcae24ba94db552e\",\"labels\":[],\"modified_at\":1760976737.526437,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Resting heart rate\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_resting_heart_rate\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498161.856422,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_ringer_mode\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"607fc15e13eb6e05972e82df9e2b66c3\",\"labels\":[],\"modified_at\":1763016727.1138,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Ringer mode\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_audio_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.70849,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_brightness\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73bb92c35f39f034be36798feb770698\",\"labels\":[],\"modified_at\":1760976737.526939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen brightness\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_brightness\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498170.916128,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28017fee78f1ddd7f4142211e16c0d30\",\"labels\":[],\"modified_at\":1760976737.528024,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen off timeout\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_off_timeout\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.157067,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_orientation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ff11b226bb853a90c464d79f8178ce33\",\"labels\":[],\"modified_at\":1760976737.528323,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen orientation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_orientation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498171.366557,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_screen_rotation\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"40dd3bb633abe1862d801f81b3ce8980\",\"labels\":[],\"modified_at\":1760976737.528584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Screen rotation\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_screen_rotation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.978133,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_security_patch\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9fce7d56272a707de807cc72548ee17a\",\"labels\":[],\"modified_at\":1760976737.530283,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Security patch\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_android_os_security_patch\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.801608,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"401a043f2c726c93b7b23b4564a1f94a\",\"labels\":[],\"modified_at\":1760976737.53057,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 1)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498184.02263,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_signal_strength_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"28e13521bf85269ec4c9f0a082f0c6b7\",\"labels\":[],\"modified_at\":1760976737.530838,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Signal strength (SIM 2)\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.345391,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_1\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b190136a43f7bcf64e68901f7d275935\",\"labels\":[],\"modified_at\":1760976737.531099,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 1\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498183.594556,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sim_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"951499259e3906795a24cd53fc3d1249\",\"labels\":[],\"modified_at\":1760976737.531357,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 SIM 2\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sim_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.156068,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_confidence\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f6bc7f4a033172190b30075550a37521\",\"labels\":[],\"modified_at\":1760976737.531615,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep confidence\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_confidence\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.285791,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_sleep_duration\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"404a79d1477c10408dde8e055ae80b2e\",\"labels\":[],\"modified_at\":1760976737.531871,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep duration\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_sleep_", - "offset_ms": 271 - }, - { - "direction": "recv", - "type": "text", - "payload": "duration\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498159.353564,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_sleep_segment\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b1f9968e09762e9bda52a6df2fbd23c7\",\"labels\":[],\"modified_at\":1763016724.247126,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Sleep segment\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_sleep_segment\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498185.78676,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.adam_phone_steps_sensor\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5e40f6aa713fca29f4bd8a635509859c\",\"labels\":[],\"modified_at\":1760976737.532386,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Steps sensor\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_steps_sensor\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.7486,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_systolic_blood_pressure\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"df9290d342500fe2636c79ddbc9952bd\",\"labels\":[],\"modified_at\":1760976737.53264,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Systolic blood pressure\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_systolic_blood_pressure\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498175.96248,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_calories_burned\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0d61cf3fe32f5fe3b39fa7ec9dae68b7\",\"labels\":[],\"modified_at\":1760976737.532893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total calories burned\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_total_calories_burned\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.23677,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_rx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9aa7c0a93561eb0c9c492db8575a1989\",\"labels\":[],\"modified_at\":1760976737.53315,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Rx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_rx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498187.443444,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_total_tx_gb\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e929af2da1a8fd0c0c9e2eb613c88c3f\",\"labels\":[],\"modified_at\":1760976737.533399,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Total Tx GB\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_total_tx_gb\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.176575,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_vo2_max\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b2353cba1cfc2ba0270b144f2043de0\",\"labels\":[],\"modified_at\":1760976737.533645,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 VO2 max\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_vo2_max\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.397439,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_accessibility\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1af3533513a0c5338f0e1f7900eaf9e5\",\"labels\":[],\"modified_at\":1760976737.533893,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level accessibility\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_accessibility\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.507945,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_alarm\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"18af8f2d02f6418723e32a510e19391c\",\"labels\":[],\"modified_at\":1760976737.534144,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level alarm\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_alarm\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498163.906106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_call\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"144ae42445c05a952df5ef29aa014a17\",\"labels\":[],\"modified_at\":1760976737.534396,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level call\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_call\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498165.18106,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_dtmf\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"62bfd57e3cb228991c9b903d59e6587f\",\"labels\":[],\"modified_at\":1760976737.534646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level DTMF\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_dtmf\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.176689,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_music\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"c294c624ab78af85b8acb03e41009e22\",\"labels\":[],\"modified_at\":1760976737.534894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level music\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_music\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.73368,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_notification\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4b20652958edaaf0ef0042d2a97318da\",\"labels\":[],\"modified_at\":1760976737.535255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level notification\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_notification\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.515405,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_ringer\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f69443e387af0b10bf4cffad511cab3e\",\"labels\":[],\"modified_at\":1760976737.535554,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level ringer\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_ring\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498164.963861,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_volume_level_system\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"57e733b28e1a7f745cd42b1588ea7b92\",\"labels\":[],\"modified_at\":1760976737.535819,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Volume level system\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_volume_system\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498176.383975,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_weight\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3757ce7c4b5a7037d34b233e1626b5bb\",\"labels\":[],\"modified_at\":1760976737.536076,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Weight\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_health_connect_weight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.520076,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_bssid\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"7d093158049a91d9ec6342c460f7697d\",\"labels\":[],\"modified_at\":1760976737.536331,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi BSSID\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_bssid\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.290619,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_connection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1b54445aea1c6b5a23c7a7f8756d331f\",\"labels\":[],\"modified_at\":1760976737.536584,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi connection\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_connection\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.432903,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_frequency\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"41dc6b0212fa61d780912d275265cd1a\",\"labels\":[],\"modified_at\":1760976737.536834,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi frequency\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_frequency\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.76291,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_ip_address\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"49e886aeaca51ef663020c9d6adedd4d\",\"labels\":[],\"modified_at\":1760976737.537084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi IP address\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_ip_address\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498179.966045,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_link_speed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"97423ae7ee25d6b9c6138c20f803937d\",\"labels\":[],\"modified_at\":1760976737.537345,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi link speed\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_link_speed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"config_subentry_id\":null,\"created_at\":1760498180.640943,\"device_id\":\"5de5f8d19788f833782dffbe3947f469\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.adam_phone_wi_fi_signal_strength\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"641af75b3fbe0762c553b05543247e0a\",\"labels\":[],\"modified_at\":1760976737.537592,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Pixel 9 Wi-Fi signal strength\",\"platform\":\"mobile_app\",\"translation_key\":null,\"unique_id\":\"e918149948e5caa38253b7f5319cb6ce8fe4fa23ce208b151ef304be37a53d4d_wifi_signal_strength\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.578752,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f98be744eca04298b701b1d066cf33f2\",\"labels\":[],\"modified_at\":1761584275.553227,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.584734,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"38be44c9b9441e8136de779aff02c4d4\",\"labels\":[],\"modified_at\":1761584275.555476,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.625112,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.master_bath_cabinet_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eaaa8aa99a75156fd029e017b2345aa3\",\"labels\":[],\"modified_at\":1761584275.60354,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1761584247.675625,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.master_bath_cabinet_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"70710798be185d2ee29eb867eb9f8222\",\"labels\":[],\"modified_at\":1761584275.644775,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.796301,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"switch.garage_light_switch_param019\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e5c6e0fb47a0136310e04a22d88fc83\",\"labels\":[],\"modified_at\":1761667162.796517,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param019\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1761667162.797016,\"device_id\":\"840b6f8b6f2e2c2eee0a0421f2701e29\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.garage_light_switch_param020\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6e23bda23aa0ac99b0116586ea0a1b92\",\"labels\":[],\"modified_at\":1761667162.797168,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"param020\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.79-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1761667201.291363,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_band_day_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"87fb7ada2339f2039551943482ae1358\",\"labels\":[],\"modified_at\":1761667201.292122,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Band Day - Off\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1761667192807\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.living_room_tv_headphones_connected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8c2862a4df8f6bd691cf5d04a6dfd54c\",\"labels\":[],\"modified_at\":1761690295.874343,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Headphones connected\",\"platform\":\"roku\",\"translation_key\":\"headphones_connected\",\"unique_id\":\"YJ002K604601_headphones_connected\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_airplay\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7cd833409d36d7f019fd3e2c56a3099f\",\"labels\":[],\"modified_at\":1761690295.875222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports AirPlay\",\"platform\":\"roku\",\"translation_key\":\"supports_airplay\",\"unique_id\":\"YJ002K604601_supports_airplay\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_ethernet\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6a220cc398a638aa2eab462c5dc09595\",\"labels\":[],\"modified_at\":1768937324.483172,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports Ethernet\",\"platform\":\"roku\",\"translation_key\":\"supports_ethernet\",\"unique_id\":\"YJ002K604601_supports_ethernet\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.living_room_tv_supports_find_remote\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6165850622ccf0780a12cb93f99fbe6b\",\"labels\":[],\"modified_at\":1761690295.876894,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Supports find remote\",\"platform\":\"roku\",\"translation_key\":\"supports_find_remote\",\"unique_id\":\"YJ002K604601_supports_find_remote\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"media_player.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0d7e470b926897e7baf7da15c69c1a5f\",\"labels\":[],\"modified_at\":1772591841.640657,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"remote.living_room_tv_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b3921d505142fc5a908c983dbda85e39\",\"labels\":[],\"modified_at\":1761690295.882215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"roku\",\"translation_key\":null,\"unique_id\":\"YJ002K604601\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"select.living_room_tv_application\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"be671b5fc39f53da44534bf656ccfcbc\",\"labels\":[],\"modified_at\":1774121824.587607,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Application\",\"platform\":\"roku\",\"translation_key\":\"application\",\"unique_id\":\"YJ002K604601_application\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b34030d711baecbca2bd7babbb9523f4\",\"labels\":[],\"modified_at\":1761690295.884134,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app\",\"platform\":\"roku\",\"translation_key\":\"active_app\",\"unique_id\":\"YJ002K604601_active_app\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"9a3174173f73edbc2e6fbb5704392f02\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.living_room_tv_active_app_id\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6a7cd59919db06d42748a1849f35440\",\"labels\":[],\"modified_at\":1761690295.885026,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Active app ID\",\"platform\":\"roku\",\"translation_key\":\"active_app_id\",\"unique_id\":\"YJ002K604601_active_app_id\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1762452953.450373,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_living_room_tv_off_idle\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"353b8458de409f30f3da7f59dd2279ae\",\"labels\":[],\"modified_at\":1762452953.451146,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Living Room TV - Off - Idle\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1762452936157\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.79738,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_node_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d4bc33ac1bdf05a5a4ad0efe2cf243cd\",\"labels\":[],\"modified_at\":1766477279.797958,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Node status\",\"platform\":\"zwave_js\",\"translation_key\":\"node_status\",\"unique_id\":\"4182894947.80.node_status\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.798349,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_ping\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a14d2d0b96e1d99308488b35cfe32d6b\",\"labels\":[],\"modified_at\":1766477279.798784,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Ping\",\"platform\":\"zwave_js\",\"translation_key\":\"", - "offset_ms": 281 - }, - { - "direction": "recv", - "type": "text", - "payload": "ping\",\"unique_id\":\"4182894947.80.ping\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799203,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"acd5e1535a0b58f433b138c0b6faf421\",\"labels\":[],\"modified_at\":1766477279.799355,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.799642,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_successful_commands_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"378e7086f5619183bd617e93465aa802\",\"labels\":[],\"modified_at\":1766477279.799778,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Successful commands (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"successful_commands\",\"unique_id\":\"4182894947.80.statistics_commands_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800052,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_rx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d59fdf37e7ce07ae033e5e4a7871a74\",\"labels\":[],\"modified_at\":1766477279.80019,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (RX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_rx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800465,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_commands_dropped_tx\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"042c7a9cd428a17c8fedf3be0152a3be\",\"labels\":[],\"modified_at\":1766477279.800606,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Commands dropped (TX)\",\"platform\":\"zwave_js\",\"translation_key\":\"commands_dropped\",\"unique_id\":\"4182894947.80.statistics_commands_dropped_tx\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.800883,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_timed_out_responses\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f68eb2507739535d9913773ab943d15f\",\"labels\":[],\"modified_at\":1766477279.801023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Timed out responses\",\"platform\":\"zwave_js\",\"translation_key\":\"timeout_response\",\"unique_id\":\"4182894947.80.statistics_timeout_response\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.80138,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_round_trip_time\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3369734c52812a3a3ee4bbe2560f1ad\",\"labels\":[],\"modified_at\":1766477279.801562,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Round trip time\",\"platform\":\"zwave_js\",\"translation_key\":\"rtt\",\"unique_id\":\"4182894947.80.statistics_rtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.801858,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_rssi\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"dd7ddf313a54743de6d1f72a3d7bd312\",\"labels\":[],\"modified_at\":1768937324.809754,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Signal strength\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_strength\",\"unique_id\":\"4182894947.80.statistics_rssi\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477279.802282,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_tank_power_strip_last_seen\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62306b73556be6a658a2970154edf24b\",\"labels\":[],\"modified_at\":1766477279.803236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last seen\",\"platform\":\"zwave_js\",\"translation_key\":\"last_seen\",\"unique_id\":\"4182894947.80.statistics_last_seen\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.228835,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ce76270335388122109676234797a801\",\"labels\":[],\"modified_at\":1766477296.229428,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-0-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.229892,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"21621c315a84182b4f410308413f7b21\",\"labels\":[],\"modified_at\":1768937324.853995,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.23085,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"75446919eaeef4477c5765e479030bd7\",\"labels\":[],\"modified_at\":1768937324.85453,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.231761,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2adf7a33a0ac224ec14b279aa8347cdf\",\"labels\":[],\"modified_at\":1766477296.232285,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.232869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"352a62902d4625293870ccad5a0e8ce7\",\"labels\":[],\"modified_at\":1768937324.855306,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A]\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.233759,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"959edfed6f06b47aa8cfffad60cb3b27\",\"labels\":[],\"modified_at\":1768937324.855699,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-0-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.234957,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_state_after_power_failure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e94b9747cdafaf5de7e0065d9bea1787\",\"labels\":[],\"modified_at\":1766477296.235117,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"State After Power Failure\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-1\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.235534,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d032c73c25b557c150eb9a1554ab27a8\",\"labels\":[],\"modified_at\":1766477296.235674,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Threshold\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236042,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_power_w_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b282d98fd058c4a3fc14cd5cab2ed0d\",\"labels\":[],\"modified_at\":1769099101.051939,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power (W) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.236536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_energy_kwh_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"03aba463e32ff9cd002a085bc096c2a7\",\"labels\":[],\"modified_at\":1766477296.236667,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy (kWh) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_current_a_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"44ed91985e8e2345c6d85aa23ca1ebcc\",\"labels\":[],\"modified_at\":1769099101.052448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current (A) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-35\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.237544,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_voltage_v_report_interval\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c8c9afc6dd91370538afa4d09be302d2\",\"labels\":[],\"modified_at\":1769099101.052763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage (V) Report Interval\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-36\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238041,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_overload_protection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"24702ae99561a23fa90891c83b007f12\",\"labels\":[],\"modified_at\":1766477296.238175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Overload Protection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.238538,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04a643dcd0c18ea735dc117372cbd9c4\",\"labels\":[],\"modified_at\":1766477296.238676,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d9278543cbfa4150cf96b9825a399dce\",\"labels\":[],\"modified_at\":1766477296.239179,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.239539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5a20c9254c9e99e639df912c45870f78\",\"labels\":[],\"modified_at\":1766477296.239678,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24004,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9f5c165e12ba64506d0eaf24e58fd09\",\"labels\":[],\"modified_at\":1766477296.240905,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241404,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a8223d52922cf9b4adff20414916eee\",\"labels\":[],\"modified_at\":1766477296.241556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.241944,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"39ecfec962692eccc82d3081e479f8b4\",\"labels\":[],\"modified_at\":1766477296.242085,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242445,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"91b749f9293951042533d2401e898b94\",\"labels\":[],\"modified_at\":1766477296.24258,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.242942,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e391e07c8a08dd2a25df2be663bcfbac\",\"labels\":[],\"modified_at\":1766477296.243077,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243424,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a3c85d30cdac3aafebede8607197ce65\",\"labels\":[],\"modified_at\":1766477296.243556,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-14\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.243913,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dacd0709ac8eb1359a94e7710f78784\",\"labels\":[],\"modified_at\":1766477296.244051,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-15\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244403,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b054386465dab5e8e5b9b8d7c18d91df\",\"labels\":[],\"modified_at\":1766477296.244534,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-16\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.244894,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f902120e1bceb78e61c17590fe38269\",\"labels\":[],\"modified_at\":1766477296.245029,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-17\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245392,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0fad06e4d9f3d509906b6338e4b79a65\",\"labels\":[],\"modified_at\":1766477296.245527,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-18\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.245884,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"68d921eab0fa608d5f6c2dadd993dccd\",\"labels\":[],\"modified_at\":1766477296.246023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-19\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.246994,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b090c9d937ff7066c525cc564347a594\",\"labels\":[],\"modified_at\":1766477296.247152,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-20\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.24754,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2b9a5eb299f5a41546cecb74eb4db\",\"labels\":[],\"modified_at\":1766477296.24768,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-21\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248038,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_off_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ead661391dda43c8a9cff95e08d325f9\",\"labels\":[],\"modified_at\":1766477296.248173,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-22\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.248536,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_off_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f79cf7061a486a5938ef84ca4f41ca3f\",\"labels\":[],\"modified_at\":1766477296.248675,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-Off Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249027,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_auto_turn_on_timer_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da59ba2e721740da07c9e1fce8eeb446\",\"labels\":[],\"modified_at\":1766477296.249177,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-24\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.249539,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.fish_tank_power_strip_auto_turn_on_timer_duration_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b311235ba306b94712f179b47a13304\",\"labels\":[],\"modified_at\":1766477296.24968,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Auto Turn-On Timer Duration (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-25\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.250039,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_local_control\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eed8930162c1f50fb3efa88ed014a90\",\"labels\":[],\"modified_at\":1766477296.250175,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Local Control\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-26\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25053,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_led_indicator\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"943fe31b185242de7233f509c6714ad4\",\"labels\":[],\"modified_at\":1766477296.250661,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"LED Indicator\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251018,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8e41a3fe1c2e739c5c0b08c01ba04964\",\"labels\":[],\"modified_at\":1766477296.251151,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-28\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.2515,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f339b2e6b6df648e6ca92d60bf56623\",\"labels\":[],\"modified_at\":1766477296.251636,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-29\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.251984,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"19bb03a5b1ae0e40e13d9da02ae88aa0\",\"labels\":[],\"modified_at\":1766477296.253395,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-30\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.253836,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"97b7a04a80a5cdf61867e56d866b6dce\",\"labels\":[],\"modified_at\":1766477296.253989,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-31\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.254358,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f60a5f4e92244effdf0936a193c2e55\",\"labels\":[],\"modified_at\":1766477296.2545,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-32\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25486,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_relay_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"4eb52f03fe8467f94f87c777a7a350c0\",\"labels\":[],\"modified_at\":1766477296.254997,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (Relay 5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-33\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255351,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.fish_tank_power_strip_power_energy_monitoring_usb\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2cc335594f81afccba401289b6b502d8\",\"labels\":[],\"modified_at\":1768937324.860358,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power/Energy Monitoring (USB)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-112-0-34\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.255867,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_idle_power_management_over_load_status\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1cc3f8a76c3", - "offset_ms": 290 - }, - { - "direction": "recv", - "type": "text", - "payload": "9d2050f2ca01c684f502d\",\"labels\":[],\"modified_at\":1766477296.256325,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Idle Power Management Over-load status\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.notification_idle\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.256729,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.fish_tank_power_strip_over_load_detected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"45740620b4805cce189bb1ae036fcd9b\",\"labels\":[],\"modified_at\":1766477296.257184,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Over-load detected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-Power Management-Over-load status.8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.257687,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_type\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04246652716b229857e01efec2e38e67\",\"labels\":[],\"modified_at\":1766477296.257835,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Type\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmType\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.25825,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":\"integration\",\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_alarm_level\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63039bbbd456696f096140397e346135\",\"labels\":[],\"modified_at\":1766477296.258392,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Alarm Level\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-113-0-alarmLevel\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.259279,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"63ad70871975f5f5d34c36a3bc238c67\",\"labels\":[],\"modified_at\":1766477296.259764,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-1-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.260212,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1c3075512fe6a8b1b0fcb12082a49d76\",\"labels\":[],\"modified_at\":1768937324.86197,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.261175,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"568c6e02c40f5c3a555cdd0db313a4de\",\"labels\":[],\"modified_at\":1768937324.862516,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262093,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b395a875cae5455761476ff388705320\",\"labels\":[],\"modified_at\":1768937324.862985,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.262992,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f06ff5e731abcb200fdf4ce8c56d7a8b\",\"labels\":[],\"modified_at\":1768937324.863363,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.263832,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"37ae354122a69445674d2c8a74c662e3\",\"labels\":[],\"modified_at\":1766477296.264255,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-2-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.265295,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e2531dc116e28190045ae5672d09ebe3\",\"labels\":[],\"modified_at\":1768937324.866356,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.266195,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6f6c69f0ddef207889934c80289ca86\",\"labels\":[],\"modified_at\":1766477296.26662,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-3-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267047,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc336050e207d78bd1ba0f3bba28051a\",\"labels\":[],\"modified_at\":1768937324.867025,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.267979,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fe9d9f695586d322624d93d749bbcc61\",\"labels\":[],\"modified_at\":1768937324.867472,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.26889,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"01988ea7826bbd8f6ed128469da20098\",\"labels\":[],\"modified_at\":1766477296.269415,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.270015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bf8ef299aa298fd3248a48bac27ac029\",\"labels\":[],\"modified_at\":1768937324.868225,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.271554,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c97f990f08dbf8bfb2e36f79dcf8ce3f\",\"labels\":[],\"modified_at\":1768937324.868598,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (3)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-3-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.272394,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0a2d1328c988166cd19fcc662a187aa9\",\"labels\":[],\"modified_at\":1766477296.272806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-4-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.273243,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"50a06ac0b5cc38dd737642d4c89a7b51\",\"labels\":[],\"modified_at\":1768937324.869253,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.274164,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d375f897f48b0c3979382b79f793ce7c\",\"labels\":[],\"modified_at\":1768937324.869703,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.275064,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"66472225aa97981e6655a6197be3821e\",\"labels\":[],\"modified_at\":1766477296.275574,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.276183,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aaaeda5a465e1272738851dfaca0bb89\",\"labels\":[],\"modified_at\":1768937324.870776,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.278333,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b0e4675689b5404d93f71ebfc1d7379f\",\"labels\":[],\"modified_at\":1768937324.871166,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (4)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-4-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.279172,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7093c72b49a8f2d940f6b823759f028\",\"labels\":[],\"modified_at\":1766477296.279589,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-5-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.280015,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"da6ce7565775e6386bc5449a208859de\",\"labels\":[],\"modified_at\":1768937324.871832,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.28095,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a0ebf85251bc2805df5a1617f98725cf\",\"labels\":[],\"modified_at\":1768937324.872271,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.281873,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"416e2d0423d1f41bd4b56b6bd81b964f\",\"labels\":[],\"modified_at\":1766477296.282883,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.283571,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ee94a4c4b5043f4b3107f935049eba10\",\"labels\":[],\"modified_at\":1768937324.873009,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [A] (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.284479,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_5\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f1f1ce22f894ebe0933234d04a843de8\",\"labels\":[],\"modified_at\":1768937324.873387,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (5)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-5-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.285287,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c0cacfb741929580682337f02a692ff3\",\"labels\":[],\"modified_at\":1766477296.285701,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-6-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286074,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_6\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"537517b1a5530389a93a15939111bc6d\",\"labels\":[],\"modified_at\":1768937324.873956,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (6)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-6-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.286869,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.fish_tank_power_strip_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f2db9999532c1e7a9ed05488f029cf7f\",\"labels\":[],\"modified_at\":1766477296.287284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"(7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-37-7-currentValue\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.287657,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"button.fish_tank_power_strip_reset_accumulated_values_7\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e343a71bdbc71812276c9427c7be85b\",\"labels\":[],\"modified_at\":1768937324.874499,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Reset accumulated values (7)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-7-reset\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477296.289939,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_tank_power_strip_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa5a18f80f779019ca3f23d010909f4d\",\"labels\":[],\"modified_at\":1766477296.290448,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477441.695525,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_w_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7dd09b25c9105ef44432c19688ac32e1\",\"labels\":[],\"modified_at\":1768937324.865485,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":0}},\"original_name\":\"Electric Consumption [W] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66049\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1766477542.697583,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_kwh_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"faa614fa04d30ee895cd1ff09546164d\",\"labels\":[],\"modified_at\":1768937324.865972,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false},\"sensor\":{\"suggested_display_precision\":2}},\"original_name\":\"Electric Consumption [kWh] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-65537\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":1768937323.145127,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"17e0ae17cdd955a63df94aadb4a81bca\",\"labels\":[],\"modified_at\":1768937323.145187,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46291,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_avg_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7600251cc55099e6789858d8dd0c6b54\",\"labels\":[],\"modified_at\":1768937324.462981,\"name\":null,\"options\":{},\"original_name\":\"Avg. signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"avg_signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.average\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.463148,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.zwave_controller_signal_noise_channel_3\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"99723fdd7485a7d6bb927d5bc468a2a9\",\"labels\":[],\"modified_at\":1768937324.463195,\"name\":null,\"options\":{},\"original_name\":\"Signal noise (channel 3)\",\"platform\":\"zwave_js\",\"translation_key\":\"signal_noise\",\"unique_id\":\"4182894947.1.statistics_background_rssi.channel_3.current\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.46361,\"device_id\":\"4d018e084b79be66c375d2d6a3db243f\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.zwave_controller_firmware\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"8b8620184feb8e076a3dcbc4862fa35d\",\"labels\":[],\"modified_at\":1768937352.32353,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Firmware\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.1.firmware_update\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.686858,\"device_id\":\"2b8022976537f73d5db5f775d8dd6bb1\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.front_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd5c271fa69e1cb2e08837126e390603\",\"labels\":[],\"modified_at\":1768957339.60269,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.5-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.690717,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"06894aa51ff0e9d62478d9bfb5d6b7d1\",\"labels\":[],\"modified_at\":1769108140.491853,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.691308,\"device_id\":\"00d6dfdf8e01bc19761020933d39a24c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.back_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"632aed480ee30ce82ac8ba8afd55e91f\",\"labels\":[],\"modified_at\":1769108140.492738,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.6-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.71521,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0eab179038325dced95da0495d530c83\",\"labels\":[],\"modified_at\":1768937352.324438,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state (simple).23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.715894,\"device_id\":\"503a05d41470a86a6f3640b01d3a3ce8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.cat_bathroom_door_window_door_is_closed_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"69ac603ee53e2fa3e583a9e7e61979e5\",\"labels\":[],\"modified_at\":1768937352.324557,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Window/door is closed\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.20-113-0-Access Control-Door state.23\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.776916,\"device_id\":\"b6dfa82d46a148d6b00aa60b4a6d1327\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_multi_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"944905c91677260a69d3c4fb169af92f\",\"labels\":[],\"modified_at\":1768937352.324779,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.71-113-0-P", - "offset_ms": 298 - }, - { - "direction": "recv", - "type": "text", - "payload": "ower Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1768937324.785768,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.downstairs_hallway_motion_sensor_ac_mains_disconnected\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"141eddff457c88321aa49743e5165cb7\",\"labels\":[],\"modified_at\":1775491285.628223,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AC mains disconnected\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-113-0-Power Management-Mains status.2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1768937325.683515,\"device_id\":\"f85531df21c7233b05d8a7d244ea46bc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.master_bath_cabinet_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"803942d09c418a98aae2af768bde2657\",\"labels\":[],\"modified_at\":1768974704.217654,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x0ceff6fffe1b06ca_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"cbcb22994970d00e2083171708eda990\",\"config_subentry_id\":null,\"created_at\":1768937332.413279,\"device_id\":\"bbfa1e1dcd4375221cd14fbe611a8db4\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"select.front_door_preset_position\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"79c985bf4b12ca603756fd8c2f4d00fe\",\"labels\":[],\"modified_at\":1768937357.407137,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Front Door Preset Position\",\"platform\":\"dahua\",\"translation_key\":null,\"unique_id\":\"Z17EA91C81FEA_preset_position\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.683464,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18d7f0c9095f29d981bfa5129a5c8719\",\"labels\":[],\"modified_at\":1768937355.683876,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684339,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"23798e61c080b6b8bb9292d41b753ebd\",\"labels\":[],\"modified_at\":1768937355.684708,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.684947,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0506bfac83008cc2d1ce31972a6f2785\",\"labels\":[],\"modified_at\":1768937355.685312,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.685556,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"a4b56bbe1e3393cda2a02b5958aa3772\",\"labels\":[],\"modified_at\":1768937355.685892,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"config_subentry_id\":null,\"created_at\":1768937355.68613,\"device_id\":\"4e2fdd5a9a5ce00dcf68ef875e2acaca\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6f334207a3706ffc4bdea3fcc21b27f0\",\"labels\":[],\"modified_at\":1768937355.68646,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"f91be395aa637b853783d80af21df6ea\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"light.front_porch_4\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"88f797601578a44b7f18fe2d310f5c8f\",\"labels\":[],\"modified_at\":1768937820.170123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"front_porch_4\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"AC:0B:FB:D4:26:9F-light-front_porch_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.729653,\"device_id\":\"14799c8fe45a4a16599f3a7c5f4a0f0f\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"select.master_bedroom_ceiling_external_switch_multiple_click_detection\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"911f689ea83e4f559f934622cbfaf55e\",\"labels\":[],\"modified_at\":1769099083.729723,\"name\":null,\"options\":{},\"original_name\":\"External Switch: Multiple Click Detection\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.37-112-0-27\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099083.743385,\"device_id\":\"c365a8e2fcbea3ddd7931026d62fb619\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.front_door_lock_user_slot_bit_field\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34c37d47d0530bffe97567dab6f0a423\",\"labels\":[],\"modified_at\":1769099083.743449,\"name\":null,\"options\":{},\"original_name\":\"User Slot Bit Field\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.66-112-0-6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.058963,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_1\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c34673f93ef0696b560de0710c886316\",\"labels\":[],\"modified_at\":1769326461.249458,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (1)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-1-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061192,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_v_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"34a76e058ab3f8062606e039bb6f7d75\",\"labels\":[],\"modified_at\":1769326461.349576,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [V] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66561\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1769099101.061905,\"device_id\":\"f9dd8f7222cddcc96363d9fde464ec12\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.fish_tank_power_strip_electric_consumption_a_2\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"327d27c3b2d11d6b5ed0a7c67feae89c\",\"labels\":[],\"modified_at\":1769326461.949935,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Electric Consumption [A] (2)\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.80-50-2-value-66817\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.476924,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.overseerr_last_media_event\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1241c0fd94296f38dd4beef033a35d11\",\"labels\":[],\"modified_at\":1769188672.47763,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last media event\",\"platform\":\"overseerr\",\"translation_key\":\"last_media_event\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-media\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.478287,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bbb89d6744aa52101d6b2d634dd3a3d2\",\"labels\":[],\"modified_at\":1769188672.478886,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total requests\",\"platform\":\"overseerr\",\"translation_key\":\"total_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.479308,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_movie_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"25b77947e4e5901105419056fabf10a0\",\"labels\":[],\"modified_at\":1769188672.479959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Movie requests\",\"platform\":\"overseerr\",\"translation_key\":\"movie_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-movie_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.480365,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_tv_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2d94898a7d080d06b0f08ca6451625f7\",\"labels\":[],\"modified_at\":1769188672.480955,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TV requests\",\"platform\":\"overseerr\",\"translation_key\":\"tv_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-tv_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.481447,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_pending_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7e190d80632de506998d2cef0552efc3\",\"labels\":[],\"modified_at\":1769188672.482418,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Pending requests\",\"platform\":\"overseerr\",\"translation_key\":\"pending_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-pending_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.482777,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_declined_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6fc5b3ab324f29fd3454426a63274bc4\",\"labels\":[],\"modified_at\":1769188672.483266,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Declined requests\",\"platform\":\"overseerr\",\"translation_key\":\"declined_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-declined_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.483584,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_processing_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6304a3cd9a5400d32e011d1a277523a3\",\"labels\":[],\"modified_at\":1769188672.484082,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Processing requests\",\"platform\":\"overseerr\",\"translation_key\":\"processing_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-processing_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.484437,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_available_requests\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04f9e7f08d9c31ca040fa2066e660551\",\"labels\":[],\"modified_at\":1769188672.484959,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Available requests\",\"platform\":\"overseerr\",\"translation_key\":\"available_requests\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-available_requests\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.485331,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_total_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00735f8a4a910a0d1254f132ba93de9a\",\"labels\":[],\"modified_at\":1769188672.485849,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Total issues\",\"platform\":\"overseerr\",\"translation_key\":\"total_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-total_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.486201,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_open_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f8ccc6de99805f93f168264e67c712ca\",\"labels\":[],\"modified_at\":1769188672.486713,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Open issues\",\"platform\":\"overseerr\",\"translation_key\":\"open_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-open_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487069,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_closed_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fc5f4929fb61b84f1593ac32c2e1396e\",\"labels\":[],\"modified_at\":1769188672.487587,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Closed issues\",\"platform\":\"overseerr\",\"translation_key\":\"closed_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-closed_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.487953,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_video_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9c23a9db4525e8ccd6821507bbce056d\",\"labels\":[],\"modified_at\":1769188672.488474,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Video issues\",\"platform\":\"overseerr\",\"translation_key\":\"video_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-video_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.488825,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_audio_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1677624b1402c112c6e4345588afb313\",\"labels\":[],\"modified_at\":1769188672.489362,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Audio issues\",\"platform\":\"overseerr\",\"translation_key\":\"audio_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-audio_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"config_subentry_id\":null,\"created_at\":1769188672.489714,\"device_id\":\"d173b409066fac97ca7c15145b24a192\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.overseerr_subtitle_issues\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c90b1860175195d2a23fccb791504ca0\",\"labels\":[],\"modified_at\":1769188672.490236,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Subtitle issues\",\"platform\":\"overseerr\",\"translation_key\":\"subtitle_issues\",\"unique_id\":\"01KFNXSGXBXC1VTPVC6026X0BT-subtitle_issues\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912183.185244,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_off_timeout\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"34a32d14426d3e169ae057627439d98d\",\"labels\":[],\"modified_at\":1771912183.186014,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - Off - Timeout\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912170361\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1771912395.891354,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_garage_light_on_door_open\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"773273d151b8c8d49b92ee8627d586d2\",\"labels\":[],\"modified_at\":1771912395.892381,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Garage Light - On - Door Open\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1771912391140\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.625986,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bed_occupied_stable\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b07a6abab79d073c5be007066b3a3b6d\",\"labels\":[],\"modified_at\":1774116424.626947,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bed Occupied Stable\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bed_occupied_stable\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116424.627238,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.master_bedroom_motion_confirmed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"ad6fda5463b7f7691786174b39cbc043\",\"labels\":[],\"modified_at\":1774116424.627924,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Master Bedroom Motion Confirmed\",\"platform\":\"template\",\"translation_key\":null,\"unique_id\":\"master_bedroom_motion_confirmed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.957554,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.motion_master_lights_on_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a3e5033899feeede780f2808f7b73e24\",\"labels\":[],\"modified_at\":1774116432.958181,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"MOTION - Master Lights - On - Night\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000001\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774116432.958454,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_nap_detection\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b706a2024115adbf2d36028c6713abcf\",\"labels\":[],\"modified_at\":1774116432.958992,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Nap Detection\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000002\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.14926,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4563dd8ceda742b1447360a08afd99e7\",\"labels\":[],\"modified_at\":1774138030.911495,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_back_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149593,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_back_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d2d62fcd0d6717798722ba043bce9d40\",\"labels\":[],\"modified_at\":1774138030.911857,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Back Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_back_door", - "offset_ms": 307 - }, - { - "direction": "recv", - "type": "text", - "payload": "\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.149824,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"806b34a0f2af42d04d3883b58f48a6ef\",\"labels\":[],\"modified_at\":1774138030.912047,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.stair_chandelier_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"58122b4c7d81745a9de83d7435a88559\",\"labels\":[],\"modified_at\":1774138030.912215,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Stair Chandelier White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"stair_chandelier_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150246,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_red_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46650fb68d9b63404a046c228467c62c\",\"labels\":[],\"modified_at\":1774138030.912379,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Red\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_red\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150448,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_white_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8b8c08c11a816b5e91c5d45b883066e\",\"labels\":[],\"modified_at\":1774138030.912537,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp White\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_white\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.150653,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.leksi_lamp_green_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a94089b7222280376a7dad9ef1bf2a92\",\"labels\":[],\"modified_at\":1774138030.912696,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Leksi Lamp Green\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"leksi_lamp_green\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152103,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.lock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fa674acc6fb02b01c66b3433930e2d01\",\"labels\":[],\"modified_at\":1774138030.91286,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Lock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"lock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.152289,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.unlock_front_door_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e5a7edad01fc39a518660614518bcdf2\",\"labels\":[],\"modified_at\":1774138030.913011,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Unlock Front Door\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"unlock_front_door\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.154985,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.master_lights_white_1pct_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d16f049693b501d63ea5473129d3198e\",\"labels\":[],\"modified_at\":1774138030.9132,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Master Lights White 1%\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"master_lights_white_1pct\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.155394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.porch_lights_halloween_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bffe32a5b8efb97c7c5e604c2bc2abc4\",\"labels\":[],\"modified_at\":1774138030.913358,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Porch Lights Halloween\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"porch_lights_halloween\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.156076,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.dining_room_lights_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54146ec2dbaad8902fd311d6c18d996b\",\"labels\":[],\"modified_at\":1774138030.913521,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Dining Room Lights Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"dining_room_lights_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.15684,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_morning_wake_up_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d740742a1b722377a0897440fd402bbe\",\"labels\":[],\"modified_at\":1774138030.913681,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Morning Wake Up\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_morning_wake_up\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157041,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.mariah_room_light_off_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a62870971ca19efe980ffc144f1a1899\",\"labels\":[],\"modified_at\":1774138030.913831,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Mariah Room Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"mariah_room_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157231,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_day\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"949278d55db1a4d8246fa35f91e617f2\",\"labels\":[],\"modified_at\":1774138030.913979,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Day\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_day\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157424,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_night\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"276ef5e2cd3663a6236c81c36f446fc6\",\"labels\":[],\"modified_at\":1774138030.914128,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Night\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_night\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1774137970.157587,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"script.downstairs_hallway_light_off\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"a84f593ccf99ee4dedf54fd732754e2c\",\"labels\":[],\"modified_at\":1774138030.914274,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Downstairs Hallway Light Off\",\"platform\":\"script\",\"translation_key\":null,\"unique_id\":\"downstairs_hallway_light_off\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774138612.949732,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mushroom_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d59320285d90702b2c855475ee95639e\",\"labels\":[],\"modified_at\":1774138612.950796,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Mushroom update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774139555.128573,\"device_id\":\"8576a861dbf9a46a94aeb13a69394efc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mushroom_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0c33c28bb04498effba938ec97b5b805\",\"labels\":[],\"modified_at\":1774139555.128638,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"444350375\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140343.854706,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.mini_graph_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d56350d9930148e8fd5d61e880540724\",\"labels\":[],\"modified_at\":1774140343.855222,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"mini-graph-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1774140477.398217,\"device_id\":\"b014a3c478e0d6f1523f49f27cda9a74\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.mini_graph_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d58d70df50c79d3213bbf8236a5fe6ce\",\"labels\":[],\"modified_at\":1774140477.398278,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"151280062\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.352598,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"681707778436ce05e7199951846ef14d\",\"labels\":[],\"modified_at\":1775489223.761484,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775103702.421699,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"77c98623c4f1d03a6794ba466def6392\",\"labels\":[],\"modified_at\":1775489223.761621,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.690469,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"30c8f6f016a9a07d3072df92bf9c837f\",\"labels\":[],\"modified_at\":1775489223.761751,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775192563.769537,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"fec7537b3f51428841c6f12821476333\",\"labels\":[],\"modified_at\":1775489223.761895,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.155983,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f4f68f200753e31f0a21132e2ff02e3c\",\"labels\":[],\"modified_at\":1775489223.762023,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775350598.222085,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf10bec5854978fe997fc5eb6d1db426\",\"labels\":[],\"modified_at\":1775489223.76215,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354869.951525,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"dbb9d05d05fcd2ca67c6fd8472bab9eb\",\"labels\":[],\"modified_at\":1775489223.762284,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775354870.020436,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0dd61a8fe509fc46135e34167d34e5b3\",\"labels\":[],\"modified_at\":1775489223.762414,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355638.331143,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5144d05444588d3e7a500ac509fae21e\",\"labels\":[],\"modified_at\":1775489223.762539,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775355657.972878,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"4a3162680c956e4ed166e74ca65dbf31\",\"labels\":[],\"modified_at\":1775489223.762673,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356334.664723,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"73fe68c3f5230ab53809f13454c7f7ce\",\"labels\":[],\"modified_at\":1775489223.762806,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.604859,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"b5f0456298a746305de2207d41a214c7\",\"labels\":[],\"modified_at\":1775489223.76293,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775356381.686933,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"82d9e93e6a89fec209b2154e4b4aa5c0\",\"labels\":[],\"modified_at\":1775489223.763054,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.039186,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"3725b439d15a4d1e0e0b8ef16c5bcec8\",\"labels\":[],\"modified_at\":1775489223.763189,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775357927.114222,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"09f3eb747f5823fe21b96763355a9fd3\",\"labels\":[],\"modified_at\":1775489223.763316,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.671129,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e4cb866d53da98bac0fdd3d9a50958c1\",\"labels\":[],\"modified_at\":1775489223.763449,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360298.73551,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bdb1093192bc6e83a24ef3ef98ef251a\",\"labels\":[],\"modified_at\":1775489223.763579,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.683881,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_12\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"17948118ea0453a21060b9ac3c3bd35f\",\"labels\":[],\"modified_at\":1775489223.763821,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_12\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775360983.752892,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"54f2bf26cdc24ddb324070b32bf95efb\",\"labels\":[],\"modified_at\":1775489223.763949,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.611255,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"button.freezer_power_monitor_reset_total_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2de2190bdb6019e1ebaf8f9f6db56d92\",\"labels\":[],\"modified_at\":1775489269.20277,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Reset total energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_reset_total_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.720667,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_off\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ea2b188397cf5cf91ade7924d39597fc\",\"labels\":[],\"modified_at\":1775489254.288937,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn off\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_off_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.725676,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_countdown_to_turn_on\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7c4ba3493529496e8be49faa472f4272\",\"labels\":[],\"modified_at\":1775489254.289157,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Countdown to turn on\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_countdown_to_turn_on_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.730362,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_rise_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"817a29630544a8935b5b5208cfad3a6a\",\"labels\":[],\"modified_at\":1775491843.189477,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power rise threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_rise_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.735072,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"number.freezer_power_monitor_power_drop_threshold\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bb512790cefd801f44d3170bcbe18fb3\",\"labels\":[],\"modified_at\":1775491843.201122,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power drop threshold\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_drop_threshold_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.782524,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"select.freezer_power_monitor_power_on_behavior\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9f1e618efc7019719ba1c008909ae61b\",\"labels\":[],\"modified_at\":1775489269.203071,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power-on behavior\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_on_behavior_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.808614,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2a65df0e6618f2527a49b04cb44ddc8d\",\"labels\":[],\"modified_at\":1775586383.664326,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.810039,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_temperature\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6da142d344b25e493d4e7150811898a9\",\"labels\":[],\"modified_at\":1775489269.20327,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":1},\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Temperature\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_temperature_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.81576,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_humidity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d6fd914af279d2e8f766", - "offset_ms": 315 - }, - { - "direction": "recv", - "type": "text", - "payload": "c6a3ff2de023\",\"labels\":[],\"modified_at\":1775489269.203513,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Humidity\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_humidity_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.817887,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_sensor_pressure\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"bd3458814c78abb0afee054f005cdd78\",\"labels\":[],\"modified_at\":1775489308.697985,\"name\":null,\"options\":{\"sensor.private\":{\"suggested_unit_of_measurement\":\"inHg\"},\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Atmospheric pressure\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_pressure_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.819624,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"b51cd3241371b7561f77450e43672efb\",\"labels\":[],\"modified_at\":1775492079.877324,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.821311,\"device_id\":\"66ecb83a5ef47bc8bd2df639b111b0e8\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"89221a788e97735b88a9981fc28d3fbe\",\"labels\":[],\"modified_at\":1775489227.821354,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x00158d008b897944_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.822693,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_power\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0950382cdf5c1ae4e598bc5443a02839\",\"labels\":[],\"modified_at\":1775520590.696024,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Power\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.825626,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6d9bb9d1c71c5dd2c20a45dc1b6dea2c\",\"labels\":[],\"modified_at\":1775491830.269932,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.828464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_ac_frequency\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"07990395421c102974cefa27b6a9b997\",\"labels\":[],\"modified_at\":1775489254.291151,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Frequency\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_ac_frequency_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.830508,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_power_factor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7fffd049106dfd91742c2374ec66011a\",\"labels\":[],\"modified_at\":1775489227.830555,\"name\":null,\"options\":{},\"original_name\":\"Power factor\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_power_factor_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.832056,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_current\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1b1f2d89a6fa56eaa6ebd7a325233c5b\",\"labels\":[],\"modified_at\":1775520597.935816,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Current\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_current_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.833866,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.freezer_power_monitor_energy\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1dec75cbe9a7ba93bf0f0846e5fe5fac\",\"labels\":[],\"modified_at\":1775525154.098723,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":2},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Energy\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_energy_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.836162,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.freezer_power_monitor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fbdff817ee00883d0aa353adead094b5\",\"labels\":[],\"modified_at\":1775489227.83621,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.84296,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"1de84ba2dcb17a277ea97a987f467d07\",\"labels\":[],\"modified_at\":1775489269.203705,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.844464,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"switch.freezer_power_monitor_metering_only_mode\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d3be8da09eeb8e0acc452fa4a9ba78a5\",\"labels\":[],\"modified_at\":1775489269.203885,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":true},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Metering only mode\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_switch_metering_only_mode_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775489227.850014,\"device_id\":\"8be26fe8321d4d2c48a5043d9f97a160\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.freezer_power_monitor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fcee0811885c8854563443ba4dced1ab\",\"labels\":[],\"modified_at\":1775489306.418611,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x4ce17552b8e60000_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"config_subentry_id\":null,\"created_at\":1775549231.594472,\"device_id\":\"ff42c6d76b3cfde16d8c09326e6544b9\",\"disabled_by\":\"integration\",\"entity_category\":\"config\",\"entity_id\":\"number.downstairs_hallway_motion_sensor_vibration_sensitivity\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c9db7f91c5b54278bf3f7a80f5df91bc\",\"labels\":[],\"modified_at\":1775549231.594723,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Vibration Sensitivity\",\"platform\":\"zwave_js\",\"translation_key\":null,\"unique_id\":\"4182894947.75-112-0-13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.825542,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"5077add4bf45e912a2ef646bae511f14\",\"labels\":[],\"modified_at\":1775678362.82721,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000003\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.827502,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_at_wake\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8f3761580a85a1bd3953bddb2c989d35\",\"labels\":[],\"modified_at\":1775678362.828154,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off At Wake\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000004\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775678362.828418,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_master_bed_night_occupied_latch_off_vacated\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"be7a1d87aaf721c4188bf8bec50329f4\",\"labels\":[],\"modified_at\":1775678362.828943,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"AUTO - Master Bed - Night Occupied Latch - Off Vacated\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1774112000005\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.37481,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_water_leak\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"167b598bb2635889c041d73857d27990\",\"labels\":[],\"modified_at\":1775868913.129506,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"Moisture\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_water_leak_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.376546,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.kitchen_sink_water_sensor_battery_low\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"aa1b588575b52fe468f5b0b654084236\",\"labels\":[],\"modified_at\":1775868913.130469,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_low_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.613679,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"00cfdcc6fd718b086b498d183ec763fe\",\"labels\":[],\"modified_at\":1775868913.131303,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.615726,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"feb552019b26731f2c51b5b208e46821\",\"labels\":[],\"modified_at\":1775875660.872463,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.618016,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.fish_fed_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"7a715ee29ebb812ad53ff3962471973c\",\"labels\":[],\"modified_at\":1775868886.618058,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.61896,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62fed74cd33f82ba6c78036a9cebbf06\",\"labels\":[],\"modified_at\":1775868913.133053,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62005,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_voltage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6aa5184211eb3c2d8ccd38a3b494e66f\",\"labels\":[],\"modified_at\":1775872197.350263,\"name\":null,\"options\":{\"sensor\":{\"suggested_display_precision\":0},\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Voltage\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_voltage_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.62157,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.tracker_one_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"62526651242478435d1e767d473d0b01\",\"labels\":[],\"modified_at\":1775868886.621614,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.622608,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_battery\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3c40a87b4581f5eae3d7a6360360a4fc\",\"labels\":[],\"modified_at\":1775868913.13455,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Battery\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_battery_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.624775,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.kitchen_sink_water_sensor_linkquality\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d40ea24dbd15c204e20d4041d24cd2d0\",\"labels\":[],\"modified_at\":1775868886.624821,\"name\":null,\"options\":{},\"original_name\":\"Linkquality\",\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_linkquality_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.640178,\"device_id\":\"ae61950c1997b09f6e91a10317f60318\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.fish_fed\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"339abf0c4de7f4ba8ac9610f75299234\",\"labels\":[],\"modified_at\":1775868913.135283,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0xd44867fffe00bca4_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.641542,\"device_id\":\"f87381bf47e4c6fb33f864a6d4b0982a\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.tracker_one\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"c4dde6447448035238f372ce06801427\",\"labels\":[],\"modified_at\":1775868913.136075,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x08ddebfffef3838f_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"config_subentry_id\":null,\"created_at\":1775868886.643148,\"device_id\":\"1aab3d82a4cc8faa85c1769eb67ab551\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.kitchen_sink_water_sensor\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"2195ff58fb96b2adfde3932a8dba49a5\",\"labels\":[],\"modified_at\":1775868913.136902,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":null,\"platform\":\"mqtt\",\"translation_key\":null,\"unique_id\":\"0x8c65a3fffeced5c7_update_zigbee2mqtt\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775869869.03551,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":null,\"entity_category\":\"config\",\"entity_id\":\"update.apexcharts_card_update\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"59310574b32edd03da9449e2fc1b7504\",\"labels\":[],\"modified_at\":1775869869.036084,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"apexcharts-card update\",\"platform\":\"hacs\",\"translation_key\":null,\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870068.253425,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.track_tracker_one_log_press\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"251e799623f0dc9e26c3a81c1bcc0e30\",\"labels\":[],\"modified_at\":1775870068.254211,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"TRACK - Tracker One - Log Press\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775869806572\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870401.81351,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.fish_fed\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"86abac3ce035a999bd58f59520b2f4f0\",\"labels\":[],\"modified_at\":1775870444.348953,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":true}},\"original_name\":\"Fish Fed\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"fish_fed\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870404.195975,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"counter.tracker_one_presses\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"563381785d898580a4ec98b5d47f8241\",\"labels\":[],\"modified_at\":1775870428.194489,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Tracker One Presses\",\"platform\":\"counter\",\"translation_key\":null,\"unique_id\":\"tracker_one_presses\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"config_subentry_id\":null,\"created_at\":1775870404.57426,\"device_id\":\"7e973ed5e5f9c629c70ed3d5c1711916\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"switch.apexcharts_card_pre_release\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"3d3c39d6ccf8398fd21217517712467e\",\"labels\":[],\"modified_at\":1775870404.574316,\"name\":null,\"options\":{},\"original_name\":\"Pre-release\",\"platform\":\"hacs\",\"translation_key\":\"pre-release\",\"unique_id\":\"331701152\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485157,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.auto_fish_fed_latch_on\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"15bd4e2db4610819856a0a96d8fb46ac\",\"labels\":[],\"modified_at\":1775870556.016822,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"AUTO - Fish Fed - Latch On\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211861\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1775870405.485897,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"automation.schedule_fish_fed_reset\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cb491690a44f98c51901d58d37cdd2d8\",\"labels\":[],\"modified_at\":1775890800.094108,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"SCHEDULE - Fish Fed - Reset\",\"platform\":\"automation\",\"translation_key\":null,\"unique_id\":\"1775870211862\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"config_subentry_id\":null,\"created_at\":1775959350.075729,\"device_id\":\"bd61b07f6c18d67ffd4150ebf11743fa\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"binary_sensor.garage_parking_car_in_garage\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"18f6e46b7275812f380f65c45ab68432\",\"labels\":[],\"modified_at\":1775959350.076865,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":true}},\"original_name\":\"Car in Garage\",\"platform\":\"esphome\",\"translation_key\":null,\"unique_id\":\"", - "offset_ms": 325 - }, - { - "direction": "recv", - "type": "text", - "payload": "44:17:93:1B:60:94-binary_sensor-car_in_garage\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067514.535912,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_13\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"52f365b0d3680334baa51a6a1268693d\",\"labels\":[],\"modified_at\":1776067514.537586,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_13\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776067515.336196,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"0ba17144d4b28c18b1610c9e6524f080\",\"labels\":[],\"modified_at\":1776067515.337787,\"name\":null,\"options\":{\"cloud.google_assistant\":{\"should_expose\":false},\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"}]}", - "offset_ms": 333 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_update_entity_registry_entry.json b/cassettes/test_entity_registry/test_update_entity_registry_entry.json deleted file mode 100644 index 0a84f3ad..00000000 --- a/cassettes/test_entity_registry/test_update_entity_registry_entry.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:59.712119+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": \"Test Name\", \"id\": 2, \"type\": \"config/entity_registry/update\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067739.712396,\"name\":\"Test Name\",\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", - "offset_ms": 18 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": null, \"id\": 3, \"type\": \"config/entity_registry/update\"}", - "offset_ms": 18 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067739.720447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", - "offset_ms": 25 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_endpoint_not_found_error.json b/cassettes/test_errors/test_async_endpoint_not_found_error.json deleted file mode 100644 index f875d468..00000000 --- a/cassettes/test_errors/test_async_endpoint_not_found_error.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:00 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "139" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc74da22c654-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:00.963904+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:00 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:00.972880+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/qwertyuioasdfghjkzxcvbnm", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 404, - "message": "Not Found" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:00 GMT" - ], - "content-type": [ - "text/plain; charset=utf-8" - ], - "content-length": [ - "14" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "404: Not Found" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/qwertyuioasdfghjkzxcvbnm" - }, - "recorded_at": "2026-04-13T08:09:00.980810+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_invalid_template.json b/cassettes/test_errors/test_async_invalid_template.json deleted file mode 100644 index ac089337..00000000 --- a/cassettes/test_errors/test_async_invalid_template.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "140" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc78b830495f-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:01.585344+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:01.595150+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/template", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 400, - "message": "Bad Request" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "100" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"Error rendering template: TemplateSyntaxError: expected token 'end of print statement', got 'lol'\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/template" - }, - "recorded_at": "2026-04-13T08:09:01.605118+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_method_not_allowed_error.json b/cassettes/test_errors/test_async_method_not_allowed_error.json deleted file mode 100644 index 2edefeea..00000000 --- a/cassettes/test_errors/test_async_method_not_allowed_error.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "140" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc75cefeaee3-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:01.114784+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:01.128142+00:00" - }, - { - "request": { - "method": "DELETE", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 405, - "message": "Method Not Allowed" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "text/plain; charset=utf-8" - ], - "content-length": [ - "23" - ], - "allow": [ - "GET,OPTIONS" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "405: Method Not Allowed" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:01.139487+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_no_entity_information_provided.json b/cassettes/test_errors/test_async_no_entity_information_provided.json deleted file mode 100644 index 06d9dada..00000000 --- a/cassettes/test_errors/test_async_no_entity_information_provided.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "140" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc77cb45cf48-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:01.430196+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:01.441914+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_wrong_headers.json b/cassettes/test_errors/test_async_wrong_headers.json deleted file mode 100644 index 7b39fb9c..00000000 --- a/cassettes/test_errors/test_async_wrong_headers.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "140" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc76ccc41f9b-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:01.271581+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:01.280903+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_domain_missing_services_attribute.json b/cassettes/test_errors/test_domain_missing_services_attribute.json deleted file mode 100644 index 42c841a7..00000000 --- a/cassettes/test_errors/test_domain_missing_services_attribute.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:00 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "139" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc73fbb8f896-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:00.820665+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:00 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:00.830836+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_endpoint_not_found_error.json b/cassettes/test_errors/test_endpoint_not_found_error.json deleted file mode 100644 index ccf3514f..00000000 --- a/cassettes/test_errors/test_endpoint_not_found_error.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:00 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "139" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc746ffaa509-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:00.891340+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:00 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:00.903905+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/qwertyuioasdfghjkzxcvbnm", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 404, - "message": "Not Found" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:00 GMT" - ], - "content-type": [ - "text/plain; charset=utf-8" - ], - "content-length": [ - "14" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "404: Not Found" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/qwertyuioasdfghjkzxcvbnm" - }, - "recorded_at": "2026-04-13T08:09:00.912754+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_invalid_template.json b/cassettes/test_errors/test_invalid_template.json deleted file mode 100644 index 1a547af5..00000000 --- a/cassettes/test_errors/test_invalid_template.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "140" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc783ca8a11a-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:01.508297+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:01.520820+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/template", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 400, - "message": "Bad Request" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "100" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"Error rendering template: TemplateSyntaxError: expected token 'end of print statement', got 'lol'\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/template" - }, - "recorded_at": "2026-04-13T08:09:01.530450+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_method_not_allowed_error.json b/cassettes/test_errors/test_method_not_allowed_error.json deleted file mode 100644 index f08a669e..00000000 --- a/cassettes/test_errors/test_method_not_allowed_error.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "140" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc754a099bf9-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:01.034976+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:01.043904+00:00" - }, - { - "request": { - "method": "DELETE", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 405, - "message": "Method Not Allowed" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "text/plain; charset=utf-8" - ], - "content-length": [ - "23" - ], - "allow": [ - "GET,OPTIONS" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "405: Method Not Allowed" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:01.052817+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_no_entity_information_provided.json b/cassettes/test_errors/test_no_entity_information_provided.json deleted file mode 100644 index b62e9329..00000000 --- a/cassettes/test_errors/test_no_entity_information_provided.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "140" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc773dccefde-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:01.345639+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:01.358308+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_errors/test_wrong_headers.json b/cassettes/test_errors/test_wrong_headers.json deleted file mode 100644 index 1eb6a1ee..00000000 --- a/cassettes/test_errors/test_wrong_headers.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "140" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc765c8fc146-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:01.208882+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:01 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:01.219903+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_events/test_async_listen_config_entries.json b/cassettes/test_events/test_async_listen_config_entries.json deleted file mode 100644 index 923cf48c..00000000 --- a/cassettes/test_events/test_async_listen_config_entries.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:02.985257+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config_entries/subscribe\"}", - "offset_ms": 13 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"0039", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "1291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", - "offset_ms": 21 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", - "offset_ms": 22 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"unload_in_progress\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", - "offset_ms": 30 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": null, \"id\": 4, \"type\": \"config_entries/disable\"}", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"setup_in_progress\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", - "offset_ms": 39 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", - "offset_ms": 263 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", - "offset_ms": 263 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"subscription\": 2, \"id\": 5, \"type\": \"unsubscribe_events\"}", - "offset_ms": 263 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 269 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_events/test_listen_config_entries.json b/cassettes/test_events/test_listen_config_entries.json deleted file mode 100644 index ee53b912..00000000 --- a/cassettes/test_events/test_listen_config_entries.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [], - "websocket_sessions": [ - { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:02.347982+00:00", - "protocol": null, - "frames": [ - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 0 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", - "offset_ms": 0 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 11 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"id\": 2, \"type\": \"config_entries/subscribe\"}", - "offset_ms": 11 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 19 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7f50d2b99d83b5a696b19c6d0c89d399\",\"domain\":\"hacs\",\"modified_at\":1736353172.429286,\"title\":\"\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"09b1a9333f4876163f3b797e943a54a9\",\"domain\":\"ecobee\",\"modified_at\":0.0,\"title\":\"ecobee\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"85c367e48cb08f190ad5527eb135d3bd\",\"domain\":\"deconz\",\"modified_at\":1730406645.502874,\"title\":\"10.74.0.70\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"cbcb22994970d00e2083171708eda990\",\"domain\":\"dahua\",\"modified_at\":0.0,\"title\":\"Front Door\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"c2c7a7467cca4126fd308f31de173608\",\"domain\":\"esphome\",\"modified_at\":1728721863.590951,\"title\":\"front_porch_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e0ba12b848b8e7bbe692fdc6ca5307c5\",\"domain\":\"esphome\",\"modified_at\":1728721863.590503,\"title\":\"front_porch_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"78d08991f34233021f80d701a1edaccc\",\"domain\":\"esphome\",\"modified_at\":1775959370.016027,\"title\":\"Garage Parking Suite\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"ed1c733aff45a6ab41335f324593b4a6\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"db14bd07efb910adbbe2cb1590ba7521\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Living Room 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1d89fb69a5aa46848d5b18b808b414f9\",\"domain\":\"mobile_app\",\"modified_at\":0.0,\"title\":\"Pixel 6\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"722de98bdff0b51d32e430fec9a5d331\",\"domain\":\"mobile_app\",\"modified_at\":1772743486.995085,\"title\":\"Pixel 7\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"4950708e70c0445ca1a2be2d69b7f6ef\",\"domain\":\"esphome\",\"modified_at\":1728721863.591113,\"title\":\"office_lamp_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"0249cf7b612c30dd52542078a67f41a5\",\"domain\":\"zwave_js\",\"modified_at\":1769098926.663816,\"title\":\"Z-Wave JS\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"8f186e3d548cff96ce75b161b8af031f\",\"domain\":\"wled\",\"modified_at\":1768937323.991947,\"title\":\"adam_desk_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"25a3447e1b036d8a2369ac6f0a8335cf\",\"domain\":\"esphome\",\"modified_at\":1728721863.590697,\"title\":\"office_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"249a34777271677457ce2b5a8f1819ea\",\"domain\":\"esphome\",\"modified_at\":1728721863.591286,\"title\":\"office_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9b456032b1a4c007908b18c65065e095\",\"domain\":\"esphome\",\"modified_at\":1728721863.591033,\"title\":\"office_light_4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"1771c9d8c33b8543266ad305a30e3ff7\",\"domain\":\"esphome\",\"modified_at\":1728721863.591192,\"title\":\"office_light_3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3a4f874d2d6576fe0e94f61e64659a48\",\"domain\":\"wled\",\"modified_at\":1768937323.992661,\"title\":\"master_bed_lights\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a3dbc8da5b27debfd138ca3d1a0fae53\",\"domain\":\"opower\",\"modified_at\":0.0,\"title\":\"Portland General Electric (PGE) (loganslanding1211@gmail.com)\",\"source\":\"user\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7d8cd6373befe2fc251fbbd08f3c2610\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7244566fdce759c2f82e50783b332abf\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3d4abf1611e76274e61cd353ffd891ed\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"d9192068ba24d1ff29e7515b70a497db\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"12d85843d88f4c07b10cd282dd25d2f9\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 4\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e16429e102c934a4e3db037f54ddf8dc\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 5\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"cce1b4795b294943e750548baf75e8fb\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bath 6\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"e2123f325ae2782417976c6cd140248f\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Master Bedroom 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"34c093656d5874dd799d0c946bfade51\",\"domain\":\"cloud\",\"modified_at\":0.0,\"title\":\"Home Assistant Cloud\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3c1e4e8f3b5e2429151545c32c3ee6ee\",\"domain\":\"homekit_controller\",\"modified_at\":1774380741.56514,\"title\":\"Kitchen Dining Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"8613fad14157a5295dd85e96049ca0f5\",\"domain\":\"androidtv_remote\",\"modified_at\":1775489927.5334,\"title\":\"Living room TV\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"d858f630c648850ca6d1cd5b89c7907f\",\"domain\":\"homekit_controller\",\"modified_at\":1776056227.210163,\"title\":\"Living room TV (Television)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9d6aaa2a737128c404b6462ce487e9f3\",\"domain\":\"cast\",\"modified_at\":0.0,\"title\":\"cast\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"651a82e1d3c9932086f21c2ee70a084f\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.378274,\"title\":\"LIFX Color 72562D (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"ca3028055799eade443570a708d67396\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.374701,\"title\":\"LIFX Color 72E46E (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"6b6e6a2fae28b11e2c0bbdf48a1ddd3b\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.713571,\"title\":\"LIFX Mini 39A3C8 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"af8c22df8b65fbff6dd52bf36536f303\",\"domain\":\"homekit_controller\",\"modified_at\":1774812727.432803,\"title\":\"LIFX Mini 39C436 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"feb2036cb0cd09bf81f32766787e5b00\",\"domain\":\"homekit_controller\",\"modified_at\":0.0,\"title\":\"LIFX Color 75A798 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a7b4cfdc6f2666f6e48176e5643bf16c\",\"domain\":\"homekit_controller\",\"modified_at\":1774770977.476421,\"title\":\"LIFX Color 72CA59 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"6134acc3738f76f2acbe21362b8c0756\",\"domain\":\"esphome\",\"modified_at\":1728721863.590868,\"title\":\"leks_lamp\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"391ac60a5b982433dc0fb1682cdfa79f\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"front_porch_4\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"87b0f3f9b937029cdf7a6163252ba78b\",\"domain\":\"ipp\",\"modified_at\":1728721865.103022,\"title\":\"Canon MF632C/634C\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"30dbcdc8fc92d24de3156abbcb1f7a0d\",\"domain\":\"esphome\",\"modified_at\":1728721863.590605,\"title\":\"front_porch_3\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"47b98f0db32263bdffcf0821b6cb5cd2\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"spare_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a27f17424cb4557951b81d515f60c039\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"74870921b49b1b41f4bd7bc8ef2449f3\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"dd8c30024ac7aa324d7a925cd94b4f4c\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Stairs Light 3\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"629188f4906f9a4ea0878a53e2d73e67\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 1\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"3e5b2c4ad6542e68209baeffe95af718\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 3\",\"source\":\"homekit\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a338d650b430505b22663af56b7fafd4\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"dining_room_light_1\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7626372708fcaaffcef975293889efe7\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.593999,\"title\":\"LIFX Color 7250FC (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b35f486480b8077a7e040b33000c71a1\",\"domain\":\"homekit_controller\",\"modified_at\":1771118769.691918,\"title\":\"LIFX Color 729BC1 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"a625c7cc22b8f20fde850046470814b4\",\"domain\":\"homekit_controller\",\"modified_at\":1771118770.590778,\"title\":\"LIFX Color 75D463 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"f9cf602a44b490dbc9c335000fe00b39\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Dining Room Light 2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b0a0074d61fddc79bfd795239069a3d5\",\"domain\":\"androidtv_remote\",\"modified_at\":1774547916.082961,\"title\":\"kids tv\",\"source\":\"zeroconf\",\"state\":\"setup_retry\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":\"Couldn't connect to 10.0.0.242:6466\",\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"0039", - "offset_ms": 20 - }, - { - "direction": "recv", - "type": "text", - "payload": "1291035eaa13172e995887643dd1\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.356199,\"title\":\"Master Bedroom FP2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"31dc6859d7e277c654b98e443b6a846a\",\"domain\":\"homekit_controller\",\"modified_at\":1774420004.622752,\"title\":\"Master Bath FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"741300a7f7d4e3d3c848f5f27d815d9c\",\"domain\":\"emporia_vue\",\"modified_at\":0.0,\"title\":\"Customer 194859\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"4076dd0d1563fcbdb541bee0c531bf72\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.377198,\"title\":\"LIFX Color 72FC44 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"b77a727ad9eb1e2768a643078a4866f4\",\"domain\":\"homekit_controller\",\"modified_at\":1774770978.472715,\"title\":\"LIFX Color 7240F0 (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"86a3be0f160a73b12c3a9d1adfc23c74\",\"domain\":\"homekit_controller\",\"modified_at\":1774770981.469679,\"title\":\"LIFX Color 6DD86C (Lightbulb)\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7a50c1a0b32afa7713ac4771d653bd77\",\"domain\":\"apsystems_ecur\",\"modified_at\":0.0,\"title\":\"ECU: 216200104730\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"9d49a4e9dbf4ce8fb96b220bff70cdec\",\"domain\":\"dlna_dmr\",\"modified_at\":0.0,\"title\":\"MARS\",\"source\":\"ignore\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":false,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"43febd2c80fd35383b1796826e76aad9\",\"domain\":\"template\",\"modified_at\":1768937322.847645,\"title\":\"Total_Inverter_Watts\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"7f251016a9fdd775b35f0e40a7444843\",\"domain\":\"esphome\",\"modified_at\":1747337785.110896,\"title\":\"mariah_light_1\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"05955aac5e17eca7874b7037a0d5696b\",\"domain\":\"esphome\",\"modified_at\":0.0,\"title\":\"mariah_light_2\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"01J56H9AWCQMS3HZM7ANV95Y6Y\",\"domain\":\"lifx\",\"modified_at\":0.0,\"title\":\"Mariah Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725122453.960535,\"entry_id\":\"01J6MMZ8E8KPZ0AJD17WRAYPVR\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.874418,\"title\":\"Living Room FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725122918.684756,\"entry_id\":\"01J6MNDE8WMS41QD431HBQBPBM\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.677877,\"title\":\"Office FP2\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1725237327.176478,\"entry_id\":\"01J6R2GXA8QRT7563CVPV64AVD\",\"domain\":\"homekit_controller\",\"modified_at\":1774380740.752163,\"title\":\"Presence-Sensor-FP2-23F1\",\"source\":\"zeroconf\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1730927475.857096,\"entry_id\":\"01JC1N2F4HS0JAZ7Q5GXSJRXPP\",\"domain\":\"lifx\",\"modified_at\":1730927475.857102,\"title\":\"Entry Light\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1732123671.360149,\"entry_id\":\"01JD59VET0CTHMYE4A80KJ3QD1\",\"domain\":\"go2rtc\",\"modified_at\":1732123671.360153,\"title\":\"go2rtc\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1732137663.445581,\"entry_id\":\"01JD5Q6EYN8KBM4B29546TJR4T\",\"domain\":\"opensprinkler\",\"modified_at\":1732137663.445585,\"title\":\"OpenSprinkler\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1733163447.658903,\"entry_id\":\"01JE49EXBAJVFJKJM0E4W5CSR9\",\"domain\":\"mqtt\",\"modified_at\":1739435795.878432,\"title\":\"10.74.0.80\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{\"device\":{\"supports_reconfigure\":true}},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1733470321.138438,\"entry_id\":\"01JEDE3YFJTJW81WGP3V658AVK\",\"domain\":\"homekit_controller\",\"modified_at\":1774380802.28657,\"title\":\"Thermostat\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":true,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1736353647.021122,\"entry_id\":\"01JH3BW2DDTSNFTHV47HGFQ358\",\"domain\":\"template\",\"modified_at\":1768937322.851378,\"title\":\"Garage Motion\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1736356766.766534,\"entry_id\":\"01JH3EV91E541YM6J36VE1W4VC\",\"domain\":\"mobile_app\",\"modified_at\":1736356766.766538,\"title\":\"Adam Pixel Watch 3\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1749590887.085076,\"entry_id\":\"01JXDVWJNDCPANM1HWPQBP2JNN\",\"domain\":\"lifx\",\"modified_at\":1749590887.085116,\"title\":\"Master Shower\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1749590895.672102,\"entry_id\":\"01JXDVWV1R3HX94D003XN0H8ZR\",\"domain\":\"lifx\",\"modified_at\":1749590895.672115,\"title\":\"Matter Bath Toilet\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1750061075.140622,\"entry_id\":\"01JXVW9JP4T1HH8WBG55TP3DCW\",\"domain\":\"group\",\"modified_at\":1750145473.316833,\"title\":\"Master Bath Lights \",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1759378690.212963,\"entry_id\":\"01K6HJ8M54G71Y4477XK05AGBG\",\"domain\":\"local_calendar\",\"modified_at\":1759378690.212967,\"title\":\"Maya school\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1760498155.520544,\"entry_id\":\"01K7JXW0009Z4808SNX3EEZ73G\",\"domain\":\"mobile_app\",\"modified_at\":1772759692.578323,\"title\":\"Pixel 9\",\"source\":\"registration\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1761690295.740583,\"entry_id\":\"01K8PES7DW0TE29FQ402WCPPN1\",\"domain\":\"roku\",\"modified_at\":1761690295.740592,\"title\":\"Living room tv\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1768937352.344797,\"entry_id\":\"01KFEE3V4RH9WGH36EGF6BGT3N\",\"domain\":\"backup\",\"modified_at\":1768937352.344799,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1769188672.427171,\"entry_id\":\"01KFNXSGXBXC1VTPVC6026X0BT\",\"domain\":\"overseerr\",\"modified_at\":1769188672.427173,\"title\":\"Overseerr\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":true,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1774111307.948369,\"entry_id\":\"01KM8MCE5CPYEJ590MWQ2Q1ZY8\",\"domain\":\"mcp_server\",\"modified_at\":1774111307.948374,\"title\":\"Assist\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", - "offset_ms": 20 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", - "offset_ms": 21 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"unload_in_progress\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"not_loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", - "offset_ms": 30 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", - "offset_ms": 30 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"entry_id\": \"c8aa301d6fa401c6054f7a0b36e435da\", \"disabled_by\": null, \"id\": 4, \"type\": \"config_entries/disable\"}", - "offset_ms": 31 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"setup_in_progress\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", - "offset_ms": 39 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"c8aa301d6fa401c6054f7a0b36e435da\",\"domain\":\"met\",\"modified_at\":0.0,\"title\":\"Home\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", - "offset_ms": 592 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", - "offset_ms": 593 - }, - { - "direction": "send", - "type": "text", - "payload": "{\"subscription\": 2, \"id\": 5, \"type\": \"unsubscribe_events\"}", - "offset_ms": 593 - }, - { - "direction": "recv", - "type": "text", - "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 598 - } - ] - } - ] -} \ No newline at end of file diff --git a/cassettes/test_models/test_async_entity_get_entity.json b/cassettes/test_models/test_async_entity_get_entity.json deleted file mode 100644 index 3a330faa..00000000 --- a/cassettes/test_models/test_async_entity_get_entity.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "143" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8aa8bd121f-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:04.458415+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:04.469434+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/person.test_user", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 404, - "message": "Not Found" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "39" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"Entity not found.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/person.test_user" - }, - "recorded_at": "2026-04-13T08:09:04.479634+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_async_entity_get_history.json b/cassettes/test_models/test_async_entity_get_history.json deleted file mode 100644 index 50e21f39..00000000 --- a/cassettes/test_models/test_async_entity_get_history.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "144" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc9028dc1ef3-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:05.327753+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:05.337059+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "641" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.sun" - }, - "recorded_at": "2026-04-13T08:09:05.345927+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "190" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T08:09:05.336804+00:00\",\"last_updated\":\"2026-04-12T08:09:05.336804+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T13:31:27.886086+00:00\",\"last_updated\":\"2026-04-12T13:31:27.886086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_updated\":\"2026-04-13T02:58:29.987568+00:00\"}]]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun" - }, - "recorded_at": "2026-04-13T08:09:05.360960+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_async_entity_get_history_none.json b/cassettes/test_models/test_async_entity_get_history_none.json deleted file mode 100644 index 0fc2275e..00000000 --- a/cassettes/test_models/test_async_entity_get_history_none.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "144" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc91cf9f3d1b-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:05.598073+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:05.610609+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.red_sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "336" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:09:04.641828+00:00\",\"last_reported\":\"2026-04-13T08:09:04.641828+00:00\",\"last_updated\":\"2026-04-13T08:09:04.641828+00:00\",\"context\":{\"id\":\"01KP2Y64W1X57GZR5AKVMG0J1T\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.red_sun" - }, - "recorded_at": "2026-04-13T08:09:05.620723+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "10" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00" - }, - "recorded_at": "2026-04-13T08:09:05.631028+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_async_entity_update_state.json b/cassettes/test_models/test_async_entity_update_state.json deleted file mode 100644 index a3348688..00000000 --- a/cassettes/test_models/test_async_entity_update_state.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "143" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8bb8a88ce4-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:04.626090+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:04.637425+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.red_sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "338" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of your hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:09:04.545843+00:00\",\"last_reported\":\"2026-04-13T08:09:04.545843+00:00\",\"last_updated\":\"2026-04-13T08:09:04.545843+00:00\",\"context\":{\"id\":\"01KP2Y64S1BE282QFA6FT259BR\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.red_sun" - }, - "recorded_at": "2026-04-13T08:09:04.648881+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/states/sun.red_sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "219" - ], - "location": [ - "/api/states/sun.red_sun" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:09:04.641828+00:00\",\"last_reported\":\"2026-04-13T08:09:04.641828+00:00\",\"last_updated\":\"2026-04-13T08:09:04.641828+00:00\",\"context\":{\"id\":\"01KP2Y64W1X57GZR5AKVMG0J1T\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.red_sun" - }, - "recorded_at": "2026-04-13T08:09:04.660939+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_async_fire_event.json b/cassettes/test_models/test_async_fire_event.json deleted file mode 100644 index b296fd74..00000000 --- a/cassettes/test_models/test_async_fire_event.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "143" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8dee350055-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:04.976299+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:04.988554+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/events", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "248" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/events" - }, - "recorded_at": "2026-04-13T08:09:04.998125+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/events/core_config_updated", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "54" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"Event core_config_updated fired.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/events/core_config_updated" - }, - "recorded_at": "2026-04-13T08:09:05.006789+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_async_get_domains.json b/cassettes/test_models/test_async_get_domains.json deleted file mode 100644 index 8bdcc9f3..00000000 --- a/cassettes/test_models/test_async_get_domains.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "144" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8f18c4ff11-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:05.157106+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:05.165979+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:09:05.180127+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_async_get_event.json b/cassettes/test_models/test_async_get_event.json deleted file mode 100644 index 79a7e894..00000000 --- a/cassettes/test_models/test_async_get_event.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "143" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8cee161f9b-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:04.815128+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:04.827874+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/events", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "248" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/events" - }, - "recorded_at": "2026-04-13T08:09:04.837904+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_base_domain_from_json_invalid_services_type.json b/cassettes/test_models/test_base_domain_from_json_invalid_services_type.json deleted file mode 100644 index 9c65970c..00000000 --- a/cassettes/test_models/test_base_domain_from_json_invalid_services_type.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "144" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc927e221f9b-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:05.699850+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:05.711478+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_domain_from_json_with_client_missing_keys.json b/cassettes/test_models/test_domain_from_json_with_client_missing_keys.json deleted file mode 100644 index 977b4059..00000000 --- a/cassettes/test_models/test_domain_from_json_with_client_missing_keys.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "144" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc915ca788dc-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:05.522406+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:05.532051+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_domain_service_attribute_access.json b/cassettes/test_models/test_domain_service_attribute_access.json deleted file mode 100644 index ddc66bc2..00000000 --- a/cassettes/test_models/test_domain_service_attribute_access.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "144" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc92ebb7cf48-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:05.774125+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:05.787508+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:09:05.803493+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_entity_get_entity.json b/cassettes/test_models/test_entity_get_entity.json deleted file mode 100644 index 767b4a40..00000000 --- a/cassettes/test_models/test_entity_get_entity.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "143" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8a2e55ff15-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:04.378412+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:04.389035+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/person.test_user", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 404, - "message": "Not Found" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "39" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"Entity not found.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/person.test_user" - }, - "recorded_at": "2026-04-13T08:09:04.397296+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_entity_get_history.json b/cassettes/test_models/test_entity_get_history.json deleted file mode 100644 index e8da82df..00000000 --- a/cassettes/test_models/test_entity_get_history.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "144" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8f999f9d6b-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:05.241563+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:05.250842+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "641" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-13T12:59:35.804343+00:00\",\"next_dusk\":\"2026-04-14T03:27:06.838161+00:00\",\"next_midnight\":\"2026-04-13T08:12:52+00:00\",\"next_noon\":\"2026-04-13T20:13:04+00:00\",\"next_rising\":\"2026-04-13T13:30:48.092359+00:00\",\"next_setting\":\"2026-04-14T02:55:46.718486+00:00\",\"elevation\":-35.59,\"azimuth\":356.68,\"rising\":false,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_reported\":\"2026-04-13T08:05:00.088108+00:00\",\"last_updated\":\"2026-04-13T08:02:04.566188+00:00\",\"context\":{\"id\":\"01KP2XSAMP9YPD6GA78ZCJDCN9\",\"parent_id\":null,\"user_id\":null}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.sun" - }, - "recorded_at": "2026-04-13T08:09:05.258920+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "189" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T08:09:05.249662+00:00\",\"last_updated\":\"2026-04-12T08:09:05.249662+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T13:31:27.886086+00:00\",\"last_updated\":\"2026-04-12T13:31:27.886086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:58:29.987568+00:00\",\"last_updated\":\"2026-04-13T02:58:29.987568+00:00\"}]]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/history/period?filter_entity_id=sun.sun" - }, - "recorded_at": "2026-04-13T08:09:05.274006+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_entity_get_history_none.json b/cassettes/test_models/test_entity_get_history_none.json deleted file mode 100644 index ea9ca2f6..00000000 --- a/cassettes/test_models/test_entity_get_history_none.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "144" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc90bb985012-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:05.427850+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:05.439349+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.red_sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "336" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:09:04.641828+00:00\",\"last_reported\":\"2026-04-13T08:09:04.641828+00:00\",\"last_updated\":\"2026-04-13T08:09:04.641828+00:00\",\"context\":{\"id\":\"01KP2Y64W1X57GZR5AKVMG0J1T\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.red_sun" - }, - "recorded_at": "2026-04-13T08:09:05.449615+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "10" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00" - }, - "recorded_at": "2026-04-13T08:09:05.459790+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_entity_update_state.json b/cassettes/test_models/test_entity_update_state.json deleted file mode 100644 index 55797efd..00000000 --- a/cassettes/test_models/test_entity_update_state.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "143" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8b2b02a11a-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:04.536475+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:04.546618+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/states/sun.red_sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "336" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"beyond_our_solar_system\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:08:58.618002+00:00\",\"last_reported\":\"2026-04-13T08:08:58.618002+00:00\",\"last_updated\":\"2026-04-13T08:08:58.618002+00:00\",\"context\":{\"id\":\"01KP2Y5YZS5M77V83CMRSFA6BM\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.red_sun" - }, - "recorded_at": "2026-04-13T08:09:04.554936+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/states/sun.red_sun", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "220" - ], - "location": [ - "/api/states/sun.red_sun" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of your hand.\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:09:04.545843+00:00\",\"last_reported\":\"2026-04-13T08:09:04.545843+00:00\",\"last_updated\":\"2026-04-13T08:09:04.545843+00:00\",\"context\":{\"id\":\"01KP2Y64S1BE282QFA6FT259BR\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/states/sun.red_sun" - }, - "recorded_at": "2026-04-13T08:09:04.564404+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_fire_event.json b/cassettes/test_models/test_fire_event.json deleted file mode 100644 index b21902bd..00000000 --- a/cassettes/test_models/test_fire_event.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "143" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8d6e3a8f7a-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:04.891200+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:04.902773+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/events", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "248" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/events" - }, - "recorded_at": "2026-04-13T08:09:04.910818+00:00" - }, - { - "request": { - "method": "POST", - "uri": "https://ha.krkn.cc/api/events/core_config_updated", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "54" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"Event core_config_updated fired.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/events/core_config_updated" - }, - "recorded_at": "2026-04-13T08:09:04.919803+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_get_domain.json b/cassettes/test_models/test_get_domain.json deleted file mode 100644 index 29dcc4b1..00000000 --- a/cassettes/test_models/test_get_domain.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "144" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8e7fe6ff11-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:05.067974+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:05.080379+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/services", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:05 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "13774" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}},\"google_translate_say\":{\"name\":\"Say a TTS message with google_translate\",\"description\":\"Say something using text-to-speech on a media player with google_translate.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"cloud_say\":{\"name\":\"Say a TTS message with cloud\",\"description\":\"Say something using text-to-speech on a media player with cloud.\",\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":\"media_player\"}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":null}},\"cache\":{\"default\":false,\"selector\":{\"boolean\":null}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":null}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"cloud\",\"services\":{\"remote_connect\":{\"fields\":{}},\"remote_disconnect\":{\"fields\":{}}}},{\"domain\":\"anomaly\",\"services\":{\"reload\":{\"fields\":{},\"description\":\"Reload all anomaly entities.\"}}},{\"domain\":\"group\",\"services\":{\"reload\":{\"fields\":{}},\"set\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"name\":{\"example\":\"My test group\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"icon\":{\"example\":\"mdi:camera\",\"selector\":{\"icon\":{}}},\"entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"add_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"remove_entities\":{\"example\":\"domain.entity_id1, domain.entity_id2\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"all\":{\"selector\":{\"boolean\":{}}}}},\"remove\":{\"fields\":{\"object_id\":{\"required\":true,\"example\":\"test_group\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_temp\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"mired\",\"min\":153,\"max\":500}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"script\",\"services\":{\"lock_back_door\":{\"name\":\"Lock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_back_door\":{\"name\":\"Unlock Back Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_red\":{\"name\":\"Stair Chandelier Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_white\":{\"name\":\"Stair Chandelier White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_red\":{\"name\":\"Leksi Lamp Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_white\":{\"name\":\"Leksi Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"leksi_lamp_green\":{\"name\":\"Leksi Lamp Green\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_on\":{\"name\":\"Kitchen Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kitchen_lights_off\":{\"name\":\"Kitchen Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"stair_chandelier_off\":{\"name\":\"Stair Chandelier Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_white\":{\"name\":\"Master Bath Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_red\":{\"name\":\"Master Bath Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bath_lights_off\":{\"name\":\"Master Bath Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"lock_front_door\":{\"name\":\"Lock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"unlock_front_door\":{\"name\":\"Unlock Front Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_light_white\":{\"name\":\"Kids Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_white\":{\"name\":\"Living Room Lamps White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_red\":{\"name\":\"Living Room Lamps Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"living_room_lamps_off\":{\"name\":\"Living Room Lamps Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_red\":{\"name\":\"Desk Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_white\":{\"name\":\"Desk Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"desk_lights_off\":{\"name\":\"Desk Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_large_garage_door\":{\"name\":\"Toggle Large Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_christmas\":{\"name\":\"Porch Lights Christmas\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_light_white\":{\"name\":\"Porch Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_white\":{\"name\":\"Porch Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_off\":{\"name\":\"Porch Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"toggle_small_garage_door\":{\"name\":\"Toggle Small Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white\":{\"name\":\"Master Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_red\":{\"name\":\"Master Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_off\":{\"name\":\"Master Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_red\":{\"name\":\"Office Ceiling Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_white\":{\"name\":\"Office Ceiling Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_off\":{\"name\":\"Office Ceiling Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_red\":{\"name\":\"Office Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_white\":{\"name\":\"Office Lights White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lights_off\":{\"name\":\"Office Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"kids_room_lights_off\":{\"name\":\"Kids Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_fade_on\":{\"name\":\"Master Lights White Fade On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_lights_white_1pct\":{\"name\":\"Master Lights White 1%\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"notify_phones_about_garage_door\":{\"name\":\"Notify Phones About Garage Door\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_ceiling_lights_meeting\":{\"name\":\"Office Ceiling Lights Meeting\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"porch_lights_halloween\":{\"name\":\"Porch Lights Halloween\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_off\":{\"name\":\"Turn Off VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"vr_base_stations_on\":{\"name\":\"Turn On VR Base Stations\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_on\":{\"name\":\"Upstairs Hall Lights On\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"upstairs_hall_lights_off\":{\"name\":\"Upstairs Hall Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"master_bed_lights_red\":{\"name\":\"Master Bed Lights Red\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_off\":{\"name\":\"Dining Room Lights Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"dining_room_lights_on\":{\"name\":\"Dining Room Lights On White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"office_lamp_white\":{\"name\":\"Office Lamp White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_purple\":{\"name\":\"Mariah Room Light Purple\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_white\":{\"name\":\"Mariah Room Light White\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_morning_wake_up\":{\"name\":\"Mariah Room Light Morning Wake Up\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"mariah_room_light_off\":{\"name\":\"Mariah Room Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_day\":{\"name\":\"Downstairs Hallway Light Day\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_night\":{\"name\":\"Downstairs Hallway Light Night\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"downstairs_hallway_light_off\":{\"name\":\"Downstairs Hallway Light Off\",\"description\":\"\",\"fields\":{},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"overseerr\",\"services\":{\"get_requests\":{\"fields\":{\"config_entry_id\":{\"required\":true,\"selector\":{\"config_entry\":{\"integration\":\"overseerr\"}}},\"status\":{\"selector\":{\"select\":{\"options\":[\"approved\",\"pending\",\"available\",\"processing\",\"unavailable\",\"failed\"],\"translation_key\":\"request_status\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"sort_order\":{\"selector\":{\"select\":{\"options\":[\"added\",\"modified\"],\"translation_key\":\"request_sort_order\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"requested_by\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"step\":1.0}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"mqtt\",\"services\":{\"publish\":{\"fields\":{\"topic\":{\"required\":true,\"example\":\"/homeassistant/hello\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"payload\":{\"example\":\"The temperature is {{ states('sensor.temperature') }}\",\"selector\":{\"template\":{}}},\"evaluate_payload\":{\"advanced\":true,\"default\":false,\"selector\":{\"boolean\":{}}},\"qos\":{\"advanced\":true,\"default\":0,\"selector\":{\"select\":{\"options\":[\"0\",\"1\",\"2\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"retain\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"dump\":{\"fields\":{\"topic\":{\"example\":\"OpenZWave/#\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"duration\":{\"default\":5,\"selector\":{\"number\":{\"min\":1.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"reload\":{\"fields\":{}}}},{\"domain\":\"file\",\"services\":{\"read_file\":{\"fields\":{\"file_name\":{\"example\":\"www/my_file.json\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"file_encoding\":{\"example\":\"JSON\",\"selector\":{\"select\":{\"options\":[\"JSON\",\"YAML\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"zwave_js\",\"services\":{\"set_config_parameter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":\"Minimum brightness level\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"bitmask\":{\"advanced\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value_size\":{\"example\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":4.0,\"step\":1.0,\"mode\":\"slider\"}}},\"value_format\":{\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":3.0,\"step\":1.0,\"mode\":\"slider\"}}}}},\"bulk_set_partial_config_parameters\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"endpoint\":{\"example\":1,\"default\":0,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameter\":{\"example\":9,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"\\\"0x1\\\": 1\\n\\\"0x10\\\": 1\\n\\\"0x20\\\": 1\\n\\\"0x40\\\": 1\\n\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"refresh_value\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"- sensor.family_room_motion\\n- switch.kitchen\\n\",\"selector\":{\"entity\":{\"integration\":\"zwave_js\",\"multiple\":true,\"reorder\":false}}},\"refresh_all_values\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"wait_for_result\":{\"required\":false,\"selector\":{\"boolean\":{}}}}},\"multicast_set_value\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"broadcast\":{\"example\":true,\"required\":false,\"selector\":{\"boolean\":{}}},\"command_class\":{\"example\":117,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property\":{\"example\":\"currentValue\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"property_key\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"options\":{\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"value\":{\"example\":\"ffbb99\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}}},\"ping\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}}}},\"invoke_cc_api\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"command_class\":{\"example\":132,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"endpoint\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"method_name\":{\"example\":\"setInterval\",\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"parameters\":{\"example\":\"[1, 1]\",\"required\":true,\"selector\":{\"object\":{\"multiple\":false}}}},\"description_placeholders\":{\"api_docs_url\":\"https://zwave-js.github.io/node-zwave-js/#/api/CCs/index\"}},\"refresh_notifications\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"device\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\"}],\"multiple\":true,\"reorder\":false}}},\"notification_type\":{\"example\":1,\"required\":true,\"selector\":{\"number\":{\"min\":1.0,\"max\":22.0,\"mode\":\"box\",\"step\":1.0}}},\"notification_event\":{\"example\":1,\"required\":false,\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"mode\":\"box\",\"step\":1.0}}}}},\"set_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"usercode\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"clear_lock_usercode\":{\"fields\":{\"code_slot\":{\"required\":true,\"example\":1,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"set_lock_configuration\":{\"fields\":{\"operation_type\":{\"required\":true,\"example\":\"timed\",\"selector\":{\"select\":{\"options\":[\"constant\",\"timed\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"lock_timeout\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"auto_relock_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"hold_and_release_time\":{\"required\":false,\"example\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":65535.0,\"unit_of_measurement\":\"sec\",\"step\":1.0,\"mode\":\"slider\"}}},\"twist_assist\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}},\"block_to_block\":{\"required\":false,\"example\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"integration\":\"zwave_js\"}]}},\"reset_meter\":{\"fields\":{\"area_id\":{\"example\":\"living_room\",\"selector\":{\"area\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"device_id\":{\"example\":\"8f4219cfa57e23f6f669c4616c2205e2\",\"selector\":{\"device\":{\"entity\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true}}},\"entity_id\":{\"example\":\"sensor.living_room_temperature\",\"selector\":{\"entity\":{\"filter\":[{\"integration\":\"zwave_js\",\"domain\":[\"sensor\"]}],\"multiple\":true,\"reorder\":false}}},\"meter_type\":{\"example\":1,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"value\":{\"example\":5,\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"lifx\",\"services\":{\"effect_colorloop\":{\"fields\":{\"brightness\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_min\":{\"default\":80,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"saturation_max\":{\"default\":100,\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"transition\":{\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"period\":{\"default\":60,\"selector\":{\"number\":{\"min\":0.05,\"max\":3600.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"change\":{\"default\":20,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"spread\":{\"default\":30,\"selector\":{\"number\":{\"min\":0.0,\"max\":360.0,\"unit_of_measurement\":\"°\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_flame\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_morph\":{\"fields\":{\"speed\":{\"default\":3,\"selector\":{\"number\":{\"min\":1.0,\"max\":25.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"selector\":{\"select\":{\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_move\":{\"fields\":{\"speed\":{\"default\":3.0,\"example\":3.0,\"selector\":{\"number\":{\"min\":0.1,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"direction\":{\"default\":\"right\",\"example\":\"right\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"right\",\"left\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_pulse\":{\"fields\":{\"mode\":{\"selector\":{\"select\":{\"options\":[\"blink\",\"breathe\",\"ping\",\"strobe\",\"solid\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_pct\":{\"selector\":{\"number\":{\"min\":1.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"color_name\":{\"example\":\"red\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"rgb_color\":{\"example\":\"[255, 100, 100]\",\"selector\":{\"object\":{\"multiple\":false}}},\"period\":{\"default\":1.0,\"selector\":{\"number\":{\"min\":0.05,\"max\":60.0,\"step\":0.05,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"cycles\":{\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10000.0,\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_sky\":{\"fields\":{\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"speed\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":1.0,\"max\":86400.0,\"step\":1.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"sky_type\":{\"default\":\"Clouds\",\"example\":\"Clouds\",\"selector\":{\"select\":{\"options\":[\"Clouds\",\"Sunrise\",\"Sunset\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"cloud_saturation_min\":{\"default\":50,\"example\":50,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"cloud_saturation_max\":{\"default\":180,\"example\":180,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"palette\":{\"example\":[\"[200, 1, 1, 3500]\",\"[241, 1, 0.01, 3500]\",\"[189, 1, 0.08, 3500]\",\"[40, 1, 1, 3500]\",\"[40, 0.5, 1, 3500]\",\"[40, 0, 1, 6500]\"],\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"effect_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"paint_theme\":{\"fields\":{\"palette\":{\"example\":[\"[[0, 100, 100, 3500], [60, 100, 100, 3500]]\"],\"selector\":{\"object\":{\"multiple\":false}}},\"theme\":{\"example\":\"exciting\",\"default\":\"exciting\",\"selector\":{\"select\":{\"mode\":\"dropdown\",\"options\":[\"autumn\",\"blissful\",\"bias_lighting\",\"calaveras\",\"cheerful\",\"christmas\",\"dream\",\"energizing\",\"epic\",\"evening\",\"exciting\",\"fantasy\",\"focusing\",\"gentle\",\"halloween\",\"hanukkah\",\"holly\",\"hygge\",\"independence\",\"intense\",\"love\",\"kwanzaa\",\"mellow\",\"party\",\"peaceful\",\"powerful\",\"proud\",\"pumpkin\",\"relaxing\",\"romance\",\"santa\",\"serene\",\"shamrock\",\"soothing\",\"spacey\",\"sports\",\"spring\",\"stardust\",\"thanksgiving\",\"tranquil\",\"warming\",\"zombie\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power_on\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_state\":{\"fields\":{\"infrared\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"zones\":{\"example\":\"[0,5]\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"power\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}},\"set_hev_cycle_state\":{\"fields\":{\"power\":{\"required\":true,\"example\":true,\"selector\":{\"boolean\":{}}},\"duration\":{\"required\":false,\"default\":7200,\"example\":3600,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"lifx\",\"domain\":[\"light\"]}]}}}},{\"domain\":\"template\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"opensprinkler\",\"services\":{\"run\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"program\",\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_once\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":\"0: 60\",\"selector\":{\"object\":{\"multiple\":false}}},\"continue_running_stations\":{\"example\":false,\"selector\":{\"boolean\":{}}}}},\"run_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"program\"],\"reorder\":false,\"multiple\":false}}}}},\"run_station\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"station\"],\"reorder\":false,\"multiple\":false}}},\"run_seconds\":{\"example\":60,\"selector\":{\"number\":{\"min\":0.0,\"max\":64800.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\",\"station\"],\"reorder\":false,\"multiple\":false}}}}},\"set_water_level\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"water_level\":{\"example\":100,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"mode\":\"slider\",\"unit_of_measurement\":\"%\",\"step\":1.0}}}}},\"set_rain_delay\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"rain_delay\":{\"example\":24,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":32767.0,\"mode\":\"slider\",\"unit_of_measurement\":\"h\",\"step\":1.0}}}}},\"pause_stations\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}},\"pause_duration\":{\"example\":600,\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":86400.0,\"mode\":\"slider\",\"unit_of_measurement\":\"s\",\"step\":1.0}}}}},\"reboot\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"device_class\":[\"controller\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}},\"mobile_app_pixel_6\":{\"name\":\"Send a notification via mobile_app_pixel_6\",\"description\":\"Sends a notification message using the mobile_app_pixel_6 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_7\":{\"name\":\"Send a notification via mobile_app_pixel_7\",\"description\":\"Sends a notification message using the mobile_app_pixel_7 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_adam_pixel_watch_3\":{\"name\":\"Send a notification via mobile_app_adam_pixel_watch_3\",\"description\":\"Sends a notification message using the mobile_app_adam_pixel_watch_3 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"mobile_app_pixel_9\":{\"name\":\"Send a notification via mobile_app_pixel_9\",\"description\":\"Sends a notification message using the mobile_app_pixel_9 integration.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}},\"notify\":{\"name\":\"Send a notification with notify\",\"description\":\"Sends a notification message using the notify service.\",\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":null}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":null}},\"target\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":null}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"select\":{\"options\":[\"off\",\"auto\",\"cool\",\"dry\",\"fan_only\",\"heat_cool\",\"heat\"],\"translation_key\":\"hvac_mode\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"ecobee\",\"services\":{\"create_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"cool_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"heat_temp\":{\"required\":true,\"selector\":{\"number\":{\"min\":7.0,\"max\":95.0,\"step\":0.5,\"unit_of_measurement\":\"°\",\"mode\":\"slider\"}}},\"start_date\":{\"example\":\"2019-03-15\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"end_date\":{\"example\":\"2019-03-20\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"end_time\":{\"example\":\"20:00:00\",\"selector\":{\"time\":{}}},\"fan_mode\":{\"default\":\"auto\",\"selector\":{\"select\":{\"options\":[\"on\",\"auto\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"fan_min_on_time\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"delete_vacation\":{\"fields\":{\"entity_id\":{\"required\":true,\"example\":\"climate.kitchen\",\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"vacation_name\":{\"required\":true,\"example\":\"Skiing\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}}},\"set_fan_min_on_time\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"fan_min_on_time\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"unit_of_measurement\":\"minutes\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"resume_program\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ecobee\",\"domain\":[\"climate\"],\"reorder\":false,\"multiple\":false}}},\"resume_all\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"set_dst_mode\":{\"fields\":{\"dst_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_mic_mode\":{\"fields\":{\"mic_enabled\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_occupancy_modes\":{\"fields\":{\"auto_away\":{\"selector\":{\"boolean\":{}}},\"follow_me\":{\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}},\"set_sensors_used_in_climate\":{\"fields\":{\"preset_mode\":{\"example\":\"Home\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"device_ids\":{\"required\":true,\"selector\":{\"device\":{\"multiple\":true,\"integration\":\"ecobee\",\"entity\":[{\"domain\":[\"climate\"]},{\"domain\":[\"sensor\"]}]}}}},\"target\":{\"entity\":[{\"integration\":\"ecobee\",\"domain\":[\"climate\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"calendar\",\"services\":{\"create_event\":{\"fields\":{\"summary\":{\"required\":true,\"example\":\"Department Party\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"description\":{\"example\":\"Meeting to provide technical review for 'Phoenix' design.\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"start_date\":{\"example\":\"2022-03-22\",\"selector\":{\"date\":{}}},\"end_date\":{\"example\":\"2022-03-23\",\"selector\":{\"date\":{}}},\"in\":{\"example\":\"{\\\"days\\\": 2} or {\\\"weeks\\\": 2}\"},\"location\":{\"example\":\"Conference Room - F123, Bldg. 002\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"],\"supported_features\":[1]}]}},\"get_events\":{\"fields\":{\"start_date_time\":{\"example\":\"2022-03-22 20:00:00\",\"selector\":{\"datetime\":{}}},\"end_date_time\":{\"example\":\"2022-03-22 22:00:00\",\"selector\":{\"datetime\":{}}},\"duration\":{\"selector\":{\"duration\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"calendar\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"roku\",\"services\":{\"search\":{\"fields\":{\"keyword\":{\"required\":true,\"example\":\"Space Jam\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"integration\":\"roku\",\"domain\":[\"media_player\"]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"emporia_vue\",\"services\":{\"set_charger_current\":{\"fields\":{\"current\":{\"required\":true,\"example\":6,\"default\":6,\"selector\":{\"number\":{\"min\":6.0,\"max\":48.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"integration\":\"emporia_vue\",\"device_class\":[\"outlet\"]}]}}}},{\"domain\":\"dahua\",\"services\":{\"set_video_profile_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The profile: Day, Night\",\"example\":\"Day\",\"selector\":{\"select\":{\"options\":[\"Day\",\"Night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the video profile mode to day or night\",\"name\":\"Set Dahua Video Profile Mode To Day or Night\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_focus_zoom\":{\"fields\":{\"focus\":{\"name\":\"focus\",\"description\":\"Decimal Value for Focus\",\"example\":\"0.758333\",\"required\":true,\"default\":\"0.758333\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"zoom\":{\"name\":\"zoom\",\"description\":\"Decimal value for zoom\",\"example\":\"0.898502\",\"required\":true,\"default\":\"0.898502\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets the camera's focus and zoom\",\"name\":\"Set the Dahua Focus and Zoom\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_privacy_masking\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The mask index. 0 is the first mask\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the mask, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disabled the cameras privacy masking\",\"name\":\"Set the Dahua Privacy Masking\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_channel_title\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel title video overaly\",\"name\":\"Enable Channel Title Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_time_overlay\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel time video overaly\",\"name\":\"Enable Channel Time Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple text overlay groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel text video overaly\",\"name\":\"Enable Channel Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If the overlay is enabled or not\",\"example\":true,\"required\":true,\"default\":false,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables or disable the channel custom text video overaly\",\"name\":\"Enable Channel Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_all_ivs_rules\":{\"fields\":{\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true all IVS rules are enabled. If false, all are disabled\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disables all IVS rules based on the supplied 'enabled' param\",\"name\":\"Enable or Disable All IVS rules\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"enable_ivs_rule\":{\"fields\":{\"index\":{\"name\":\"Index\",\"description\":\"The rule index. 0 is a hidden rule, so usually the first rule is rule 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"enabled\":{\"name\":\"Enabled\",\"description\":\"If true enables the IVS rule, otherwise disables it\",\"example\":true,\"required\":true,\"default\":true,\"selector\":{\"boolean\":{}}}},\"description\":\"Enables of disable a single IVS rule based on the supplied 'enabled' param\",\"name\":\"Enable or Disable IVS rule\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_open_door\":{\"fields\":{\"door_id\":{\"name\":\"Door ID\",\"description\":\"The door ID. Default is 1\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}}},\"description\":\"Open a door via a VTO (Doorbell) for supported devices\",\"name\":\"Open a door via a VTO\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"vto_cancel_call\":{\"fields\":{},\"description\":\"Cancels a VTO call\",\"name\":\"Cancel VTO call\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_channel_title\":{\"fields\":{\"text1\":{\"name\":\"Text 1\",\"description\":\"The first title\",\"example\":\"Front Porch\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"The second title\",\"example\":\"House\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a title on the video\",\"name\":\"Sets Channel Title\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_text_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 1 should be used in most cases\",\"example\":1,\"required\":true,\"default\":1,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Text overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Text overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text3\":{\"name\":\"Text 3\",\"description\":\"Text overlay 3\",\"example\":\"Text 3\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text4\":{\"name\":\"Text 4\",\"description\":\"Text overlay 4\",\"example\":\"Text 4\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a text overlay on the video\",\"name\":\"Set text overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_custom_overlay\":{\"fields\":{\"group\":{\"name\":\"Group\",\"description\":\"Multiple custom text groups can exist. The default 0 should be used in most cases\",\"example\":0,\"required\":true,\"default\":0,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":0.0,\"max\":100.0,\"step\":1.0}}},\"text1\":{\"name\":\"Text 1\",\"description\":\"Custom overlay 1\",\"example\":\"Text 1\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}},\"text2\":{\"name\":\"Text 2\",\"description\":\"Custom overlay 2\",\"example\":\"Text 2\",\"required\":false,\"default\":\"\",\"selector\":{\"text\":{\"multiline\":false,\"multiple\":false}}}},\"description\":\"Sets a custom text overlay on the video\",\"name\":\"Set Custom Text Overlay\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_video_in_day_night_mode\":{\"fields\":{\"config_type\":{\"name\":\"Config Type\",\"description\":\"The config type: general, day, night\",\"example\":\"general\",\"default\":\"general\",\"selector\":{\"select\":{\"options\":[\"general\",\"day\",\"night\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, Color, BlackWhite. Note Auto is also known as Brightness by Dahua\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"Color\",\"BlackWhite\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Set the camera's Day/Night Mode. For example, Color, BlackWhite, or Auto\",\"name\":\"Set the Day or Night Color Mode\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"reboot\":{\"fields\":{},\"description\":\"Reboots the device\",\"name\":\"Reboots the device\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_record_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"description\":\"Sets the record mode (on/off or auto). On is always on recording. Off is always off. Auto based on motion settings, etc.\",\"name\":\"Set Record Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"set_infrared_mode\":{\"fields\":{\"mode\":{\"name\":\"Mode\",\"description\":\"The infrared mode: Auto, On, Off\",\"example\":\"Auto\",\"default\":\"Auto\",\"selector\":{\"select\":{\"options\":[\"Auto\",\"On\",\"Off\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"brightness\":{\"name\":\"Brightness\",\"description\":\"The infrared brightness, from 0 to 100 inclusive. 100 is the brightest\",\"example\":100,\"default\":100,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"step\":1.0,\"mode\":\"slider\"}}}},\"description\":\"Set the infrared light settings on a Dahua camera\",\"name\":\"Set Infrared Mode on Dahua Camera\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}},\"goto_preset_position\":{\"fields\":{\"position\":{\"name\":\"Position\",\"description\":\"Position number, from 1 to 10 inclusive.\",\"example\":1,\"default\":1,\"selector\":{\"number\":{\"min\":1.0,\"max\":10.0,\"mode\":\"box\",\"step\":1.0}}}},\"description\":\"Go to a position already preset\",\"name\":\"Go to a preset position\",\"target\":{\"entity\":[{\"integration\":\"dahua\",\"domain\":[\"camera\"]}]}}}}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/services" - }, - "recorded_at": "2026-04-13T08:09:05.095162+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/cassettes/test_models/test_get_event.json b/cassettes/test_models/test_get_event.json deleted file mode 100644 index fb8ecc6c..00000000 --- a/cassettes/test_models/test_get_event.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "nimax_version": "0.1.0", - "http_interactions": [ - { - "request": { - "method": "GET", - "uri": "http://e7.c.lencr.org/108.crl", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "Content-Type": [ - "application/pkix-crl" - ], - "Content-Length": [ - "58971" - ], - "Connection": [ - "keep-alive" - ], - "x-amz-id-2": [ - "OfjydEsdf9m7V+Tlpm+2gckE/Yz0yGKMxyK9XyklvJ2UaaMpSEOVi63rHO99EI4dI0KXiGVIM5Ggdxax/UKUqQ==" - ], - "x-amz-request-id": [ - "XKCCHX3VKFDK94GA" - ], - "Last-Modified": [ - "Mon, 13 Apr 2026 07:55:20 GMT" - ], - "etag": [ - "\"bb57d55af27d13aa7a56be8369622ab7\"" - ], - "x-amz-server-side-encryption": [ - "AES256" - ], - "x-amz-meta-crlnumber": [ - "1776066919003521495" - ], - "cache-control": [ - "stale-if-error=600" - ], - "expires": [ - "Mon, 13 Apr 2026 08:30:19 GMT" - ], - "x-amz-version-id": [ - "wIy0xsspoUmWf3OjX0FYOji9k9lpAPer" - ], - "Accept-Ranges": [ - "bytes" - ], - "Server": [ - "cloudflare" - ], - "Age": [ - "143" - ], - "cf-cache-status": [ - "HIT" - ], - "CF-RAY": [ - "9eb8fc8c5b75fef7-PDX" - ] - }, - "body": null, - "protocol": null, - "url": "http://e7.c.lencr.org/108.crl" - }, - "recorded_at": "2026-04-13T08:09:04.722399+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "34" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "{\"message\":\"API running.\"}" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/" - }, - "recorded_at": "2026-04-13T08:09:04.733399+00:00" - }, - { - "request": { - "method": "GET", - "uri": "https://ha.krkn.cc/api/events", - "headers": {}, - "body": null - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "server": [ - "nginx/1.28.2" - ], - "date": [ - "Mon, 13 Apr 2026 08:09:04 GMT" - ], - "content-type": [ - "application/json" - ], - "content-length": [ - "248" - ], - "referrer-policy": [ - "no-referrer" - ], - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" - ], - "content-encoding": [ - "deflate" - ] - }, - "body": { - "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":17},{\"event\":\"entity_registry_updated\",\"listener_count\":8},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":62},{\"event\":\"core_config_updated\",\"listener_count\":5},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"homeassistant_started\",\"listener_count\":2},{\"event\":\"device_registry_updated\",\"listener_count\":3},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"labs_updated\",\"listener_count\":7},{\"event\":\"component_loaded\",\"listener_count\":2},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":22},{\"event\":\"state_changed\",\"listener_count\":4},{\"event\":\"user_removed\",\"listener_count\":2},{\"event\":\"deconz_event\",\"listener_count\":1},{\"event\":\"service_removed\",\"listener_count\":1}]" - }, - "protocol": null, - "url": "https://ha.krkn.cc/api/events" - }, - "recorded_at": "2026-04-13T08:09:04.743341+00:00" - } - ], - "websocket_sessions": [] -} \ No newline at end of file diff --git a/compose.yml b/compose.yml index b8364f51..53d000eb 100644 --- a/compose.yml +++ b/compose.yml @@ -1,6 +1,6 @@ services: server: - image: "homeassistant/home-assistant:stable" + image: "ghcr.io/home-assistant/home-assistant:stable" ports: - "8123:8123" volumes: diff --git a/homeassistant_api/models/entity_registry.py b/homeassistant_api/models/entity_registry.py index 58c31db1..9f4ba692 100644 --- a/homeassistant_api/models/entity_registry.py +++ b/homeassistant_api/models/entity_registry.py @@ -4,6 +4,7 @@ from typing import Any from pydantic import Field +from pydantic import field_validator from .base import BaseModel from .base import DatetimeIsoField @@ -63,6 +64,12 @@ class EntityRegistryEntryExtended(EntityRegistryEntry): aliases: list[str] = Field(default_factory=list) capabilities: dict[str, Any] | None = None + + @field_validator("aliases", mode="before") + @classmethod + def _drop_none_aliases(cls, v: list) -> list: + return [a for a in v if a is not None] + device_class: str | None = None original_device_class: str | None = None original_icon: str | None = None diff --git a/pyproject.toml b/pyproject.toml index b2e5cc10..391b1a5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,8 +44,9 @@ dev = [ "nimax", ] -[tool.uv.sources] -nimax = { path = "/home/alogan/pprojects/nimax", editable = true } +[tool.nimax] +cassette_library_dir = "tests/cassettes" +match_on = ["method", "uri"] [tool.pytest.ini_options] asyncio_mode = "auto" diff --git a/cassettes/test_client/test_async_websocket_client_ping.json b/tests/cassettes/test_client/test_async_websocket_client_ping.json similarity index 71% rename from cassettes/test_client/test_async_websocket_client_ping.json rename to tests/cassettes/test_client/test_async_websocket_client_ping.json index eb887be8..cb78d71c 100644 --- a/cassettes/test_client/test_async_websocket_client_ping.json +++ b/tests/cassettes/test_client/test_async_websocket_client_ping.json @@ -1,53 +1,53 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:10:02.986248+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.337336+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"id\": 2, \"type\": \"ping\"}", - "offset_ms": 10 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"pong\"}", - "offset_ms": 15 + "offset_ms": 1 } ] } diff --git a/tests/cassettes/test_client/test_custom_async_session.json b/tests/cassettes/test_client/test_custom_async_session.json new file mode 100644 index 00000000..70588ea3 --- /dev/null +++ b/tests/cassettes/test_client/test_custom_async_session.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.320437+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_client/test_custom_session.json b/tests/cassettes/test_client/test_custom_session.json new file mode 100644 index 00000000..09fd3eda --- /dev/null +++ b/tests/cassettes/test_client/test_custom_session.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.308844+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_client/test_default_async_session.json b/tests/cassettes/test_client/test_default_async_session.json new file mode 100644 index 00000000..400e3606 --- /dev/null +++ b/tests/cassettes/test_client/test_default_async_session.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.324739+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_client/test_default_session.json b/tests/cassettes/test_client/test_default_session.json new file mode 100644 index 00000000..5c1d9f4c --- /dev/null +++ b/tests/cassettes/test_client/test_default_session.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.313718+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_client/test_websocket_client_ping.json b/tests/cassettes/test_client/test_websocket_client_ping.json similarity index 71% rename from cassettes/test_client/test_websocket_client_ping.json rename to tests/cassettes/test_client/test_websocket_client_ping.json index c4a6b88f..240c6be0 100644 --- a/cassettes/test_client/test_websocket_client_ping.json +++ b/tests/cassettes/test_client/test_websocket_client_ping.json @@ -1,53 +1,53 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:10:02.930742+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.329836+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"id\": 2, \"type\": \"ping\"}", - "offset_ms": 10 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"pong\"}", - "offset_ms": 15 + "offset_ms": 2 } ] } diff --git a/tests/cassettes/test_endpoints/test_async_check_api_config.json b/tests/cassettes/test_endpoints/test_async_check_api_config.json new file mode 100644 index 00000000..e1b97a4f --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_check_api_config.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.461795+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/config/core/check_config", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "56" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"result\":\"valid\",\"errors\":null,\"warnings\":null}" + }, + "protocol": null, + "url": "http://localhost:8123/api/config/core/check_config" + }, + "recorded_at": "2026-04-21T02:58:30.463945+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_delete_entry_subentry.json b/tests/cassettes/test_endpoints/test_async_delete_entry_subentry.json similarity index 73% rename from cassettes/test_endpoints/test_async_delete_entry_subentry.json rename to tests/cassettes/test_endpoints/test_async_delete_entry_subentry.json index a464006a..7fdb73c9 100644 --- a/cassettes/test_endpoints/test_async_delete_entry_subentry.json +++ b/tests/cassettes/test_endpoints/test_async_delete_entry_subentry.json @@ -1,53 +1,53 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:56.942003+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.753525+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"entry_id\": \"\", \"subentry_id\": \"\", \"id\": 2, \"type\": \"config_entries/subentries/delete\"}", - "offset_ms": 10 + "offset_ms": 2 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"not_found\",\"message\":\"Config entry not found\"}}", - "offset_ms": 16 + "offset_ms": 2 } ] } diff --git a/tests/cassettes/test_endpoints/test_async_disable_enable_config_entry.json b/tests/cassettes/test_endpoints/test_async_disable_enable_config_entry.json new file mode 100644 index 00000000..83ef605e --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_disable_enable_config_entry.json @@ -0,0 +1,103 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.687091+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 3 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"5f8426fa502435857743f302651753c9\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", + "offset_ms": 3 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 4 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 4, \"type\": \"config_entries/get\"}", + "offset_ms": 4 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"5f8426fa502435857743f302651753c9\", \"disabled_by\": null, \"id\": 5, \"type\": \"config_entries/disable\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 8 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 6, \"type\": \"config_entries/get\"}", + "offset_ms": 8 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":6,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 9 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_fire_event.json b/tests/cassettes/test_endpoints/test_async_fire_event.json new file mode 100644 index 00000000..6453fce7 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_fire_event.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.935184+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/events/my_new_event", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "47" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"Event my_new_event fired.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/events/my_new_event" + }, + "recorded_at": "2026-04-21T02:58:30.936388+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_components.json b/tests/cassettes/test_endpoints/test_async_get_components.json new file mode 100644 index 00000000..8938f04f --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_components.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.945087+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/components", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "622" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[\"climate\",\"lock\",\"fan\",\"update\",\"stt\",\"homeassistant.scene\",\"backup\",\"remote\",\"network\",\"system_health\",\"brands\",\"history\",\"labs\",\"date\",\"input_boolean\",\"http\",\"image_processing\",\"humidity\",\"sun.binary_sensor\",\"intent\",\"met.weather\",\"search\",\"sun.sensor\",\"conversation\",\"valve\",\"air_quality\",\"temperature\",\"button\",\"diagnostics\",\"notify\",\"switch\",\"humidifier\",\"device_automation\",\"weather\",\"application_credentials\",\"auth\",\"repairs\",\"timer\",\"onboarding\",\"datetime\",\"vacuum\",\"illuminance\",\"event\",\"gate\",\"ffmpeg\",\"radio_browser\",\"media_source\",\"frontend\",\"logbook\",\"power\",\"api\",\"hardware\",\"binary_sensor\",\"battery\",\"person\",\"siren\",\"cover\",\"number\",\"input_button\",\"sensor\",\"wake_word\",\"sun\",\"water_heater\",\"camera\",\"file_upload\",\"media_player\",\"assist_satellite\",\"lovelace\",\"door\",\"lawn_mower\",\"counter\",\"motion\",\"image_upload\",\"geo_location\",\"automation\",\"infrared\",\"zone\",\"select\",\"alarm_control_panel\",\"trace\",\"image\",\"web_rtc\",\"persistent_notification\",\"window\",\"input_text\",\"schedule\",\"garage_door\",\"input_datetime\",\"ai_task\",\"websocket_api\",\"recorder\",\"script\",\"input_select\",\"analytics\",\"occupancy\",\"device_tracker\",\"system_log\",\"input_number\",\"tts\",\"backup.sensor\",\"tag\",\"logger\",\"text\",\"backup.event\",\"time\",\"scene\",\"moisture\",\"assist_pipeline\",\"config\",\"blueprint\",\"light\",\"homeassistant\",\"met\"]" + }, + "protocol": null, + "url": "http://localhost:8123/api/components" + }, + "recorded_at": "2026-04-21T02:58:30.949470+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_config.json b/tests/cassettes/test_endpoints/test_async_get_config.json new file mode 100644 index 00000000..44d4bbdc --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_config.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.370002+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/config", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "984" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"allowlist_external_dirs\":[\"/media\",\"/config/www\"],\"allowlist_external_urls\":[],\"components\":[\"climate\",\"lock\",\"fan\",\"update\",\"stt\",\"homeassistant.scene\",\"backup\",\"remote\",\"network\",\"system_health\",\"brands\",\"history\",\"labs\",\"date\",\"input_boolean\",\"http\",\"image_processing\",\"humidity\",\"sun.binary_sensor\",\"intent\",\"met.weather\",\"search\",\"sun.sensor\",\"conversation\",\"valve\",\"air_quality\",\"temperature\",\"button\",\"diagnostics\",\"notify\",\"switch\",\"humidifier\",\"device_automation\",\"weather\",\"application_credentials\",\"auth\",\"repairs\",\"timer\",\"onboarding\",\"datetime\",\"vacuum\",\"illuminance\",\"event\",\"gate\",\"ffmpeg\",\"radio_browser\",\"media_source\",\"frontend\",\"logbook\",\"power\",\"api\",\"hardware\",\"binary_sensor\",\"battery\",\"person\",\"siren\",\"cover\",\"number\",\"input_button\",\"sensor\",\"wake_word\",\"sun\",\"water_heater\",\"camera\",\"file_upload\",\"media_player\",\"assist_satellite\",\"lovelace\",\"door\",\"lawn_mower\",\"counter\",\"motion\",\"image_upload\",\"geo_location\",\"automation\",\"infrared\",\"zone\",\"select\",\"alarm_control_panel\",\"trace\",\"image\",\"web_rtc\",\"persistent_notification\",\"window\",\"input_text\",\"schedule\",\"garage_door\",\"input_datetime\",\"ai_task\",\"websocket_api\",\"recorder\",\"script\",\"input_select\",\"analytics\",\"occupancy\",\"device_tracker\",\"system_log\",\"input_number\",\"tts\",\"backup.sensor\",\"tag\",\"logger\",\"text\",\"backup.event\",\"time\",\"scene\",\"moisture\",\"assist_pipeline\",\"config\",\"blueprint\",\"light\",\"homeassistant\",\"met\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":1000,\"external_url\":null,\"internal_url\":null,\"language\":\"en\",\"latitude\":52.3731339,\"location_name\":\"Testing Server\",\"longitude\":4.8903147,\"radius\":100,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Chicago\",\"unit_system\":{\"length\":\"km\",\"accumulated_precipitation\":\"mm\",\"area\":\"m²\",\"mass\":\"g\",\"pressure\":\"Pa\",\"temperature\":\"°C\",\"volume\":\"L\",\"wind_speed\":\"m/s\"},\"version\":\"2026.4.3\",\"whitelist_external_dirs\":[\"/media\",\"/config/www\"]}" + }, + "protocol": null, + "url": "http://localhost:8123/api/config" + }, + "recorded_at": "2026-04-21T02:58:30.371179+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_config_entries.json b/tests/cassettes/test_endpoints/test_async_get_config_entries.json new file mode 100644 index 00000000..6bb7e2f3 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_config_entries.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.725818+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_domain.json b/tests/cassettes/test_endpoints/test_async_get_domain.json new file mode 100644 index 00000000..4b92a4c1 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_domain.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.619011+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:30.621284+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_domains.json b/tests/cassettes/test_endpoints/test_async_get_domains.json new file mode 100644 index 00000000..38e96f20 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_domains.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.575192+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:30.577819+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_entities.json b/tests/cassettes/test_endpoints/test_async_get_entities.json new file mode 100644 index 00000000..7e0d3adb --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_entities.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.472791+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "2743" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/states" + }, + "recorded_at": "2026-04-21T02:58:30.474386+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_entity.json b/tests/cassettes/test_endpoints/test_async_get_entity.json new file mode 100644 index 00000000..77a72556 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_entity.json @@ -0,0 +1,95 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.410688+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "639" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.sun" + }, + "recorded_at": "2026-04-21T02:58:30.412140+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_entity_histories.json b/tests/cassettes/test_endpoints/test_async_get_entity_histories.json new file mode 100644 index 00000000..68030e59 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_entity_histories.json @@ -0,0 +1,141 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.427861+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "639" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.sun" + }, + "recorded_at": "2026-04-21T02:58:30.429011+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/history/period?filter_entity_id=sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "459" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-20T02:58:30.429513+00:00\",\"last_updated\":\"2026-04-20T02:58:30.429513+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:31.247873+00:00\",\"last_updated\":\"2026-04-21T01:51:31.247873+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:53.903872+00:00\",\"last_updated\":\"2026-04-21T01:51:53.903872+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:53.906573+00:00\",\"last_updated\":\"2026-04-21T01:51:53.906573+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:53.913278+00:00\",\"last_updated\":\"2026-04-21T01:51:53.913278+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:53.915127+00:00\",\"last_updated\":\"2026-04-21T01:51:53.915127+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:55.084844+00:00\",\"last_updated\":\"2026-04-21T01:51:55.084844+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:55.094790+00:00\",\"last_updated\":\"2026-04-21T01:51:55.094790+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:55.110192+00:00\",\"last_updated\":\"2026-04-21T01:51:55.110192+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:55.112527+00:00\",\"last_updated\":\"2026-04-21T01:51:55.112527+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:48:31.001566+00:00\",\"last_updated\":\"2026-04-21T02:48:31.001566+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:48:31.004039+00:00\",\"last_updated\":\"2026-04-21T02:48:31.004039+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:48:31.013509+00:00\",\"last_updated\":\"2026-04-21T02:48:31.013509+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:48:31.016501+00:00\",\"last_updated\":\"2026-04-21T02:48:31.016501+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:04.542192+00:00\",\"last_updated\":\"2026-04-21T02:55:04.542192+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:04.557678+00:00\",\"last_updated\":\"2026-04-21T02:55:04.557678+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:04.565397+00:00\",\"last_updated\":\"2026-04-21T02:55:04.565397+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:04.568086+00:00\",\"last_updated\":\"2026-04-21T02:55:04.568086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:06.194407+00:00\",\"last_updated\":\"2026-04-21T02:55:06.194407+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.196543+00:00\",\"last_updated\":\"2026-04-21T02:55:06.196543+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:06.204598+00:00\",\"last_updated\":\"2026-04-21T02:55:06.204598+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_updated\":\"2026-04-21T02:55:06.207470+00:00\"}]]" + }, + "protocol": null, + "url": "http://localhost:8123/api/history/period?filter_entity_id=sun.sun" + }, + "recorded_at": "2026-04-21T02:58:30.430853+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_entry_subentries.json b/tests/cassettes/test_endpoints/test_async_get_entry_subentries.json new file mode 100644 index 00000000..066c9c13 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_entry_subentries.json @@ -0,0 +1,67 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.737496+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"5f8426fa502435857743f302651753c9\", \"id\": 3, \"type\": \"config_entries/subentries/list\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":[]}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_error_log.json b/tests/cassettes/test_endpoints/test_async_get_error_log.json new file mode 100644 index 00000000..f5dc9ff1 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_error_log.json @@ -0,0 +1,107 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.358691+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/error_log", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/octet-stream" + ], + "Etag": [ + "\"18a83fe60ff127fe-11c24\"" + ], + "Last-Modified": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ], + "Accept-Ranges": [ + "bytes" + ], + "Content-Encoding": [ + "deflate" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "2026-04-21 01:51:30.282 INFO (MainThread) [homeassistant.setup] Setting up http\n2026-04-21 01:51:30.306 INFO (MainThread) [homeassistant.setup] Setup of domain system_log took 0.03 seconds\n2026-04-21 01:51:30.307 INFO (MainThread) [homeassistant.setup] Setup of domain logger took 0.03 seconds\n2026-04-21 01:51:30.307 INFO (MainThread) [homeassistant.setup] Setup of domain http took 0.02 seconds\n2026-04-21 01:51:30.307 INFO (MainThread) [homeassistant.setup] Setting up websocket_api\n2026-04-21 01:51:30.307 INFO (MainThread) [homeassistant.setup] Setup of domain websocket_api took 0.00 seconds\n2026-04-21 01:51:30.307 INFO (MainThread) [homeassistant.setup] Setting up network\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setup of domain network took 0.00 seconds\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.bootstrap] Setting up stage labs: {'labs'}; already set up: {}\nDependencies: {}; already set up: {}\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setting up labs\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setup of domain labs took 0.00 seconds\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.bootstrap] Setting up stage frontend: {'frontend'}; already set up: {}\nDependencies: {'search', 'api', 'device_automation', 'diagnostics', 'config', 'lovelace', 'auth', 'repairs', 'file_upload', 'onboarding'}; already set up: {'system_log', 'websocket_api', 'http'}\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setting up search\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setup of domain search took 0.00 seconds\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setting up api\n2026-04-21 01:51:30.309 INFO (MainThread) [homeassistant.setup] Setup of domain api took 0.00 seconds\n2026-04-21 01:51:30.309 INFO (MainThread) [homeassistant.setup] Setting up auth\n2026-04-21 01:51:30.309 INFO (MainThread) [homeassistant.setup] Setup of domain auth took 0.00 seconds\n2026-04-21 01:51:30.309 INFO (MainThread) [homeassistant.setup] Setting up config\n2026-04-21 01:51:30.310 INFO (MainThread) [homeassistant.setup] Setup of domain config took 0.00 seconds\n2026-04-21 01:51:30.310 INFO (MainThread) [homeassistant.setup] Setting up device_automation\n2026-04-21 01:51:30.310 INFO (MainThread) [homeassistant.setup] Setup of domain device_automation took 0.00 seconds\n2026-04-21 01:51:30.310 INFO (MainThread) [homeassistant.setup] Setting up diagnostics\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setup of domain diagnostics took 0.00 seconds\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setting up file_upload\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setup of domain file_upload took 0.00 seconds\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setting up onboarding\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setup of domain onboarding took 0.00 seconds\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setting up lovelace\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setup of domain lovelace took 0.00 seconds\n2026-04-21 01:51:30.312 INFO (MainThread) [homeassistant.setup] Setting up repairs\n2026-04-21 01:51:30.312 INFO (MainThread) [homeassistant.setup] Setup of domain repairs took 0.00 seconds\n2026-04-21 01:51:30.312 INFO (MainThread) [homeassistant.setup] Setting up frontend\n2026-04-21 01:51:30.315 INFO (MainThread) [homeassistant.setup] Setup of domain frontend took 0.00 seconds\n2026-04-21 01:51:30.316 INFO (MainThread) [homeassistant.bootstrap] Setting up stage recorder: {'recorder'}; already set up: {}\nDependencies: {}; already set up: {}\n2026-04-21 01:51:30.316 INFO (MainThread) [homeassistant.setup] Setting up recorder\n2026-04-21 01:51:30.317 INFO (MainThread) [homeassistant.components.http] Now listening on port 8123\n2026-04-21 01:51:30.317 INFO (MainThread) [homeassistant.setup] Setup of domain http took 0.00 seconds\n2026-04-21 01:51:30.318 WARNING (Recorder) [homeassistant.components.recorder.util] The system could not validate that the sqlite3 database at //config/home-assistant_v2.db was shutdown cleanly\n2026-04-21 01:51:30.343 INFO (MainThread) [homeassistant.setup] Setup of domain recorder took 0.03 seconds\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.bootstrap] Nothing to set up in stage debugger: {'debugpy'}\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.bootstrap] Nothing to set up in stage zeroconf: {'zeroconf'}\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.bootstrap] Nothing to set up in stage 1: {'usb', 'dhcp', 'hassio', 'cloud', 'ssdp', 'mqtt_eventstream', 'bluetooth'}\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.bootstrap] Setting up stage 2: {'climate', 'media_player', 'lock', 'fan', 'update', 'assist_satellite', 'stt', 'door', 'lawn_mower', 'counter', 'backup', 'remote', 'motion', 'system_health', 'brands', 'history', 'date', 'geo_location', 'input_boolean', 'automation', 'infrared', 'zone', 'select', 'image_processing', 'trace', 'humidity', 'alarm_control_panel', 'image', 'window', 'input_text', 'schedule', 'conversation', 'air_quality', 'valve', 'temperature', 'garage_door', 'button', 'notify', 'switch', 'humidifier', 'input_datetime', 'ai_task', 'script', 'input_select', 'weather', 'application_credentials', 'timer', 'analytics', 'occupancy', 'datetime', 'vacuum', 'illuminance', 'event', 'gate', 'device_tracker', 'radio_browser', 'input_number', 'logbook', 'power', 'hardware', 'binary_sensor', 'battery', 'tts', 'tag', 'person', 'siren', 'cover', 'number', 'text', 'time', 'scene', 'input_button', 'moisture', 'sensor', 'sun', 'wake_word', 'water_heater', 'light', 'camera', 'met'}; already set up: {'frontend', 'network', 'api', 'labs', 'logger', 'http'}\nDependencies: {'media_source', 'assist_pipeline', 'web_rtc', 'image_upload', 'blueprint', 'intent', 'ffmpeg'}; already set up: {'system_log', 'search', 'frontend', 'api', 'websocket_api', 'recorder', 'device_automation', 'lovelace', 'diagnostics', 'config', 'auth', 'repairs', 'file_upload', 'http', 'onboarding'}\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.setup] Setting up climate\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.setup] Setup of domain climate took 0.00 seconds\n2026-04-21 01:51:30.345 INFO (MainThread) [homeassistant.setup] Setting up media_player\n2026-04-21 01:51:30.346 INFO (MainThread) [homeassistant.setup] Setup of domain media_player took 0.00 seconds\n2026-04-21 01:51:30.346 INFO (MainThread) [homeassistant.setup] Setting up lock\n2026-04-21 01:51:30.346 INFO (MainThread) [homeassistant.setup] Setup of domain lock took 0.00 seconds\n2026-04-21 01:51:30.346 INFO (MainThread) [homeassistant.setup] Setting up fan\n2026-04-21 01:51:30.347 INFO (MainThread) [homeassistant.setup] Setup of domain fan took 0.00 seconds\n2026-04-21 01:51:30.347 INFO (MainThread) [homeassistant.setup] Setting up alarm_control_panel\n2026-04-21 01:51:30.347 INFO (MainThread) [homeassistant.setup] Setup of domain alarm_control_panel took 0.00 seconds\n2026-04-21 01:51:30.347 INFO (MainThread) [homeassistant.setup] Setting up valve\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setup of domain valve took 0.00 seconds\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setting up button\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setup of domain button took 0.00 seconds\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setting up notify\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setup of domain notify took 0.00 seconds\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setting up switch\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setup of domain switch took 0.00 seconds\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setting up vacuum\n2026-04-21 01:51:30.349 INFO (MainThread) [homeassistant.setup] Setup of domain vacuum took 0.00 seconds\n2026-04-21 01:51:30.349 INFO (MainThread) [homeassistant.setup] Setting up event\n2026-04-21 01:51:30.349 INFO (MainThread) [homeassistant.setup] Setup of domain event took 0.00 seconds\n2026-04-21 01:51:30.349 INFO (MainThread) [homeassistant.setup] Setting up zone\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setup of domain zone took 0.00 seconds\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setting up device_tracker\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setup of domain device_tracker took 0.00 seconds\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setting up binary_sensor\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setup of domain binary_sensor took 0.00 seconds\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setting up cover\n2026-04-21 01:51:30.351 INFO (MainThread) [homeassistant.setup] Setup of domain cover took 0.00 seconds\n2026-04-21 01:51:30.351 INFO (MainThread) [homeassistant.setup] Setting up number\n2026-04-21 01:51:30.351 INFO (MainThread) [homeassistant.setup] Setup of domain number took 0.00 seconds\n2026-04-21 01:51:30.351 INFO (MainThread) [homeassistant.setup] Setting up scene\n2026-04-21 01:51:30.351 INFO (MainThread) [homeassistant.components.scene] Setting up homeassistant.scene\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setup of domain scene took 0.00 seconds\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setting up sensor\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setup of domain sensor took 0.00 seconds\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setting up water_heater\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setup of domain water_heater took 0.00 seconds\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setting up light\n2026-04-21 01:51:30.353 INFO (MainThread) [homeassistant.setup] Setup of domain light took 0.00 seconds\n2026-04-21 01:51:30.354 INFO (MainThread) [homeassistant.setup] Setting up backup\n2026-04-21 01:51:30.354 INFO (MainThread) [homeassistant.setup] Setting up system_health\n2026-04-21 01:51:30.354 INFO (MainThread) [homeassistant.setup] Setup of domain system_health took 0.00 seconds\n2026-04-21 01:51:30.354 INFO (MainThread) [homeassistant.setup] Setting up image_upload\n2026-04-21 01:51:30.355 INFO (MainThread) [homeassistant.setup] Setup of domain image_upload took 0.00 seconds\n2026-04-21 01:51:30.355 INFO (MainThread) [homeassistant.setup] Setting up history\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setup of domain history took 0.00 seconds\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setting up blueprint\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setup of domain blueprint took 0.00 seconds\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setting up trace\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setup of domain trace took 0.00 seconds\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setting up automation\n2026-04-21 01:51:30.357 INFO (MainThread) [homeassistant.setup] Setup of domain automation took 0.00 seconds\n2026-04-21 01:51:30.357 INFO (MainThread) [homeassistant.setup] Setting up script\n2026-04-21 01:51:30.358 INFO (MainThread) [homeassistant.setup] Setup of domain script took 0.00 seconds\n2026-04-21 01:51:30.358 INFO (MainThread) [homeassistant.setup] Setting up input_number\n2026-04-21 01:51:30.359 INFO (MainThread) [homeassistant.setup] Setup of domain input_number took 0.00 seconds\n2026-04-21 01:51:30.359 INFO (MainThread) [homeassistant.setup] Setting up logbook\n2026-04-21 01:51:30.361 INFO (MainThread) [homeassistant.setup] Setup of domain logbook took 0.00 seconds\n2026-04-21 01:51:30.361 INFO (MainThread) [homeassistant.setup] Setting up person\n2026-04-21 01:51:30.363 INFO (MainThread) [homeassistant.setup] Setup of domain person took 0.00 seconds\n2026-04-21 01:51:30.365 INFO (MainThread) [homeassistant.setup] Setup of domain backup took 0.01 seconds\n2026-04-21 01:51:30.372 INFO (MainThread) [homeassistant.setup] Setting up update\n2026-04-21 01:51:30.373 INFO (MainThread) [homeassistant.setup] Setup of domain update took 0.00 seconds\n2026-04-21 01:51:30.384 INFO (MainThread) [homeassistant.setup] Setting up intent\n2026-04-21 01:51:30.384 INFO (MainThread) [homeassistant.setup] Setup of domain intent took 0.00 seconds\n2026-04-21 01:51:30.388 INFO (MainThread) [homeassistant.setup] Setting up stt\n2026-04-21 01:51:30.388 INFO (MainThread) [homeassistant.setup] Setup of domain stt took 0.00 seconds\n2026-04-21 01:51:30.392 INFO (MainThread) [homeassistant.setup] Setting up ffmpeg\n2026-04-21 01:51:30.392 INFO (MainThread) [homeassistant.setup] Setup of domain ffmpeg took 0.00 seconds\n2026-04-21 01:51:30.393 INFO (MainThread) [homeassistant.setup] Setting up wake_word\n2026-04-21 01:51:30.393 INFO (MainThread) [homeassistant.setup] Setup of domain wake_word took 0.00 seconds\n2026-04-21 01:51:30.395 INFO (MainThread) [homeassistant.setup] Setting up lawn_mower\n2026-04-21 01:51:30.395 INFO (MainThread) [homeassistant.setup] Setup of domain lawn_mower took 0.00 seconds\n2026-04-21 01:51:30.397 INFO (MainThread) [homeassistant.setup] Setting up remote\n2026-04-21 01:51:30.397 INFO (MainThread) [homeassistant.setup] Setup of domain remote took 0.00 seconds\n2026-04-21 01:51:30.399 INFO (MainThread) [homeassistant.setup] Setting up date\n2026-04-21 01:51:30.399 INFO (MainThread) [homeassistant.setup] Setup of domain date took 0.00 seconds\n2026-04-21 01:51:30.400 INFO (MainThread) [homeassistant.setup] Setting up geo_location\n2026-04-21 01:51:30.400 INFO (MainThread) [homeassistant.setup] Setup of domain geo_location took 0.00 seconds\n2026-04-21 01:51:30.403 INFO (MainThread) [homeassistant.setup] Setting up infrared\n2026-04-21 01:51:30.403 INFO (MainThread) [homeassistant.setup] Setup of domain infrared took 0.00 seconds\n2026-04-21 01:51:30.405 INFO (MainThread) [homeassistant.setup] Setting up select\n2026-04-21 01:51:30.405 INFO (MainThread) [homeassistant.setup] Setup of domain select took 0.00 seconds\n2026-04-21 01:51:30.406 INFO (MainThread) [homeassistant.setup] Setting up web_rtc\n2026-04-21 01:51:30.406 INFO (MainThread) [homeassistant.setup] Setup of domain web_rtc took 0.00 seconds\n2026-04-21 01:51:30.541 WARNING (ImportExecutor_0) [py.warnings] /usr/local/lib/python3.14/site-packages/rich/segment.py:547: SyntaxWarning: 'return' in a 'finally' block\n return\n\n2026-04-21 01:51:30.710 INFO (MainThread) [homeassistant.setup] Setting up image\n2026-04-21 01:51:30.711 INFO (MainThread) [homeassistant.setup] Setup of domain image took 0.00 seconds\n2026-04-21 01:51:30.714 INFO (MainThread) [homeassistant.setup] Setting up air_quality\n2026-04-21 01:51:30.714 INFO (MainThread) [homeassistant.setup] Setup of domain air_quality took 0.00 seconds\n2026-04-21 01:51:30.718 INFO (MainThread) [homeassistant.setup] Setting up humidifier\n2026-04-21 01:51:30.718 INFO (MainThread) [homeassistant.setup] Setup of domain humidifier took 0.00 seconds\n2026-04-21 01:51:30.718 INFO (MainThread) [homeassistant.setup] Setting up media_source\n2026-04-21 01:51:30.719 INFO (MainThread) [homeassistant.setup] Setup of domain media_source took 0.00 seconds\n2026-04-21 01:51:30.721 INFO (MainThread) [homeassistant.setup] Setting up weather\n2026-04-21 01:51:30.722 INFO (MainThread) [homeassistant.setup] Setup of domain weather took 0.00 seconds\n2026-04-21 01:51:30.723 INFO (MainThread) [homeassistant.setup] Setting up datetime\n2026-04-21 01:51:30.723 INFO (MainThread) [homeassistant.setup] Setup of domain datetime took 0.00 seconds\n2026-04-21 01:51:30.726 INFO (MainThread) [homeassistant.setup] Setting up siren\n2026-04-21 01:51:30.726 INFO (MainThread) [homeassistant.setup] Setup of domain siren took 0.00 seconds\n2026-04-21 01:51:30.729 INFO (MainThread) [homeassistant.setup] Setting up text\n2026-04-21 01:51:30.729 INFO (MainThread) [homeassistant.setup] Setup of domain text took 0.00 seconds\n2026-04-21 01:51:30.730 INFO (MainThread) [homeassistant.setup] Setting up time\n2026-04-21 01:51:30.731 INFO (MainThread) [homeassistant.setup] Setup of domain time took 0.00 seconds\n2026-04-21 01:51:30.733 INFO (MainThread) [homeassistant.setup] Setting up door\n2026-04-21 01:51:30.733 INFO (MainThread) [homeassistant.setup] Setup of domain door took 0.00 seconds\n2026-04-21 01:51:30.734 INFO (MainThread) [homeassistant.setup] Setting up counter\n2026-04-21 01:51:30.735 INFO (MainThread) [homeassistant.setup] Setup of domain counter took 0.00 seconds\n2026-04-21 01:51:30.736 INFO (MainThread) [homeassistant.setup] Setting up motion\n2026-04-21 01:51:30.736 INFO (MainThread) [homeassistant.setup] Setup of domain motion took 0.00 seconds\n2026-04-21 01:51:30.737 INFO (MainThread) [homeassistant.setup] Setting up brands\n2026-04-21 01:51:30.738 INFO (MainThread) [homeassistant.setup] Setup of domain brands took 0.00 seconds\n2026-04-21 01:51:30.738 INFO (MainThread) [homeassistant.setup] Setting up input_boolean\n2026-04-21 01:51:30.738 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test\n2026-04-21 01:51:30.739 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async\n2026-04-21 01:51:30.739 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_2\n2026-04-21 01:51:30.739 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_2\n2026-04-21 01:51:30.739 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_3\n2026-04-21 01:51:30.740 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_3\n2026-04-21 01:51:30.740 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_4\n2026-04-21 01:51:30.740 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_4\n2026-04-21 01:51:30.740 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_5\n2026-04-21 01:51:30.741 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_5\n2026-04-21 01:51:30.741 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_6\n2026-04-21 01:51:30.741 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_6\n2026-04-21 01:51:30.741 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_7\n2026-04-21 01:51:30.742 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_7\n2026-04-21 01:51:30.742 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_8\n2026-04-21 01:51:30.742 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_8\n2026-04-21 01:51:30.742 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_9\n2026-04-21 01:51:30.744 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_9\n2026-04-21 01:51:30.744 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_10\n2026-04-21 01:51:30.744 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_10\n2026-04-21 01:51:30.745 INFO (MainThread) [homeassistant.setup] Setup of domain input_boolean took 0.01 seconds\n2026-04-21 01:51:30.746 INFO (MainThread) [homeassistant.setup] Setting up humidity\n2026-04-21 01:51:30.746 INFO (MainThread) [homeassistant.setup] Setup of domain humidity took 0.00 seconds\n2026-04-21 01:51:30.747 INFO (MainThread) [homeassistant.setup] Setting up window\n2026-04-21 01:51:30.747 INFO (MainThread) [homeassistant.setup] Setup of domain window took 0.00 seconds\n2026-04-21 01:51:30.747 INFO (MainThread) [homeassistant.setup] Setting up input_text\n2026-04-21 01:51:30.748 INFO (MainThread) [homeassistant.setup] Setup of domain input_text took 0.00 seconds\n2026-04-21 01:51:30.751 INFO (MainThread) [homeassistant.setup] Setting up schedule\n2026-04-21 01:51:30.752 INFO (MainThread) [homeassistant.setup] Setup of domain schedule took 0.00 seconds\n2026-04-21 01:51:30.754 INFO (MainThread) [homeassistant.setup] Setting up temperature\n2026-04-21 01:51:30.754 INFO (MainThread) [homeassistant.setup] Setup of domain temperature took 0.00 seconds\n2026-04-21 01:51:30.755 INFO (MainThread) [homeassistant.setup] Setting up garage_door\n2026-04-21 01:51:30.755 INFO (MainThread) [homeassistant.setup] Setup of domain garage_door took 0.00 seconds\n2026-04-21 01:51:30.756 INFO (MainThread) [homeassistant.setup] Setting up input_datetime\n2026-04-21 01:51:30.757 INFO (MainThread) [homeassistant.setup] Setup of domain input_datetime took 0.00 seconds\n2026-04-21 01:51:30.757 INFO (MainThread) [homeassistant.setup] Setting up input_select\n2026-04-21 01:51:30.758 INFO (MainThread) [homeassistant.setup] Setup of domain input_select took 0.00 seconds\n2026-04-21 01:51:30.760 INFO (MainThread) [homeassistant.setup] Setting up application_credentials\n2026-04-21 01:51:30.760 INFO (MainThread) [homeassistant.setup] Setup of domain application_credentials took 0.00 seconds\n2026-04-21 01:51:30.761 INFO (MainThread) [homeassistant.setup] Setting up timer\n2026-04-21 01:51:30.762 INFO (MainThread) [homeassistant.setup] Setup of domain timer took 0.00 seconds\n2026-04-21 01:51:31.150 INFO (MainThread) [homeassistant.setup] Setting up analytics\n2026-04-21 01:51:31.152 INFO (MainThread) [homeassistant.setup] Setup of domain analytics took 0.00 seconds\n2026-04-21 01:51:31.152 INFO (MainThread) [homeassistant.setup] Setting up occupancy\n2026-04-21 01:51:31.152 INFO (MainThread) [homeassistant.setup] Setup of domain occupancy took 0.00 seconds\n2026-04-21 01:51:31.153 INFO (MainThread) [homeassistant.setup] Setting up illuminance\n2026-04-21 01:51:31.153 INFO (MainThread) [homeassistant.setup] Setup of domain illuminance took 0.00 seconds\n2026-04-21 01:51:31.154 INFO (MainThread) [homeassistant.setup] Setting up gate\n2026-04-21 01:51:31.154 INFO (MainThread) [homeassistant.setup] Setup of domain gate took 0.00 seconds\n2026-04-21 01:51:31.205 INFO (MainThread) [homeassistant.setup] Setting up radio_browser\n2026-04-21 01:51:31.205 INFO (MainThread) [homeassistant.setup] Setup of domain radio_browser took 0.00 seconds\n2026-04-21 01:51:31.207 INFO (MainThread) [homeassistant.setup] Setting up power\n2026-04-21 01:51:31.207 INFO (MainThread) [homeassistant.setup] Setup of domain power took 0.00 seconds\n2026-04-21 01:51:31.210 INFO (MainThread) [homeassistant.setup] Setting up hardware\n2026-04-21 01:51:31.220 INFO (MainThread) [homeassistant.setup] Setting up battery\n2026-04-21 01:51:31.220 INFO (MainThread) [homeassistant.setup] Setup of domain battery took 0.00 seconds\n2026-04-21 01:51:31.230 INFO (MainThread) [homeassistant.setup] Setting up tag\n2026-04-21 01:51:31.230 INFO (MainThread) [homeassistant.setup] Setup of domain tag took 0.00 seconds\n2026-04-21 01:51:31.230 INFO (MainThread) [homeassistant.setup] Setting up input_button\n2026-04-21 01:51:31.230 INFO (MainThread) [homeassistant.setup] Setup of domain input_button took 0.00 seconds\n2026-04-21 01:51:31.244 INFO (MainThread) [homeassistant.setup] Setting up moisture\n2026-04-21 01:51:31.244 INFO (MainThread) [homeassistant.setup] Setup of domain moisture took 0.00 seconds\n2026-04-21 01:51:31.247 INFO (MainThread) [homeassistant.setup] Setting up sun\n2026-04-21 01:51:31.247 INFO (MainThread) [homeassistant.setup] Setup of domain sun took 0.00 seconds\n2026-04-21 01:51:31.248 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 01:51:31.248 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new binary_sensor.sun entity: binary_sensor.sun_solar_rising\n2026-04-21 01:51:31.248 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 01:51:31.250 INFO (MainThread) [homeassistant.setup] Setup of domain hardware took 0.04 seconds\n2026-04-21 01:51:31.257 INFO (MainThread) [homeassistant.setup] Setting up met\n2026-04-21 01:51:31.257 INFO (MainThread) [homeassistant.setup] Setup of domain met took 0.00 seconds\n2026-04-21 01:51:31.333 INFO (MainThread) [homeassistant.setup] Setting up conversation\n2026-04-21 01:51:31.333 INFO (MainThread) [homeassistant.setup] Setup of domain conversation took 0.00 seconds\n2026-04-21 01:51:31.387 INFO (MainThread) [homeassistant.setup] Setting up tts\n2026-04-21 01:51:31.388 INFO (SyncWorker_2) [homeassistant.components.tts] Create cache dir /config/tts\n2026-04-21 01:51:31.391 INFO (MainThread) [homeassistant.setup] Setup of domain tts took 0.00 seconds\n2026-04-21 01:51:31.589 INFO (MainThread) [homeassistant.setup] Setting up camera\n2026-04-21 01:51:31.591 INFO (MainThread) [homeassistant.setup] Setup of domain camera took 0.00 seconds\n2026-04-21 01:51:31.602 INFO (MainThread) [homeassistant.setup] Setting up assist_pipeline\n2026-04-21 01:51:31.603 INFO (MainThread) [homeassistant.setup] Setup of domain assist_pipeline took 0.00 seconds\n2026-04-21 01:51:31.606 INFO (MainThread) [homeassistant.setup] Setting up ai_task\n2026-04-21 01:51:31.606 INFO (MainThread) [homeassistant.setup] Setup of domain ai_task took 0.00 seconds\n2026-04-21 01:51:31.609 INFO (MainThread) [homeassistant.setup] Setting up image_processing\n2026-04-21 01:51:31.609 INFO (MainThread) [homeassistant.setup] Setup of domain image_processing took 0.00 seconds\n2026-04-21 01:51:31.613 INFO (MainThread) [homeassistant.setup] Setting up assist_satellite\n2026-04-21 01:51:31.614 INFO (MainThread) [homeassistant.setup] Setup of domain assist_satellite took 0.00 seconds\n2026-04-21 01:51:31.840 INFO (MainThread) [homeassistant.components.weather] Setting up met.weather\n2026-04-21 01:51:31.843 INFO (MainThread) [homeassistant.bootstrap] Home Assistant initialized in 1.66s\n2026-04-21 01:51:31.843 INFO (MainThread) [homeassistant.core] Starting Home Assistant 2026.4.3\n2026-04-21 01:51:31.854 INFO (MainThread) [homeassistant.components.event] Setting up backup.event\n2026-04-21 01:51:31.855 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new event.backup entity: event.backup_automatic_backup\n2026-04-21 01:51:31.855 INFO (MainThread) [homeassistant.components.sensor] Setting up backup.sensor\n2026-04-21 01:51:31.855 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new sensor.backup entity: sensor.backup_backup_manager_state\n2026-04-21 01:51:31.855 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new sensor.backup entity: sensor.backup_next_scheduled_automatic_backup\n2026-04-21 01:51:31.855 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new sensor.backup entity: sensor.backup_last_successful_automatic_backup\n2026-04-21 01:51:31.856 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new sensor.backup entity: sensor.backup_last_attempted_automatic_backup\n2026-04-21 01:51:53.506 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140304549474880] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.510 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303789884416] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.651 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790196832] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.660 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790197152] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.702 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790197792] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.708 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790199552] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.711 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790199872] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.714 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790199712] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.717 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790731520] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.720 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200192] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.723 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200352] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.727 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200512] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.731 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200032] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.734 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200832] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.737 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200992] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.740 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790201152] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.743 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200672] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.748 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790201472] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.829 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790201312] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.860 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769688864] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.887 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769688704] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.894 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769689664] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.898 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769689984] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.901 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769690144] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.906 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 01:51:53.906 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 01:51:53.909 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769690304] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.915 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 01:51:53.915 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 01:51:53.917 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769689184] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.920 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140304732312800] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.924 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769690784] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.929 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691744] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.933 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769690624] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.938 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140304540154624] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.942 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769692064] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.945 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691904] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.950 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769692224] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.045 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691584] An action which does not return responses can't be called with return_response=True\n2026-04-21 01:51:54.047 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691584] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.053 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769692544] An action which does not return responses can't be called with return_response=True\n2026-04-21 01:51:54.054 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769692544] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.059 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693024] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.095 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769692384] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.110 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693504] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.123 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693184] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.127 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693824] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.161 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769694144] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.169 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693664] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.178 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769694304] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.180 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_11\n2026-04-21 01:51:54.183 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693984] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.186 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140304732312160] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.195 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769694624] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.205 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769694944] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.210 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_11\n2026-04-21 01:51:54.212 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769695424] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.216 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-21 01:51:54.219 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-21 01:51:54.221 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-21 01:51:54.223 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-21 01:51:54.265 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769696384] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.267 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769696544] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.270 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769696064] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.273 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769696704] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.277 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769696864] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.281 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769697024] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.286 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769697184] Initialized trigger\n2026-04-21 01:51:55.066 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769697184] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:55.095 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 01:51:55.095 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 01:51:55.104 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769697344] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:55.112 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 01:51:55.113 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 01:51:55.115 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769697984] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:55.121 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691264] Initialized trigger\n2026-04-21 01:51:56.326 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691264] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:06:32.460 INFO (MainThread) [homeassistant.components.analytics] Submitted analytics to Home Assistant servers. Information submitted includes {'uuid': '7b023d740661490db49ce807f6e76fdc', 'version': '2026.4.3', 'installation_type': 'Home Assistant Container', 'certificate': False, 'integrations': ['backup', 'history', 'input_boolean', 'http', 'notify', 'weather', 'timer', 'radio_browser', 'logbook', 'api', 'person', 'sun', 'counter', 'trace', 'input_text', 'input_datetime', 'input_number', 'tag', 'logger', 'met'], 'custom_integrations': [], 'recorder': {'engine': 'sqlite', 'version': }, 'state_count': 37, 'automation_count': 0, 'integration_count': 20, 'user_count': 1}\n2026-04-21 02:48:30.640 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769214848] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.645 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769214208] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.791 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769214048] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.799 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769211968] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.827 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769213888] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.832 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769216448] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.837 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769216608] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.841 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769216768] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.846 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769695904] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.851 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217088] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.857 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217248] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.863 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217408] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.869 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769216928] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.876 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217728] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.883 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217888] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.889 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218048] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.894 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217568] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.900 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218368] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.925 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218208] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.935 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218688] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.976 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218528] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.984 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219008] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.989 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219168] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.996 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219328] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.004 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:48:31.004 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:48:31.007 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218848] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.016 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:48:31.016 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:48:31.019 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769690944] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.023 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219648] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.028 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769208928] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.035 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220288] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.039 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219488] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.044 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769208768] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.051 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220608] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.057 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220448] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.066 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220768] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.171 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220928] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.188 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769222528] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.324 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769221888] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.333 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219808] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.370 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769222208] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.375 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769221088] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.381 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766390720] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.387 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766390880] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.393 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391040] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.397 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391200] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.402 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766390560] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.410 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391520] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.420 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391680] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.428 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391840] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.433 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392000] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.438 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391360] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.444 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392320] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.451 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392480] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.474 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392160] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.485 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392800] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.512 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392960] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.525 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392640] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.532 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766393280] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.537 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766393440] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.558 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:55:04.558 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:55:04.561 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766393600] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.568 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:55:04.568 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:55:04.571 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769214368] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.575 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220128] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.586 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766393120] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.594 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394400] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.600 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394240] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.605 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766393920] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.610 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219968] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.618 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394720] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.629 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394880] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.753 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394560] An action which does not return responses can't be called with return_response=True\n2026-04-21 02:55:04.756 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394560] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.763 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395200] An action which does not return responses can't be called with return_response=True\n2026-04-21 02:55:04.765 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395200] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.772 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395360] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.816 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395040] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.835 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395680] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.849 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395840] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.855 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395520] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.911 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766396160] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.919 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766396320] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.928 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766396480] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.942 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test\n2026-04-21 02:55:04.948 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766396640] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.958 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766396000] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.964 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766397440] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.973 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766397280] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.983 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async\n2026-04-21 02:55:04.992 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766397600] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.002 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-21 02:55:05.011 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-21 02:55:05.022 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-21 02:55:05.028 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-21 02:55:05.098 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769694464] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.101 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766398400] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.105 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766398560] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.109 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766398720] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.115 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766398880] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.122 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766399040] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.128 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766399200] Initialized trigger\n2026-04-21 02:55:06.188 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766399200] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:06.196 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:55:06.196 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:55:06.199 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769221408] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:06.207 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:55:06.207 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:55:06.212 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766399360] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:06.222 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766397120] Initialized trigger\n2026-04-21 02:55:07.204 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766397120] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:58:30.332 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766401280] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:58:30.339 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766402080] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n" + }, + "protocol": null, + "url": "http://localhost:8123/api/error_log" + }, + "recorded_at": "2026-04-21T02:58:30.361158+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_events.json b/tests/cassettes/test_endpoints/test_async_get_events.json new file mode 100644 index 00000000..f836c293 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_events.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.927370+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "219" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":1},{\"event\":\"entity_registry_updated\",\"listener_count\":6},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":52},{\"event\":\"core_config_updated\",\"listener_count\":3},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"device_registry_updated\",\"listener_count\":2},{\"event\":\"labs_updated\",\"listener_count\":5},{\"event\":\"component_loaded\",\"listener_count\":1},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"homeassistant_final_write\",\"listener_count\":4},{\"event\":\"homeassistant_close\",\"listener_count\":6},{\"event\":\"state_changed\",\"listener_count\":3},{\"event\":\"user_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/events" + }, + "recorded_at": "2026-04-21T02:58:30.928446+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_logbook_entries.json b/tests/cassettes/test_endpoints/test_async_get_logbook_entries.json new file mode 100644 index 00000000..f2dd0ec5 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_logbook_entries.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.395955+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "1224" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T00:42:57.253045+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T00:42:57.255084+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T00:43:35.727279+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T00:43:37.465382+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T00:43:37.469311+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:38:00.874260+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:38:02.077616+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:38:02.079600+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:49:24.133682+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:49:26.296678+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:49:26.298983+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T06:57:00.262568+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T06:57:00.265797+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:02:10.770833+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:02:11.513315+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:02:11.516677+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:05:57.223587+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:05:57.966241+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:05:57.969502+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:09:51.891525+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:09:52.657550+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:09:52.660772+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:18:37.650155+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:18:39.344208+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:18:39.349195+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:11.303211+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:13.228810+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:13.233539+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:29.117210+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:29.482204+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:29.484149+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:30:59.574324+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:31:01.402084+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:31:01.404785+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:36:47.076982+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:36:49.411149+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:36:49.420321+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-09T06:11:23.520470+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-09T06:11:23.524980+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-09T06:12:16.812464+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-09T06:12:18.258279+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-09T06:12:18.265813+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T16:55:41.110963+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T16:55:41.119621+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T17:19:22.358232+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T17:19:24.477027+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T17:19:24.480650+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T19:59:32.543524+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T19:59:34.106033+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T19:59:34.114379+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:00:38.304081+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:00:40.452651+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:00:40.456491+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:12:20.215130+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:12:22.485769+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:12:22.488968+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:13:22.126108+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:13:22.129912+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:14:24.748612+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:14:26.151747+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:14:26.157637+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T21:53:31.380533+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T21:53:33.198160+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T21:53:33.202674+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:09:48.532848+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:09:50.235887+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:09:50.238504+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:49:52.990232+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:49:55.304099+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:49:55.306463+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:07:35.095384+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:07:37.123731+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:07:37.127154+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:13:26.326392+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:13:26.329639+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:43:47.778724+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:43:49.457976+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:43:49.460006+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:47:33.561670+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:47:35.331567+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:47:35.333591+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:50:58.591940+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:50:59.336033+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:50:59.338197+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:05.718969+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:06.453867+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:06.456042+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:23.190762+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:25.433029+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:25.437129+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:53:18.332242+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:53:20.410392+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:53:20.412448+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:24.482360+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:24.489120+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-21T01:51:56.337253+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-21T01:51:56.341620+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-21T02:55:04.866614+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-21T02:55:07.229225+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-21T02:55:07.237500+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00" + }, + "recorded_at": "2026-04-21T02:58:30.399487+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json b/tests/cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json new file mode 100644 index 00000000..6b3c7291 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_nonuser_flows_in_progress.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.669336+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/flow/progress\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[]}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_rendered_template.json b/tests/cassettes/test_endpoints/test_async_get_rendered_template.json new file mode 100644 index 00000000..bccbd7fa --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_rendered_template.json @@ -0,0 +1,95 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.437459+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/template", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "29" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "The sun is below the horizon." + }, + "protocol": null, + "url": "http://localhost:8123/api/template" + }, + "recorded_at": "2026-04-21T02:58:30.438560+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_state.json b/tests/cassettes/test_endpoints/test_async_get_state.json new file mode 100644 index 00000000..c30cba5d --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_state.json @@ -0,0 +1,95 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.908948+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "638" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-12.87,\"azimuth\":50.1,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:58:30.694375+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694375+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694375+00:00\",\"context\":{\"id\":\"01KPPZK7N6E57Y9G46N8YKSHDA\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.sun" + }, + "recorded_at": "2026-04-21T02:58:30.910851+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_get_states.json b/tests/cassettes/test_endpoints/test_async_get_states.json new file mode 100644 index 00000000..139e689a --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_get_states.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.892738+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "2708" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:58:30.694874+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694874+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694874+00:00\",\"context\":{\"id\":\"01KPPZK7N6W1WFPM8QQ4FJXM0V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:58:30.694949+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694949+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694949+00:00\",\"context\":{\"id\":\"01KPPZK7N64E2JRX9KBD5FTXZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:58:30.695014+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695014+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695014+00:00\",\"context\":{\"id\":\"01KPPZK7N79YT9DFB621KVAAW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:58:30.695086+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695086+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695086+00:00\",\"context\":{\"id\":\"01KPPZK7N76N7VRN27TMDCKS2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:58:30.695150+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695150+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695150+00:00\",\"context\":{\"id\":\"01KPPZK7N7WDJ5VHA4DNTKCSY2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:58:30.695213+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695213+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695213+00:00\",\"context\":{\"id\":\"01KPPZK7N7W6EF4A44CF7YD3QF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-12.87,\"azimuth\":50.1,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:58:30.694375+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694375+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694375+00:00\",\"context\":{\"id\":\"01KPPZK7N6E57Y9G46N8YKSHDA\",\"parent_id\":null,\"user_id\":null}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/states" + }, + "recorded_at": "2026-04-21T02:58:30.893815+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_ignore_config_flow.json b/tests/cassettes/test_endpoints/test_async_ignore_config_flow.json similarity index 73% rename from cassettes/test_endpoints/test_async_ignore_config_flow.json rename to tests/cassettes/test_endpoints/test_async_ignore_config_flow.json index d9cd77ad..ef715ebc 100644 --- a/cassettes/test_endpoints/test_async_ignore_config_flow.json +++ b/tests/cassettes/test_endpoints/test_async_ignore_config_flow.json @@ -1,53 +1,53 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:56.573980+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.707207+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"flow_id\": \"\", \"title\": \"\", \"id\": 2, \"type\": \"config_entries/ignore_flow\"}", - "offset_ms": 10 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"not_found\",\"message\":\"Config entry not found\"}}", - "offset_ms": 15 + "offset_ms": 1 } ] } diff --git a/tests/cassettes/test_endpoints/test_async_set_state.json b/tests/cassettes/test_endpoints/test_async_set_state.json new file mode 100644 index 00000000..db30ee47 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_set_state.json @@ -0,0 +1,101 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.920311+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Location": [ + "/api/states/sun.red_sun" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "219" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"beyond_our_solar_system\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:58:30.916545+00:00\",\"last_reported\":\"2026-04-21T02:58:30.916545+00:00\",\"last_updated\":\"2026-04-21T02:58:30.916545+00:00\",\"context\":{\"id\":\"01KPPZK7W4XQ5ADNCS7MNSGXAN\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-21T02:58:30.921354+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_trigger_service.json b/tests/cassettes/test_endpoints/test_async_trigger_service.json new file mode 100644 index 00000000..3b28e6c5 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_trigger_service.json @@ -0,0 +1,190 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.773427+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:30.776648+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/services/notify/persistent_notification?return_response", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 400, + "message": "Bad Request" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "82" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"Service does not support responses. Remove return_response from request.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/services/notify/persistent_notification?return_response" + }, + "recorded_at": "2026-04-21T02:58:30.783351+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/services/notify/persistent_notification", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "10" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services/notify/persistent_notification" + }, + "recorded_at": "2026-04-21T02:58:30.786225+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_trigger_service_with_response.json b/tests/cassettes/test_endpoints/test_async_trigger_service_with_response.json new file mode 100644 index 00000000..2a840efd --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_trigger_service_with_response.json @@ -0,0 +1,144 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.838672+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:30.841194+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/services/weather/get_forecasts?return_response", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "1219" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"changed_states\":[],\"service_response\":{\"weather.forecast_home\":{\"forecast\":[{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T02:00:00+00:00\",\"wind_bearing\":52.3,\"cloud_coverage\":7.8,\"uv_index\":0.0,\"temperature\":-0.3,\"wind_speed\":17.6,\"precipitation\":0.0,\"humidity\":82},{\"condition\":\"partlycloudy\",\"datetime\":\"2026-04-21T03:00:00+00:00\",\"wind_bearing\":55.2,\"cloud_coverage\":13.3,\"uv_index\":0.0,\"temperature\":-0.9,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T04:00:00+00:00\",\"wind_bearing\":53.7,\"cloud_coverage\":5.5,\"uv_index\":0.0,\"temperature\":-1.2,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":86},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T05:00:00+00:00\",\"wind_bearing\":56.8,\"cloud_coverage\":3.9,\"uv_index\":0.1,\"temperature\":-1.4,\"wind_speed\":19.1,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T06:00:00+00:00\",\"wind_bearing\":59.0,\"cloud_coverage\":0.0,\"uv_index\":0.3,\"temperature\":-0.8,\"wind_speed\":21.2,\"precipitation\":0.0,\"humidity\":81},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T07:00:00+00:00\",\"wind_bearing\":60.3,\"cloud_coverage\":0.0,\"uv_index\":0.8,\"temperature\":-0.0,\"wind_speed\":22.0,\"precipitation\":0.0,\"humidity\":72},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T08:00:00+00:00\",\"wind_bearing\":59.1,\"cloud_coverage\":0.0,\"uv_index\":1.6,\"temperature\":0.9,\"wind_speed\":21.6,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T09:00:00+00:00\",\"wind_bearing\":58.1,\"cloud_coverage\":0.0,\"uv_index\":2.5,\"temperature\":1.9,\"wind_speed\":20.5,\"precipitation\":0.0,\"humidity\":61},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T10:00:00+00:00\",\"wind_bearing\":56.9,\"cloud_coverage\":0.0,\"uv_index\":3.3,\"temperature\":3.0,\"wind_speed\":20.9,\"precipitation\":0.0,\"humidity\":60},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T11:00:00+00:00\",\"wind_bearing\":55.7,\"cloud_coverage\":0.0,\"uv_index\":3.8,\"temperature\":4.0,\"wind_speed\":22.3,\"precipitation\":0.0,\"humidity\":60},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T12:00:00+00:00\",\"wind_bearing\":54.6,\"cloud_coverage\":0.0,\"uv_index\":3.9,\"temperature\":4.9,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T13:00:00+00:00\",\"wind_bearing\":53.7,\"cloud_coverage\":0.0,\"uv_index\":3.4,\"temperature\":5.6,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T14:00:00+00:00\",\"wind_bearing\":53.6,\"cloud_coverage\":0.0,\"uv_index\":2.6,\"temperature\":6.1,\"wind_speed\":23.0,\"precipitation\":0.0,\"humidity\":48},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T15:00:00+00:00\",\"wind_bearing\":52.5,\"cloud_coverage\":0.0,\"uv_index\":1.7,\"temperature\":6.2,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":47},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T16:00:00+00:00\",\"wind_bearing\":51.3,\"cloud_coverage\":0.0,\"uv_index\":0.9,\"temperature\":6.1,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":48},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T17:00:00+00:00\",\"wind_bearing\":51.3,\"cloud_coverage\":0.0,\"uv_index\":0.4,\"temperature\":5.6,\"wind_speed\":21.6,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T18:00:00+00:00\",\"wind_bearing\":51.0,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":4.6,\"wind_speed\":19.4,\"precipitation\":0.0,\"humidity\":59},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T19:00:00+00:00\",\"wind_bearing\":54.5,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.5,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T20:00:00+00:00\",\"wind_bearing\":52.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.0,\"wind_speed\":18.4,\"precipitation\":0.0,\"humidity\":70},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T21:00:00+00:00\",\"wind_bearing\":51.9,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.5,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T22:00:00+00:00\",\"wind_bearing\":53.6,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.0,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":79},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T23:00:00+00:00\",\"wind_bearing\":58.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.5,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T00:00:00+00:00\",\"wind_bearing\":64.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.0,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T01:00:00+00:00\",\"wind_bearing\":67.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":0.4,\"wind_speed\":15.1,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T02:00:00+00:00\",\"wind_bearing\":62.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.0,\"wind_speed\":14.4,\"precipitation\":0.0,\"humidity\":81},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T03:00:00+00:00\",\"wind_bearing\":63.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.4,\"wind_speed\":14.0,\"precipitation\":0.0,\"humidity\":82},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T04:00:00+00:00\",\"wind_bearing\":65.1,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.9,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T05:00:00+00:00\",\"wind_bearing\":69.0,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":-1.1,\"wind_speed\":13.0,\"precipitation\":0.0,\"humidity\":86},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T06:00:00+00:00\",\"wind_bearing\":70.5,\"cloud_coverage\":0.0,\"uv_index\":0.3,\"temperature\":-0.1,\"wind_speed\":13.7,\"precipitation\":0.0,\"humidity\":84},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T07:00:00+00:00\",\"wind_bearing\":70.5,\"cloud_coverage\":0.0,\"uv_index\":0.9,\"temperature\":1.3,\"wind_speed\":13.7,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T08:00:00+00:00\",\"wind_bearing\":67.4,\"cloud_coverage\":0.0,\"uv_index\":1.7,\"temperature\":3.0,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":71},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T09:00:00+00:00\",\"wind_bearing\":66.6,\"cloud_coverage\":0.0,\"uv_index\":2.7,\"temperature\":4.7,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":65},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T10:00:00+00:00\",\"wind_bearing\":69.3,\"cloud_coverage\":0.0,\"uv_index\":3.6,\"temperature\":6.1,\"wind_speed\":14.4,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T11:00:00+00:00\",\"wind_bearing\":64.3,\"cloud_coverage\":0.0,\"uv_index\":4.1,\"temperature\":6.8,\"wind_speed\":15.5,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T12:00:00+00:00\",\"wind_bearing\":57.9,\"cloud_coverage\":0.0,\"uv_index\":4.2,\"temperature\":7.3,\"wind_speed\":15.8,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T13:00:00+00:00\",\"wind_bearing\":55.9,\"cloud_coverage\":0.0,\"uv_index\":3.7,\"temperature\":7.6,\"wind_speed\":16.2,\"precipitation\":0.0,\"humidity\":50},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T14:00:00+00:00\",\"wind_bearing\":52.8,\"cloud_coverage\":0.0,\"uv_index\":2.8,\"temperature\":7.8,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T15:00:00+00:00\",\"wind_bearing\":48.9,\"cloud_coverage\":0.0,\"uv_index\":1.8,\"temperature\":7.8,\"wind_speed\":17.6,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T16:00:00+00:00\",\"wind_bearing\":45.9,\"cloud_coverage\":0.0,\"uv_index\":1.0,\"temperature\":7.7,\"wind_speed\":18.4,\"precipitation\":0.0,\"humidity\":54},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T17:00:00+00:00\",\"wind_bearing\":43.4,\"cloud_coverage\":0.0,\"uv_index\":0.4,\"temperature\":7.2,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T18:00:00+00:00\",\"wind_bearing\":38.7,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":6.2,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T19:00:00+00:00\",\"wind_bearing\":38.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":4.7,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":71},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T20:00:00+00:00\",\"wind_bearing\":48.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.7,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":75},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T21:00:00+00:00\",\"wind_bearing\":55.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.0,\"wind_speed\":14.8,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T22:00:00+00:00\",\"wind_bearing\":60.2,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.3,\"wind_speed\":11.5,\"precipitation\":0.0,\"humidity\":79},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T23:00:00+00:00\",\"wind_bearing\":54.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.4,\"wind_speed\":8.3,\"precipitation\":0.0,\"humidity\":83},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-23T00:00:00+00:00\",\"wind_bearing\":33.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":0.6,\"wind_speed\":6.8,\"precipitation\":0.0,\"humidity\":87},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-23T01:00:00+00:00\",\"wind_bearing\":17.1,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.0,\"wind_speed\":7.9,\"precipitation\":0.0,\"humidity\":90}]}}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/services/weather/get_forecasts?return_response" + }, + "recorded_at": "2026-04-21T02:58:30.861392+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_websocket_get_config.json b/tests/cassettes/test_endpoints/test_async_websocket_get_config.json new file mode 100644 index 00000000..63ccfd4b --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_config.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.489148+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_config\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"allowlist_external_dirs\":[\"/media\",\"/config/www\"],\"allowlist_external_urls\":[],\"components\":[\"climate\",\"lock\",\"fan\",\"update\",\"stt\",\"homeassistant.scene\",\"backup\",\"remote\",\"network\",\"system_health\",\"brands\",\"history\",\"labs\",\"date\",\"input_boolean\",\"http\",\"image_processing\",\"humidity\",\"sun.binary_sensor\",\"intent\",\"met.weather\",\"search\",\"sun.sensor\",\"conversation\",\"valve\",\"air_quality\",\"temperature\",\"button\",\"diagnostics\",\"notify\",\"switch\",\"humidifier\",\"device_automation\",\"weather\",\"application_credentials\",\"auth\",\"repairs\",\"timer\",\"onboarding\",\"datetime\",\"vacuum\",\"illuminance\",\"event\",\"gate\",\"ffmpeg\",\"radio_browser\",\"media_source\",\"frontend\",\"logbook\",\"power\",\"api\",\"hardware\",\"binary_sensor\",\"battery\",\"person\",\"siren\",\"cover\",\"number\",\"input_button\",\"sensor\",\"wake_word\",\"sun\",\"water_heater\",\"camera\",\"file_upload\",\"media_player\",\"assist_satellite\",\"lovelace\",\"door\",\"lawn_mower\",\"counter\",\"motion\",\"image_upload\",\"geo_location\",\"automation\",\"infrared\",\"zone\",\"select\",\"alarm_control_panel\",\"trace\",\"image\",\"web_rtc\",\"persistent_notification\",\"window\",\"input_text\",\"schedule\",\"garage_door\",\"input_datetime\",\"ai_task\",\"websocket_api\",\"recorder\",\"script\",\"input_select\",\"analytics\",\"occupancy\",\"device_tracker\",\"system_log\",\"input_number\",\"tts\",\"backup.sensor\",\"tag\",\"logger\",\"text\",\"backup.event\",\"time\",\"scene\",\"moisture\",\"assist_pipeline\",\"config\",\"blueprint\",\"light\",\"homeassistant\",\"met\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":1000,\"external_url\":null,\"internal_url\":null,\"language\":\"en\",\"latitude\":52.3731339,\"location_name\":\"Testing Server\",\"longitude\":4.8903147,\"radius\":100,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Chicago\",\"unit_system\":{\"length\":\"km\",\"accumulated_precipitation\":\"mm\",\"area\":\"m²\",\"mass\":\"g\",\"pressure\":\"Pa\",\"temperature\":\"°C\",\"volume\":\"L\",\"wind_speed\":\"m/s\"},\"version\":\"2026.4.3\",\"whitelist_external_dirs\":[\"/media\",\"/config/www\"]}}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_websocket_get_domain.json b/tests/cassettes/test_endpoints/test_async_websocket_get_domain.json new file mode 100644 index 00000000..83dbe4f2 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_domain.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.654036+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"alarm_control_panel\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}},\"valve\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"vacuum\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"water_heater\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"script\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"person\":{\"reload\":{\"fields\":{}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"lawn_mower\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"date\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"image\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"datetime\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"ai_task\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}},\"image_processing\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}},\"assist_satellite\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_websocket_get_domains.json b/tests/cassettes/test_endpoints/test_async_websocket_get_domains.json new file mode 100644 index 00000000..c36f92d6 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_domains.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.598521+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"alarm_control_panel\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}},\"valve\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"vacuum\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"water_heater\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"script\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"person\":{\"reload\":{\"fields\":{}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"lawn_mower\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"date\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"image\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"datetime\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"ai_task\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}},\"image_processing\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}},\"assist_satellite\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_websocket_get_entities.json b/tests/cassettes/test_endpoints/test_async_websocket_get_entities.json new file mode 100644 index 00000000..7b911994 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_entities.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.561025+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json b/tests/cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json new file mode 100644 index 00000000..325f1721 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_entity_by_entity_id.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.530651+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json b/tests/cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json new file mode 100644 index 00000000..bccd5a4c --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_entity_by_group_slug.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.526575+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_async_websocket_get_entity_no_args.json b/tests/cassettes/test_endpoints/test_async_websocket_get_entity_no_args.json similarity index 68% rename from cassettes/test_endpoints/test_async_websocket_get_entity_no_args.json rename to tests/cassettes/test_endpoints/test_async_websocket_get_entity_no_args.json index 655d4009..5da3407f 100644 --- a/cassettes/test_endpoints/test_async_websocket_get_entity_no_args.json +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_entity_no_args.json @@ -1,41 +1,41 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:54.311002+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.535400+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 0 } ] } diff --git a/cassettes/test_endpoints/test_async_websocket_get_rendered_template.json b/tests/cassettes/test_endpoints/test_async_websocket_get_rendered_template.json similarity index 77% rename from cassettes/test_endpoints/test_async_websocket_get_rendered_template.json rename to tests/cassettes/test_endpoints/test_async_websocket_get_rendered_template.json index 0cdd30cc..402ec431 100644 --- a/cassettes/test_endpoints/test_async_websocket_get_rendered_template.json +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_rendered_template.json @@ -1,71 +1,71 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:52.858214+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.451103+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"template\": \"The sun is {{ states(\\\"sun.sun\\\").replace(\\\"_\\\", \\\" the \\\") }}.\", \"report_errors\": true, \"id\": 2, \"type\": \"render_template\"}", - "offset_ms": 13 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 21 + "offset_ms": 2 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"event\",\"event\":{\"result\":\"The sun is below the horizon.\",\"listeners\":{\"all\":false,\"entities\":[\"sun.sun\"],\"domains\":[],\"time\":false}}}", - "offset_ms": 21 + "offset_ms": 2 }, { "direction": "send", "type": "text", "payload": "{\"subscription\": 2, \"id\": 3, \"type\": \"unsubscribe_events\"}", - "offset_ms": 21 + "offset_ms": 2 }, { "direction": "recv", "type": "text", "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 27 + "offset_ms": 2 } ] } diff --git a/tests/cassettes/test_endpoints/test_async_websocket_get_state.json b/tests/cassettes/test_endpoints/test_async_websocket_get_state.json new file mode 100644 index 00000000..e34208dc --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_state.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.520953+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_websocket_get_state_not_found.json b/tests/cassettes/test_endpoints/test_async_websocket_get_state_not_found.json new file mode 100644 index 00000000..7dee26da --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_state_not_found.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.539198+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_websocket_get_states.json b/tests/cassettes/test_endpoints/test_async_websocket_get_states.json new file mode 100644 index 00000000..b042bd74 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_get_states.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.901055+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:58:30.694874+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694874+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694874+00:00\",\"context\":{\"id\":\"01KPPZK7N6W1WFPM8QQ4FJXM0V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:58:30.694949+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694949+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694949+00:00\",\"context\":{\"id\":\"01KPPZK7N64E2JRX9KBD5FTXZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:58:30.695014+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695014+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695014+00:00\",\"context\":{\"id\":\"01KPPZK7N79YT9DFB621KVAAW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:58:30.695086+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695086+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695086+00:00\",\"context\":{\"id\":\"01KPPZK7N76N7VRN27TMDCKS2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:58:30.695150+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695150+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695150+00:00\",\"context\":{\"id\":\"01KPPZK7N7WDJ5VHA4DNTKCSY2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:58:30.695213+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695213+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695213+00:00\",\"context\":{\"id\":\"01KPPZK7N7W6EF4A44CF7YD3QF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-12.87,\"azimuth\":50.1,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:58:30.694375+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694375+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694375+00:00\",\"context\":{\"id\":\"01KPPZK7N6E57Y9G46N8YKSHDA\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_websocket_trigger_service.json b/tests/cassettes/test_endpoints/test_async_websocket_trigger_service.json new file mode 100644 index 00000000..1f886a21 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_trigger_service.json @@ -0,0 +1,79 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.802281+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 3 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"alarm_control_panel\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}},\"valve\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"vacuum\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"water_heater\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"script\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"person\":{\"reload\":{\"fields\":{}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"lawn_mower\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"date\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"image\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"datetime\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"ai_task\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}},\"image_processing\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}},\"assist_satellite\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}}", + "offset_ms": 4 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", + "offset_ms": 7 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"service_validation_error\",\"message\":\"Validation error: An action which does not return responses can't be called with return_response=True\",\"translation_key\":\"service_does_not_support_response\",\"translation_placeholders\":{\"return_response\":\"return_response=True\"},\"translation_domain\":\"homeassistant\"}}", + "offset_ms": 8 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": false, \"id\": 4, \"type\": \"call_service\"}", + "offset_ms": 8 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KPPZK7RTKNXAVBREXDZMF9P7\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}}", + "offset_ms": 8 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json b/tests/cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json new file mode 100644 index 00000000..a389ccb3 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_async_websocket_trigger_service_with_response.json @@ -0,0 +1,67 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.875282+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"alarm_control_panel\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}},\"valve\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"vacuum\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"water_heater\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"script\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"person\":{\"reload\":{\"fields\":{}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"lawn_mower\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"date\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"image\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"datetime\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"ai_task\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}},\"image_processing\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}},\"assist_satellite\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"weather\", \"service\": \"get_forecasts\", \"service_data\": {\"entity_id\": \"weather.forecast_home\", \"type\": \"hourly\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KPPZK7V15DTRTG0GV1GZFQG4\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},\"response\":{\"weather.forecast_home\":{\"forecast\":[{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T02:00:00+00:00\",\"wind_bearing\":52.3,\"cloud_coverage\":7.8,\"uv_index\":0.0,\"temperature\":-0.3,\"wind_speed\":17.6,\"precipitation\":0.0,\"humidity\":82},{\"condition\":\"partlycloudy\",\"datetime\":\"2026-04-21T03:00:00+00:00\",\"wind_bearing\":55.2,\"cloud_coverage\":13.3,\"uv_index\":0.0,\"temperature\":-0.9,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T04:00:00+00:00\",\"wind_bearing\":53.7,\"cloud_coverage\":5.5,\"uv_index\":0.0,\"temperature\":-1.2,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":86},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T05:00:00+00:00\",\"wind_bearing\":56.8,\"cloud_coverage\":3.9,\"uv_index\":0.1,\"temperature\":-1.4,\"wind_speed\":19.1,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T06:00:00+00:00\",\"wind_bearing\":59.0,\"cloud_coverage\":0.0,\"uv_index\":0.3,\"temperature\":-0.8,\"wind_speed\":21.2,\"precipitation\":0.0,\"humidity\":81},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T07:00:00+00:00\",\"wind_bearing\":60.3,\"cloud_coverage\":0.0,\"uv_index\":0.8,\"temperature\":-0.0,\"wind_speed\":22.0,\"precipitation\":0.0,\"humidity\":72},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T08:00:00+00:00\",\"wind_bearing\":59.1,\"cloud_coverage\":0.0,\"uv_index\":1.6,\"temperature\":0.9,\"wind_speed\":21.6,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T09:00:00+00:00\",\"wind_bearing\":58.1,\"cloud_coverage\":0.0,\"uv_index\":2.5,\"temperature\":1.9,\"wind_speed\":20.5,\"precipitation\":0.0,\"humidity\":61},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T10:00:00+00:00\",\"wind_bearing\":56.9,\"cloud_coverage\":0.0,\"uv_index\":3.3,\"temperature\":3.0,\"wind_speed\":20.9,\"precipitation\":0.0,\"humidity\":60},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T11:00:00+00:00\",\"wind_bearing\":55.7,\"cloud_coverage\":0.0,\"uv_index\":3.8,\"temperature\":4.0,\"wind_speed\":22.3,\"precipitation\":0.0,\"humidity\":60},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T12:00:00+00:00\",\"wind_bearing\":54.6,\"cloud_coverage\":0.0,\"uv_index\":3.9,\"temperature\":4.9,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T13:00:00+00:00\",\"wind_bearing\":53.7,\"cloud_coverage\":0.0,\"uv_index\":3.4,\"temperature\":5.6,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T14:00:00+00:00\",\"wind_bearing\":53.6,\"cloud_coverage\":0.0,\"uv_index\":2.6,\"temperature\":6.1,\"wind_speed\":23.0,\"precipitation\":0.0,\"humidity\":48},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T15:00:00+00:00\",\"wind_bearing\":52.5,\"cloud_coverage\":0.0,\"uv_index\":1.7,\"temperature\":6.2,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":47},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T16:00:00+00:00\",\"wind_bearing\":51.3,\"cloud_coverage\":0.0,\"uv_index\":0.9,\"temperature\":6.1,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":48},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T17:00:00+00:00\",\"wind_bearing\":51.3,\"cloud_coverage\":0.0,\"uv_index\":0.4,\"temperature\":5.6,\"wind_speed\":21.6,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T18:00:00+00:00\",\"wind_bearing\":51.0,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":4.6,\"wind_speed\":19.4,\"precipitation\":0.0,\"humidity\":59},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T19:00:00+00:00\",\"wind_bearing\":54.5,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.5,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T20:00:00+00:00\",\"wind_bearing\":52.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.0,\"wind_speed\":18.4,\"precipitation\":0.0,\"humidity\":70},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T21:00:00+00:00\",\"wind_bearing\":51.9,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.5,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T22:00:00+00:00\",\"wind_bearing\":53.6,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.0,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":79},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T23:00:00+00:00\",\"wind_bearing\":58.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.5,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T00:00:00+00:00\",\"wind_bearing\":64.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.0,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T01:00:00+00:00\",\"wind_bearing\":67.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":0.4,\"wind_speed\":15.1,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T02:00:00+00:00\",\"wind_bearing\":62.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.0,\"wind_speed\":14.4,\"precipitation\":0.0,\"humidity\":81},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T03:00:00+00:00\",\"wind_bearing\":63.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.4,\"wind_speed\":14.0,\"precipitation\":0.0,\"humidity\":82},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T04:00:00+00:00\",\"wind_bearing\":65.1,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.9,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T05:00:00+00:00\",\"wind_bearing\":69.0,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":-1.1,\"wind_speed\":13.0,\"precipitation\":0.0,\"humidity\":86},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T06:00:00+00:00\",\"wind_bearing\":70.5,\"cloud_coverage\":0.0,\"uv_index\":0.3,\"temperature\":-0.1,\"wind_speed\":13.7,\"precipitation\":0.0,\"humidity\":84},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T07:00:00+00:00\",\"wind_bearing\":70.5,\"cloud_coverage\":0.0,\"uv_index\":0.9,\"temperature\":1.3,\"wind_speed\":13.7,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T08:00:00+00:00\",\"wind_bearing\":67.4,\"cloud_coverage\":0.0,\"uv_index\":1.7,\"temperature\":3.0,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":71},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T09:00:00+00:00\",\"wind_bearing\":66.6,\"cloud_coverage\":0.0,\"uv_index\":2.7,\"temperature\":4.7,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":65},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T10:00:00+00:00\",\"wind_bearing\":69.3,\"cloud_coverage\":0.0,\"uv_index\":3.6,\"temperature\":6.1,\"wind_speed\":14.4,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T11:00:00+00:00\",\"wind_bearing\":64.3,\"cloud_coverage\":0.0,\"uv_index\":4.1,\"temperature\":6.8,\"wind_speed\":15.5,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T12:00:00+00:00\",\"wind_bearing\":57.9,\"cloud_coverage\":0.0,\"uv_index\":4.2,\"temperature\":7.3,\"wind_speed\":15.8,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T13:00:00+00:00\",\"wind_bearing\":55.9,\"cloud_coverage\":0.0,\"uv_index\":3.7,\"temperature\":7.6,\"wind_speed\":16.2,\"precipitation\":0.0,\"humidity\":50},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T14:00:00+00:00\",\"wind_bearing\":52.8,\"cloud_coverage\":0.0,\"uv_index\":2.8,\"temperature\":7.8,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T15:00:00+00:00\",\"wind_bearing\":48.9,\"cloud_coverage\":0.0,\"uv_index\":1.8,\"temperature\":7.8,\"wind_speed\":17.6,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T16:00:00+00:00\",\"wind_bearing\":45.9,\"cloud_coverage\":0.0,\"uv_index\":1.0,\"temperature\":7.7,\"wind_speed\":18.4,\"precipitation\":0.0,\"humidity\":54},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T17:00:00+00:00\",\"wind_bearing\":43.4,\"cloud_coverage\":0.0,\"uv_index\":0.4,\"temperature\":7.2,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T18:00:00+00:00\",\"wind_bearing\":38.7,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":6.2,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T19:00:00+00:00\",\"wind_bearing\":38.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":4.7,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":71},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T20:00:00+00:00\",\"wind_bearing\":48.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.7,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":75},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T21:00:00+00:00\",\"wind_bearing\":55.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.0,\"wind_speed\":14.8,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T22:00:00+00:00\",\"wind_bearing\":60.2,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.3,\"wind_speed\":11.5,\"precipitation\":0.0,\"humidity\":79},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T23:00:00+00:00\",\"wind_bearing\":54.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.4,\"wind_speed\":8.3,\"precipitation\":0.0,\"humidity\":83},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-23T00:00:00+00:00\",\"wind_bearing\":33.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":0.6,\"wind_speed\":6.8,\"precipitation\":0.0,\"humidity\":87},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-23T01:00:00+00:00\",\"wind_bearing\":17.1,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.0,\"wind_speed\":7.9,\"precipitation\":0.0,\"humidity\":90}]}}}}", + "offset_ms": 9 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_check_api_config.json b/tests/cassettes/test_endpoints/test_check_api_config.json new file mode 100644 index 00000000..6bc86cbe --- /dev/null +++ b/tests/cassettes/test_endpoints/test_check_api_config.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.456438+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/config/core/check_config", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "56" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"result\":\"valid\",\"errors\":null,\"warnings\":null}" + }, + "protocol": null, + "url": "http://localhost:8123/api/config/core/check_config" + }, + "recorded_at": "2026-04-21T02:58:30.458906+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_delete_entry_subentry.json b/tests/cassettes/test_endpoints/test_delete_entry_subentry.json similarity index 73% rename from cassettes/test_endpoints/test_delete_entry_subentry.json rename to tests/cassettes/test_endpoints/test_delete_entry_subentry.json index 36171813..101c840c 100644 --- a/cassettes/test_endpoints/test_delete_entry_subentry.json +++ b/tests/cassettes/test_endpoints/test_delete_entry_subentry.json @@ -1,53 +1,53 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:56.884063+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.744385+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"entry_id\": \"\", \"subentry_id\": \"\", \"id\": 2, \"type\": \"config_entries/subentries/delete\"}", - "offset_ms": 11 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"not_found\",\"message\":\"Config entry not found\"}}", - "offset_ms": 16 + "offset_ms": 1 } ] } diff --git a/tests/cassettes/test_endpoints/test_disable_enable_config_entry.json b/tests/cassettes/test_endpoints/test_disable_enable_config_entry.json new file mode 100644 index 00000000..c72569fa --- /dev/null +++ b/tests/cassettes/test_endpoints/test_disable_enable_config_entry.json @@ -0,0 +1,103 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.673241+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"5f8426fa502435857743f302651753c9\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 3 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 4, \"type\": \"config_entries/get\"}", + "offset_ms": 3 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 3 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"5f8426fa502435857743f302651753c9\", \"disabled_by\": null, \"id\": 5, \"type\": \"config_entries/disable\"}", + "offset_ms": 3 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 6, \"type\": \"config_entries/get\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":6,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 7 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_fire_event.json b/tests/cassettes/test_endpoints/test_fire_event.json new file mode 100644 index 00000000..211af04c --- /dev/null +++ b/tests/cassettes/test_endpoints/test_fire_event.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.930758+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/events/my_new_event", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "47" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"Event my_new_event fired.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/events/my_new_event" + }, + "recorded_at": "2026-04-21T02:58:30.932455+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_components.json b/tests/cassettes/test_endpoints/test_get_components.json new file mode 100644 index 00000000..53c8e3c8 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_components.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.938916+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/components", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "622" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[\"climate\",\"lock\",\"fan\",\"update\",\"stt\",\"homeassistant.scene\",\"backup\",\"remote\",\"network\",\"system_health\",\"brands\",\"history\",\"labs\",\"date\",\"input_boolean\",\"http\",\"image_processing\",\"humidity\",\"sun.binary_sensor\",\"intent\",\"met.weather\",\"search\",\"sun.sensor\",\"conversation\",\"valve\",\"air_quality\",\"temperature\",\"button\",\"diagnostics\",\"notify\",\"switch\",\"humidifier\",\"device_automation\",\"weather\",\"application_credentials\",\"auth\",\"repairs\",\"timer\",\"onboarding\",\"datetime\",\"vacuum\",\"illuminance\",\"event\",\"gate\",\"ffmpeg\",\"radio_browser\",\"media_source\",\"frontend\",\"logbook\",\"power\",\"api\",\"hardware\",\"binary_sensor\",\"battery\",\"person\",\"siren\",\"cover\",\"number\",\"input_button\",\"sensor\",\"wake_word\",\"sun\",\"water_heater\",\"camera\",\"file_upload\",\"media_player\",\"assist_satellite\",\"lovelace\",\"door\",\"lawn_mower\",\"counter\",\"motion\",\"image_upload\",\"geo_location\",\"automation\",\"infrared\",\"zone\",\"select\",\"alarm_control_panel\",\"trace\",\"image\",\"web_rtc\",\"persistent_notification\",\"window\",\"input_text\",\"schedule\",\"garage_door\",\"input_datetime\",\"ai_task\",\"websocket_api\",\"recorder\",\"script\",\"input_select\",\"analytics\",\"occupancy\",\"device_tracker\",\"system_log\",\"input_number\",\"tts\",\"backup.sensor\",\"tag\",\"logger\",\"text\",\"backup.event\",\"time\",\"scene\",\"moisture\",\"assist_pipeline\",\"config\",\"blueprint\",\"light\",\"homeassistant\",\"met\"]" + }, + "protocol": null, + "url": "http://localhost:8123/api/components" + }, + "recorded_at": "2026-04-21T02:58:30.940076+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_config.json b/tests/cassettes/test_endpoints/test_get_config.json new file mode 100644 index 00000000..e71392aa --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_config.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.364905+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/config", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "984" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"allowlist_external_dirs\":[\"/media\",\"/config/www\"],\"allowlist_external_urls\":[],\"components\":[\"climate\",\"lock\",\"fan\",\"update\",\"stt\",\"homeassistant.scene\",\"backup\",\"remote\",\"network\",\"system_health\",\"brands\",\"history\",\"labs\",\"date\",\"input_boolean\",\"http\",\"image_processing\",\"humidity\",\"sun.binary_sensor\",\"intent\",\"met.weather\",\"search\",\"sun.sensor\",\"conversation\",\"valve\",\"air_quality\",\"temperature\",\"button\",\"diagnostics\",\"notify\",\"switch\",\"humidifier\",\"device_automation\",\"weather\",\"application_credentials\",\"auth\",\"repairs\",\"timer\",\"onboarding\",\"datetime\",\"vacuum\",\"illuminance\",\"event\",\"gate\",\"ffmpeg\",\"radio_browser\",\"media_source\",\"frontend\",\"logbook\",\"power\",\"api\",\"hardware\",\"binary_sensor\",\"battery\",\"person\",\"siren\",\"cover\",\"number\",\"input_button\",\"sensor\",\"wake_word\",\"sun\",\"water_heater\",\"camera\",\"file_upload\",\"media_player\",\"assist_satellite\",\"lovelace\",\"door\",\"lawn_mower\",\"counter\",\"motion\",\"image_upload\",\"geo_location\",\"automation\",\"infrared\",\"zone\",\"select\",\"alarm_control_panel\",\"trace\",\"image\",\"web_rtc\",\"persistent_notification\",\"window\",\"input_text\",\"schedule\",\"garage_door\",\"input_datetime\",\"ai_task\",\"websocket_api\",\"recorder\",\"script\",\"input_select\",\"analytics\",\"occupancy\",\"device_tracker\",\"system_log\",\"input_number\",\"tts\",\"backup.sensor\",\"tag\",\"logger\",\"text\",\"backup.event\",\"time\",\"scene\",\"moisture\",\"assist_pipeline\",\"config\",\"blueprint\",\"light\",\"homeassistant\",\"met\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":1000,\"external_url\":null,\"internal_url\":null,\"language\":\"en\",\"latitude\":52.3731339,\"location_name\":\"Testing Server\",\"longitude\":4.8903147,\"radius\":100,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Chicago\",\"unit_system\":{\"length\":\"km\",\"accumulated_precipitation\":\"mm\",\"area\":\"m²\",\"mass\":\"g\",\"pressure\":\"Pa\",\"temperature\":\"°C\",\"volume\":\"L\",\"wind_speed\":\"m/s\"},\"version\":\"2026.4.3\",\"whitelist_external_dirs\":[\"/media\",\"/config/www\"]}" + }, + "protocol": null, + "url": "http://localhost:8123/api/config" + }, + "recorded_at": "2026-04-21T02:58:30.366740+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_config_entries.json b/tests/cassettes/test_endpoints/test_get_config_entries.json new file mode 100644 index 00000000..adcaea5d --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_config_entries.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.716685+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_domain.json b/tests/cassettes/test_endpoints/test_get_domain.json new file mode 100644 index 00000000..1b7ab5e2 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_domain.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.606936+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:30.609425+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_domains.json b/tests/cassettes/test_endpoints/test_get_domains.json new file mode 100644 index 00000000..0376164b --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_domains.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.567161+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:30.569015+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_entities.json b/tests/cassettes/test_endpoints/test_get_entities.json new file mode 100644 index 00000000..4597d79b --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_entities.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.467246+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "2743" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/states" + }, + "recorded_at": "2026-04-21T02:58:30.468576+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_entity.json b/tests/cassettes/test_endpoints/test_get_entity.json new file mode 100644 index 00000000..255fbaa8 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_entity.json @@ -0,0 +1,95 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.403731+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "639" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.sun" + }, + "recorded_at": "2026-04-21T02:58:30.405063+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_entity_histories.json b/tests/cassettes/test_endpoints/test_get_entity_histories.json new file mode 100644 index 00000000..6d998830 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_entity_histories.json @@ -0,0 +1,141 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.416293+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "639" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.sun" + }, + "recorded_at": "2026-04-21T02:58:30.417516+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/history/period/2020-01-01T00:00:00+00:00?filter_entity_id=sun.sun&end_time=2030-01-01T00%3A00%3A01%2B00%3A00&significant_changes_only", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "3706" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-03T18:21:56.947214+00:00\",\"last_updated\":\"2026-04-03T18:21:56.947214+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-04T05:07:28.459574+00:00\",\"last_updated\":\"2026-04-04T05:07:28.459574+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-04T18:23:38.287729+00:00\",\"last_updated\":\"2026-04-04T18:23:38.287729+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:42:55.825678+00:00\",\"last_updated\":\"2026-04-05T00:42:55.825678+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:42:55.827499+00:00\",\"last_updated\":\"2026-04-05T00:42:55.827499+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:42:55.830418+00:00\",\"last_updated\":\"2026-04-05T00:42:55.830418+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:42:55.833757+00:00\",\"last_updated\":\"2026-04-05T00:42:55.833757+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:42:56.377152+00:00\",\"last_updated\":\"2026-04-05T00:42:56.377152+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:42:56.382746+00:00\",\"last_updated\":\"2026-04-05T00:42:56.382746+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:42:56.389357+00:00\",\"last_updated\":\"2026-04-05T00:42:56.389357+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:42:56.393998+00:00\",\"last_updated\":\"2026-04-05T00:42:56.393998+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:43:35.682695+00:00\",\"last_updated\":\"2026-04-05T00:43:35.682695+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:43:35.684665+00:00\",\"last_updated\":\"2026-04-05T00:43:35.684665+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:43:35.687558+00:00\",\"last_updated\":\"2026-04-05T00:43:35.687558+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:43:35.689188+00:00\",\"last_updated\":\"2026-04-05T00:43:35.689188+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:43:36.394291+00:00\",\"last_updated\":\"2026-04-05T00:43:36.394291+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:43:36.396443+00:00\",\"last_updated\":\"2026-04-05T00:43:36.396443+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:43:36.399662+00:00\",\"last_updated\":\"2026-04-05T00:43:36.399662+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:43:36.401598+00:00\",\"last_updated\":\"2026-04-05T00:43:36.401598+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:56:18.433945+00:00\",\"last_updated\":\"2026-04-05T00:56:18.433945+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:56:18.441552+00:00\",\"last_updated\":\"2026-04-05T00:56:18.441552+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T00:56:18.456850+00:00\",\"last_updated\":\"2026-04-05T00:56:18.456850+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T00:56:18.463460+00:00\",\"last_updated\":\"2026-04-05T00:56:18.463460+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:38:00.809478+00:00\",\"last_updated\":\"2026-04-05T03:38:00.809478+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:38:00.812908+00:00\",\"last_updated\":\"2026-04-05T03:38:00.812908+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:38:00.820958+00:00\",\"last_updated\":\"2026-04-05T03:38:00.820958+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:38:00.823215+00:00\",\"last_updated\":\"2026-04-05T03:38:00.823215+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:38:01.242531+00:00\",\"last_updated\":\"2026-04-05T03:38:01.242531+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:38:01.244342+00:00\",\"last_updated\":\"2026-04-05T03:38:01.244342+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:38:01.247846+00:00\",\"last_updated\":\"2026-04-05T03:38:01.247846+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:38:01.249937+00:00\",\"last_updated\":\"2026-04-05T03:38:01.249937+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:49:24.047959+00:00\",\"last_updated\":\"2026-04-05T03:49:24.047959+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:49:24.050436+00:00\",\"last_updated\":\"2026-04-05T03:49:24.050436+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:49:24.075097+00:00\",\"last_updated\":\"2026-04-05T03:49:24.075097+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:49:24.077058+00:00\",\"last_updated\":\"2026-04-05T03:49:24.077058+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:49:25.335453+00:00\",\"last_updated\":\"2026-04-05T03:49:25.335453+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:49:25.337230+00:00\",\"last_updated\":\"2026-04-05T03:49:25.337230+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-05T03:49:25.359644+00:00\",\"last_updated\":\"2026-04-05T03:49:25.359644+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T03:49:25.364632+00:00\",\"last_updated\":\"2026-04-05T03:49:25.364632+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T05:05:09.282330+00:00\",\"last_updated\":\"2026-04-05T05:05:09.282330+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-05T18:25:19.091073+00:00\",\"last_updated\":\"2026-04-05T18:25:19.091073+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T06:55:03.198995+00:00\",\"last_updated\":\"2026-04-07T06:55:03.198995+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:18:37.602606+00:00\",\"last_updated\":\"2026-04-07T07:18:37.602606+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:18:37.605257+00:00\",\"last_updated\":\"2026-04-07T07:18:37.605257+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:18:37.608230+00:00\",\"last_updated\":\"2026-04-07T07:18:37.608230+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:18:37.610167+00:00\",\"last_updated\":\"2026-04-07T07:18:37.610167+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:18:38.400873+00:00\",\"last_updated\":\"2026-04-07T07:18:38.400873+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:18:38.402933+00:00\",\"last_updated\":\"2026-04-07T07:18:38.402933+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:18:38.416822+00:00\",\"last_updated\":\"2026-04-07T07:18:38.416822+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:18:38.425937+00:00\",\"last_updated\":\"2026-04-07T07:18:38.425937+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:19:11.262208+00:00\",\"last_updated\":\"2026-04-07T07:19:11.262208+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:19:11.263941+00:00\",\"last_updated\":\"2026-04-07T07:19:11.263941+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:19:11.266368+00:00\",\"last_updated\":\"2026-04-07T07:19:11.266368+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:19:11.268234+00:00\",\"last_updated\":\"2026-04-07T07:19:11.268234+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:19:12.226209+00:00\",\"last_updated\":\"2026-04-07T07:19:12.226209+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:19:12.235126+00:00\",\"last_updated\":\"2026-04-07T07:19:12.235126+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:19:12.242244+00:00\",\"last_updated\":\"2026-04-07T07:19:12.242244+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:19:12.251347+00:00\",\"last_updated\":\"2026-04-07T07:19:12.251347+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:30:59.526517+00:00\",\"last_updated\":\"2026-04-07T07:30:59.526517+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:30:59.528166+00:00\",\"last_updated\":\"2026-04-07T07:30:59.528166+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:30:59.530789+00:00\",\"last_updated\":\"2026-04-07T07:30:59.530789+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:30:59.532307+00:00\",\"last_updated\":\"2026-04-07T07:30:59.532307+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:31:00.358874+00:00\",\"last_updated\":\"2026-04-07T07:31:00.358874+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:31:00.363967+00:00\",\"last_updated\":\"2026-04-07T07:31:00.363967+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:31:00.369575+00:00\",\"last_updated\":\"2026-04-07T07:31:00.369575+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:31:00.371264+00:00\",\"last_updated\":\"2026-04-07T07:31:00.371264+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:36:47.013211+00:00\",\"last_updated\":\"2026-04-07T07:36:47.013211+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:36:47.015137+00:00\",\"last_updated\":\"2026-04-07T07:36:47.015137+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:36:47.018521+00:00\",\"last_updated\":\"2026-04-07T07:36:47.018521+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:36:47.020194+00:00\",\"last_updated\":\"2026-04-07T07:36:47.020194+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:36:48.363259+00:00\",\"last_updated\":\"2026-04-07T07:36:48.363259+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:36:48.372581+00:00\",\"last_updated\":\"2026-04-07T07:36:48.372581+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-07T07:36:48.392615+00:00\",\"last_updated\":\"2026-04-07T07:36:48.392615+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T07:36:48.397353+00:00\",\"last_updated\":\"2026-04-07T07:36:48.397353+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-07T18:28:39.433578+00:00\",\"last_updated\":\"2026-04-07T18:28:39.433578+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-08T04:58:13.956939+00:00\",\"last_updated\":\"2026-04-08T04:58:13.956939+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T06:11:13.273609+00:00\",\"last_updated\":\"2026-04-09T06:11:13.273609+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-09T06:11:21.691439+00:00\",\"last_updated\":\"2026-04-09T06:11:21.691439+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T06:11:21.693828+00:00\",\"last_updated\":\"2026-04-09T06:11:21.693828+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-09T06:11:21.697431+00:00\",\"last_updated\":\"2026-04-09T06:11:21.697431+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T06:11:21.699241+00:00\",\"last_updated\":\"2026-04-09T06:11:21.699241+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-09T06:11:22.452752+00:00\",\"last_updated\":\"2026-04-09T06:11:22.452752+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T06:11:22.461845+00:00\",\"last_updated\":\"2026-04-09T06:11:22.461845+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-09T06:11:22.482137+00:00\",\"last_updated\":\"2026-04-09T06:11:22.482137+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T06:11:22.487029+00:00\",\"last_updated\":\"2026-04-09T06:11:22.487029+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-09T06:12:16.750139+00:00\",\"last_updated\":\"2026-04-09T06:12:16.750139+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T06:12:16.751925+00:00\",\"last_updated\":\"2026-04-09T06:12:16.751925+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-09T06:12:16.754874+00:00\",\"last_updated\":\"2026-04-09T06:12:16.754874+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T06:12:16.756817+00:00\",\"last_updated\":\"2026-04-09T06:12:16.756817+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-09T06:12:17.154931+00:00\",\"last_updated\":\"2026-04-09T06:12:17.154931+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T06:12:17.162853+00:00\",\"last_updated\":\"2026-04-09T06:12:17.162853+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-09T06:12:17.181298+00:00\",\"last_updated\":\"2026-04-09T06:12:17.181298+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T06:12:17.190899+00:00\",\"last_updated\":\"2026-04-09T06:12:17.190899+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-09T18:31:57.963000+00:00\",\"last_updated\":\"2026-04-09T18:31:57.963000+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-10T04:53:39.245622+00:00\",\"last_updated\":\"2026-04-10T04:53:39.245622+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T16:55:30.295367+00:00\",\"last_updated\":\"2026-04-12T16:55:30.295367+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T16:55:38.905124+00:00\",\"last_updated\":\"2026-04-12T16:55:38.905124+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T16:55:38.909797+00:00\",\"last_updated\":\"2026-04-12T16:55:38.909797+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T16:55:38.914742+00:00\",\"last_updated\":\"2026-04-12T16:55:38.914742+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T16:55:38.916826+00:00\",\"last_updated\":\"2026-04-12T16:55:38.916826+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T16:55:40.140140+00:00\",\"last_updated\":\"2026-04-12T16:55:40.140140+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T16:55:40.142125+00:00\",\"last_updated\":\"2026-04-12T16:55:40.142125+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T16:55:40.146982+00:00\",\"last_updated\":\"2026-04-12T16:55:40.146982+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T16:55:40.150118+00:00\",\"last_updated\":\"2026-04-12T16:55:40.150118+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T17:19:22.278074+00:00\",\"last_updated\":\"2026-04-12T17:19:22.278074+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T17:19:22.280331+00:00\",\"last_updated\":\"2026-04-12T17:19:22.280331+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T17:19:22.284613+00:00\",\"last_updated\":\"2026-04-12T17:19:22.284613+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T17:19:22.286764+00:00\",\"last_updated\":\"2026-04-12T17:19:22.286764+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T17:19:23.195136+00:00\",\"last_updated\":\"2026-04-12T17:19:23.195136+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T17:19:23.197078+00:00\",\"last_updated\":\"2026-04-12T17:19:23.197078+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T17:19:23.200907+00:00\",\"last_updated\":\"2026-04-12T17:19:23.200907+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T17:19:23.202677+00:00\",\"last_updated\":\"2026-04-12T17:19:23.202677+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T18:36:52.438177+00:00\",\"last_updated\":\"2026-04-12T18:36:52.438177+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T19:59:32.474959+00:00\",\"last_updated\":\"2026-04-12T19:59:32.474959+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T19:59:32.477394+00:00\",\"last_updated\":\"2026-04-12T19:59:32.477394+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T19:59:32.481787+00:00\",\"last_updated\":\"2026-04-12T19:59:32.481787+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T19:59:32.483929+00:00\",\"last_updated\":\"2026-04-12T19:59:32.483929+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T19:59:33.228622+00:00\",\"last_updated\":\"2026-04-12T19:59:33.228622+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T19:59:33.230875+00:00\",\"last_updated\":\"2026-04-12T19:59:33.230875+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T19:59:33.235056+00:00\",\"last_updated\":\"2026-04-12T19:59:33.235056+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T19:59:33.236850+00:00\",\"last_updated\":\"2026-04-12T19:59:33.236850+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:00:38.219213+00:00\",\"last_updated\":\"2026-04-12T20:00:38.219213+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:00:38.221401+00:00\",\"last_updated\":\"2026-04-12T20:00:38.221401+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:00:38.225309+00:00\",\"last_updated\":\"2026-04-12T20:00:38.225309+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:00:38.227147+00:00\",\"last_updated\":\"2026-04-12T20:00:38.227147+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:00:39.124540+00:00\",\"last_updated\":\"2026-04-12T20:00:39.124540+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:00:39.133407+00:00\",\"last_updated\":\"2026-04-12T20:00:39.133407+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:00:39.140792+00:00\",\"last_updated\":\"2026-04-12T20:00:39.140792+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:00:39.143051+00:00\",\"last_updated\":\"2026-04-12T20:00:39.143051+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:12:20.151640+00:00\",\"last_updated\":\"2026-04-12T20:12:20.151640+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:12:20.153514+00:00\",\"last_updated\":\"2026-04-12T20:12:20.153514+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:12:20.156801+00:00\",\"last_updated\":\"2026-04-12T20:12:20.156801+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:12:20.158648+00:00\",\"last_updated\":\"2026-04-12T20:12:20.158648+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:12:21.400924+00:00\",\"last_updated\":\"2026-04-12T20:12:21.400924+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:12:21.410656+00:00\",\"last_updated\":\"2026-04-12T20:12:21.410656+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:12:21.433198+00:00\",\"last_updated\":\"2026-04-12T20:12:21.433198+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:12:21.443464+00:00\",\"last_updated\":\"2026-04-12T20:12:21.443464+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:12:49.798177+00:00\",\"last_updated\":\"2026-04-12T20:12:49.798177+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:13:19.835351+00:00\",\"last_updated\":\"2026-04-12T20:13:19.835351+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:13:19.837431+00:00\",\"last_updated\":\"2026-04-12T20:13:19.837431+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:13:19.841967+00:00\",\"last_updated\":\"2026-04-12T20:13:19.841967+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:13:19.844827+00:00\",\"last_updated\":\"2026-04-12T20:13:19.844827+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:13:21.345057+00:00\",\"last_updated\":\"2026-04-12T20:13:21.345057+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:13:21.354928+00:00\",\"last_updated\":\"2026-04-12T20:13:21.354928+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:13:21.365000+00:00\",\"last_updated\":\"2026-04-12T20:13:21.365000+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:13:21.367110+00:00\",\"last_updated\":\"2026-04-12T20:13:21.367110+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:14:24.680694+00:00\",\"last_updated\":\"2026-04-12T20:14:24.680694+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:14:24.682407+00:00\",\"last_updated\":\"2026-04-12T20:14:24.682407+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:14:24.687103+00:00\",\"last_updated\":\"2026-04-12T20:14:24.687103+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:14:24.689225+00:00\",\"last_updated\":\"2026-04-12T20:14:24.689225+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:14:25.215024+00:00\",\"last_updated\":\"2026-04-12T20:14:25.215024+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:14:25.225798+00:00\",\"last_updated\":\"2026-04-12T20:14:25.225798+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T20:14:25.245103+00:00\",\"last_updated\":\"2026-04-12T20:14:25.245103+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T20:14:25.250534+00:00\",\"last_updated\":\"2026-04-12T20:14:25.250534+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T21:53:31.259333+00:00\",\"last_updated\":\"2026-04-12T21:53:31.259333+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T21:53:31.279280+00:00\",\"last_updated\":\"2026-04-12T21:53:31.279280+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T21:53:31.288007+00:00\",\"last_updated\":\"2026-04-12T21:53:31.288007+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T21:53:31.290023+00:00\",\"last_updated\":\"2026-04-12T21:53:31.290023+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T21:53:32.402675+00:00\",\"last_updated\":\"2026-04-12T21:53:32.402675+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T21:53:32.404767+00:00\",\"last_updated\":\"2026-04-12T21:53:32.404767+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T21:53:32.411340+00:00\",\"last_updated\":\"2026-04-12T21:53:32.411340+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T21:53:32.414079+00:00\",\"last_updated\":\"2026-04-12T21:53:32.414079+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T22:09:48.450874+00:00\",\"last_updated\":\"2026-04-12T22:09:48.450874+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T22:09:48.454263+00:00\",\"last_updated\":\"2026-04-12T22:09:48.454263+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T22:09:48.458321+00:00\",\"last_updated\":\"2026-04-12T22:09:48.458321+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T22:09:48.460981+00:00\",\"last_updated\":\"2026-04-12T22:09:48.460981+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T22:09:49.479321+00:00\",\"last_updated\":\"2026-04-12T22:09:49.479321+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T22:09:49.481724+00:00\",\"last_updated\":\"2026-04-12T22:09:49.481724+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T22:09:49.486616+00:00\",\"last_updated\":\"2026-04-12T22:09:49.486616+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T22:09:49.489216+00:00\",\"last_updated\":\"2026-04-12T22:09:49.489216+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T22:49:52.922712+00:00\",\"last_updated\":\"2026-04-12T22:49:52.922712+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T22:49:52.925844+00:00\",\"last_updated\":\"2026-04-12T22:49:52.925844+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T22:49:52.929358+00:00\",\"last_updated\":\"2026-04-12T22:49:52.929358+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T22:49:52.931005+00:00\",\"last_updated\":\"2026-04-12T22:49:52.931005+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T22:49:54.320333+00:00\",\"last_updated\":\"2026-04-12T22:49:54.320333+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T22:49:54.322256+00:00\",\"last_updated\":\"2026-04-12T22:49:54.322256+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-12T22:49:54.326036+00:00\",\"last_updated\":\"2026-04-12T22:49:54.326036+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-12T22:49:54.327845+00:00\",\"last_updated\":\"2026-04-12T22:49:54.327845+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:07:34.971895+00:00\",\"last_updated\":\"2026-04-13T02:07:34.971895+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:07:34.976250+00:00\",\"last_updated\":\"2026-04-13T02:07:34.976250+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:07:34.984187+00:00\",\"last_updated\":\"2026-04-13T02:07:34.984187+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:07:34.988317+00:00\",\"last_updated\":\"2026-04-13T02:07:34.988317+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:07:36.155988+00:00\",\"last_updated\":\"2026-04-13T02:07:36.155988+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:07:36.157938+00:00\",\"last_updated\":\"2026-04-13T02:07:36.157938+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:07:36.162182+00:00\",\"last_updated\":\"2026-04-13T02:07:36.162182+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:07:36.164156+00:00\",\"last_updated\":\"2026-04-13T02:07:36.164156+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:13:01.248961+00:00\",\"last_updated\":\"2026-04-13T02:13:01.248961+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:13:24.401147+00:00\",\"last_updated\":\"2026-04-13T02:13:24.401147+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:13:24.403707+00:00\",\"last_updated\":\"2026-04-13T02:13:24.403707+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:13:24.407551+00:00\",\"last_updated\":\"2026-04-13T02:13:24.407551+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:13:24.409239+00:00\",\"last_updated\":\"2026-04-13T02:13:24.409239+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:13:25.405309+00:00\",\"last_updated\":\"2026-04-13T02:13:25.405309+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:13:25.407245+00:00\",\"last_updated\":\"2026-04-13T02:13:25.407245+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:13:25.411493+00:00\",\"last_updated\":\"2026-04-13T02:13:25.411493+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:13:25.413286+00:00\",\"last_updated\":\"2026-04-13T02:13:25.413286+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:43:47.721043+00:00\",\"last_updated\":\"2026-04-13T02:43:47.721043+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:43:47.722854+00:00\",\"last_updated\":\"2026-04-13T02:43:47.722854+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:43:47.726509+00:00\",\"last_updated\":\"2026-04-13T02:43:47.726509+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:43:47.729508+00:00\",\"last_updated\":\"2026-04-13T02:43:47.729508+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:43:48.396388+00:00\",\"last_updated\":\"2026-04-13T02:43:48.396388+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:43:48.398325+00:00\",\"last_updated\":\"2026-04-13T02:43:48.398325+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:43:48.401451+00:00\",\"last_updated\":\"2026-04-13T02:43:48.401451+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:43:48.403268+00:00\",\"last_updated\":\"2026-04-13T02:43:48.403268+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:47:33.517973+00:00\",\"last_updated\":\"2026-04-13T02:47:33.517973+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:47:33.519750+00:00\",\"last_updated\":\"2026-04-13T02:47:33.519750+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:47:33.522540+00:00\",\"last_updated\":\"2026-04-13T02:47:33.522540+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:47:33.524065+00:00\",\"last_updated\":\"2026-04-13T02:47:33.524065+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:47:34.077119+00:00\",\"last_updated\":\"2026-04-13T02:47:34.077119+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:47:34.079477+00:00\",\"last_updated\":\"2026-04-13T02:47:34.079477+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:47:34.082548+00:00\",\"last_updated\":\"2026-04-13T02:47:34.082548+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:47:34.084168+00:00\",\"last_updated\":\"2026-04-13T02:47:34.084168+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:51:23.143156+00:00\",\"last_updated\":\"2026-04-13T02:51:23.143156+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:51:23.145077+00:00\",\"last_updated\":\"2026-04-13T02:51:23.145077+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:51:23.148011+00:00\",\"last_updated\":\"2026-04-13T02:51:23.148011+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:51:23.149785+00:00\",\"last_updated\":\"2026-04-13T02:51:23.149785+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:51:24.293711+00:00\",\"last_updated\":\"2026-04-13T02:51:24.293711+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:51:24.295520+00:00\",\"last_updated\":\"2026-04-13T02:51:24.295520+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:51:24.299886+00:00\",\"last_updated\":\"2026-04-13T02:51:24.299886+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:51:24.302647+00:00\",\"last_updated\":\"2026-04-13T02:51:24.302647+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:53:18.281462+00:00\",\"last_updated\":\"2026-04-13T02:53:18.281462+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:53:18.283373+00:00\",\"last_updated\":\"2026-04-13T02:53:18.283373+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:53:18.287178+00:00\",\"last_updated\":\"2026-04-13T02:53:18.287178+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:53:18.290066+00:00\",\"last_updated\":\"2026-04-13T02:53:18.290066+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:53:19.298991+00:00\",\"last_updated\":\"2026-04-13T02:53:19.298991+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:53:19.301500+00:00\",\"last_updated\":\"2026-04-13T02:53:19.301500+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T02:53:19.304891+00:00\",\"last_updated\":\"2026-04-13T02:53:19.304891+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T02:53:19.306659+00:00\",\"last_updated\":\"2026-04-13T02:53:19.306659+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T08:05:17.375982+00:00\",\"last_updated\":\"2026-04-13T08:05:17.375982+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:22.531258+00:00\",\"last_updated\":\"2026-04-13T08:05:22.531258+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T08:05:22.533195+00:00\",\"last_updated\":\"2026-04-13T08:05:22.533195+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:22.537076+00:00\",\"last_updated\":\"2026-04-13T08:05:22.537076+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T08:05:22.539101+00:00\",\"last_updated\":\"2026-04-13T08:05:22.539101+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:23.320923+00:00\",\"last_updated\":\"2026-04-13T08:05:23.320923+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T08:05:23.324502+00:00\",\"last_updated\":\"2026-04-13T08:05:23.324502+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-13T08:05:23.331555+00:00\",\"last_updated\":\"2026-04-13T08:05:23.331555+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"above_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T08:05:23.333690+00:00\",\"last_updated\":\"2026-04-13T08:05:23.333690+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-13T18:38:29.805907+00:00\",\"last_updated\":\"2026-04-13T18:38:29.805907+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:31.247873+00:00\",\"last_updated\":\"2026-04-21T01:51:31.247873+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:53.903872+00:00\",\"last_updated\":\"2026-04-21T01:51:53.903872+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:53.906573+00:00\",\"last_updated\":\"2026-04-21T01:51:53.906573+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:53.913278+00:00\",\"last_updated\":\"2026-04-21T01:51:53.913278+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:53.915127+00:00\",\"last_updated\":\"2026-04-21T01:51:53.915127+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:55.084844+00:00\",\"last_updated\":\"2026-04-21T01:51:55.084844+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:55.094790+00:00\",\"last_updated\":\"2026-04-21T01:51:55.094790+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:55.110192+00:00\",\"last_updated\":\"2026-04-21T01:51:55.110192+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:55.112527+00:00\",\"last_updated\":\"2026-04-21T01:51:55.112527+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:48:31.001566+00:00\",\"last_updated\":\"2026-04-21T02:48:31.001566+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:48:31.004039+00:00\",\"last_updated\":\"2026-04-21T02:48:31.004039+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:48:31.013509+00:00\",\"last_updated\":\"2026-04-21T02:48:31.013509+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:48:31.016501+00:00\",\"last_updated\":\"2026-04-21T02:48:31.016501+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:04.542192+00:00\",\"last_updated\":\"2026-04-21T02:55:04.542192+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:04.557678+00:00\",\"last_updated\":\"2026-04-21T02:55:04.557678+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:04.565397+00:00\",\"last_updated\":\"2026-04-21T02:55:04.565397+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:04.568086+00:00\",\"last_updated\":\"2026-04-21T02:55:04.568086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:06.194407+00:00\",\"last_updated\":\"2026-04-21T02:55:06.194407+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.196543+00:00\",\"last_updated\":\"2026-04-21T02:55:06.196543+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:06.204598+00:00\",\"last_updated\":\"2026-04-21T02:55:06.204598+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_updated\":\"2026-04-21T02:55:06.207470+00:00\"}]]" + }, + "protocol": null, + "url": "http://localhost:8123/api/history/period/2020-01-01T00:00:00+00:00?filter_entity_id=sun.sun&end_time=2030-01-01T00%3A00%3A01%2B00%3A00&significant_changes_only" + }, + "recorded_at": "2026-04-21T02:58:30.424057+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_entry_subentries.json b/tests/cassettes/test_endpoints/test_get_entry_subentries.json new file mode 100644 index 00000000..bfc6cb70 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_entry_subentries.json @@ -0,0 +1,67 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.731090+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/get\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0},{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}]}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"5f8426fa502435857743f302651753c9\", \"id\": 3, \"type\": \"config_entries/subentries/list\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":[]}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_error_log.json b/tests/cassettes/test_endpoints/test_get_error_log.json new file mode 100644 index 00000000..daae19c7 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_error_log.json @@ -0,0 +1,107 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.346491+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/error_log", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Type": [ + "application/octet-stream" + ], + "Etag": [ + "\"18a83fe60ff127fe-11c24\"" + ], + "Last-Modified": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ], + "Accept-Ranges": [ + "bytes" + ], + "Content-Encoding": [ + "deflate" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "2026-04-21 01:51:30.282 INFO (MainThread) [homeassistant.setup] Setting up http\n2026-04-21 01:51:30.306 INFO (MainThread) [homeassistant.setup] Setup of domain system_log took 0.03 seconds\n2026-04-21 01:51:30.307 INFO (MainThread) [homeassistant.setup] Setup of domain logger took 0.03 seconds\n2026-04-21 01:51:30.307 INFO (MainThread) [homeassistant.setup] Setup of domain http took 0.02 seconds\n2026-04-21 01:51:30.307 INFO (MainThread) [homeassistant.setup] Setting up websocket_api\n2026-04-21 01:51:30.307 INFO (MainThread) [homeassistant.setup] Setup of domain websocket_api took 0.00 seconds\n2026-04-21 01:51:30.307 INFO (MainThread) [homeassistant.setup] Setting up network\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setup of domain network took 0.00 seconds\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.bootstrap] Setting up stage labs: {'labs'}; already set up: {}\nDependencies: {}; already set up: {}\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setting up labs\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setup of domain labs took 0.00 seconds\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.bootstrap] Setting up stage frontend: {'frontend'}; already set up: {}\nDependencies: {'search', 'api', 'device_automation', 'diagnostics', 'config', 'lovelace', 'auth', 'repairs', 'file_upload', 'onboarding'}; already set up: {'system_log', 'websocket_api', 'http'}\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setting up search\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setup of domain search took 0.00 seconds\n2026-04-21 01:51:30.308 INFO (MainThread) [homeassistant.setup] Setting up api\n2026-04-21 01:51:30.309 INFO (MainThread) [homeassistant.setup] Setup of domain api took 0.00 seconds\n2026-04-21 01:51:30.309 INFO (MainThread) [homeassistant.setup] Setting up auth\n2026-04-21 01:51:30.309 INFO (MainThread) [homeassistant.setup] Setup of domain auth took 0.00 seconds\n2026-04-21 01:51:30.309 INFO (MainThread) [homeassistant.setup] Setting up config\n2026-04-21 01:51:30.310 INFO (MainThread) [homeassistant.setup] Setup of domain config took 0.00 seconds\n2026-04-21 01:51:30.310 INFO (MainThread) [homeassistant.setup] Setting up device_automation\n2026-04-21 01:51:30.310 INFO (MainThread) [homeassistant.setup] Setup of domain device_automation took 0.00 seconds\n2026-04-21 01:51:30.310 INFO (MainThread) [homeassistant.setup] Setting up diagnostics\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setup of domain diagnostics took 0.00 seconds\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setting up file_upload\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setup of domain file_upload took 0.00 seconds\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setting up onboarding\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setup of domain onboarding took 0.00 seconds\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setting up lovelace\n2026-04-21 01:51:30.311 INFO (MainThread) [homeassistant.setup] Setup of domain lovelace took 0.00 seconds\n2026-04-21 01:51:30.312 INFO (MainThread) [homeassistant.setup] Setting up repairs\n2026-04-21 01:51:30.312 INFO (MainThread) [homeassistant.setup] Setup of domain repairs took 0.00 seconds\n2026-04-21 01:51:30.312 INFO (MainThread) [homeassistant.setup] Setting up frontend\n2026-04-21 01:51:30.315 INFO (MainThread) [homeassistant.setup] Setup of domain frontend took 0.00 seconds\n2026-04-21 01:51:30.316 INFO (MainThread) [homeassistant.bootstrap] Setting up stage recorder: {'recorder'}; already set up: {}\nDependencies: {}; already set up: {}\n2026-04-21 01:51:30.316 INFO (MainThread) [homeassistant.setup] Setting up recorder\n2026-04-21 01:51:30.317 INFO (MainThread) [homeassistant.components.http] Now listening on port 8123\n2026-04-21 01:51:30.317 INFO (MainThread) [homeassistant.setup] Setup of domain http took 0.00 seconds\n2026-04-21 01:51:30.318 WARNING (Recorder) [homeassistant.components.recorder.util] The system could not validate that the sqlite3 database at //config/home-assistant_v2.db was shutdown cleanly\n2026-04-21 01:51:30.343 INFO (MainThread) [homeassistant.setup] Setup of domain recorder took 0.03 seconds\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.bootstrap] Nothing to set up in stage debugger: {'debugpy'}\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.bootstrap] Nothing to set up in stage zeroconf: {'zeroconf'}\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.bootstrap] Nothing to set up in stage 1: {'usb', 'dhcp', 'hassio', 'cloud', 'ssdp', 'mqtt_eventstream', 'bluetooth'}\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.bootstrap] Setting up stage 2: {'climate', 'media_player', 'lock', 'fan', 'update', 'assist_satellite', 'stt', 'door', 'lawn_mower', 'counter', 'backup', 'remote', 'motion', 'system_health', 'brands', 'history', 'date', 'geo_location', 'input_boolean', 'automation', 'infrared', 'zone', 'select', 'image_processing', 'trace', 'humidity', 'alarm_control_panel', 'image', 'window', 'input_text', 'schedule', 'conversation', 'air_quality', 'valve', 'temperature', 'garage_door', 'button', 'notify', 'switch', 'humidifier', 'input_datetime', 'ai_task', 'script', 'input_select', 'weather', 'application_credentials', 'timer', 'analytics', 'occupancy', 'datetime', 'vacuum', 'illuminance', 'event', 'gate', 'device_tracker', 'radio_browser', 'input_number', 'logbook', 'power', 'hardware', 'binary_sensor', 'battery', 'tts', 'tag', 'person', 'siren', 'cover', 'number', 'text', 'time', 'scene', 'input_button', 'moisture', 'sensor', 'sun', 'wake_word', 'water_heater', 'light', 'camera', 'met'}; already set up: {'frontend', 'network', 'api', 'labs', 'logger', 'http'}\nDependencies: {'media_source', 'assist_pipeline', 'web_rtc', 'image_upload', 'blueprint', 'intent', 'ffmpeg'}; already set up: {'system_log', 'search', 'frontend', 'api', 'websocket_api', 'recorder', 'device_automation', 'lovelace', 'diagnostics', 'config', 'auth', 'repairs', 'file_upload', 'http', 'onboarding'}\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.setup] Setting up climate\n2026-04-21 01:51:30.344 INFO (MainThread) [homeassistant.setup] Setup of domain climate took 0.00 seconds\n2026-04-21 01:51:30.345 INFO (MainThread) [homeassistant.setup] Setting up media_player\n2026-04-21 01:51:30.346 INFO (MainThread) [homeassistant.setup] Setup of domain media_player took 0.00 seconds\n2026-04-21 01:51:30.346 INFO (MainThread) [homeassistant.setup] Setting up lock\n2026-04-21 01:51:30.346 INFO (MainThread) [homeassistant.setup] Setup of domain lock took 0.00 seconds\n2026-04-21 01:51:30.346 INFO (MainThread) [homeassistant.setup] Setting up fan\n2026-04-21 01:51:30.347 INFO (MainThread) [homeassistant.setup] Setup of domain fan took 0.00 seconds\n2026-04-21 01:51:30.347 INFO (MainThread) [homeassistant.setup] Setting up alarm_control_panel\n2026-04-21 01:51:30.347 INFO (MainThread) [homeassistant.setup] Setup of domain alarm_control_panel took 0.00 seconds\n2026-04-21 01:51:30.347 INFO (MainThread) [homeassistant.setup] Setting up valve\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setup of domain valve took 0.00 seconds\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setting up button\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setup of domain button took 0.00 seconds\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setting up notify\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setup of domain notify took 0.00 seconds\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setting up switch\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setup of domain switch took 0.00 seconds\n2026-04-21 01:51:30.348 INFO (MainThread) [homeassistant.setup] Setting up vacuum\n2026-04-21 01:51:30.349 INFO (MainThread) [homeassistant.setup] Setup of domain vacuum took 0.00 seconds\n2026-04-21 01:51:30.349 INFO (MainThread) [homeassistant.setup] Setting up event\n2026-04-21 01:51:30.349 INFO (MainThread) [homeassistant.setup] Setup of domain event took 0.00 seconds\n2026-04-21 01:51:30.349 INFO (MainThread) [homeassistant.setup] Setting up zone\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setup of domain zone took 0.00 seconds\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setting up device_tracker\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setup of domain device_tracker took 0.00 seconds\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setting up binary_sensor\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setup of domain binary_sensor took 0.00 seconds\n2026-04-21 01:51:30.350 INFO (MainThread) [homeassistant.setup] Setting up cover\n2026-04-21 01:51:30.351 INFO (MainThread) [homeassistant.setup] Setup of domain cover took 0.00 seconds\n2026-04-21 01:51:30.351 INFO (MainThread) [homeassistant.setup] Setting up number\n2026-04-21 01:51:30.351 INFO (MainThread) [homeassistant.setup] Setup of domain number took 0.00 seconds\n2026-04-21 01:51:30.351 INFO (MainThread) [homeassistant.setup] Setting up scene\n2026-04-21 01:51:30.351 INFO (MainThread) [homeassistant.components.scene] Setting up homeassistant.scene\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setup of domain scene took 0.00 seconds\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setting up sensor\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setup of domain sensor took 0.00 seconds\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setting up water_heater\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setup of domain water_heater took 0.00 seconds\n2026-04-21 01:51:30.352 INFO (MainThread) [homeassistant.setup] Setting up light\n2026-04-21 01:51:30.353 INFO (MainThread) [homeassistant.setup] Setup of domain light took 0.00 seconds\n2026-04-21 01:51:30.354 INFO (MainThread) [homeassistant.setup] Setting up backup\n2026-04-21 01:51:30.354 INFO (MainThread) [homeassistant.setup] Setting up system_health\n2026-04-21 01:51:30.354 INFO (MainThread) [homeassistant.setup] Setup of domain system_health took 0.00 seconds\n2026-04-21 01:51:30.354 INFO (MainThread) [homeassistant.setup] Setting up image_upload\n2026-04-21 01:51:30.355 INFO (MainThread) [homeassistant.setup] Setup of domain image_upload took 0.00 seconds\n2026-04-21 01:51:30.355 INFO (MainThread) [homeassistant.setup] Setting up history\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setup of domain history took 0.00 seconds\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setting up blueprint\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setup of domain blueprint took 0.00 seconds\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setting up trace\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setup of domain trace took 0.00 seconds\n2026-04-21 01:51:30.356 INFO (MainThread) [homeassistant.setup] Setting up automation\n2026-04-21 01:51:30.357 INFO (MainThread) [homeassistant.setup] Setup of domain automation took 0.00 seconds\n2026-04-21 01:51:30.357 INFO (MainThread) [homeassistant.setup] Setting up script\n2026-04-21 01:51:30.358 INFO (MainThread) [homeassistant.setup] Setup of domain script took 0.00 seconds\n2026-04-21 01:51:30.358 INFO (MainThread) [homeassistant.setup] Setting up input_number\n2026-04-21 01:51:30.359 INFO (MainThread) [homeassistant.setup] Setup of domain input_number took 0.00 seconds\n2026-04-21 01:51:30.359 INFO (MainThread) [homeassistant.setup] Setting up logbook\n2026-04-21 01:51:30.361 INFO (MainThread) [homeassistant.setup] Setup of domain logbook took 0.00 seconds\n2026-04-21 01:51:30.361 INFO (MainThread) [homeassistant.setup] Setting up person\n2026-04-21 01:51:30.363 INFO (MainThread) [homeassistant.setup] Setup of domain person took 0.00 seconds\n2026-04-21 01:51:30.365 INFO (MainThread) [homeassistant.setup] Setup of domain backup took 0.01 seconds\n2026-04-21 01:51:30.372 INFO (MainThread) [homeassistant.setup] Setting up update\n2026-04-21 01:51:30.373 INFO (MainThread) [homeassistant.setup] Setup of domain update took 0.00 seconds\n2026-04-21 01:51:30.384 INFO (MainThread) [homeassistant.setup] Setting up intent\n2026-04-21 01:51:30.384 INFO (MainThread) [homeassistant.setup] Setup of domain intent took 0.00 seconds\n2026-04-21 01:51:30.388 INFO (MainThread) [homeassistant.setup] Setting up stt\n2026-04-21 01:51:30.388 INFO (MainThread) [homeassistant.setup] Setup of domain stt took 0.00 seconds\n2026-04-21 01:51:30.392 INFO (MainThread) [homeassistant.setup] Setting up ffmpeg\n2026-04-21 01:51:30.392 INFO (MainThread) [homeassistant.setup] Setup of domain ffmpeg took 0.00 seconds\n2026-04-21 01:51:30.393 INFO (MainThread) [homeassistant.setup] Setting up wake_word\n2026-04-21 01:51:30.393 INFO (MainThread) [homeassistant.setup] Setup of domain wake_word took 0.00 seconds\n2026-04-21 01:51:30.395 INFO (MainThread) [homeassistant.setup] Setting up lawn_mower\n2026-04-21 01:51:30.395 INFO (MainThread) [homeassistant.setup] Setup of domain lawn_mower took 0.00 seconds\n2026-04-21 01:51:30.397 INFO (MainThread) [homeassistant.setup] Setting up remote\n2026-04-21 01:51:30.397 INFO (MainThread) [homeassistant.setup] Setup of domain remote took 0.00 seconds\n2026-04-21 01:51:30.399 INFO (MainThread) [homeassistant.setup] Setting up date\n2026-04-21 01:51:30.399 INFO (MainThread) [homeassistant.setup] Setup of domain date took 0.00 seconds\n2026-04-21 01:51:30.400 INFO (MainThread) [homeassistant.setup] Setting up geo_location\n2026-04-21 01:51:30.400 INFO (MainThread) [homeassistant.setup] Setup of domain geo_location took 0.00 seconds\n2026-04-21 01:51:30.403 INFO (MainThread) [homeassistant.setup] Setting up infrared\n2026-04-21 01:51:30.403 INFO (MainThread) [homeassistant.setup] Setup of domain infrared took 0.00 seconds\n2026-04-21 01:51:30.405 INFO (MainThread) [homeassistant.setup] Setting up select\n2026-04-21 01:51:30.405 INFO (MainThread) [homeassistant.setup] Setup of domain select took 0.00 seconds\n2026-04-21 01:51:30.406 INFO (MainThread) [homeassistant.setup] Setting up web_rtc\n2026-04-21 01:51:30.406 INFO (MainThread) [homeassistant.setup] Setup of domain web_rtc took 0.00 seconds\n2026-04-21 01:51:30.541 WARNING (ImportExecutor_0) [py.warnings] /usr/local/lib/python3.14/site-packages/rich/segment.py:547: SyntaxWarning: 'return' in a 'finally' block\n return\n\n2026-04-21 01:51:30.710 INFO (MainThread) [homeassistant.setup] Setting up image\n2026-04-21 01:51:30.711 INFO (MainThread) [homeassistant.setup] Setup of domain image took 0.00 seconds\n2026-04-21 01:51:30.714 INFO (MainThread) [homeassistant.setup] Setting up air_quality\n2026-04-21 01:51:30.714 INFO (MainThread) [homeassistant.setup] Setup of domain air_quality took 0.00 seconds\n2026-04-21 01:51:30.718 INFO (MainThread) [homeassistant.setup] Setting up humidifier\n2026-04-21 01:51:30.718 INFO (MainThread) [homeassistant.setup] Setup of domain humidifier took 0.00 seconds\n2026-04-21 01:51:30.718 INFO (MainThread) [homeassistant.setup] Setting up media_source\n2026-04-21 01:51:30.719 INFO (MainThread) [homeassistant.setup] Setup of domain media_source took 0.00 seconds\n2026-04-21 01:51:30.721 INFO (MainThread) [homeassistant.setup] Setting up weather\n2026-04-21 01:51:30.722 INFO (MainThread) [homeassistant.setup] Setup of domain weather took 0.00 seconds\n2026-04-21 01:51:30.723 INFO (MainThread) [homeassistant.setup] Setting up datetime\n2026-04-21 01:51:30.723 INFO (MainThread) [homeassistant.setup] Setup of domain datetime took 0.00 seconds\n2026-04-21 01:51:30.726 INFO (MainThread) [homeassistant.setup] Setting up siren\n2026-04-21 01:51:30.726 INFO (MainThread) [homeassistant.setup] Setup of domain siren took 0.00 seconds\n2026-04-21 01:51:30.729 INFO (MainThread) [homeassistant.setup] Setting up text\n2026-04-21 01:51:30.729 INFO (MainThread) [homeassistant.setup] Setup of domain text took 0.00 seconds\n2026-04-21 01:51:30.730 INFO (MainThread) [homeassistant.setup] Setting up time\n2026-04-21 01:51:30.731 INFO (MainThread) [homeassistant.setup] Setup of domain time took 0.00 seconds\n2026-04-21 01:51:30.733 INFO (MainThread) [homeassistant.setup] Setting up door\n2026-04-21 01:51:30.733 INFO (MainThread) [homeassistant.setup] Setup of domain door took 0.00 seconds\n2026-04-21 01:51:30.734 INFO (MainThread) [homeassistant.setup] Setting up counter\n2026-04-21 01:51:30.735 INFO (MainThread) [homeassistant.setup] Setup of domain counter took 0.00 seconds\n2026-04-21 01:51:30.736 INFO (MainThread) [homeassistant.setup] Setting up motion\n2026-04-21 01:51:30.736 INFO (MainThread) [homeassistant.setup] Setup of domain motion took 0.00 seconds\n2026-04-21 01:51:30.737 INFO (MainThread) [homeassistant.setup] Setting up brands\n2026-04-21 01:51:30.738 INFO (MainThread) [homeassistant.setup] Setup of domain brands took 0.00 seconds\n2026-04-21 01:51:30.738 INFO (MainThread) [homeassistant.setup] Setting up input_boolean\n2026-04-21 01:51:30.738 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test\n2026-04-21 01:51:30.739 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async\n2026-04-21 01:51:30.739 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_2\n2026-04-21 01:51:30.739 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_2\n2026-04-21 01:51:30.739 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_3\n2026-04-21 01:51:30.740 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_3\n2026-04-21 01:51:30.740 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_4\n2026-04-21 01:51:30.740 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_4\n2026-04-21 01:51:30.740 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_5\n2026-04-21 01:51:30.741 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_5\n2026-04-21 01:51:30.741 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_6\n2026-04-21 01:51:30.741 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_6\n2026-04-21 01:51:30.741 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_7\n2026-04-21 01:51:30.742 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_7\n2026-04-21 01:51:30.742 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_8\n2026-04-21 01:51:30.742 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_8\n2026-04-21 01:51:30.742 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_9\n2026-04-21 01:51:30.744 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_9\n2026-04-21 01:51:30.744 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_10\n2026-04-21 01:51:30.744 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_10\n2026-04-21 01:51:30.745 INFO (MainThread) [homeassistant.setup] Setup of domain input_boolean took 0.01 seconds\n2026-04-21 01:51:30.746 INFO (MainThread) [homeassistant.setup] Setting up humidity\n2026-04-21 01:51:30.746 INFO (MainThread) [homeassistant.setup] Setup of domain humidity took 0.00 seconds\n2026-04-21 01:51:30.747 INFO (MainThread) [homeassistant.setup] Setting up window\n2026-04-21 01:51:30.747 INFO (MainThread) [homeassistant.setup] Setup of domain window took 0.00 seconds\n2026-04-21 01:51:30.747 INFO (MainThread) [homeassistant.setup] Setting up input_text\n2026-04-21 01:51:30.748 INFO (MainThread) [homeassistant.setup] Setup of domain input_text took 0.00 seconds\n2026-04-21 01:51:30.751 INFO (MainThread) [homeassistant.setup] Setting up schedule\n2026-04-21 01:51:30.752 INFO (MainThread) [homeassistant.setup] Setup of domain schedule took 0.00 seconds\n2026-04-21 01:51:30.754 INFO (MainThread) [homeassistant.setup] Setting up temperature\n2026-04-21 01:51:30.754 INFO (MainThread) [homeassistant.setup] Setup of domain temperature took 0.00 seconds\n2026-04-21 01:51:30.755 INFO (MainThread) [homeassistant.setup] Setting up garage_door\n2026-04-21 01:51:30.755 INFO (MainThread) [homeassistant.setup] Setup of domain garage_door took 0.00 seconds\n2026-04-21 01:51:30.756 INFO (MainThread) [homeassistant.setup] Setting up input_datetime\n2026-04-21 01:51:30.757 INFO (MainThread) [homeassistant.setup] Setup of domain input_datetime took 0.00 seconds\n2026-04-21 01:51:30.757 INFO (MainThread) [homeassistant.setup] Setting up input_select\n2026-04-21 01:51:30.758 INFO (MainThread) [homeassistant.setup] Setup of domain input_select took 0.00 seconds\n2026-04-21 01:51:30.760 INFO (MainThread) [homeassistant.setup] Setting up application_credentials\n2026-04-21 01:51:30.760 INFO (MainThread) [homeassistant.setup] Setup of domain application_credentials took 0.00 seconds\n2026-04-21 01:51:30.761 INFO (MainThread) [homeassistant.setup] Setting up timer\n2026-04-21 01:51:30.762 INFO (MainThread) [homeassistant.setup] Setup of domain timer took 0.00 seconds\n2026-04-21 01:51:31.150 INFO (MainThread) [homeassistant.setup] Setting up analytics\n2026-04-21 01:51:31.152 INFO (MainThread) [homeassistant.setup] Setup of domain analytics took 0.00 seconds\n2026-04-21 01:51:31.152 INFO (MainThread) [homeassistant.setup] Setting up occupancy\n2026-04-21 01:51:31.152 INFO (MainThread) [homeassistant.setup] Setup of domain occupancy took 0.00 seconds\n2026-04-21 01:51:31.153 INFO (MainThread) [homeassistant.setup] Setting up illuminance\n2026-04-21 01:51:31.153 INFO (MainThread) [homeassistant.setup] Setup of domain illuminance took 0.00 seconds\n2026-04-21 01:51:31.154 INFO (MainThread) [homeassistant.setup] Setting up gate\n2026-04-21 01:51:31.154 INFO (MainThread) [homeassistant.setup] Setup of domain gate took 0.00 seconds\n2026-04-21 01:51:31.205 INFO (MainThread) [homeassistant.setup] Setting up radio_browser\n2026-04-21 01:51:31.205 INFO (MainThread) [homeassistant.setup] Setup of domain radio_browser took 0.00 seconds\n2026-04-21 01:51:31.207 INFO (MainThread) [homeassistant.setup] Setting up power\n2026-04-21 01:51:31.207 INFO (MainThread) [homeassistant.setup] Setup of domain power took 0.00 seconds\n2026-04-21 01:51:31.210 INFO (MainThread) [homeassistant.setup] Setting up hardware\n2026-04-21 01:51:31.220 INFO (MainThread) [homeassistant.setup] Setting up battery\n2026-04-21 01:51:31.220 INFO (MainThread) [homeassistant.setup] Setup of domain battery took 0.00 seconds\n2026-04-21 01:51:31.230 INFO (MainThread) [homeassistant.setup] Setting up tag\n2026-04-21 01:51:31.230 INFO (MainThread) [homeassistant.setup] Setup of domain tag took 0.00 seconds\n2026-04-21 01:51:31.230 INFO (MainThread) [homeassistant.setup] Setting up input_button\n2026-04-21 01:51:31.230 INFO (MainThread) [homeassistant.setup] Setup of domain input_button took 0.00 seconds\n2026-04-21 01:51:31.244 INFO (MainThread) [homeassistant.setup] Setting up moisture\n2026-04-21 01:51:31.244 INFO (MainThread) [homeassistant.setup] Setup of domain moisture took 0.00 seconds\n2026-04-21 01:51:31.247 INFO (MainThread) [homeassistant.setup] Setting up sun\n2026-04-21 01:51:31.247 INFO (MainThread) [homeassistant.setup] Setup of domain sun took 0.00 seconds\n2026-04-21 01:51:31.248 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 01:51:31.248 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new binary_sensor.sun entity: binary_sensor.sun_solar_rising\n2026-04-21 01:51:31.248 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 01:51:31.250 INFO (MainThread) [homeassistant.setup] Setup of domain hardware took 0.04 seconds\n2026-04-21 01:51:31.257 INFO (MainThread) [homeassistant.setup] Setting up met\n2026-04-21 01:51:31.257 INFO (MainThread) [homeassistant.setup] Setup of domain met took 0.00 seconds\n2026-04-21 01:51:31.333 INFO (MainThread) [homeassistant.setup] Setting up conversation\n2026-04-21 01:51:31.333 INFO (MainThread) [homeassistant.setup] Setup of domain conversation took 0.00 seconds\n2026-04-21 01:51:31.387 INFO (MainThread) [homeassistant.setup] Setting up tts\n2026-04-21 01:51:31.388 INFO (SyncWorker_2) [homeassistant.components.tts] Create cache dir /config/tts\n2026-04-21 01:51:31.391 INFO (MainThread) [homeassistant.setup] Setup of domain tts took 0.00 seconds\n2026-04-21 01:51:31.589 INFO (MainThread) [homeassistant.setup] Setting up camera\n2026-04-21 01:51:31.591 INFO (MainThread) [homeassistant.setup] Setup of domain camera took 0.00 seconds\n2026-04-21 01:51:31.602 INFO (MainThread) [homeassistant.setup] Setting up assist_pipeline\n2026-04-21 01:51:31.603 INFO (MainThread) [homeassistant.setup] Setup of domain assist_pipeline took 0.00 seconds\n2026-04-21 01:51:31.606 INFO (MainThread) [homeassistant.setup] Setting up ai_task\n2026-04-21 01:51:31.606 INFO (MainThread) [homeassistant.setup] Setup of domain ai_task took 0.00 seconds\n2026-04-21 01:51:31.609 INFO (MainThread) [homeassistant.setup] Setting up image_processing\n2026-04-21 01:51:31.609 INFO (MainThread) [homeassistant.setup] Setup of domain image_processing took 0.00 seconds\n2026-04-21 01:51:31.613 INFO (MainThread) [homeassistant.setup] Setting up assist_satellite\n2026-04-21 01:51:31.614 INFO (MainThread) [homeassistant.setup] Setup of domain assist_satellite took 0.00 seconds\n2026-04-21 01:51:31.840 INFO (MainThread) [homeassistant.components.weather] Setting up met.weather\n2026-04-21 01:51:31.843 INFO (MainThread) [homeassistant.bootstrap] Home Assistant initialized in 1.66s\n2026-04-21 01:51:31.843 INFO (MainThread) [homeassistant.core] Starting Home Assistant 2026.4.3\n2026-04-21 01:51:31.854 INFO (MainThread) [homeassistant.components.event] Setting up backup.event\n2026-04-21 01:51:31.855 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new event.backup entity: event.backup_automatic_backup\n2026-04-21 01:51:31.855 INFO (MainThread) [homeassistant.components.sensor] Setting up backup.sensor\n2026-04-21 01:51:31.855 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new sensor.backup entity: sensor.backup_backup_manager_state\n2026-04-21 01:51:31.855 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new sensor.backup entity: sensor.backup_next_scheduled_automatic_backup\n2026-04-21 01:51:31.855 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new sensor.backup entity: sensor.backup_last_successful_automatic_backup\n2026-04-21 01:51:31.856 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new sensor.backup entity: sensor.backup_last_attempted_automatic_backup\n2026-04-21 01:51:53.506 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140304549474880] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.510 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303789884416] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.651 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790196832] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.660 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790197152] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.702 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790197792] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.708 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790199552] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.711 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790199872] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.714 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790199712] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.717 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790731520] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.720 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200192] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.723 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200352] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.727 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200512] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.731 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200032] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.734 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200832] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.737 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200992] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.740 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790201152] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.743 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790200672] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.748 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790201472] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.829 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303790201312] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.860 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769688864] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.887 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769688704] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.894 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769689664] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.898 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769689984] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.901 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769690144] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.906 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 01:51:53.906 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 01:51:53.909 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769690304] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.915 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 01:51:53.915 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 01:51:53.917 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769689184] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.920 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140304732312800] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.924 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769690784] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.929 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691744] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.933 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769690624] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.938 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140304540154624] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.942 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769692064] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.945 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691904] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:53.950 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769692224] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.045 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691584] An action which does not return responses can't be called with return_response=True\n2026-04-21 01:51:54.047 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691584] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.053 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769692544] An action which does not return responses can't be called with return_response=True\n2026-04-21 01:51:54.054 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769692544] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.059 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693024] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.095 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769692384] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.110 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693504] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.123 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693184] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.127 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693824] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.161 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769694144] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.169 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693664] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.178 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769694304] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.180 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_11\n2026-04-21 01:51:54.183 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769693984] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.186 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140304732312160] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.195 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769694624] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.205 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769694944] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.210 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async_11\n2026-04-21 01:51:54.212 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769695424] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.216 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-21 01:51:54.219 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-21 01:51:54.221 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-21 01:51:54.223 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-21 01:51:54.265 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769696384] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.267 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769696544] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.270 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769696064] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.273 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769696704] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.277 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769696864] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.281 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769697024] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:54.286 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769697184] Initialized trigger\n2026-04-21 01:51:55.066 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769697184] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:55.095 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 01:51:55.095 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 01:51:55.104 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769697344] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:55.112 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 01:51:55.113 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 01:51:55.115 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769697984] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 01:51:55.121 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691264] Initialized trigger\n2026-04-21 01:51:56.326 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769691264] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:06:32.460 INFO (MainThread) [homeassistant.components.analytics] Submitted analytics to Home Assistant servers. Information submitted includes {'uuid': '7b023d740661490db49ce807f6e76fdc', 'version': '2026.4.3', 'installation_type': 'Home Assistant Container', 'certificate': False, 'integrations': ['backup', 'history', 'input_boolean', 'http', 'notify', 'weather', 'timer', 'radio_browser', 'logbook', 'api', 'person', 'sun', 'counter', 'trace', 'input_text', 'input_datetime', 'input_number', 'tag', 'logger', 'met'], 'custom_integrations': [], 'recorder': {'engine': 'sqlite', 'version': }, 'state_count': 37, 'automation_count': 0, 'integration_count': 20, 'user_count': 1}\n2026-04-21 02:48:30.640 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769214848] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.645 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769214208] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.791 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769214048] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.799 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769211968] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.827 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769213888] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.832 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769216448] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.837 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769216608] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.841 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769216768] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.846 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769695904] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.851 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217088] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.857 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217248] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.863 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217408] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.869 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769216928] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.876 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217728] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.883 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217888] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.889 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218048] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.894 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769217568] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.900 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218368] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.925 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218208] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.935 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218688] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.976 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218528] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.984 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219008] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.989 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219168] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:30.996 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219328] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.004 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:48:31.004 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:48:31.007 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769218848] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.016 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:48:31.016 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:48:31.019 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769690944] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.023 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219648] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.028 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769208928] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.035 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220288] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.039 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219488] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.044 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769208768] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.051 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220608] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.057 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220448] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:48:31.066 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220768] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.171 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220928] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.188 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769222528] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.324 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769221888] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.333 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219808] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.370 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769222208] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.375 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769221088] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.381 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766390720] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.387 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766390880] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.393 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391040] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.397 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391200] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.402 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766390560] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.410 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391520] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.420 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391680] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.428 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391840] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.433 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392000] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.438 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766391360] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.444 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392320] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.451 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392480] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.474 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392160] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.485 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392800] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.512 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392960] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.525 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766392640] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.532 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766393280] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.537 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766393440] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.558 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:55:04.558 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:55:04.561 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766393600] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.568 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:55:04.568 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:55:04.571 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769214368] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.575 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769220128] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.586 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766393120] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.594 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394400] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.600 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394240] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.605 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766393920] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.610 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769219968] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.618 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394720] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.629 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394880] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.753 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394560] An action which does not return responses can't be called with return_response=True\n2026-04-21 02:55:04.756 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766394560] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.763 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395200] An action which does not return responses can't be called with return_response=True\n2026-04-21 02:55:04.765 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395200] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.772 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395360] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.816 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395040] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.835 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395680] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.849 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395840] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.855 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766395520] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.911 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766396160] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.919 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766396320] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.928 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766396480] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.942 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test\n2026-04-21 02:55:04.948 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766396640] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.958 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766396000] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.964 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766397440] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.973 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766397280] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:04.983 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new input_boolean.input_boolean entity: input_boolean.smoke_registry_remove_test_async\n2026-04-21 02:55:04.992 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766397600] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.002 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-21 02:55:05.011 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-21 02:55:05.022 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/websocket'. (niquests/3.18.4)\n2026-04-21 02:55:05.028 WARNING (MainThread) [homeassistant.components.http.ban] Login attempt or request with invalid authentication from ce67a7913d8b (10.89.0.2). Requested URL: '/api/'. (niquests/3.18.4)\n2026-04-21 02:55:05.098 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769694464] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.101 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766398400] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.105 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766398560] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.109 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766398720] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.115 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766398880] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.122 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766399040] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:05.128 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766399200] Initialized trigger\n2026-04-21 02:55:06.188 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766399200] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:06.196 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:55:06.196 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:55:06.199 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303769221408] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:06.207 INFO (MainThread) [homeassistant.components.binary_sensor] Setting up sun.binary_sensor\n2026-04-21 02:55:06.207 INFO (MainThread) [homeassistant.components.sensor] Setting up sun.sensor\n2026-04-21 02:55:06.212 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766399360] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:55:06.222 INFO (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766397120] Initialized trigger\n2026-04-21 02:55:07.204 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766397120] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:58:30.332 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766401280] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n2026-04-21 02:58:30.339 WARNING (MainThread) [homeassistant.components.websocket_api.http.connection] [140303766402080] Test User from 10.89.0.2 (niquests/3.18.4): Disconnected: Received error message during command phase: Invalid close code: 0\n" + }, + "protocol": null, + "url": "http://localhost:8123/api/error_log" + }, + "recorded_at": "2026-04-21T02:58:30.353117+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_events.json b/tests/cassettes/test_endpoints/test_get_events.json new file mode 100644 index 00000000..7e0ad776 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_events.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.923812+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "219" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":1},{\"event\":\"entity_registry_updated\",\"listener_count\":6},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":52},{\"event\":\"core_config_updated\",\"listener_count\":3},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"device_registry_updated\",\"listener_count\":2},{\"event\":\"labs_updated\",\"listener_count\":5},{\"event\":\"component_loaded\",\"listener_count\":1},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"homeassistant_final_write\",\"listener_count\":4},{\"event\":\"homeassistant_close\",\"listener_count\":6},{\"event\":\"state_changed\",\"listener_count\":3},{\"event\":\"user_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/events" + }, + "recorded_at": "2026-04-21T02:58:30.924812+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_logbook_entries.json b/tests/cassettes/test_endpoints/test_get_logbook_entries.json new file mode 100644 index 00000000..671b0d92 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_logbook_entries.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.374629+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "1224" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T00:42:57.253045+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T00:42:57.255084+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T00:43:35.727279+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T00:43:37.465382+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T00:43:37.469311+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:38:00.874260+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:38:02.077616+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:38:02.079600+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:49:24.133682+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:49:26.296678+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-05T03:49:26.298983+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T06:57:00.262568+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T06:57:00.265797+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:02:10.770833+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:02:11.513315+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:02:11.516677+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:05:57.223587+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:05:57.966241+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:05:57.969502+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:09:51.891525+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:09:52.657550+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:09:52.660772+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:18:37.650155+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:18:39.344208+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:18:39.349195+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:11.303211+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:13.228810+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:13.233539+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:29.117210+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:29.482204+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:19:29.484149+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:30:59.574324+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:31:01.402084+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:31:01.404785+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:36:47.076982+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:36:49.411149+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-07T07:36:49.420321+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-09T06:11:23.520470+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-09T06:11:23.524980+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-09T06:12:16.812464+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-09T06:12:18.258279+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-09T06:12:18.265813+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T16:55:41.110963+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T16:55:41.119621+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T17:19:22.358232+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T17:19:24.477027+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T17:19:24.480650+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T19:59:32.543524+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T19:59:34.106033+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T19:59:34.114379+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:00:38.304081+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:00:40.452651+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:00:40.456491+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:12:20.215130+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:12:22.485769+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:12:22.488968+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:13:22.126108+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:13:22.129912+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:14:24.748612+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:14:26.151747+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T20:14:26.157637+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T21:53:31.380533+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T21:53:33.198160+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T21:53:33.202674+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:09:48.532848+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:09:50.235887+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:09:50.238504+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:49:52.990232+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:49:55.304099+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-12T22:49:55.306463+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:07:35.095384+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:07:37.123731+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:07:37.127154+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:13:26.326392+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:13:26.329639+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:43:47.778724+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:43:49.457976+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:43:49.460006+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:47:33.561670+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:47:35.331567+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:47:35.333591+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:50:58.591940+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:50:59.336033+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:50:59.338197+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:05.718969+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:06.453867+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:06.456042+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:23.190762+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:25.433029+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:51:25.437129+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:53:18.332242+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:53:20.410392+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T02:53:20.412448+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:24.482360+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-13T08:05:24.489120+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-21T01:51:56.337253+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-21T01:51:56.341620+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"beyond_our_solar_system\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-21T02:55:04.866614+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of your hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-21T02:55:07.229225+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},{\"state\":\"In the palm of my hand.\",\"entity_id\":\"sun.red_sun\",\"name\":\"red sun\",\"when\":\"2026-04-21T02:55:07.237500+00:00\",\"context_user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/logbook/2020-01-01T00:00:00+00:00?entity=sun.red_sun&end_time=2030-01-01T00%3A00%3A00%2B00%3A00" + }, + "recorded_at": "2026-04-21T02:58:30.391665+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json b/tests/cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json new file mode 100644 index 00000000..b5a13dad --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_nonuser_flows_in_progress.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.661881+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/flow/progress\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[]}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_rendered_template.json b/tests/cassettes/test_endpoints/test_get_rendered_template.json new file mode 100644 index 00000000..868b42fb --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_rendered_template.json @@ -0,0 +1,95 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.433566+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/template", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "29" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "The sun is below the horizon." + }, + "protocol": null, + "url": "http://localhost:8123/api/template" + }, + "recorded_at": "2026-04-21T02:58:30.434759+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_state.json b/tests/cassettes/test_endpoints/test_get_state.json new file mode 100644 index 00000000..12611565 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_state.json @@ -0,0 +1,95 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.904934+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "638" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-12.87,\"azimuth\":50.1,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:58:30.694375+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694375+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694375+00:00\",\"context\":{\"id\":\"01KPPZK7N6E57Y9G46N8YKSHDA\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.sun" + }, + "recorded_at": "2026-04-21T02:58:30.905810+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_get_states.json b/tests/cassettes/test_endpoints/test_get_states.json new file mode 100644 index 00000000..57cd256c --- /dev/null +++ b/tests/cassettes/test_endpoints/test_get_states.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.888830+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "2708" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:58:30.694874+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694874+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694874+00:00\",\"context\":{\"id\":\"01KPPZK7N6W1WFPM8QQ4FJXM0V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:58:30.694949+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694949+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694949+00:00\",\"context\":{\"id\":\"01KPPZK7N64E2JRX9KBD5FTXZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:58:30.695014+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695014+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695014+00:00\",\"context\":{\"id\":\"01KPPZK7N79YT9DFB621KVAAW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:58:30.695086+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695086+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695086+00:00\",\"context\":{\"id\":\"01KPPZK7N76N7VRN27TMDCKS2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:58:30.695150+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695150+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695150+00:00\",\"context\":{\"id\":\"01KPPZK7N7WDJ5VHA4DNTKCSY2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:58:30.695213+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695213+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695213+00:00\",\"context\":{\"id\":\"01KPPZK7N7W6EF4A44CF7YD3QF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-12.87,\"azimuth\":50.1,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:58:30.694375+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694375+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694375+00:00\",\"context\":{\"id\":\"01KPPZK7N6E57Y9G46N8YKSHDA\",\"parent_id\":null,\"user_id\":null}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/states" + }, + "recorded_at": "2026-04-21T02:58:30.889863+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_ignore_config_flow.json b/tests/cassettes/test_endpoints/test_ignore_config_flow.json similarity index 73% rename from cassettes/test_endpoints/test_ignore_config_flow.json rename to tests/cassettes/test_endpoints/test_ignore_config_flow.json index 30c934e4..53fd991e 100644 --- a/cassettes/test_endpoints/test_ignore_config_flow.json +++ b/tests/cassettes/test_endpoints/test_ignore_config_flow.json @@ -1,53 +1,53 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:56.525571+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.700273+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 4 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 4 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 9 + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"flow_id\": \"\", \"title\": \"\", \"id\": 2, \"type\": \"config_entries/ignore_flow\"}", - "offset_ms": 10 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"not_found\",\"message\":\"Config entry not found\"}}", - "offset_ms": 14 + "offset_ms": 1 } ] } diff --git a/tests/cassettes/test_endpoints/test_set_state.json b/tests/cassettes/test_endpoints/test_set_state.json new file mode 100644 index 00000000..54e6aa50 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_set_state.json @@ -0,0 +1,101 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.914675+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Location": [ + "/api/states/sun.red_sun" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "219" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"beyond_our_solar_system\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:58:30.916545+00:00\",\"last_reported\":\"2026-04-21T02:58:30.916545+00:00\",\"last_updated\":\"2026-04-21T02:58:30.916545+00:00\",\"context\":{\"id\":\"01KPPZK7W4XQ5ADNCS7MNSGXAN\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-21T02:58:30.917366+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_trigger_service.json b/tests/cassettes/test_endpoints/test_trigger_service.json new file mode 100644 index 00000000..ae7b079a --- /dev/null +++ b/tests/cassettes/test_endpoints/test_trigger_service.json @@ -0,0 +1,190 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.759398+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:30.761373+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/services/notify/persistent_notification?return_response", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 400, + "message": "Bad Request" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "82" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"Service does not support responses. Remove return_response from request.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/services/notify/persistent_notification?return_response" + }, + "recorded_at": "2026-04-21T02:58:30.766000+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/services/notify/persistent_notification", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "10" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services/notify/persistent_notification" + }, + "recorded_at": "2026-04-21T02:58:30.767506+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_trigger_service_with_response.json b/tests/cassettes/test_endpoints/test_trigger_service_with_response.json new file mode 100644 index 00000000..fbdc6db1 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_trigger_service_with_response.json @@ -0,0 +1,144 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:30.826878+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:30.828814+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/services/weather/get_forecasts?return_response", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "1219" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:30 GMT" + ] + }, + "body": { + "string": "{\"changed_states\":[],\"service_response\":{\"weather.forecast_home\":{\"forecast\":[{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T02:00:00+00:00\",\"wind_bearing\":52.3,\"cloud_coverage\":7.8,\"uv_index\":0.0,\"temperature\":-0.3,\"wind_speed\":17.6,\"precipitation\":0.0,\"humidity\":82},{\"condition\":\"partlycloudy\",\"datetime\":\"2026-04-21T03:00:00+00:00\",\"wind_bearing\":55.2,\"cloud_coverage\":13.3,\"uv_index\":0.0,\"temperature\":-0.9,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T04:00:00+00:00\",\"wind_bearing\":53.7,\"cloud_coverage\":5.5,\"uv_index\":0.0,\"temperature\":-1.2,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":86},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T05:00:00+00:00\",\"wind_bearing\":56.8,\"cloud_coverage\":3.9,\"uv_index\":0.1,\"temperature\":-1.4,\"wind_speed\":19.1,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T06:00:00+00:00\",\"wind_bearing\":59.0,\"cloud_coverage\":0.0,\"uv_index\":0.3,\"temperature\":-0.8,\"wind_speed\":21.2,\"precipitation\":0.0,\"humidity\":81},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T07:00:00+00:00\",\"wind_bearing\":60.3,\"cloud_coverage\":0.0,\"uv_index\":0.8,\"temperature\":-0.0,\"wind_speed\":22.0,\"precipitation\":0.0,\"humidity\":72},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T08:00:00+00:00\",\"wind_bearing\":59.1,\"cloud_coverage\":0.0,\"uv_index\":1.6,\"temperature\":0.9,\"wind_speed\":21.6,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T09:00:00+00:00\",\"wind_bearing\":58.1,\"cloud_coverage\":0.0,\"uv_index\":2.5,\"temperature\":1.9,\"wind_speed\":20.5,\"precipitation\":0.0,\"humidity\":61},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T10:00:00+00:00\",\"wind_bearing\":56.9,\"cloud_coverage\":0.0,\"uv_index\":3.3,\"temperature\":3.0,\"wind_speed\":20.9,\"precipitation\":0.0,\"humidity\":60},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T11:00:00+00:00\",\"wind_bearing\":55.7,\"cloud_coverage\":0.0,\"uv_index\":3.8,\"temperature\":4.0,\"wind_speed\":22.3,\"precipitation\":0.0,\"humidity\":60},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T12:00:00+00:00\",\"wind_bearing\":54.6,\"cloud_coverage\":0.0,\"uv_index\":3.9,\"temperature\":4.9,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T13:00:00+00:00\",\"wind_bearing\":53.7,\"cloud_coverage\":0.0,\"uv_index\":3.4,\"temperature\":5.6,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T14:00:00+00:00\",\"wind_bearing\":53.6,\"cloud_coverage\":0.0,\"uv_index\":2.6,\"temperature\":6.1,\"wind_speed\":23.0,\"precipitation\":0.0,\"humidity\":48},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T15:00:00+00:00\",\"wind_bearing\":52.5,\"cloud_coverage\":0.0,\"uv_index\":1.7,\"temperature\":6.2,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":47},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T16:00:00+00:00\",\"wind_bearing\":51.3,\"cloud_coverage\":0.0,\"uv_index\":0.9,\"temperature\":6.1,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":48},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T17:00:00+00:00\",\"wind_bearing\":51.3,\"cloud_coverage\":0.0,\"uv_index\":0.4,\"temperature\":5.6,\"wind_speed\":21.6,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T18:00:00+00:00\",\"wind_bearing\":51.0,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":4.6,\"wind_speed\":19.4,\"precipitation\":0.0,\"humidity\":59},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T19:00:00+00:00\",\"wind_bearing\":54.5,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.5,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T20:00:00+00:00\",\"wind_bearing\":52.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.0,\"wind_speed\":18.4,\"precipitation\":0.0,\"humidity\":70},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T21:00:00+00:00\",\"wind_bearing\":51.9,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.5,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T22:00:00+00:00\",\"wind_bearing\":53.6,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.0,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":79},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T23:00:00+00:00\",\"wind_bearing\":58.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.5,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T00:00:00+00:00\",\"wind_bearing\":64.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.0,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T01:00:00+00:00\",\"wind_bearing\":67.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":0.4,\"wind_speed\":15.1,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T02:00:00+00:00\",\"wind_bearing\":62.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.0,\"wind_speed\":14.4,\"precipitation\":0.0,\"humidity\":81},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T03:00:00+00:00\",\"wind_bearing\":63.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.4,\"wind_speed\":14.0,\"precipitation\":0.0,\"humidity\":82},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T04:00:00+00:00\",\"wind_bearing\":65.1,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.9,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T05:00:00+00:00\",\"wind_bearing\":69.0,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":-1.1,\"wind_speed\":13.0,\"precipitation\":0.0,\"humidity\":86},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T06:00:00+00:00\",\"wind_bearing\":70.5,\"cloud_coverage\":0.0,\"uv_index\":0.3,\"temperature\":-0.1,\"wind_speed\":13.7,\"precipitation\":0.0,\"humidity\":84},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T07:00:00+00:00\",\"wind_bearing\":70.5,\"cloud_coverage\":0.0,\"uv_index\":0.9,\"temperature\":1.3,\"wind_speed\":13.7,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T08:00:00+00:00\",\"wind_bearing\":67.4,\"cloud_coverage\":0.0,\"uv_index\":1.7,\"temperature\":3.0,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":71},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T09:00:00+00:00\",\"wind_bearing\":66.6,\"cloud_coverage\":0.0,\"uv_index\":2.7,\"temperature\":4.7,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":65},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T10:00:00+00:00\",\"wind_bearing\":69.3,\"cloud_coverage\":0.0,\"uv_index\":3.6,\"temperature\":6.1,\"wind_speed\":14.4,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T11:00:00+00:00\",\"wind_bearing\":64.3,\"cloud_coverage\":0.0,\"uv_index\":4.1,\"temperature\":6.8,\"wind_speed\":15.5,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T12:00:00+00:00\",\"wind_bearing\":57.9,\"cloud_coverage\":0.0,\"uv_index\":4.2,\"temperature\":7.3,\"wind_speed\":15.8,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T13:00:00+00:00\",\"wind_bearing\":55.9,\"cloud_coverage\":0.0,\"uv_index\":3.7,\"temperature\":7.6,\"wind_speed\":16.2,\"precipitation\":0.0,\"humidity\":50},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T14:00:00+00:00\",\"wind_bearing\":52.8,\"cloud_coverage\":0.0,\"uv_index\":2.8,\"temperature\":7.8,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T15:00:00+00:00\",\"wind_bearing\":48.9,\"cloud_coverage\":0.0,\"uv_index\":1.8,\"temperature\":7.8,\"wind_speed\":17.6,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T16:00:00+00:00\",\"wind_bearing\":45.9,\"cloud_coverage\":0.0,\"uv_index\":1.0,\"temperature\":7.7,\"wind_speed\":18.4,\"precipitation\":0.0,\"humidity\":54},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T17:00:00+00:00\",\"wind_bearing\":43.4,\"cloud_coverage\":0.0,\"uv_index\":0.4,\"temperature\":7.2,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T18:00:00+00:00\",\"wind_bearing\":38.7,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":6.2,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T19:00:00+00:00\",\"wind_bearing\":38.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":4.7,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":71},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T20:00:00+00:00\",\"wind_bearing\":48.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.7,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":75},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T21:00:00+00:00\",\"wind_bearing\":55.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.0,\"wind_speed\":14.8,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T22:00:00+00:00\",\"wind_bearing\":60.2,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.3,\"wind_speed\":11.5,\"precipitation\":0.0,\"humidity\":79},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T23:00:00+00:00\",\"wind_bearing\":54.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.4,\"wind_speed\":8.3,\"precipitation\":0.0,\"humidity\":83},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-23T00:00:00+00:00\",\"wind_bearing\":33.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":0.6,\"wind_speed\":6.8,\"precipitation\":0.0,\"humidity\":87},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-23T01:00:00+00:00\",\"wind_bearing\":17.1,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.0,\"wind_speed\":7.9,\"precipitation\":0.0,\"humidity\":90}]}}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/services/weather/get_forecasts?return_response" + }, + "recorded_at": "2026-04-21T02:58:30.834362+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_get_config.json b/tests/cassettes/test_endpoints/test_websocket_get_config.json new file mode 100644 index 00000000..b1a1a34a --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_get_config.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.479007+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_config\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"allowlist_external_dirs\":[\"/media\",\"/config/www\"],\"allowlist_external_urls\":[],\"components\":[\"climate\",\"lock\",\"fan\",\"update\",\"stt\",\"homeassistant.scene\",\"backup\",\"remote\",\"network\",\"system_health\",\"brands\",\"history\",\"labs\",\"date\",\"input_boolean\",\"http\",\"image_processing\",\"humidity\",\"sun.binary_sensor\",\"intent\",\"met.weather\",\"search\",\"sun.sensor\",\"conversation\",\"valve\",\"air_quality\",\"temperature\",\"button\",\"diagnostics\",\"notify\",\"switch\",\"humidifier\",\"device_automation\",\"weather\",\"application_credentials\",\"auth\",\"repairs\",\"timer\",\"onboarding\",\"datetime\",\"vacuum\",\"illuminance\",\"event\",\"gate\",\"ffmpeg\",\"radio_browser\",\"media_source\",\"frontend\",\"logbook\",\"power\",\"api\",\"hardware\",\"binary_sensor\",\"battery\",\"person\",\"siren\",\"cover\",\"number\",\"input_button\",\"sensor\",\"wake_word\",\"sun\",\"water_heater\",\"camera\",\"file_upload\",\"media_player\",\"assist_satellite\",\"lovelace\",\"door\",\"lawn_mower\",\"counter\",\"motion\",\"image_upload\",\"geo_location\",\"automation\",\"infrared\",\"zone\",\"select\",\"alarm_control_panel\",\"trace\",\"image\",\"web_rtc\",\"persistent_notification\",\"window\",\"input_text\",\"schedule\",\"garage_door\",\"input_datetime\",\"ai_task\",\"websocket_api\",\"recorder\",\"script\",\"input_select\",\"analytics\",\"occupancy\",\"device_tracker\",\"system_log\",\"input_number\",\"tts\",\"backup.sensor\",\"tag\",\"logger\",\"text\",\"backup.event\",\"time\",\"scene\",\"moisture\",\"assist_pipeline\",\"config\",\"blueprint\",\"light\",\"homeassistant\",\"met\"],\"config_dir\":\"/config\",\"config_source\":\"storage\",\"country\":\"US\",\"currency\":\"USD\",\"debug\":false,\"elevation\":1000,\"external_url\":null,\"internal_url\":null,\"language\":\"en\",\"latitude\":52.3731339,\"location_name\":\"Testing Server\",\"longitude\":4.8903147,\"radius\":100,\"recovery_mode\":false,\"safe_mode\":false,\"state\":\"RUNNING\",\"time_zone\":\"America/Chicago\",\"unit_system\":{\"length\":\"km\",\"accumulated_precipitation\":\"mm\",\"area\":\"m²\",\"mass\":\"g\",\"pressure\":\"Pa\",\"temperature\":\"°C\",\"volume\":\"L\",\"wind_speed\":\"m/s\"},\"version\":\"2026.4.3\",\"whitelist_external_dirs\":[\"/media\",\"/config/www\"]}}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_get_domain.json b/tests/cassettes/test_endpoints/test_websocket_get_domain.json new file mode 100644 index 00000000..fcf600b3 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_get_domain.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.626827+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"alarm_control_panel\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}},\"valve\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"vacuum\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"water_heater\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"script\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"person\":{\"reload\":{\"fields\":{}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"lawn_mower\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"date\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"image\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"datetime\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"ai_task\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}},\"image_processing\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}},\"assist_satellite\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_get_domains.json b/tests/cassettes/test_endpoints/test_websocket_get_domains.json new file mode 100644 index 00000000..624ca6b4 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_get_domains.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.587977+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"alarm_control_panel\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}},\"valve\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"vacuum\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"water_heater\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"script\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"person\":{\"reload\":{\"fields\":{}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"lawn_mower\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"date\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"image\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"datetime\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"ai_task\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}},\"image_processing\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}},\"assist_satellite\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_get_entities.json b/tests/cassettes/test_endpoints/test_websocket_get_entities.json new file mode 100644 index 00000000..6edc8960 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_get_entities.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.554651+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json b/tests/cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json new file mode 100644 index 00000000..f3533204 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_get_entity_by_entity_id.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.506113+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json b/tests/cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json new file mode 100644 index 00000000..eabc44a1 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_get_entity_by_group_slug.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.499511+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_endpoints/test_websocket_get_entity_no_args.json b/tests/cassettes/test_endpoints/test_websocket_get_entity_no_args.json similarity index 68% rename from cassettes/test_endpoints/test_websocket_get_entity_no_args.json rename to tests/cassettes/test_endpoints/test_websocket_get_entity_no_args.json index 04cb9181..766c96e6 100644 --- a/cassettes/test_endpoints/test_websocket_get_entity_no_args.json +++ b/tests/cassettes/test_endpoints/test_websocket_get_entity_no_args.json @@ -1,41 +1,41 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:54.005752+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.513914+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 1 } ] } diff --git a/cassettes/test_endpoints/test_websocket_get_rendered_template.json b/tests/cassettes/test_endpoints/test_websocket_get_rendered_template.json similarity index 77% rename from cassettes/test_endpoints/test_websocket_get_rendered_template.json rename to tests/cassettes/test_endpoints/test_websocket_get_rendered_template.json index 0e70cd0a..df753bb8 100644 --- a/cassettes/test_endpoints/test_websocket_get_rendered_template.json +++ b/tests/cassettes/test_endpoints/test_websocket_get_rendered_template.json @@ -1,71 +1,71 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:52.788745+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.442739+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"template\": \"The sun is {{ states(\\\"sun.sun\\\").replace(\\\"_\\\", \\\" the \\\") }}.\", \"report_errors\": true, \"id\": 2, \"type\": \"render_template\"}", - "offset_ms": 11 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 19 + "offset_ms": 3 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"event\",\"event\":{\"result\":\"The sun is below the horizon.\",\"listeners\":{\"all\":false,\"entities\":[\"sun.sun\"],\"domains\":[],\"time\":false}}}", - "offset_ms": 20 + "offset_ms": 3 }, { "direction": "send", "type": "text", "payload": "{\"subscription\": 2, \"id\": 3, \"type\": \"unsubscribe_events\"}", - "offset_ms": 20 + "offset_ms": 3 }, { "direction": "recv", "type": "text", "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 25 + "offset_ms": 3 } ] } diff --git a/tests/cassettes/test_endpoints/test_websocket_get_state.json b/tests/cassettes/test_endpoints/test_websocket_get_state.json new file mode 100644 index 00000000..0667e9ba --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_get_state.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.494928+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_get_state_not_found.json b/tests/cassettes/test_endpoints/test_websocket_get_state_not_found.json new file mode 100644 index 00000000..20b53916 --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_get_state_not_found.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.546808+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:55:06.208211+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977769+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208211+00:00\",\"context\":{\"id\":\"01KPPZCZZ0BWZKVQ0Q0GKA1Z8Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:55:06.208317+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977873+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208317+00:00\",\"context\":{\"id\":\"01KPPZCZZ00PDHED8AKMRB3178\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:55:06.208386+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977908+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208386+00:00\",\"context\":{\"id\":\"01KPPZCZZ0CYDJHMSWYPQ8YNT4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:55:06.208448+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977938+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208448+00:00\",\"context\":{\"id\":\"01KPPZCZZ00NJJMY1HVZHWVSBJ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:55:06.208513+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977967+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208513+00:00\",\"context\":{\"id\":\"01KPPZCZZ0S2D1WQG0B859CDVV\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:55:06.208578+00:00\",\"last_reported\":\"2026-04-21T02:57:12.977993+00:00\",\"last_updated\":\"2026-04-21T02:55:06.208578+00:00\",\"context\":{\"id\":\"01KPPZCZZ0SR6VM3A8NCGHQ5DY\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-13.02,\"azimuth\":49.81,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_reported\":\"2026-04-21T02:58:21.247287+00:00\",\"last_updated\":\"2026-04-21T02:57:12.977047+00:00\",\"context\":{\"id\":\"01KPPZGVRHTX3QD40M1KRA1Q8E\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 3 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_get_states.json b/tests/cassettes/test_endpoints/test_websocket_get_states.json new file mode 100644 index 00000000..bf45177a --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_get_states.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.896796+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:58:30.694874+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694874+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694874+00:00\",\"context\":{\"id\":\"01KPPZK7N6W1WFPM8QQ4FJXM0V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:58:30.694949+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694949+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694949+00:00\",\"context\":{\"id\":\"01KPPZK7N64E2JRX9KBD5FTXZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:58:30.695014+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695014+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695014+00:00\",\"context\":{\"id\":\"01KPPZK7N79YT9DFB621KVAAW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:58:30.695086+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695086+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695086+00:00\",\"context\":{\"id\":\"01KPPZK7N76N7VRN27TMDCKS2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:58:30.695150+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695150+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695150+00:00\",\"context\":{\"id\":\"01KPPZK7N7WDJ5VHA4DNTKCSY2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:58:30.695213+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695213+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695213+00:00\",\"context\":{\"id\":\"01KPPZK7N7W6EF4A44CF7YD3QF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-12.87,\"azimuth\":50.1,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:58:30.694375+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694375+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694375+00:00\",\"context\":{\"id\":\"01KPPZK7N6E57Y9G46N8YKSHDA\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_trigger_service.json b/tests/cassettes/test_endpoints/test_websocket_trigger_service.json new file mode 100644 index 00000000..facb907c --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_trigger_service.json @@ -0,0 +1,79 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.790722+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"alarm_control_panel\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}},\"valve\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"vacuum\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"water_heater\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"script\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"person\":{\"reload\":{\"fields\":{}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"lawn_mower\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"date\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"image\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"datetime\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"ai_task\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}},\"image_processing\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}},\"assist_satellite\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", + "offset_ms": 4 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":false,\"error\":{\"code\":\"service_validation_error\",\"message\":\"Validation error: An action which does not return responses can't be called with return_response=True\",\"translation_key\":\"service_does_not_support_response\",\"translation_placeholders\":{\"return_response\":\"return_response=True\"},\"translation_domain\":\"homeassistant\"}}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"notify\", \"service\": \"persistent_notification\", \"service_data\": {\"message\": \"Your API Test Suite just said hello!\", \"title\": \"Test Suite Notifcation\"}, \"return_response\": false, \"id\": 4, \"type\": \"call_service\"}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KPPZK7RCZWX2FKT4JW54QS8H\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}}", + "offset_ms": 5 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json b/tests/cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json new file mode 100644 index 00000000..6ab5ac3f --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_trigger_service_with_entity_id.json @@ -0,0 +1,79 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.816311+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_states\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:58:30.694874+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694874+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694874+00:00\",\"context\":{\"id\":\"01KPPZK7N6W1WFPM8QQ4FJXM0V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:58:30.694949+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694949+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694949+00:00\",\"context\":{\"id\":\"01KPPZK7N64E2JRX9KBD5FTXZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:58:30.695014+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695014+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695014+00:00\",\"context\":{\"id\":\"01KPPZK7N79YT9DFB621KVAAW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:58:30.695086+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695086+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695086+00:00\",\"context\":{\"id\":\"01KPPZK7N76N7VRN27TMDCKS2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:58:30.695150+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695150+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695150+00:00\",\"context\":{\"id\":\"01KPPZK7N7WDJ5VHA4DNTKCSY2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:58:30.695213+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695213+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695213+00:00\",\"context\":{\"id\":\"01KPPZK7N7W6EF4A44CF7YD3QF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-12.87,\"azimuth\":50.1,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:58:30.694375+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694375+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694375+00:00\",\"context\":{\"id\":\"01KPPZK7N6E57Y9G46N8YKSHDA\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"homeassistant\", \"service\": \"update_entity\", \"service_data\": {\"entity_id\": \"sun.sun\"}, \"return_response\": false, \"id\": 3, \"type\": \"call_service\"}", + "offset_ms": 3 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KPPZK7S309NZAXM523ZDJ2NZ\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}}", + "offset_ms": 4 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 4, \"type\": \"get_states\"}", + "offset_ms": 4 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":[{\"entity_id\":\"zone.home\",\"state\":\"0\",\"attributes\":{\"latitude\":52.3731339,\"longitude\":4.8903147,\"radius\":100,\"passive\":false,\"persons\":[],\"editable\":true,\"icon\":\"mdi:home\",\"friendly_name\":\"Testing Server\"},\"last_changed\":\"2026-04-21T01:51:30.350164+00:00\",\"last_reported\":\"2026-04-21T01:51:30.350164+00:00\",\"last_updated\":\"2026-04-21T01:51:30.350164+00:00\",\"context\":{\"id\":\"01KPPVRHHENK82VRW7705GA5FS\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.739566+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739566+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739566+00:00\",\"context\":{\"id\":\"01KPPVRHXKQYT57JJS87ARBR18\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.739785+00:00\",\"last_reported\":\"2026-04-21T01:51:30.739785+00:00\",\"last_updated\":\"2026-04-21T01:51:30.739785+00:00\",\"context\":{\"id\":\"01KPPVRHXK55V9T0KGYSY09D3K\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740027+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740027+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740027+00:00\",\"context\":{\"id\":\"01KPPVRHXMNZXYFMKZJSNGAV95\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740251+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740251+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740251+00:00\",\"context\":{\"id\":\"01KPPVRHXMB3DYMAWN7PHYN69X\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740486+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740486+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740486+00:00\",\"context\":{\"id\":\"01KPPVRHXMZ9V1A8XK5QDTAKDP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.740713+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740713+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740713+00:00\",\"context\":{\"id\":\"01KPPVRHXMCTWV0M1N8DAANCY4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.740933+00:00\",\"last_reported\":\"2026-04-21T01:51:30.740933+00:00\",\"last_updated\":\"2026-04-21T01:51:30.740933+00:00\",\"context\":{\"id\":\"01KPPVRHXMYYG74M4RPN3K5FV1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741174+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741174+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741174+00:00\",\"context\":{\"id\":\"01KPPVRHXN41KGJ7QKY2X7T61F\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741412+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741412+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741412+00:00\",\"context\":{\"id\":\"01KPPVRHXNA7VK1D3SV5YSZA5C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.741652+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741652+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741652+00:00\",\"context\":{\"id\":\"01KPPVRHXNM75E5VC8Q9F2SDMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.741910+00:00\",\"last_reported\":\"2026-04-21T01:51:30.741910+00:00\",\"last_updated\":\"2026-04-21T01:51:30.741910+00:00\",\"context\":{\"id\":\"01KPPVRHXNHZVZMWAW66E5RS4W\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742192+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742192+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742192+00:00\",\"context\":{\"id\":\"01KPPVRHXPFBMF04KXSHY5QVDN\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742450+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742450+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742450+00:00\",\"context\":{\"id\":\"01KPPVRHXPBG4M7PDSZXR7QWE7\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.742692+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742692+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742692+00:00\",\"context\":{\"id\":\"01KPPVRHXPMJMDNZT34W47EJMP\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.742944+00:00\",\"last_reported\":\"2026-04-21T01:51:30.742944+00:00\",\"last_updated\":\"2026-04-21T01:51:30.742944+00:00\",\"context\":{\"id\":\"01KPPVRHXP9P94RAQ4ZMDV8J0M\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744207+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744207+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744207+00:00\",\"context\":{\"id\":\"01KPPVRHXRNQE8HGGZ28JCJF42\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:30.744488+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744488+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744488+00:00\",\"context\":{\"id\":\"01KPPVRHXRTZ1NAZWDJ4EPKG4N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:30.744750+00:00\",\"last_reported\":\"2026-04-21T01:51:30.744750+00:00\",\"last_updated\":\"2026-04-21T01:51:30.744750+00:00\",\"context\":{\"id\":\"01KPPVRHXRKAGJECJZ60HD00C5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dawn\",\"state\":\"2026-04-21T03:45:01+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dawn\"},\"last_changed\":\"2026-04-21T02:58:30.694874+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694874+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694874+00:00\",\"context\":{\"id\":\"01KPPZK7N6W1WFPM8QQ4FJXM0V\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_dusk\",\"state\":\"2026-04-21T19:34:41+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next dusk\"},\"last_changed\":\"2026-04-21T02:58:30.694949+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694949+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694949+00:00\",\"context\":{\"id\":\"01KPPZK7N64E2JRX9KBD5FTXZD\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_midnight\",\"state\":\"2026-04-21T23:38:57+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next midnight\"},\"last_changed\":\"2026-04-21T02:58:30.695014+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695014+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695014+00:00\",\"context\":{\"id\":\"01KPPZK7N79YT9DFB621KVAAW3\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_noon\",\"state\":\"2026-04-21T11:39:14+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next noon\"},\"last_changed\":\"2026-04-21T02:58:30.695086+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695086+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695086+00:00\",\"context\":{\"id\":\"01KPPZK7N76N7VRN27TMDCKS2N\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_rising\",\"state\":\"2026-04-21T04:25:11+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next rising\"},\"last_changed\":\"2026-04-21T02:58:30.695150+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695150+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695150+00:00\",\"context\":{\"id\":\"01KPPZK7N7WDJ5VHA4DNTKCSY2\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.sun_next_setting\",\"state\":\"2026-04-21T18:54:15+00:00\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Sun Next setting\"},\"last_changed\":\"2026-04-21T02:58:30.695213+00:00\",\"last_reported\":\"2026-04-21T02:58:30.695213+00:00\",\"last_updated\":\"2026-04-21T02:58:30.695213+00:00\",\"context\":{\"id\":\"01KPPZK7N7W6EF4A44CF7YD3QF\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"conversation.home_assistant\",\"state\":\"unknown\",\"attributes\":{\"friendly_name\":\"Home Assistant\",\"supported_features\":1},\"last_changed\":\"2026-04-21T01:51:31.333588+00:00\",\"last_reported\":\"2026-04-21T01:51:31.333588+00:00\",\"last_updated\":\"2026-04-21T01:51:31.333588+00:00\",\"context\":{\"id\":\"01KPPVRJG5BEYVSD95HCWM5WXC\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"weather.forecast_home\",\"state\":\"partlycloudy\",\"attributes\":{\"temperature\":0.4,\"dew_point\":-2.9,\"temperature_unit\":\"°C\",\"humidity\":80,\"cloud_coverage\":29.7,\"uv_index\":0.0,\"pressure\":1024.7,\"pressure_unit\":\"hPa\",\"wind_bearing\":49.0,\"wind_speed\":18.0,\"wind_speed_unit\":\"km/h\",\"visibility_unit\":\"km\",\"precipitation_unit\":\"mm\",\"attribution\":\"Weather forecast from met.no, delivered by the Norwegian Meteorological Institute.\",\"friendly_name\":\"Forecast Home\",\"supported_features\":3},\"last_changed\":\"2026-04-21T01:51:31.841539+00:00\",\"last_reported\":\"2026-04-21T01:51:31.847217+00:00\",\"last_updated\":\"2026-04-21T01:51:31.841539+00:00\",\"context\":{\"id\":\"01KPPVRK01NBBRWMPYTPJ0Q7CQ\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"event.backup_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"event_types\":[\"completed\",\"failed\",\"in_progress\"],\"event_type\":null,\"friendly_name\":\"Backup Automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855174+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855243+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855174+00:00\",\"context\":{\"id\":\"01KPPVRK0FZ18VMTZHSW824DH4\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_backup_manager_state\",\"state\":\"idle\",\"attributes\":{\"options\":[\"idle\",\"create_backup\",\"blocked\",\"receive_backup\",\"restore_backup\"],\"device_class\":\"enum\",\"friendly_name\":\"Backup Backup Manager state\"},\"last_changed\":\"2026-04-21T01:51:31.855576+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855635+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855576+00:00\",\"context\":{\"id\":\"01KPPVRK0FQCJ9TY7VSTTCBPDW\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Next scheduled automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855771+00:00\",\"last_reported\":\"2026-04-21T01:51:31.855819+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855771+00:00\",\"context\":{\"id\":\"01KPPVRK0FR3JBKXNTYJAQ4Y0Q\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last successful automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.855948+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856007+00:00\",\"last_updated\":\"2026-04-21T01:51:31.855948+00:00\",\"context\":{\"id\":\"01KPPVRK0F7F4X6BX2X6R6FXS5\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"state\":\"unknown\",\"attributes\":{\"device_class\":\"timestamp\",\"friendly_name\":\"Backup Last attempted automatic backup\"},\"last_changed\":\"2026-04-21T01:51:31.856153+00:00\",\"last_reported\":\"2026-04-21T01:51:31.856200+00:00\",\"last_updated\":\"2026-04-21T01:51:31.856153+00:00\",\"context\":{\"id\":\"01KPPVRK0GFFZS3EDSM99EB93A\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:07.237500+00:00\",\"last_reported\":\"2026-04-21T02:55:07.237500+00:00\",\"last_updated\":\"2026-04-21T02:55:07.237500+00:00\",\"context\":{\"id\":\"01KPPZD0Z5ZZVJ3FSA5B82TXEK\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test\"},\"last_changed\":\"2026-04-21T01:51:54.180970+00:00\",\"last_reported\":\"2026-04-21T01:51:54.181042+00:00\",\"last_updated\":\"2026-04-21T01:51:54.180970+00:00\",\"context\":{\"id\":\"01KPPVS8T4XE4XDMTECDMY224C\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"state\":\"off\",\"attributes\":{\"editable\":true,\"friendly_name\":\"smoke_registry_remove_test_async\"},\"last_changed\":\"2026-04-21T01:51:54.210289+00:00\",\"last_reported\":\"2026-04-21T01:51:54.210364+00:00\",\"last_updated\":\"2026-04-21T01:51:54.210289+00:00\",\"context\":{\"id\":\"01KPPVS8V2NMMTNFP14HC232Y1\",\"parent_id\":null,\"user_id\":null}},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-12.87,\"azimuth\":50.1,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:58:30.694375+00:00\",\"last_reported\":\"2026-04-21T02:58:30.694375+00:00\",\"last_updated\":\"2026-04-21T02:58:30.694375+00:00\",\"context\":{\"id\":\"01KPPZK7N6E57Y9G46N8YKSHDA\",\"parent_id\":null,\"user_id\":null}}]}", + "offset_ms": 5 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_endpoints/test_websocket_trigger_service_with_response.json b/tests/cassettes/test_endpoints/test_websocket_trigger_service_with_response.json new file mode 100644 index 00000000..3c5ed6eb --- /dev/null +++ b/tests/cassettes/test_endpoints/test_websocket_trigger_service_with_response.json @@ -0,0 +1,67 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.864690+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"get_services\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"homeassistant\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}},\"persistent_notification\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}},\"system_log\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"logger\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}},\"frontend\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}},\"recorder\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}},\"climate\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}},\"media_player\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}},\"lock\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}},\"fan\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}},\"alarm_control_panel\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}},\"valve\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}},\"button\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}},\"notify\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}},\"switch\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}},\"vacuum\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}},\"zone\":{\"reload\":{\"fields\":{}}},\"cover\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}},\"number\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}},\"scene\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}},\"water_heater\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}},\"light\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}},\"automation\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}},\"script\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}},\"input_number\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}},\"logbook\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}},\"device_tracker\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}},\"person\":{\"reload\":{\"fields\":{}}},\"backup\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}},\"update\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}},\"ffmpeg\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}},\"lawn_mower\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}},\"remote\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}},\"date\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}},\"select\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}},\"image\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}},\"humidifier\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}},\"weather\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}},\"datetime\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}},\"siren\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}},\"text\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}},\"time\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}},\"counter\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}},\"input_boolean\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}},\"input_text\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}},\"schedule\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}},\"input_datetime\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}},\"input_select\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}},\"timer\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}},\"input_button\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}},\"conversation\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}},\"tts\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}},\"camera\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}},\"ai_task\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}},\"image_processing\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}},\"assist_satellite\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"domain\": \"weather\", \"service\": \"get_forecasts\", \"service_data\": {\"entity_id\": \"weather.forecast_home\", \"type\": \"hourly\"}, \"return_response\": true, \"id\": 3, \"type\": \"call_service\"}", + "offset_ms": 4 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KPPZK7TNKJCZV5NVG5M13MKZ\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"},\"response\":{\"weather.forecast_home\":{\"forecast\":[{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T02:00:00+00:00\",\"wind_bearing\":52.3,\"cloud_coverage\":7.8,\"uv_index\":0.0,\"temperature\":-0.3,\"wind_speed\":17.6,\"precipitation\":0.0,\"humidity\":82},{\"condition\":\"partlycloudy\",\"datetime\":\"2026-04-21T03:00:00+00:00\",\"wind_bearing\":55.2,\"cloud_coverage\":13.3,\"uv_index\":0.0,\"temperature\":-0.9,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T04:00:00+00:00\",\"wind_bearing\":53.7,\"cloud_coverage\":5.5,\"uv_index\":0.0,\"temperature\":-1.2,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":86},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T05:00:00+00:00\",\"wind_bearing\":56.8,\"cloud_coverage\":3.9,\"uv_index\":0.1,\"temperature\":-1.4,\"wind_speed\":19.1,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T06:00:00+00:00\",\"wind_bearing\":59.0,\"cloud_coverage\":0.0,\"uv_index\":0.3,\"temperature\":-0.8,\"wind_speed\":21.2,\"precipitation\":0.0,\"humidity\":81},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T07:00:00+00:00\",\"wind_bearing\":60.3,\"cloud_coverage\":0.0,\"uv_index\":0.8,\"temperature\":-0.0,\"wind_speed\":22.0,\"precipitation\":0.0,\"humidity\":72},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T08:00:00+00:00\",\"wind_bearing\":59.1,\"cloud_coverage\":0.0,\"uv_index\":1.6,\"temperature\":0.9,\"wind_speed\":21.6,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T09:00:00+00:00\",\"wind_bearing\":58.1,\"cloud_coverage\":0.0,\"uv_index\":2.5,\"temperature\":1.9,\"wind_speed\":20.5,\"precipitation\":0.0,\"humidity\":61},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T10:00:00+00:00\",\"wind_bearing\":56.9,\"cloud_coverage\":0.0,\"uv_index\":3.3,\"temperature\":3.0,\"wind_speed\":20.9,\"precipitation\":0.0,\"humidity\":60},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T11:00:00+00:00\",\"wind_bearing\":55.7,\"cloud_coverage\":0.0,\"uv_index\":3.8,\"temperature\":4.0,\"wind_speed\":22.3,\"precipitation\":0.0,\"humidity\":60},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T12:00:00+00:00\",\"wind_bearing\":54.6,\"cloud_coverage\":0.0,\"uv_index\":3.9,\"temperature\":4.9,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T13:00:00+00:00\",\"wind_bearing\":53.7,\"cloud_coverage\":0.0,\"uv_index\":3.4,\"temperature\":5.6,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T14:00:00+00:00\",\"wind_bearing\":53.6,\"cloud_coverage\":0.0,\"uv_index\":2.6,\"temperature\":6.1,\"wind_speed\":23.0,\"precipitation\":0.0,\"humidity\":48},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T15:00:00+00:00\",\"wind_bearing\":52.5,\"cloud_coverage\":0.0,\"uv_index\":1.7,\"temperature\":6.2,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":47},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T16:00:00+00:00\",\"wind_bearing\":51.3,\"cloud_coverage\":0.0,\"uv_index\":0.9,\"temperature\":6.1,\"wind_speed\":23.4,\"precipitation\":0.0,\"humidity\":48},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T17:00:00+00:00\",\"wind_bearing\":51.3,\"cloud_coverage\":0.0,\"uv_index\":0.4,\"temperature\":5.6,\"wind_speed\":21.6,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-21T18:00:00+00:00\",\"wind_bearing\":51.0,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":4.6,\"wind_speed\":19.4,\"precipitation\":0.0,\"humidity\":59},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T19:00:00+00:00\",\"wind_bearing\":54.5,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.5,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T20:00:00+00:00\",\"wind_bearing\":52.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.0,\"wind_speed\":18.4,\"precipitation\":0.0,\"humidity\":70},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T21:00:00+00:00\",\"wind_bearing\":51.9,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.5,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T22:00:00+00:00\",\"wind_bearing\":53.6,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.0,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":79},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-21T23:00:00+00:00\",\"wind_bearing\":58.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.5,\"wind_speed\":18.0,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T00:00:00+00:00\",\"wind_bearing\":64.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.0,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T01:00:00+00:00\",\"wind_bearing\":67.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":0.4,\"wind_speed\":15.1,\"precipitation\":0.0,\"humidity\":80},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T02:00:00+00:00\",\"wind_bearing\":62.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.0,\"wind_speed\":14.4,\"precipitation\":0.0,\"humidity\":81},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T03:00:00+00:00\",\"wind_bearing\":63.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.4,\"wind_speed\":14.0,\"precipitation\":0.0,\"humidity\":82},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T04:00:00+00:00\",\"wind_bearing\":65.1,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.9,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":85},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T05:00:00+00:00\",\"wind_bearing\":69.0,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":-1.1,\"wind_speed\":13.0,\"precipitation\":0.0,\"humidity\":86},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T06:00:00+00:00\",\"wind_bearing\":70.5,\"cloud_coverage\":0.0,\"uv_index\":0.3,\"temperature\":-0.1,\"wind_speed\":13.7,\"precipitation\":0.0,\"humidity\":84},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T07:00:00+00:00\",\"wind_bearing\":70.5,\"cloud_coverage\":0.0,\"uv_index\":0.9,\"temperature\":1.3,\"wind_speed\":13.7,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T08:00:00+00:00\",\"wind_bearing\":67.4,\"cloud_coverage\":0.0,\"uv_index\":1.7,\"temperature\":3.0,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":71},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T09:00:00+00:00\",\"wind_bearing\":66.6,\"cloud_coverage\":0.0,\"uv_index\":2.7,\"temperature\":4.7,\"wind_speed\":13.3,\"precipitation\":0.0,\"humidity\":65},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T10:00:00+00:00\",\"wind_bearing\":69.3,\"cloud_coverage\":0.0,\"uv_index\":3.6,\"temperature\":6.1,\"wind_speed\":14.4,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T11:00:00+00:00\",\"wind_bearing\":64.3,\"cloud_coverage\":0.0,\"uv_index\":4.1,\"temperature\":6.8,\"wind_speed\":15.5,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T12:00:00+00:00\",\"wind_bearing\":57.9,\"cloud_coverage\":0.0,\"uv_index\":4.2,\"temperature\":7.3,\"wind_speed\":15.8,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T13:00:00+00:00\",\"wind_bearing\":55.9,\"cloud_coverage\":0.0,\"uv_index\":3.7,\"temperature\":7.6,\"wind_speed\":16.2,\"precipitation\":0.0,\"humidity\":50},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T14:00:00+00:00\",\"wind_bearing\":52.8,\"cloud_coverage\":0.0,\"uv_index\":2.8,\"temperature\":7.8,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":51},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T15:00:00+00:00\",\"wind_bearing\":48.9,\"cloud_coverage\":0.0,\"uv_index\":1.8,\"temperature\":7.8,\"wind_speed\":17.6,\"precipitation\":0.0,\"humidity\":52},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T16:00:00+00:00\",\"wind_bearing\":45.9,\"cloud_coverage\":0.0,\"uv_index\":1.0,\"temperature\":7.7,\"wind_speed\":18.4,\"precipitation\":0.0,\"humidity\":54},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T17:00:00+00:00\",\"wind_bearing\":43.4,\"cloud_coverage\":0.0,\"uv_index\":0.4,\"temperature\":7.2,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":56},{\"condition\":\"sunny\",\"datetime\":\"2026-04-22T18:00:00+00:00\",\"wind_bearing\":38.7,\"cloud_coverage\":0.0,\"uv_index\":0.1,\"temperature\":6.2,\"wind_speed\":16.9,\"precipitation\":0.0,\"humidity\":64},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T19:00:00+00:00\",\"wind_bearing\":38.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":4.7,\"wind_speed\":18.7,\"precipitation\":0.0,\"humidity\":71},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T20:00:00+00:00\",\"wind_bearing\":48.0,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.7,\"wind_speed\":17.3,\"precipitation\":0.0,\"humidity\":75},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T21:00:00+00:00\",\"wind_bearing\":55.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":3.0,\"wind_speed\":14.8,\"precipitation\":0.0,\"humidity\":77},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T22:00:00+00:00\",\"wind_bearing\":60.2,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":2.3,\"wind_speed\":11.5,\"precipitation\":0.0,\"humidity\":79},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-22T23:00:00+00:00\",\"wind_bearing\":54.8,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":1.4,\"wind_speed\":8.3,\"precipitation\":0.0,\"humidity\":83},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-23T00:00:00+00:00\",\"wind_bearing\":33.3,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":0.6,\"wind_speed\":6.8,\"precipitation\":0.0,\"humidity\":87},{\"condition\":\"clear-night\",\"datetime\":\"2026-04-23T01:00:00+00:00\",\"wind_bearing\":17.1,\"cloud_coverage\":0.0,\"uv_index\":0.0,\"temperature\":-0.0,\"wind_speed\":7.9,\"precipitation\":0.0,\"humidity\":90}]}}}}", + "offset_ms": 6 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_async_get_entity_registry_entry.json b/tests/cassettes/test_entity_registry/test_async_get_entity_registry_entry.json similarity index 50% rename from cassettes/test_entity_registry/test_async_get_entity_registry_entry.json rename to tests/cassettes/test_entity_registry/test_async_get_entity_registry_entry.json index c18e2213..b21e90aa 100644 --- a/cassettes/test_entity_registry/test_async_get_entity_registry_entry.json +++ b/tests/cassettes/test_entity_registry/test_async_get_entity_registry_entry.json @@ -1,53 +1,53 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:00.304933+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.996687+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"id\": 2, \"type\": \"config/entity_registry/get\"}", - "offset_ms": 11 + "offset_ms": 1 }, { "direction": "recv", "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067739.720447,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}", - "offset_ms": 16 + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780004,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e14c775a20078d98703325848bd203\",\"labels\":[],\"modified_at\":1776740310.969806,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dawn\",\"aliases\":[null],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}", + "offset_ms": 1 } ] } diff --git a/tests/cassettes/test_entity_registry/test_async_list_entity_registry.json b/tests/cassettes/test_entity_registry/test_async_list_entity_registry.json new file mode 100644 index 00000000..cd68d4d7 --- /dev/null +++ b/tests/cassettes/test_entity_registry/test_async_list_entity_registry.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.989867+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config/entity_registry/list\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.test_user\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e6de57e591560fad68f1c3b52bf0b295\",\"labels\":[],\"modified_at\":1776736291.845863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Test User\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"test_user\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780004,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e14c775a20078d98703325848bd203\",\"labels\":[],\"modified_at\":1776740310.969806,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.78036,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a35874a09227109783c6d1301a10cf\",\"labels\":[],\"modified_at\":1776740310.693602,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780603,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec059b13886380e2d5d4a9002e89879\",\"labels\":[],\"modified_at\":1776740310.693632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780796,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04bc6ee0081da1191cb27e2ee5842148\",\"labels\":[],\"modified_at\":1776740310.693647,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780976,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec87eec8ebe365ec0cd1119962627570\",\"labels\":[],\"modified_at\":1776740310.69366,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781147,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"594acbedee290ea279f1d63cf6efbb3b\",\"labels\":[],\"modified_at\":1776740310.693672,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.7813,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0df1d222a5fedd8d5e62a2ff2be79094\",\"labels\":[],\"modified_at\":1776736291.249561,\"name\":null,\"options\":{},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781397,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"104de75b64e950af398ec4fe9998338c\",\"labels\":[],\"modified_at\":1776736291.249615,\"name\":null,\"options\":{},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781483,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"888993d87923ff452ad1e53f6b3a943f\",\"labels\":[],\"modified_at\":1734400728.781506,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"config_subentry_id\":null,\"created_at\":1734714367.780994,\"device_id\":\"6586dbdeb10a88ae4603b47e600c6124\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.forecast_home\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ae588672696a2601b0152f22ee235f3\",\"labels\":[],\"modified_at\":1776736291.847135,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"52.3731339-4.8903147\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00afea76654579fe44dc26fa049f0d95\",\"labels\":[],\"modified_at\":1776736291.846123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739625,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04922e6ac54200e570db419df99ece8c\",\"labels\":[],\"modified_at\":1776736291.846168,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739845,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2fe6d8fbdb29e850b38895c4c9cdda82\",\"labels\":[],\"modified_at\":1776736291.846208,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740082,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8209dc22c78a45fd269e9880c55c1c2\",\"labels\":[],\"modified_at\":1776736291.846245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740308,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd12146fa4bd2a889b1a6af4e7626212\",\"labels\":[],\"modified_at\":1776736291.846284,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740546,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46f3d8c1dd22171b7330aeef56b43fd5\",\"labels\":[],\"modified_at\":1776736291.84632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"50d2eb521b8e66836d4a4b6d492734c0\",\"labels\":[],\"modified_at\":1776736291.846355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740991,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8473e2828ba5aaeeed5f94fe71e2a243\",\"labels\":[],\"modified_at\":1776736291.84639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741233,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1c8d909ff67fe04402562d20849e2e2\",\"labels\":[],\"modified_at\":1776736291.846426,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.74147,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c8e78f816cee4aef5e31ed61671aad2\",\"labels\":[],\"modified_at\":1776736291.846466,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741714,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29fb3aedbe5f30bcef57cbcf0deda1ea\",\"labels\":[],\"modified_at\":1776736291.846502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741971,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf406eecc4ffb183e9439f263926eefc\",\"labels\":[],\"modified_at\":1776736291.846535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.742259,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"805617f74b0acbf74de79160c359a31a\",\"labels\":[],\"modified_at\":1776736291.846566,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.74251,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9c3e4bb50fdfc95e2daca6d689787628\",\"labels\":[],\"modified_at\":1776736291.846599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.742757,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05614c4c7602ec2854e502745849efbc\",\"labels\":[],\"modified_at\":1776736291.846632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.743972,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3697bf85b5699c9f5baf8cb290c6600\",\"labels\":[],\"modified_at\":1776736291.846665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.744282,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8054ad07121c6277f9ebe271800bb505\",\"labels\":[],\"modified_at\":1776736291.8467,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.744558,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e1c7742b493b9ec4a41b24e0078d0478\",\"labels\":[],\"modified_at\":1776736291.846735,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1776736291.248235,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6f88aa596671270f4e4b900bf0f54a2\",\"labels\":[],\"modified_at\":1776736291.248297,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855019,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eefbc4a445ee9c5190783ee7d38e9ae1\",\"labels\":[],\"modified_at\":1776736291.855209,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855459,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f89bf1b1b54ad27812e78f0d8eeae996\",\"labels\":[],\"modified_at\":1776736291.8556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855687,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd738ac93c990d68a2799f763ea8cf7f\",\"labels\":[],\"modified_at\":1776736291.855789,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855869,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e33c7be41cc1186af3147b4c8c4634cb\",\"labels\":[],\"modified_at\":1776736291.855967,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.856067,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db7784b53acf1895f02f84c4ba8f20ed\",\"labels\":[],\"modified_at\":1776736291.856172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736314.180845,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94ec33809c121700cc4b95f4f7f7d078\",\"labels\":[],\"modified_at\":1776736314.181007,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736314.210126,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55bd86616abf5593bcb28c935e8f8c0b\",\"labels\":[],\"modified_at\":1776736314.210327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_11\"}]}", + "offset_ms": 3 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json b/tests/cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json new file mode 100644 index 00000000..c97faa18 --- /dev/null +++ b/tests/cassettes/test_entity_registry/test_async_remove_entity_registry_entry.json @@ -0,0 +1,79 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:31.008307+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"name\": \"smoke_registry_remove_test_async\", \"id\": 2, \"type\": \"input_boolean/create\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"id\":\"smoke_registry_remove_test_async_13\",\"name\":\"smoke_registry_remove_test_async\"}}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"input_boolean.smoke_registry_remove_test_async\", \"id\": 3, \"type\": \"config/entity_registry/remove\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 3 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 4, \"type\": \"config/entity_registry/list\"}", + "offset_ms": 3 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.test_user\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e6de57e591560fad68f1c3b52bf0b295\",\"labels\":[],\"modified_at\":1776736291.845863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Test User\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"test_user\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780004,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e14c775a20078d98703325848bd203\",\"labels\":[],\"modified_at\":1776740311.003932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.78036,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a35874a09227109783c6d1301a10cf\",\"labels\":[],\"modified_at\":1776740310.693602,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780603,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec059b13886380e2d5d4a9002e89879\",\"labels\":[],\"modified_at\":1776740310.693632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780796,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04bc6ee0081da1191cb27e2ee5842148\",\"labels\":[],\"modified_at\":1776740310.693647,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780976,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec87eec8ebe365ec0cd1119962627570\",\"labels\":[],\"modified_at\":1776740310.69366,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781147,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"594acbedee290ea279f1d63cf6efbb3b\",\"labels\":[],\"modified_at\":1776740310.693672,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.7813,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0df1d222a5fedd8d5e62a2ff2be79094\",\"labels\":[],\"modified_at\":1776736291.249561,\"name\":null,\"options\":{},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781397,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"104de75b64e950af398ec4fe9998338c\",\"labels\":[],\"modified_at\":1776736291.249615,\"name\":null,\"options\":{},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781483,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"888993d87923ff452ad1e53f6b3a943f\",\"labels\":[],\"modified_at\":1734400728.781506,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"config_subentry_id\":null,\"created_at\":1734714367.780994,\"device_id\":\"6586dbdeb10a88ae4603b47e600c6124\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.forecast_home\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ae588672696a2601b0152f22ee235f3\",\"labels\":[],\"modified_at\":1776736291.847135,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"52.3731339-4.8903147\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00afea76654579fe44dc26fa049f0d95\",\"labels\":[],\"modified_at\":1776736291.846123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739625,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04922e6ac54200e570db419df99ece8c\",\"labels\":[],\"modified_at\":1776736291.846168,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739845,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2fe6d8fbdb29e850b38895c4c9cdda82\",\"labels\":[],\"modified_at\":1776736291.846208,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740082,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8209dc22c78a45fd269e9880c55c1c2\",\"labels\":[],\"modified_at\":1776736291.846245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740308,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd12146fa4bd2a889b1a6af4e7626212\",\"labels\":[],\"modified_at\":1776736291.846284,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740546,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46f3d8c1dd22171b7330aeef56b43fd5\",\"labels\":[],\"modified_at\":1776736291.84632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"50d2eb521b8e66836d4a4b6d492734c0\",\"labels\":[],\"modified_at\":1776736291.846355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740991,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8473e2828ba5aaeeed5f94fe71e2a243\",\"labels\":[],\"modified_at\":1776736291.84639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741233,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1c8d909ff67fe04402562d20849e2e2\",\"labels\":[],\"modified_at\":1776736291.846426,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.74147,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c8e78f816cee4aef5e31ed61671aad2\",\"labels\":[],\"modified_at\":1776736291.846466,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741714,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29fb3aedbe5f30bcef57cbcf0deda1ea\",\"labels\":[],\"modified_at\":1776736291.846502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741971,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf406eecc4ffb183e9439f263926eefc\",\"labels\":[],\"modified_at\":1776736291.846535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.742259,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"805617f74b0acbf74de79160c359a31a\",\"labels\":[],\"modified_at\":1776736291.846566,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.74251,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9c3e4bb50fdfc95e2daca6d689787628\",\"labels\":[],\"modified_at\":1776736291.846599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.742757,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05614c4c7602ec2854e502745849efbc\",\"labels\":[],\"modified_at\":1776736291.846632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.743972,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3697bf85b5699c9f5baf8cb290c6600\",\"labels\":[],\"modified_at\":1776736291.846665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.744282,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8054ad07121c6277f9ebe271800bb505\",\"labels\":[],\"modified_at\":1776736291.8467,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.744558,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e1c7742b493b9ec4a41b24e0078d0478\",\"labels\":[],\"modified_at\":1776736291.846735,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1776736291.248235,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6f88aa596671270f4e4b900bf0f54a2\",\"labels\":[],\"modified_at\":1776736291.248297,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855019,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eefbc4a445ee9c5190783ee7d38e9ae1\",\"labels\":[],\"modified_at\":1776736291.855209,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855459,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f89bf1b1b54ad27812e78f0d8eeae996\",\"labels\":[],\"modified_at\":1776736291.8556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855687,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd738ac93c990d68a2799f763ea8cf7f\",\"labels\":[],\"modified_at\":1776736291.855789,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855869,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e33c7be41cc1186af3147b4c8c4634cb\",\"labels\":[],\"modified_at\":1776736291.855967,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.856067,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db7784b53acf1895f02f84c4ba8f20ed\",\"labels\":[],\"modified_at\":1776736291.856172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736314.180845,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94ec33809c121700cc4b95f4f7f7d078\",\"labels\":[],\"modified_at\":1776736314.181007,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736314.210126,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55bd86616abf5593bcb28c935e8f8c0b\",\"labels\":[],\"modified_at\":1776736314.210327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_11\"}]}", + "offset_ms": 5 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_entity_registry/test_async_update_entity_registry_entry.json b/tests/cassettes/test_entity_registry/test_async_update_entity_registry_entry.json new file mode 100644 index 00000000..042452c2 --- /dev/null +++ b/tests/cassettes/test_entity_registry/test_async_update_entity_registry_entry.json @@ -0,0 +1,67 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:31.001873+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": \"Async Test Name\", \"id\": 2, \"type\": \"config/entity_registry/update\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780004,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e14c775a20078d98703325848bd203\",\"labels\":[],\"modified_at\":1776740311.003102,\"name\":\"Async Test Name\",\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dawn\",\"aliases\":[null],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": null, \"id\": 3, \"type\": \"config/entity_registry/update\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780004,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e14c775a20078d98703325848bd203\",\"labels\":[],\"modified_at\":1776740311.003932,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dawn\",\"aliases\":[null],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_entity_registry/test_get_entity_registry_entry.json b/tests/cassettes/test_entity_registry/test_get_entity_registry_entry.json similarity index 50% rename from cassettes/test_entity_registry/test_get_entity_registry_entry.json rename to tests/cassettes/test_entity_registry/test_get_entity_registry_entry.json index c1edb03e..96577bb1 100644 --- a/cassettes/test_entity_registry/test_get_entity_registry_entry.json +++ b/tests/cassettes/test_entity_registry/test_get_entity_registry_entry.json @@ -1,53 +1,53 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:08:59.657941+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.961590+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"id\": 2, \"type\": \"config/entity_registry/get\"}", - "offset_ms": 11 + "offset_ms": 1 }, { "direction": "recv", "type": "text", - "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"1543e25985b9193f65fd5db85884ff4d\",\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":\"478eb2264bf26267eb0907a487da7592\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"5c11534f89cc17a1b2882fe1a5a2dce5\",\"labels\":[],\"modified_at\":1776067515.271304,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false},\"cloud.alexa\":{\"should_expose\":false},\"cloud.google_assistant\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"1543e25985b9193f65fd5db85884ff4d-next_dawn\",\"aliases\":[],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}", - "offset_ms": 16 + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780004,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e14c775a20078d98703325848bd203\",\"labels\":[],\"modified_at\":1776740310.693684,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dawn\",\"aliases\":[null],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}", + "offset_ms": 1 } ] } diff --git a/tests/cassettes/test_entity_registry/test_list_entity_registry.json b/tests/cassettes/test_entity_registry/test_list_entity_registry.json new file mode 100644 index 00000000..dff11a34 --- /dev/null +++ b/tests/cassettes/test_entity_registry/test_list_entity_registry.json @@ -0,0 +1,55 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.956388+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config/entity_registry/list\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.test_user\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e6de57e591560fad68f1c3b52bf0b295\",\"labels\":[],\"modified_at\":1776736291.845863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Test User\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"test_user\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780004,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e14c775a20078d98703325848bd203\",\"labels\":[],\"modified_at\":1776740310.693684,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.78036,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a35874a09227109783c6d1301a10cf\",\"labels\":[],\"modified_at\":1776740310.693602,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780603,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec059b13886380e2d5d4a9002e89879\",\"labels\":[],\"modified_at\":1776740310.693632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780796,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04bc6ee0081da1191cb27e2ee5842148\",\"labels\":[],\"modified_at\":1776740310.693647,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780976,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec87eec8ebe365ec0cd1119962627570\",\"labels\":[],\"modified_at\":1776740310.69366,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781147,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"594acbedee290ea279f1d63cf6efbb3b\",\"labels\":[],\"modified_at\":1776740310.693672,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.7813,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0df1d222a5fedd8d5e62a2ff2be79094\",\"labels\":[],\"modified_at\":1776736291.249561,\"name\":null,\"options\":{},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781397,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"104de75b64e950af398ec4fe9998338c\",\"labels\":[],\"modified_at\":1776736291.249615,\"name\":null,\"options\":{},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781483,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"888993d87923ff452ad1e53f6b3a943f\",\"labels\":[],\"modified_at\":1734400728.781506,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"config_subentry_id\":null,\"created_at\":1734714367.780994,\"device_id\":\"6586dbdeb10a88ae4603b47e600c6124\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.forecast_home\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ae588672696a2601b0152f22ee235f3\",\"labels\":[],\"modified_at\":1776736291.847135,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"52.3731339-4.8903147\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00afea76654579fe44dc26fa049f0d95\",\"labels\":[],\"modified_at\":1776736291.846123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739625,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04922e6ac54200e570db419df99ece8c\",\"labels\":[],\"modified_at\":1776736291.846168,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739845,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2fe6d8fbdb29e850b38895c4c9cdda82\",\"labels\":[],\"modified_at\":1776736291.846208,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740082,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8209dc22c78a45fd269e9880c55c1c2\",\"labels\":[],\"modified_at\":1776736291.846245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740308,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd12146fa4bd2a889b1a6af4e7626212\",\"labels\":[],\"modified_at\":1776736291.846284,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740546,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46f3d8c1dd22171b7330aeef56b43fd5\",\"labels\":[],\"modified_at\":1776736291.84632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"50d2eb521b8e66836d4a4b6d492734c0\",\"labels\":[],\"modified_at\":1776736291.846355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740991,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8473e2828ba5aaeeed5f94fe71e2a243\",\"labels\":[],\"modified_at\":1776736291.84639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741233,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1c8d909ff67fe04402562d20849e2e2\",\"labels\":[],\"modified_at\":1776736291.846426,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.74147,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c8e78f816cee4aef5e31ed61671aad2\",\"labels\":[],\"modified_at\":1776736291.846466,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741714,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29fb3aedbe5f30bcef57cbcf0deda1ea\",\"labels\":[],\"modified_at\":1776736291.846502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741971,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf406eecc4ffb183e9439f263926eefc\",\"labels\":[],\"modified_at\":1776736291.846535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.742259,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"805617f74b0acbf74de79160c359a31a\",\"labels\":[],\"modified_at\":1776736291.846566,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.74251,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9c3e4bb50fdfc95e2daca6d689787628\",\"labels\":[],\"modified_at\":1776736291.846599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.742757,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05614c4c7602ec2854e502745849efbc\",\"labels\":[],\"modified_at\":1776736291.846632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.743972,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3697bf85b5699c9f5baf8cb290c6600\",\"labels\":[],\"modified_at\":1776736291.846665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.744282,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8054ad07121c6277f9ebe271800bb505\",\"labels\":[],\"modified_at\":1776736291.8467,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.744558,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e1c7742b493b9ec4a41b24e0078d0478\",\"labels\":[],\"modified_at\":1776736291.846735,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1776736291.248235,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6f88aa596671270f4e4b900bf0f54a2\",\"labels\":[],\"modified_at\":1776736291.248297,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855019,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eefbc4a445ee9c5190783ee7d38e9ae1\",\"labels\":[],\"modified_at\":1776736291.855209,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855459,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f89bf1b1b54ad27812e78f0d8eeae996\",\"labels\":[],\"modified_at\":1776736291.8556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855687,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd738ac93c990d68a2799f763ea8cf7f\",\"labels\":[],\"modified_at\":1776736291.855789,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855869,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e33c7be41cc1186af3147b4c8c4634cb\",\"labels\":[],\"modified_at\":1776736291.855967,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.856067,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db7784b53acf1895f02f84c4ba8f20ed\",\"labels\":[],\"modified_at\":1776736291.856172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736314.180845,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94ec33809c121700cc4b95f4f7f7d078\",\"labels\":[],\"modified_at\":1776736314.181007,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736314.210126,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55bd86616abf5593bcb28c935e8f8c0b\",\"labels\":[],\"modified_at\":1776736314.210327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_11\"}]}", + "offset_ms": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_entity_registry/test_remove_entity_registry_entry.json b/tests/cassettes/test_entity_registry/test_remove_entity_registry_entry.json new file mode 100644 index 00000000..774007dd --- /dev/null +++ b/tests/cassettes/test_entity_registry/test_remove_entity_registry_entry.json @@ -0,0 +1,79 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.973072+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"name\": \"smoke_registry_remove_test\", \"id\": 2, \"type\": \"input_boolean/create\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"id\":\"smoke_registry_remove_test_13\",\"name\":\"smoke_registry_remove_test\"}}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"input_boolean.smoke_registry_remove_test\", \"id\": 3, \"type\": \"config/entity_registry/remove\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 4, \"type\": \"config/entity_registry/list\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\": \"result\",\"success\":true,\"result\": [{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":0.0,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"person.test_user\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e6de57e591560fad68f1c3b52bf0b295\",\"labels\":[],\"modified_at\":1776736291.845863,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Test User\",\"platform\":\"person\",\"translation_key\":null,\"unique_id\":\"test_user\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780004,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e14c775a20078d98703325848bd203\",\"labels\":[],\"modified_at\":1776740310.969806,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dawn\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.78036,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dusk\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e1a35874a09227109783c6d1301a10cf\",\"labels\":[],\"modified_at\":1776740310.693602,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dusk\",\"platform\":\"sun\",\"translation_key\":\"next_dusk\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dusk\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780603,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_midnight\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"9ec059b13886380e2d5d4a9002e89879\",\"labels\":[],\"modified_at\":1776740310.693632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next midnight\",\"platform\":\"sun\",\"translation_key\":\"next_midnight\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_midnight\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780796,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_noon\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"04bc6ee0081da1191cb27e2ee5842148\",\"labels\":[],\"modified_at\":1776740310.693647,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next noon\",\"platform\":\"sun\",\"translation_key\":\"next_noon\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_noon\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780976,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"ec87eec8ebe365ec0cd1119962627570\",\"labels\":[],\"modified_at\":1776740310.69366,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next rising\",\"platform\":\"sun\",\"translation_key\":\"next_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781147,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_setting\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"594acbedee290ea279f1d63cf6efbb3b\",\"labels\":[],\"modified_at\":1776740310.693672,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next setting\",\"platform\":\"sun\",\"translation_key\":\"next_setting\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_setting\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.7813,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_elevation\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"0df1d222a5fedd8d5e62a2ff2be79094\",\"labels\":[],\"modified_at\":1776736291.249561,\"name\":null,\"options\":{},\"original_name\":\"Solar elevation\",\"platform\":\"sun\",\"translation_key\":\"solar_elevation\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_elevation\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781397,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_azimuth\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"104de75b64e950af398ec4fe9998338c\",\"labels\":[],\"modified_at\":1776736291.249615,\"name\":null,\"options\":{},\"original_name\":\"Solar azimuth\",\"platform\":\"sun\",\"translation_key\":\"solar_azimuth\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_azimuth\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.781483,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"888993d87923ff452ad1e53f6b3a943f\",\"labels\":[],\"modified_at\":1734400728.781506,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"config_subentry_id\":null,\"created_at\":1734714367.780994,\"device_id\":\"6586dbdeb10a88ae4603b47e600c6124\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"weather.forecast_home\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"6ae588672696a2601b0152f22ee235f3\",\"labels\":[],\"modified_at\":1776736291.847135,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Home\",\"platform\":\"met\",\"translation_key\":null,\"unique_id\":\"52.3731339-4.8903147\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739394,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"00afea76654579fe44dc26fa049f0d95\",\"labels\":[],\"modified_at\":1776736291.846123,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739625,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_2\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"04922e6ac54200e570db419df99ece8c\",\"labels\":[],\"modified_at\":1776736291.846168,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_2\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.739845,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"2fe6d8fbdb29e850b38895c4c9cdda82\",\"labels\":[],\"modified_at\":1776736291.846208,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740082,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_3\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e8209dc22c78a45fd269e9880c55c1c2\",\"labels\":[],\"modified_at\":1776736291.846245,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_3\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740308,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"bd12146fa4bd2a889b1a6af4e7626212\",\"labels\":[],\"modified_at\":1776736291.846284,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740546,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_4\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"46f3d8c1dd22171b7330aeef56b43fd5\",\"labels\":[],\"modified_at\":1776736291.84632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_4\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740769,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"50d2eb521b8e66836d4a4b6d492734c0\",\"labels\":[],\"modified_at\":1776736291.846355,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.740991,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_5\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8473e2828ba5aaeeed5f94fe71e2a243\",\"labels\":[],\"modified_at\":1776736291.84639,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_5\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741233,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"f1c8d909ff67fe04402562d20849e2e2\",\"labels\":[],\"modified_at\":1776736291.846426,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.74147,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_6\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"1c8e78f816cee4aef5e31ed61671aad2\",\"labels\":[],\"modified_at\":1776736291.846466,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_6\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741714,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"29fb3aedbe5f30bcef57cbcf0deda1ea\",\"labels\":[],\"modified_at\":1776736291.846502,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.741971,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_7\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"cf406eecc4ffb183e9439f263926eefc\",\"labels\":[],\"modified_at\":1776736291.846535,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_7\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.742259,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"805617f74b0acbf74de79160c359a31a\",\"labels\":[],\"modified_at\":1776736291.846566,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.74251,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_8\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"9c3e4bb50fdfc95e2daca6d689787628\",\"labels\":[],\"modified_at\":1776736291.846599,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_8\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.742757,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"05614c4c7602ec2854e502745849efbc\",\"labels\":[],\"modified_at\":1776736291.846632,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.743972,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_9\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"d3697bf85b5699c9f5baf8cb290c6600\",\"labels\":[],\"modified_at\":1776736291.846665,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_9\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.744282,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"8054ad07121c6277f9ebe271800bb505\",\"labels\":[],\"modified_at\":1776736291.8467,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736290.744558,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_10\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"e1c7742b493b9ec4a41b24e0078d0478\",\"labels\":[],\"modified_at\":1776736291.846735,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_10\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1776736291.248235,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":\"integration\",\"entity_category\":\"diagnostic\",\"entity_id\":\"binary_sensor.sun_solar_rising\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e6f88aa596671270f4e4b900bf0f54a2\",\"labels\":[],\"modified_at\":1776736291.248297,\"name\":null,\"options\":{},\"original_name\":\"Solar rising\",\"platform\":\"sun\",\"translation_key\":\"solar_rising\",\"unique_id\":\"5f8426fa502435857743f302651753c9-solar_rising\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855019,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"event.backup_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"eefbc4a445ee9c5190783ee7d38e9ae1\",\"labels\":[],\"modified_at\":1776736291.855209,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Automatic backup\",\"platform\":\"backup\",\"translation_key\":\"automatic_backup_event\",\"unique_id\":\"automatic_backup_event\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855459,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_backup_manager_state\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"f89bf1b1b54ad27812e78f0d8eeae996\",\"labels\":[],\"modified_at\":1776736291.8556,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Backup Manager state\",\"platform\":\"backup\",\"translation_key\":\"backup_manager_state\",\"unique_id\":\"backup_manager_state\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855687,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_next_scheduled_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"fd738ac93c990d68a2799f763ea8cf7f\",\"labels\":[],\"modified_at\":1776736291.855789,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next scheduled automatic backup\",\"platform\":\"backup\",\"translation_key\":\"next_scheduled_automatic_backup\",\"unique_id\":\"next_scheduled_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.855869,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_successful_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"e33c7be41cc1186af3147b4c8c4634cb\",\"labels\":[],\"modified_at\":1776736291.855967,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last successful automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_successful_automatic_backup\",\"unique_id\":\"last_successful_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"config_subentry_id\":null,\"created_at\":1776736291.856067,\"device_id\":\"db3bb53cf08b114c84f0dc480da5ac2c\",\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"sensor.backup_last_attempted_automatic_backup\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"db7784b53acf1895f02f84c4ba8f20ed\",\"labels\":[],\"modified_at\":1776736291.856172,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Last attempted automatic backup\",\"platform\":\"backup\",\"translation_key\":\"last_attempted_automatic_backup\",\"unique_id\":\"last_attempted_automatic_backup\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736314.180845,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"94ec33809c121700cc4b95f4f7f7d078\",\"labels\":[],\"modified_at\":1776736314.181007,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_11\"},{\"area_id\":null,\"categories\":{},\"config_entry_id\":null,\"config_subentry_id\":null,\"created_at\":1776736314.210126,\"device_id\":null,\"disabled_by\":null,\"entity_category\":null,\"entity_id\":\"input_boolean.smoke_registry_remove_test_async_11\",\"has_entity_name\":false,\"hidden_by\":null,\"icon\":null,\"id\":\"55bd86616abf5593bcb28c935e8f8c0b\",\"labels\":[],\"modified_at\":1776736314.210327,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"smoke_registry_remove_test_async\",\"platform\":\"input_boolean\",\"translation_key\":null,\"unique_id\":\"smoke_registry_remove_test_async_11\"}]}", + "offset_ms": 3 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_entity_registry/test_update_entity_registry_entry.json b/tests/cassettes/test_entity_registry/test_update_entity_registry_entry.json new file mode 100644 index 00000000..9bbedf82 --- /dev/null +++ b/tests/cassettes/test_entity_registry/test_update_entity_registry_entry.json @@ -0,0 +1,67 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:30.967996+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": \"Test Name\", \"id\": 2, \"type\": \"config/entity_registry/update\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780004,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e14c775a20078d98703325848bd203\",\"labels\":[],\"modified_at\":1776740310.969017,\"name\":\"Test Name\",\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dawn\",\"aliases\":[null],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entity_id\": \"sensor.sun_next_dawn\", \"name\": null, \"id\": 3, \"type\": \"config/entity_registry/update\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"entity_entry\":{\"area_id\":null,\"categories\":{},\"config_entry_id\":\"5f8426fa502435857743f302651753c9\",\"config_subentry_id\":null,\"created_at\":1734400728.780004,\"device_id\":\"b3d3fadee11d077d99d948c173631abc\",\"disabled_by\":null,\"entity_category\":\"diagnostic\",\"entity_id\":\"sensor.sun_next_dawn\",\"has_entity_name\":true,\"hidden_by\":null,\"icon\":null,\"id\":\"d7e14c775a20078d98703325848bd203\",\"labels\":[],\"modified_at\":1776740310.969806,\"name\":null,\"options\":{\"conversation\":{\"should_expose\":false}},\"original_name\":\"Next dawn\",\"platform\":\"sun\",\"translation_key\":\"next_dawn\",\"unique_id\":\"5f8426fa502435857743f302651753c9-next_dawn\",\"aliases\":[null],\"capabilities\":null,\"device_class\":null,\"original_device_class\":\"timestamp\",\"original_icon\":null}}}", + "offset_ms": 2 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_async_endpoint_not_found_error.json b/tests/cassettes/test_errors/test_async_endpoint_not_found_error.json new file mode 100644 index 00000000..960afe5c --- /dev/null +++ b/tests/cassettes/test_errors/test_async_endpoint_not_found_error.json @@ -0,0 +1,95 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.067278+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/qwertyuioasdfghjkzxcvbnm", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 404, + "message": "Not Found" + }, + "headers": { + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "14" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "404: Not Found" + }, + "protocol": null, + "url": "http://localhost:8123/api/qwertyuioasdfghjkzxcvbnm" + }, + "recorded_at": "2026-04-21T02:58:31.068433+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_async_invalid_template.json b/tests/cassettes/test_errors/test_async_invalid_template.json new file mode 100644 index 00000000..27fd1ad1 --- /dev/null +++ b/tests/cassettes/test_errors/test_async_invalid_template.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.103490+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/template", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 400, + "message": "Bad Request" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "100" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"Error rendering template: TemplateSyntaxError: expected token 'end of print statement', got 'lol'\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/template" + }, + "recorded_at": "2026-04-21T02:58:31.104855+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_async_method_not_allowed_error.json b/tests/cassettes/test_errors/test_async_method_not_allowed_error.json new file mode 100644 index 00000000..10484b17 --- /dev/null +++ b/tests/cassettes/test_errors/test_async_method_not_allowed_error.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.074249+00:00" + }, + { + "request": { + "method": "DELETE", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 405, + "message": "Method Not Allowed" + }, + "headers": { + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Allow": [ + "GET,OPTIONS" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "23" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "405: Method Not Allowed" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.075346+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_async_no_entity_information_provided.json b/tests/cassettes/test_errors/test_async_no_entity_information_provided.json new file mode 100644 index 00000000..73155414 --- /dev/null +++ b/tests/cassettes/test_errors/test_async_no_entity_information_provided.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.089242+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_async_websocket_get_entity_histories_not_supported.json b/tests/cassettes/test_errors/test_async_websocket_get_entity_histories_not_supported.json similarity index 68% rename from cassettes/test_errors/test_async_websocket_get_entity_histories_not_supported.json rename to tests/cassettes/test_errors/test_async_websocket_get_entity_histories_not_supported.json index fe76027a..56974941 100644 --- a/cassettes/test_errors/test_async_websocket_get_entity_histories_not_supported.json +++ b/tests/cassettes/test_errors/test_async_websocket_get_entity_histories_not_supported.json @@ -1,41 +1,41 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:01.795708+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:31.132439+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 11 + "offset_ms": 0 } ] } diff --git a/cassettes/test_errors/test_async_websocket_set_state_not_supported.json b/tests/cassettes/test_errors/test_async_websocket_set_state_not_supported.json similarity index 68% rename from cassettes/test_errors/test_async_websocket_set_state_not_supported.json rename to tests/cassettes/test_errors/test_async_websocket_set_state_not_supported.json index 35bddd27..90057324 100644 --- a/cassettes/test_errors/test_async_websocket_set_state_not_supported.json +++ b/tests/cassettes/test_errors/test_async_websocket_set_state_not_supported.json @@ -1,41 +1,41 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:01.749815+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:31.127908+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 0 } ] } diff --git a/tests/cassettes/test_errors/test_async_wrong_headers.json b/tests/cassettes/test_errors/test_async_wrong_headers.json new file mode 100644 index 00000000..ebd75dd6 --- /dev/null +++ b/tests/cassettes/test_errors/test_async_wrong_headers.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.082013+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_domain_missing_services_attribute.json b/tests/cassettes/test_errors/test_domain_missing_services_attribute.json new file mode 100644 index 00000000..e18e4686 --- /dev/null +++ b/tests/cassettes/test_errors/test_domain_missing_services_attribute.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.059953+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_endpoint_not_found_error.json b/tests/cassettes/test_errors/test_endpoint_not_found_error.json new file mode 100644 index 00000000..f11619c1 --- /dev/null +++ b/tests/cassettes/test_errors/test_endpoint_not_found_error.json @@ -0,0 +1,95 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.062987+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/qwertyuioasdfghjkzxcvbnm", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 404, + "message": "Not Found" + }, + "headers": { + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "14" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "404: Not Found" + }, + "protocol": null, + "url": "http://localhost:8123/api/qwertyuioasdfghjkzxcvbnm" + }, + "recorded_at": "2026-04-21T02:58:31.064217+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_invalid_template.json b/tests/cassettes/test_errors/test_invalid_template.json new file mode 100644 index 00000000..e80cd9a9 --- /dev/null +++ b/tests/cassettes/test_errors/test_invalid_template.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.099447+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/template", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 400, + "message": "Bad Request" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "100" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"Error rendering template: TemplateSyntaxError: expected token 'end of print statement', got 'lol'\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/template" + }, + "recorded_at": "2026-04-21T02:58:31.100827+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_method_not_allowed_error.json b/tests/cassettes/test_errors/test_method_not_allowed_error.json new file mode 100644 index 00000000..c7c489d3 --- /dev/null +++ b/tests/cassettes/test_errors/test_method_not_allowed_error.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.070827+00:00" + }, + { + "request": { + "method": "DELETE", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 405, + "message": "Method Not Allowed" + }, + "headers": { + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Allow": [ + "GET,OPTIONS" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "23" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "405: Method Not Allowed" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.071684+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_no_entity_information_provided.json b/tests/cassettes/test_errors/test_no_entity_information_provided.json new file mode 100644 index 00000000..fa8abfa8 --- /dev/null +++ b/tests/cassettes/test_errors/test_no_entity_information_provided.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.085802+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/cassettes/test_errors/test_websocket_get_entity_histories_not_supported.json b/tests/cassettes/test_errors/test_websocket_get_entity_histories_not_supported.json similarity index 68% rename from cassettes/test_errors/test_websocket_get_entity_histories_not_supported.json rename to tests/cassettes/test_errors/test_websocket_get_entity_histories_not_supported.json index aee299e5..f2131466 100644 --- a/cassettes/test_errors/test_websocket_get_entity_histories_not_supported.json +++ b/tests/cassettes/test_errors/test_websocket_get_entity_histories_not_supported.json @@ -1,41 +1,41 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:01.700178+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:31.123976+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 0 } ] } diff --git a/cassettes/test_errors/test_websocket_set_state_not_supported.json b/tests/cassettes/test_errors/test_websocket_set_state_not_supported.json similarity index 68% rename from cassettes/test_errors/test_websocket_set_state_not_supported.json rename to tests/cassettes/test_errors/test_websocket_set_state_not_supported.json index 05bde6f3..66360cde 100644 --- a/cassettes/test_errors/test_websocket_set_state_not_supported.json +++ b/tests/cassettes/test_errors/test_websocket_set_state_not_supported.json @@ -1,41 +1,41 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:01.645720+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:31.120432+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 9 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 9 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 14 + "offset_ms": 0 } ] } diff --git a/tests/cassettes/test_errors/test_wrong_headers.json b/tests/cassettes/test_errors/test_wrong_headers.json new file mode 100644 index 00000000..3ab48911 --- /dev/null +++ b/tests/cassettes/test_errors/test_wrong_headers.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:31 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:31.077814+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_events/test_async_listen_config_entries.json b/tests/cassettes/test_events/test_async_listen_config_entries.json new file mode 100644 index 00000000..59ecb95f --- /dev/null +++ b/tests/cassettes/test_events/test_async_listen_config_entries.json @@ -0,0 +1,121 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:32.422840+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/subscribe\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 3 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 3 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"5f8426fa502435857743f302651753c9\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", + "offset_ms": 3 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"unload_in_progress\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 5 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"5f8426fa502435857743f302651753c9\", \"disabled_by\": null, \"id\": 4, \"type\": \"config_entries/disable\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"setup_in_progress\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 10 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 2, \"id\": 5, \"type\": \"unsubscribe_events\"}", + "offset_ms": 10 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 11 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_events/test_async_listen_events.json b/tests/cassettes/test_events/test_async_listen_events.json similarity index 71% rename from cassettes/test_events/test_async_listen_events.json rename to tests/cassettes/test_events/test_async_listen_events.json index 5fb4f27a..dd7d2f25 100644 --- a/cassettes/test_events/test_async_listen_events.json +++ b/tests/cassettes/test_events/test_async_listen_events.json @@ -1,83 +1,83 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:01.898256+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:31.141099+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"event_type\": \"async_test_event\", \"id\": 2, \"type\": \"subscribe_events\"}", - "offset_ms": 11 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 16 + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"event_type\": \"async_test_event\", \"event_data\": {\"message\": \"Triggered by async websocket client\"}, \"id\": 3, \"type\": \"fire_event\"}", - "offset_ms": 16 + "offset_ms": 1 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"event\",\"event\":{\"event_type\":\"async_test_event\",\"data\":{\"message\":\"Triggered by async websocket client\"},\"origin\":\"LOCAL\",\"time_fired\":\"2026-04-13T08:09:01.904321+00:00\",\"context\":{\"id\":\"01KP2Y626GJ58WQV890PMXGX2H\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},\"id\":2}", - "offset_ms": 22 + "payload": "{\"type\":\"event\",\"event\":{\"event_type\":\"async_test_event\",\"data\":{\"message\":\"Triggered by async websocket client\"},\"origin\":\"LOCAL\",\"time_fired\":\"2026-04-21T02:58:31.142560+00:00\",\"context\":{\"id\":\"01KPPZK836PKVHDVST6Q57043B\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},\"id\":2}", + "offset_ms": 1 }, { "direction": "recv", "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KP2Y626GJ58WQV890PMXGX2H\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}}", - "offset_ms": 23 + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KPPZK836PKVHDVST6Q57043B\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}}", + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"subscription\": 2, \"id\": 4, \"type\": \"unsubscribe_events\"}", - "offset_ms": 23 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 29 + "offset_ms": 2 } ] } diff --git a/cassettes/test_events/test_async_listen_trigger.json b/tests/cassettes/test_events/test_async_listen_trigger.json similarity index 74% rename from cassettes/test_events/test_async_listen_trigger.json rename to tests/cassettes/test_events/test_async_listen_trigger.json index 9e1dffd1..ca1ee133 100644 --- a/cassettes/test_events/test_async_listen_trigger.json +++ b/tests/cassettes/test_events/test_async_listen_trigger.json @@ -1,101 +1,101 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:03.289546+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:32.439403+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"template\": \"{{ (now() + timedelta(seconds=1)) }}\", \"report_errors\": true, \"id\": 2, \"type\": \"render_template\"}", - "offset_ms": 13 + "offset_ms": 2 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 26 + "offset_ms": 4 }, { "direction": "recv", "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":{\"result\":\"2026-04-13 01:09:04.298527-07:00\",\"listeners\":{\"all\":false,\"entities\":[],\"domains\":[],\"time\":true}}}", - "offset_ms": 26 + "payload": "{\"id\":2,\"type\":\"event\",\"event\":{\"result\":\"2026-04-20 21:58:33.443265-05:00\",\"listeners\":{\"all\":false,\"entities\":[],\"domains\":[],\"time\":true}}}", + "offset_ms": 4 }, { "direction": "send", "type": "text", "payload": "{\"subscription\": 2, \"id\": 3, \"type\": \"unsubscribe_events\"}", - "offset_ms": 26 + "offset_ms": 4 }, { "direction": "recv", "type": "text", "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 32 + "offset_ms": 5 }, { "direction": "send", "type": "text", - "payload": "{\"trigger\": {\"platform\": \"time\", \"at\": \"01:09:04\"}, \"id\": 4, \"type\": \"subscribe_trigger\"}", - "offset_ms": 32 + "payload": "{\"trigger\": {\"platform\": \"time\", \"at\": \"21:58:33\"}, \"id\": 4, \"type\": \"subscribe_trigger\"}", + "offset_ms": 5 }, { "direction": "recv", "type": "text", "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 39 + "offset_ms": 6 }, { "direction": "recv", "type": "text", - "payload": "{\"id\":4,\"type\":\"event\",\"event\":{\"variables\":{\"trigger\":{\"id\":\"0\",\"idx\":\"0\",\"alias\":null,\"platform\":\"time\",\"now\":\"2026-04-13T01:09:04.285327-07:00\",\"description\":\"time\",\"entity_id\":null}},\"context\":null}}", - "offset_ms": 1015 + "payload": "{\"id\":4,\"type\":\"event\",\"event\":{\"variables\":{\"trigger\":{\"id\":\"0\",\"idx\":\"0\",\"alias\":null,\"platform\":\"time\",\"now\":\"2026-04-20T21:58:33.052019-05:00\",\"description\":\"time\",\"entity_id\":null}},\"context\":null}}", + "offset_ms": 613 }, { "direction": "send", "type": "text", "payload": "{\"subscription\": 4, \"id\": 5, \"type\": \"unsubscribe_events\"}", - "offset_ms": 1015 + "offset_ms": 613 }, { "direction": "recv", "type": "text", "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 1020 + "offset_ms": 613 } ] } diff --git a/tests/cassettes/test_events/test_listen_config_entries.json b/tests/cassettes/test_events/test_listen_config_entries.json new file mode 100644 index 00000000..74a8080c --- /dev/null +++ b/tests/cassettes/test_events/test_listen_config_entries.json @@ -0,0 +1,121 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:32.403403+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 1 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", + "offset_ms": 1 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 2 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"id\": 2, \"type\": \"config_entries/subscribe\"}", + "offset_ms": 2 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 3 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":0.0,\"entry_id\":\"bb18b688994e8cfa5e4e880452735628\",\"domain\":\"radio_browser\",\"modified_at\":0.0,\"title\":\"Radio Browser\",\"source\":\"onboarding\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1734714367.193748,\"entry_id\":\"01JFJGH76SD417XC4YJTG8QJWB\",\"domain\":\"met\",\"modified_at\":1734714367.193752,\"title\":\"Home\",\"source\":\"user\",\"state\":\"loaded\",\"supports_options\":true,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}},{\"type\":null,\"entry\":{\"created_at\":1776736291.851382,\"entry_id\":\"01KPPVRK0BN6QZ94H1CA6J4MX7\",\"domain\":\"backup\",\"modified_at\":1776736291.851383,\"title\":\"Backup\",\"source\":\"system\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 3 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"5f8426fa502435857743f302651753c9\", \"disabled_by\": \"user\", \"id\": 3, \"type\": \"config_entries/disable\"}", + "offset_ms": 3 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"unload_in_progress\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 5 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"not_loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":\"user\",\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 6 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"entry_id\": \"5f8426fa502435857743f302651753c9\", \"disabled_by\": null, \"id\": 4, \"type\": \"config_entries/disable\"}", + "offset_ms": 6 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"setup_in_progress\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":2,\"type\":\"event\",\"event\":[{\"type\":\"updated\",\"entry\":{\"created_at\":0.0,\"entry_id\":\"5f8426fa502435857743f302651753c9\",\"domain\":\"sun\",\"modified_at\":0.0,\"title\":\"Sun\",\"source\":\"import\",\"state\":\"loaded\",\"supports_options\":false,\"supports_remove_device\":false,\"supports_unload\":true,\"supports_reconfigure\":false,\"supported_subentry_types\":{},\"pref_disable_new_entities\":false,\"pref_disable_polling\":false,\"disabled_by\":null,\"reason\":null,\"error_reason_translation_key\":null,\"error_reason_translation_placeholders\":null,\"num_subentries\":0}}]}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":{\"require_restart\":false}}", + "offset_ms": 11 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"subscription\": 2, \"id\": 5, \"type\": \"unsubscribe_events\"}", + "offset_ms": 11 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":null}", + "offset_ms": 12 + } + ] + } + ] +} \ No newline at end of file diff --git a/cassettes/test_events/test_listen_events.json b/tests/cassettes/test_events/test_listen_events.json similarity index 69% rename from cassettes/test_events/test_listen_events.json rename to tests/cassettes/test_events/test_listen_events.json index 2c8d47fc..d45877d2 100644 --- a/cassettes/test_events/test_listen_events.json +++ b/tests/cassettes/test_events/test_listen_events.json @@ -1,83 +1,83 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:01.838792+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:31.136892+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 5 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 5 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 10 + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"event_type\": \"test_event\", \"id\": 2, \"type\": \"subscribe_events\"}", - "offset_ms": 11 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 16 + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"event_type\": \"test_event\", \"event_data\": {\"message\": \"Triggered by websocket client\"}, \"id\": 3, \"type\": \"fire_event\"}", - "offset_ms": 16 + "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"event\",\"event\":{\"event_type\":\"test_event\",\"data\":{\"message\":\"Triggered by websocket client\"},\"origin\":\"LOCAL\",\"time_fired\":\"2026-04-13T08:09:01.844338+00:00\",\"context\":{\"id\":\"01KP2Y624M7WF3HBJA4H972FY7\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}},\"id\":2}", - "offset_ms": 21 + "payload": "{\"type\":\"event\",\"event\":{\"event_type\":\"test_event\",\"data\":{\"message\":\"Triggered by websocket client\"},\"origin\":\"LOCAL\",\"time_fired\":\"2026-04-21T02:58:31.137896+00:00\",\"context\":{\"id\":\"01KPPZK831VBA2G0C1HXXRZHJH\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}},\"id\":2}", + "offset_ms": 1 }, { "direction": "recv", "type": "text", - "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KP2Y624M7WF3HBJA4H972FY7\",\"parent_id\":null,\"user_id\":\"fe6db64d1b1f4854b103f7bde5a10214\"}}}", - "offset_ms": 22 + "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":{\"context\":{\"id\":\"01KPPZK831VBA2G0C1HXXRZHJH\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}}", + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"subscription\": 2, \"id\": 4, \"type\": \"unsubscribe_events\"}", - "offset_ms": 22 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 27 + "offset_ms": 1 } ] } diff --git a/cassettes/test_events/test_listen_trigger.json b/tests/cassettes/test_events/test_listen_trigger.json similarity index 74% rename from cassettes/test_events/test_listen_trigger.json rename to tests/cassettes/test_events/test_listen_trigger.json index fb7ce6c6..7e61987d 100644 --- a/cassettes/test_events/test_listen_trigger.json +++ b/tests/cassettes/test_events/test_listen_trigger.json @@ -1,101 +1,101 @@ { - "nimax_version": "0.1.0", + "nimax_version": "1.0.0", "http_interactions": [], "websocket_sessions": [ { - "uri": "wss://ha.krkn.cc/api/websocket", - "handshake_recorded_at": "2026-04-13T08:09:01.968534+00:00", + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T02:58:31.147930+00:00", "protocol": null, "frames": [ { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.1.2\"}", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", "offset_ms": 0 }, { "direction": "send", "type": "text", - "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI0MTI5Nzc0NjhhOGE0YjdhYjk3MTI4MTVlYzYyNDgxYSIsImlhdCI6MTc3NTAyOTkxMiwiZXhwIjoyMDkwMzg5OTEyfQ.RjvtV0HlOr8voTVkhjDmoz4vNMNybqRPCnbSV79ukOo\", \"type\": \"auth\"}", + "payload": "{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk\", \"type\": \"auth\"}", "offset_ms": 0 }, { "direction": "recv", "type": "text", - "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.1.2\"}", - "offset_ms": 6 + "payload": "{\"type\":\"auth_ok\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 }, { "direction": "send", "type": "text", "payload": "{\"features\": {}, \"id\": 1, \"type\": \"supported_features\"}", - "offset_ms": 6 + "offset_ms": 0 }, { "direction": "recv", "type": "text", "payload": "{\"id\":1,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 12 + "offset_ms": 1 }, { "direction": "send", "type": "text", "payload": "{\"template\": \"{{ (now() + timedelta(seconds=1)) }}\", \"report_errors\": true, \"id\": 2, \"type\": \"render_template\"}", - "offset_ms": 13 + "offset_ms": 1 }, { "direction": "recv", "type": "text", "payload": "{\"id\":2,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 24 + "offset_ms": 2 }, { "direction": "recv", "type": "text", - "payload": "{\"id\":2,\"type\":\"event\",\"event\":{\"result\":\"2026-04-13 01:09:02.975715-07:00\",\"listeners\":{\"all\":false,\"entities\":[],\"domains\":[],\"time\":true}}}", - "offset_ms": 24 + "payload": "{\"id\":2,\"type\":\"event\",\"event\":{\"result\":\"2026-04-20 21:58:32.150610-05:00\",\"listeners\":{\"all\":false,\"entities\":[],\"domains\":[],\"time\":true}}}", + "offset_ms": 3 }, { "direction": "send", "type": "text", "payload": "{\"subscription\": 2, \"id\": 3, \"type\": \"unsubscribe_events\"}", - "offset_ms": 24 + "offset_ms": 3 }, { "direction": "recv", "type": "text", "payload": "{\"id\":3,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 30 + "offset_ms": 3 }, { "direction": "send", "type": "text", - "payload": "{\"trigger\": {\"platform\": \"time\", \"at\": \"01:09:02\"}, \"id\": 4, \"type\": \"subscribe_trigger\"}", - "offset_ms": 30 + "payload": "{\"trigger\": {\"platform\": \"time\", \"at\": \"21:58:32\"}, \"id\": 4, \"type\": \"subscribe_trigger\"}", + "offset_ms": 3 }, { "direction": "recv", "type": "text", "payload": "{\"id\":4,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 36 + "offset_ms": 4 }, { "direction": "recv", "type": "text", - "payload": "{\"id\":4,\"type\":\"event\",\"event\":{\"variables\":{\"trigger\":{\"id\":\"0\",\"idx\":\"0\",\"alias\":null,\"platform\":\"time\",\"now\":\"2026-04-13T01:09:02.274069-07:00\",\"description\":\"time\",\"entity_id\":null}},\"context\":null}}", - "offset_ms": 322 + "payload": "{\"id\":4,\"type\":\"event\",\"event\":{\"variables\":{\"trigger\":{\"id\":\"0\",\"idx\":\"0\",\"alias\":null,\"platform\":\"time\",\"now\":\"2026-04-20T21:58:32.393134-05:00\",\"description\":\"time\",\"entity_id\":null}},\"context\":null}}", + "offset_ms": 1246 }, { "direction": "send", "type": "text", "payload": "{\"subscription\": 4, \"id\": 5, \"type\": \"unsubscribe_events\"}", - "offset_ms": 323 + "offset_ms": 1246 }, { "direction": "recv", "type": "text", "payload": "{\"id\":5,\"type\":\"result\",\"success\":true,\"result\":null}", - "offset_ms": 328 + "offset_ms": 1247 } ] } diff --git a/tests/cassettes/test_models/test_async_entity_get_entity.json b/tests/cassettes/test_models/test_async_entity_get_entity.json new file mode 100644 index 00000000..bdef752b --- /dev/null +++ b/tests/cassettes/test_models/test_async_entity_get_entity.json @@ -0,0 +1,138 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.069442+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/person.test_user", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "421" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/person.test_user" + }, + "recorded_at": "2026-04-21T02:58:33.070567+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/person.test_user", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "421" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/person.test_user" + }, + "recorded_at": "2026-04-21T02:58:33.070567+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_async_entity_get_history.json b/tests/cassettes/test_models/test_async_entity_get_history.json new file mode 100644 index 00000000..50dcba4a --- /dev/null +++ b/tests/cassettes/test_models/test_async_entity_get_history.json @@ -0,0 +1,141 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.159289+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "638" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-12.86,\"azimuth\":50.1,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:58:32.431020+00:00\",\"last_reported\":\"2026-04-21T02:58:32.431020+00:00\",\"last_updated\":\"2026-04-21T02:58:32.431020+00:00\",\"context\":{\"id\":\"01KPPZK9BFJ26HRJ8Y6G5FCRFF\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.sun" + }, + "recorded_at": "2026-04-21T02:58:33.160970+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/history/period?filter_entity_id=sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "462" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-20T02:58:33.161557+00:00\",\"last_updated\":\"2026-04-20T02:58:33.161557+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:31.247873+00:00\",\"last_updated\":\"2026-04-21T01:51:31.247873+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:53.903872+00:00\",\"last_updated\":\"2026-04-21T01:51:53.903872+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:53.906573+00:00\",\"last_updated\":\"2026-04-21T01:51:53.906573+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:53.913278+00:00\",\"last_updated\":\"2026-04-21T01:51:53.913278+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:53.915127+00:00\",\"last_updated\":\"2026-04-21T01:51:53.915127+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:55.084844+00:00\",\"last_updated\":\"2026-04-21T01:51:55.084844+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:55.094790+00:00\",\"last_updated\":\"2026-04-21T01:51:55.094790+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:55.110192+00:00\",\"last_updated\":\"2026-04-21T01:51:55.110192+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:55.112527+00:00\",\"last_updated\":\"2026-04-21T01:51:55.112527+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:48:31.001566+00:00\",\"last_updated\":\"2026-04-21T02:48:31.001566+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:48:31.004039+00:00\",\"last_updated\":\"2026-04-21T02:48:31.004039+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:48:31.013509+00:00\",\"last_updated\":\"2026-04-21T02:48:31.013509+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:48:31.016501+00:00\",\"last_updated\":\"2026-04-21T02:48:31.016501+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:04.542192+00:00\",\"last_updated\":\"2026-04-21T02:55:04.542192+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:04.557678+00:00\",\"last_updated\":\"2026-04-21T02:55:04.557678+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:04.565397+00:00\",\"last_updated\":\"2026-04-21T02:55:04.565397+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:04.568086+00:00\",\"last_updated\":\"2026-04-21T02:55:04.568086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:06.194407+00:00\",\"last_updated\":\"2026-04-21T02:55:06.194407+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.196543+00:00\",\"last_updated\":\"2026-04-21T02:55:06.196543+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:06.204598+00:00\",\"last_updated\":\"2026-04-21T02:55:06.204598+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_updated\":\"2026-04-21T02:55:06.207470+00:00\"}]]" + }, + "protocol": null, + "url": "http://localhost:8123/api/history/period?filter_entity_id=sun.sun" + }, + "recorded_at": "2026-04-21T02:58:33.163141+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_async_entity_get_history_none.json b/tests/cassettes/test_models/test_async_entity_get_history_none.json new file mode 100644 index 00000000..626a614b --- /dev/null +++ b/tests/cassettes/test_models/test_async_entity_get_history_none.json @@ -0,0 +1,141 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.183869+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "336" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:58:33.089111+00:00\",\"last_reported\":\"2026-04-21T02:58:33.089111+00:00\",\"last_updated\":\"2026-04-21T02:58:33.089111+00:00\",\"context\":{\"id\":\"01KPPZKA0186FRXEWQVQ98VFM1\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-21T02:58:33.184969+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "10" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[]" + }, + "protocol": null, + "url": "http://localhost:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00" + }, + "recorded_at": "2026-04-21T02:58:33.185895+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_async_entity_update_state.json b/tests/cassettes/test_models/test_async_entity_update_state.json new file mode 100644 index 00000000..1589b020 --- /dev/null +++ b/tests/cassettes/test_models/test_async_entity_update_state.json @@ -0,0 +1,144 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.086933+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "338" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of your hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:58:33.077073+00:00\",\"last_reported\":\"2026-04-21T02:58:33.077073+00:00\",\"last_updated\":\"2026-04-21T02:58:33.077073+00:00\",\"context\":{\"id\":\"01KPPZK9ZN1BK4HTV059DQAWQC\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-21T02:58:33.088429+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Location": [ + "/api/states/sun.red_sun" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "221" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:58:33.089111+00:00\",\"last_reported\":\"2026-04-21T02:58:33.089111+00:00\",\"last_updated\":\"2026-04-21T02:58:33.089111+00:00\",\"context\":{\"id\":\"01KPPZKA0186FRXEWQVQ98VFM1\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-21T02:58:33.089976+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_async_fire_event.json b/tests/cassettes/test_models/test_async_fire_event.json new file mode 100644 index 00000000..85b8d0cd --- /dev/null +++ b/tests/cassettes/test_models/test_async_fire_event.json @@ -0,0 +1,144 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.114518+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "218" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":1},{\"event\":\"entity_registry_updated\",\"listener_count\":6},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":52},{\"event\":\"core_config_updated\",\"listener_count\":3},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"device_registry_updated\",\"listener_count\":2},{\"event\":\"labs_updated\",\"listener_count\":5},{\"event\":\"component_loaded\",\"listener_count\":1},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":6},{\"event\":\"state_changed\",\"listener_count\":3},{\"event\":\"user_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/events" + }, + "recorded_at": "2026-04-21T02:58:33.116378+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/events/core_config_updated", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "54" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"Event core_config_updated fired.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/events/core_config_updated" + }, + "recorded_at": "2026-04-21T02:58:33.117511+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_async_get_domains.json b/tests/cassettes/test_models/test_async_get_domains.json new file mode 100644 index 00000000..56276b35 --- /dev/null +++ b/tests/cassettes/test_models/test_async_get_domains.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.136011+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:33.138316+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_async_get_event.json b/tests/cassettes/test_models/test_async_get_event.json new file mode 100644 index 00000000..69482c3f --- /dev/null +++ b/tests/cassettes/test_models/test_async_get_event.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.099079+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "218" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":1},{\"event\":\"entity_registry_updated\",\"listener_count\":6},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":52},{\"event\":\"core_config_updated\",\"listener_count\":3},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"device_registry_updated\",\"listener_count\":2},{\"event\":\"labs_updated\",\"listener_count\":5},{\"event\":\"component_loaded\",\"listener_count\":1},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":6},{\"event\":\"state_changed\",\"listener_count\":3},{\"event\":\"user_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/events" + }, + "recorded_at": "2026-04-21T02:58:33.100635+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_base_domain_from_json_invalid_services_type.json b/tests/cassettes/test_models/test_base_domain_from_json_invalid_services_type.json new file mode 100644 index 00000000..ef87bb30 --- /dev/null +++ b/tests/cassettes/test_models/test_base_domain_from_json_invalid_services_type.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.190021+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_domain_from_json_with_client_missing_keys.json b/tests/cassettes/test_models/test_domain_from_json_with_client_missing_keys.json new file mode 100644 index 00000000..61657b3e --- /dev/null +++ b/tests/cassettes/test_models/test_domain_from_json_with_client_missing_keys.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.179272+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_domain_service_attribute_access.json b/tests/cassettes/test_models/test_domain_service_attribute_access.json new file mode 100644 index 00000000..62963cec --- /dev/null +++ b/tests/cassettes/test_models/test_domain_service_attribute_access.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.196992+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:33.200935+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_entity_get_entity.json b/tests/cassettes/test_models/test_entity_get_entity.json new file mode 100644 index 00000000..2f414ab7 --- /dev/null +++ b/tests/cassettes/test_models/test_entity_get_entity.json @@ -0,0 +1,138 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.059184+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/person.test_user", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "421" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/person.test_user" + }, + "recorded_at": "2026-04-21T02:58:33.063916+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/person.test_user", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "421" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"person.test_user\",\"state\":\"unknown\",\"attributes\":{\"editable\":true,\"id\":\"test_user\",\"device_trackers\":[],\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\",\"friendly_name\":\"Test User\"},\"last_changed\":\"2026-04-21T01:51:30.362446+00:00\",\"last_reported\":\"2026-04-21T01:51:31.845948+00:00\",\"last_updated\":\"2026-04-21T01:51:31.844364+00:00\",\"context\":{\"id\":\"01KPPVRK04YQR5A8QNCNB1FW24\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/person.test_user" + }, + "recorded_at": "2026-04-21T02:58:33.063916+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_entity_get_history.json b/tests/cassettes/test_models/test_entity_get_history.json new file mode 100644 index 00000000..5dc32c5c --- /dev/null +++ b/tests/cassettes/test_models/test_entity_get_history.json @@ -0,0 +1,141 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.150879+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "638" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"next_dawn\":\"2026-04-21T03:45:01.401629+00:00\",\"next_dusk\":\"2026-04-21T19:34:41.134215+00:00\",\"next_midnight\":\"2026-04-21T23:38:57+00:00\",\"next_noon\":\"2026-04-21T11:39:14+00:00\",\"next_rising\":\"2026-04-21T04:25:11.997956+00:00\",\"next_setting\":\"2026-04-21T18:54:15.247749+00:00\",\"elevation\":-12.86,\"azimuth\":50.1,\"rising\":true,\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:58:32.431020+00:00\",\"last_reported\":\"2026-04-21T02:58:32.431020+00:00\",\"last_updated\":\"2026-04-21T02:58:32.431020+00:00\",\"context\":{\"id\":\"01KPPZK9BFJ26HRJ8Y6G5FCRFF\",\"parent_id\":null,\"user_id\":null}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.sun" + }, + "recorded_at": "2026-04-21T02:58:33.152908+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/history/period?filter_entity_id=sun.sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "461" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[[{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-20T02:58:33.153640+00:00\",\"last_updated\":\"2026-04-20T02:58:33.153640+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:31.247873+00:00\",\"last_updated\":\"2026-04-21T01:51:31.247873+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:53.903872+00:00\",\"last_updated\":\"2026-04-21T01:51:53.903872+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:53.906573+00:00\",\"last_updated\":\"2026-04-21T01:51:53.906573+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:53.913278+00:00\",\"last_updated\":\"2026-04-21T01:51:53.913278+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:53.915127+00:00\",\"last_updated\":\"2026-04-21T01:51:53.915127+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:55.084844+00:00\",\"last_updated\":\"2026-04-21T01:51:55.084844+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:55.094790+00:00\",\"last_updated\":\"2026-04-21T01:51:55.094790+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T01:51:55.110192+00:00\",\"last_updated\":\"2026-04-21T01:51:55.110192+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T01:51:55.112527+00:00\",\"last_updated\":\"2026-04-21T01:51:55.112527+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:48:31.001566+00:00\",\"last_updated\":\"2026-04-21T02:48:31.001566+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:48:31.004039+00:00\",\"last_updated\":\"2026-04-21T02:48:31.004039+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:48:31.013509+00:00\",\"last_updated\":\"2026-04-21T02:48:31.013509+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:48:31.016501+00:00\",\"last_updated\":\"2026-04-21T02:48:31.016501+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:04.542192+00:00\",\"last_updated\":\"2026-04-21T02:55:04.542192+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:04.557678+00:00\",\"last_updated\":\"2026-04-21T02:55:04.557678+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:04.565397+00:00\",\"last_updated\":\"2026-04-21T02:55:04.565397+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:04.568086+00:00\",\"last_updated\":\"2026-04-21T02:55:04.568086+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:06.194407+00:00\",\"last_updated\":\"2026-04-21T02:55:06.194407+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.196543+00:00\",\"last_updated\":\"2026-04-21T02:55:06.196543+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:55:06.204598+00:00\",\"last_updated\":\"2026-04-21T02:55:06.204598+00:00\"},{\"entity_id\":\"sun.sun\",\"state\":\"below_horizon\",\"attributes\":{\"friendly_name\":\"Sun\"},\"last_changed\":\"2026-04-21T02:55:06.207470+00:00\",\"last_updated\":\"2026-04-21T02:55:06.207470+00:00\"}]]" + }, + "protocol": null, + "url": "http://localhost:8123/api/history/period?filter_entity_id=sun.sun" + }, + "recorded_at": "2026-04-21T02:58:33.155353+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_entity_get_history_none.json b/tests/cassettes/test_models/test_entity_get_history_none.json new file mode 100644 index 00000000..0d229503 --- /dev/null +++ b/tests/cassettes/test_models/test_entity_get_history_none.json @@ -0,0 +1,141 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.169186+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "336" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of my hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:58:33.089111+00:00\",\"last_reported\":\"2026-04-21T02:58:33.089111+00:00\",\"last_updated\":\"2026-04-21T02:58:33.089111+00:00\",\"context\":{\"id\":\"01KPPZKA0186FRXEWQVQ98VFM1\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-21T02:58:33.171826+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "10" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[]" + }, + "protocol": null, + "url": "http://localhost:8123/api/history/period/2015-01-01T00:00:00+00:00?filter_entity_id=sun.red_sun&end_time=2020-01-01T00%3A00%3A01%2B00%3A00" + }, + "recorded_at": "2026-04-21T02:58:33.175377+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_entity_update_state.json b/tests/cassettes/test_models/test_entity_update_state.json new file mode 100644 index 00000000..48353558 --- /dev/null +++ b/tests/cassettes/test_models/test_entity_update_state.json @@ -0,0 +1,144 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.073898+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "336" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"beyond_our_solar_system\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:58:30.916545+00:00\",\"last_reported\":\"2026-04-21T02:58:30.916545+00:00\",\"last_updated\":\"2026-04-21T02:58:30.916545+00:00\",\"context\":{\"id\":\"01KPPZK7W4XQ5ADNCS7MNSGXAN\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-21T02:58:33.076143+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/states/sun.red_sun", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Location": [ + "/api/states/sun.red_sun" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "222" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"entity_id\":\"sun.red_sun\",\"state\":\"In the palm of your hand.\",\"attributes\":{},\"last_changed\":\"2026-04-21T02:58:33.077073+00:00\",\"last_reported\":\"2026-04-21T02:58:33.077073+00:00\",\"last_updated\":\"2026-04-21T02:58:33.077073+00:00\",\"context\":{\"id\":\"01KPPZK9ZN1BK4HTV059DQAWQC\",\"parent_id\":null,\"user_id\":\"e85fc7b7b8924dc9b024ce90ad23799e\"}}" + }, + "protocol": null, + "url": "http://localhost:8123/api/states/sun.red_sun" + }, + "recorded_at": "2026-04-21T02:58:33.078574+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_fire_event.json b/tests/cassettes/test_models/test_fire_event.json new file mode 100644 index 00000000..62bd1536 --- /dev/null +++ b/tests/cassettes/test_models/test_fire_event.json @@ -0,0 +1,144 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.105458+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "218" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":1},{\"event\":\"entity_registry_updated\",\"listener_count\":6},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":52},{\"event\":\"core_config_updated\",\"listener_count\":3},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"device_registry_updated\",\"listener_count\":2},{\"event\":\"labs_updated\",\"listener_count\":5},{\"event\":\"component_loaded\",\"listener_count\":1},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":6},{\"event\":\"state_changed\",\"listener_count\":3},{\"event\":\"user_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/events" + }, + "recorded_at": "2026-04-21T02:58:33.107917+00:00" + }, + { + "request": { + "method": "POST", + "uri": "http://localhost:8123/api/events/core_config_updated", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "54" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"Event core_config_updated fired.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/events/core_config_updated" + }, + "recorded_at": "2026-04-21T02:58:33.109563+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_get_domain.json b/tests/cassettes/test_models/test_get_domain.json new file mode 100644 index 00000000..af0ced3f --- /dev/null +++ b/tests/cassettes/test_models/test_get_domain.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.122065+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/services", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "8235" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[{\"domain\":\"homeassistant\",\"services\":{\"save_persistent_states\":{\"fields\":{}},\"turn_off\":{\"fields\":{},\"target\":{}},\"turn_on\":{\"fields\":{},\"target\":{}},\"toggle\":{\"fields\":{},\"target\":{}},\"stop\":{\"fields\":{}},\"restart\":{\"fields\":{}},\"check_config\":{\"fields\":{}},\"update_entity\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"reload_core_config\":{\"fields\":{}},\"set_location\":{\"fields\":{\"latitude\":{\"required\":true,\"example\":32.87336,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-90.0,\"max\":90.0,\"step\":\"any\"}}},\"longitude\":{\"required\":true,\"example\":117.22743,\"selector\":{\"number\":{\"mode\":\"box\",\"min\":-180.0,\"max\":180.0,\"step\":\"any\"}}},\"elevation\":{\"required\":false,\"example\":120,\"selector\":{\"number\":{\"mode\":\"box\",\"step\":\"any\"}}}}},\"reload_custom_templates\":{\"fields\":{}},\"reload_config_entry\":{\"fields\":{\"entry_id\":{\"advanced\":true,\"required\":false,\"example\":\"8955375327824e14ba89e4b29cc3ec9a\",\"selector\":{\"config_entry\":{}}}},\"target\":{}},\"reload_all\":{\"fields\":{}}}},{\"domain\":\"persistent_notification\",\"services\":{\"create\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Please check your configuration.yaml.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Test notification\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"notification_id\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss\":{\"fields\":{\"notification_id\":{\"required\":true,\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}},\"dismiss_all\":{\"fields\":{}}}},{\"domain\":\"system_log\",\"services\":{\"clear\":{\"fields\":{}},\"write\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"Something went wrong\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"level\":{\"default\":\"error\",\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"logger\":{\"example\":\"mycomponent.myplatform\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"logger\",\"services\":{\"set_default_level\":{\"fields\":{\"level\":{\"selector\":{\"select\":{\"options\":[\"debug\",\"info\",\"warning\",\"error\",\"fatal\",\"critical\"],\"translation_key\":\"level\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}},\"set_level\":{\"fields\":{}}}},{\"domain\":\"frontend\",\"services\":{\"set_theme\":{\"fields\":{\"name\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}},\"name_dark\":{\"required\":false,\"example\":\"default\",\"selector\":{\"theme\":{\"include_default\":true}}}}},\"reload_themes\":{\"fields\":{}}}},{\"domain\":\"recorder\",\"services\":{\"purge\":{\"fields\":{\"keep_days\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}},\"repack\":{\"default\":false,\"selector\":{\"boolean\":{}}},\"apply_filter\":{\"default\":false,\"selector\":{\"boolean\":{}}}}},\"purge_entities\":{\"fields\":{\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}},\"domains\":{\"example\":\"sun\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"entity_globs\":{\"example\":\"domain*.object_id*\",\"required\":false,\"selector\":{\"object\":{\"multiple\":false}}},\"keep_days\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":365.0,\"unit_of_measurement\":\"days\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"enable\":{\"fields\":{}},\"disable\":{\"fields\":{}},\"get_statistics\":{\"fields\":{\"start_time\":{\"required\":true,\"example\":\"2025-01-01 00:00:00\",\"selector\":{\"datetime\":{}}},\"end_time\":{\"required\":false,\"example\":\"2025-01-02 00:00:00\",\"selector\":{\"datetime\":{}}},\"statistic_ids\":{\"required\":true,\"example\":[\"sensor.energy_consumption\",\"sensor.temperature\"],\"selector\":{\"statistic\":{\"multiple\":true}}},\"period\":{\"required\":true,\"example\":\"hour\",\"selector\":{\"select\":{\"options\":[\"5minute\",\"hour\",\"day\",\"week\",\"month\",\"year\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"types\":{\"required\":true,\"example\":[\"mean\",\"sum\"],\"selector\":{\"select\":{\"options\":[\"change\",\"last_reset\",\"max\",\"mean\",\"min\",\"state\",\"sum\"],\"multiple\":true,\"sort\":false,\"custom_value\":false}}},\"units\":{\"required\":false,\"example\":{\"energy\":\"kWh\",\"temperature\":\"°C\"},\"selector\":{\"object\":{\"multiple\":false}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"climate\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[256]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[128,256]}]}},\"set_hvac_mode\":{\"fields\":{\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[16]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_high\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"target_temp_low\":{\"filter\":{\"supported_features\":[2]},\"advanced\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.1,\"mode\":\"box\"}}},\"hvac_mode\":{\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[1,2]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":30.0,\"max\":99.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[4]}]}},\"set_fan_mode\":{\"fields\":{\"fan_mode\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[8]}]}},\"set_swing_mode\":{\"fields\":{\"swing_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[32]}]}},\"set_swing_horizontal_mode\":{\"fields\":{\"swing_horizontal_mode\":{\"required\":true,\"example\":\"on\",\"selector\":{\"state\":{\"attribute\":\"swing_horizontal_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"climate\"],\"supported_features\":[512]}]}}}},{\"domain\":\"media_player\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[128]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[256]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[384]}]}},\"volume_up\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"volume_down\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4,1024]}]}},\"media_play_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16385]}]}},\"media_play\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16384]}]}},\"media_pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[1]}]}},\"media_stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4096]}]}},\"media_next_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32]}]}},\"media_previous_track\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[16]}]}},\"clear_playlist\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8192]}]}},\"volume_set\":{\"fields\":{\"volume_level\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.01,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4]}]}},\"volume_mute\":{\"fields\":{\"is_volume_muted\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[8]}]}},\"media_seek\":{\"fields\":{\"seek_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.01,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2]}]}},\"join\":{\"fields\":{\"group_members\":{\"required\":true,\"example\":\"- media_player.multiroom_player2\\n- media_player.multiroom_player3\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"domain\":[\"media_player\"],\"reorder\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"select_source\":{\"fields\":{\"source\":{\"required\":true,\"example\":\"video1\",\"selector\":{\"state\":{\"attribute\":\"source\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[2048]}]}},\"select_sound_mode\":{\"fields\":{\"sound_mode\":{\"example\":\"Music\",\"selector\":{\"state\":{\"attribute\":\"sound_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[65536]}]}},\"play_media\":{\"fields\":{\"media\":{\"required\":true,\"selector\":{\"media\":{\"multiple\":false}},\"example\":\"{\\\"media_content_id\\\": \\\"https://home-assistant.io/images/cast/splash.png\\\", \\\"media_content_type\\\": \\\"music\\\"}\"},\"enqueue\":{\"filter\":{\"supported_features\":[2097152]},\"required\":false,\"selector\":{\"select\":{\"options\":[\"play\",\"next\",\"add\",\"replace\"],\"translation_key\":\"enqueue\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"announce\":{\"filter\":{\"supported_features\":[1048576]},\"required\":false,\"example\":\"true\",\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[512]}]}},\"browse_media\":{\"fields\":{\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[131072]}]},\"response\":{\"optional\":false}},\"search_media\":{\"fields\":{\"search_query\":{\"required\":true,\"example\":\"Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_type\":{\"required\":false,\"example\":\"music\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_content_id\":{\"required\":false,\"example\":\"A:ALBUMARTIST/Beatles\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_filter_classes\":{\"required\":false,\"example\":[\"album\",\"artist\"],\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[4194304]}]},\"response\":{\"optional\":false}},\"shuffle_set\":{\"fields\":{\"shuffle\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[32768]}]}},\"unjoin\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[524288]}]}},\"repeat_set\":{\"fields\":{\"repeat\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"off\",\"all\",\"one\"],\"translation_key\":\"repeat\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"media_player\"],\"supported_features\":[262144]}]}}}},{\"domain\":\"lock\",\"services\":{\"unlock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"lock\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"]}]}},\"open\":{\"fields\":{\"code\":{\"example\":1234,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"lock\"],\"supported_features\":[1]}]}}}},{\"domain\":\"fan\",\"services\":{\"turn_on\":{\"fields\":{\"percentage\":{\"filter\":{\"supported_features\":[1]},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"preset_mode\":{\"example\":\"auto\",\"filter\":{\"supported_features\":[8]},\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[32]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[16]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"fan\"]}]}},\"increase_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"decrease_speed\":{\"fields\":{\"percentage_step\":{\"advanced\":true,\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"oscillate\":{\"fields\":{\"oscillating\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[2]}]}},\"set_direction\":{\"fields\":{\"direction\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"forward\",\"reverse\"],\"translation_key\":\"direction\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[4]}]}},\"set_percentage\":{\"fields\":{\"percentage\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[1]}]}},\"set_preset_mode\":{\"fields\":{\"preset_mode\":{\"required\":true,\"example\":\"auto\",\"selector\":{\"state\":{\"attribute\":\"preset_mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"fan\"],\"supported_features\":[8]}]}}}},{\"domain\":\"alarm_control_panel\",\"services\":{\"alarm_disarm\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"]}]}},\"alarm_arm_home\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[1]}]}},\"alarm_arm_away\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[2]}]}},\"alarm_arm_night\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[4]}]}},\"alarm_arm_vacation\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[32]}]}},\"alarm_arm_custom_bypass\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[16]}]}},\"alarm_trigger\":{\"fields\":{\"code\":{\"example\":\"1234\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"alarm_control_panel\"],\"supported_features\":[8]}]}}}},{\"domain\":\"valve\",\"services\":{\"open_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[1]}]}},\"close_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[2]}]}},\"set_valve_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[4]}]}},\"stop_valve\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"valve\"],\"supported_features\":[3]}]}}}},{\"domain\":\"button\",\"services\":{\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"button\"]}]}}}},{\"domain\":\"notify\",\"services\":{\"send_message\":{\"fields\":{\"message\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}},\"filter\":{\"supported_features\":[1]}}},\"target\":{\"entity\":[{\"domain\":[\"notify\"]}]}},\"persistent_notification\":{\"fields\":{\"message\":{\"required\":true,\"example\":\"The garage door has been open for 10 minutes.\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"title\":{\"example\":\"Your Garage Door Friend\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"data\":{\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}}}}},{\"domain\":\"switch\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"switch\"]}]}}}},{\"domain\":\"vacuum\",\"services\":{\"start\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8192]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[4]}]}},\"return_to_base\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16]}]}},\"clean_spot\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"clean_area\":{\"fields\":{\"cleaning_area_id\":{\"required\":true,\"selector\":{\"area\":{\"multiple\":true,\"reorder\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[16384]}]}},\"locate\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[512]}]}},\"stop\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"],\"supported_features\":[8]}]}},\"set_fan_speed\":{\"fields\":{\"fan_speed\":{\"required\":true,\"example\":\"low\",\"selector\":{\"state\":{\"attribute\":\"fan_speed\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}},\"send_command\":{\"fields\":{\"command\":{\"required\":true,\"example\":\"set_dnd_timer\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"params\":{\"example\":\"{ \\\"key\\\": \\\"value\\\" }\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"vacuum\"]}]}}}},{\"domain\":\"zone\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"cover\",\"services\":{\"open_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[1]}]}},\"close_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[2]}]}},\"set_cover_position\":{\"fields\":{\"position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[4]}]}},\"stop_cover\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[8]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[3]}]}},\"open_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[16]}]}},\"close_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[32]}]}},\"stop_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[64]}]}},\"set_cover_tilt_position\":{\"fields\":{\"tilt_position\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[128]}]}},\"toggle_cover_tilt\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"cover\"],\"supported_features\":[48]}]}}}},{\"domain\":\"number\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"example\":42,\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"number\"]}]}}}},{\"domain\":\"scene\",\"services\":{\"reload\":{\"fields\":{}},\"apply\":{\"fields\":{\"entities\":{\"required\":true,\"example\":\"light.kitchen: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 80\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}}},\"create\":{\"fields\":{\"scene_id\":{\"required\":true,\"example\":\"all_lights\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entities\":{\"advanced\":true,\"example\":\"light.tv_back_light: \\\"on\\\"\\nlight.ceiling:\\n state: \\\"on\\\"\\n brightness: 200\\n\",\"selector\":{\"object\":{\"multiple\":false}}},\"snapshot_entities\":{\"example\":\"- light.ceiling\\n- light.kitchen\\n\",\"selector\":{\"entity\":{\"multiple\":true,\"reorder\":false}}}}},\"delete\":{\"fields\":{},\"target\":{\"entity\":[{\"integration\":\"homeassistant\",\"domain\":[\"scene\"]}]}},\"turn_on\":{\"fields\":{\"transition\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"scene\"]}]}}}},{\"domain\":\"water_heater\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_away_mode\":{\"fields\":{\"away_mode\":{\"required\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_temperature\":{\"fields\":{\"temperature\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":250.0,\"step\":0.5,\"mode\":\"box\",\"unit_of_measurement\":\"°\"}}},\"operation_mode\":{\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}},\"set_operation_mode\":{\"fields\":{\"operation_mode\":{\"required\":true,\"example\":\"eco\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"water_heater\"]}]}}}},{\"domain\":\"light\",\"services\":{\"turn_on\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-100.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"brightness_step\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":-225.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"turn_off\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}},\"toggle\":{\"fields\":{\"transition\":{\"filter\":{\"supported_features\":[32]},\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"rgb_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100]\",\"selector\":{\"color_rgb\":{}}},\"color_temp_kelvin\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"color_temp\":{\"unit\":\"kelvin\",\"min\":2000,\"max\":6500}}},\"brightness_pct\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}},\"effect\":{\"filter\":{\"supported_features\":[4]},\"selector\":{\"state\":{\"attribute\":\"effect\",\"multiple\":false}}},\"advanced_fields\":{\"collapsed\":true,\"fields\":{\"rgbw_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50]\",\"selector\":{\"object\":{\"multiple\":false}}},\"rgbww_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[255, 100, 100, 50, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"color_name\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"select\":{\"translation_key\":\"color_name\",\"options\":[\"homeassistant\",\"aliceblue\",\"antiquewhite\",\"aqua\",\"aquamarine\",\"azure\",\"beige\",\"bisque\",\"blanchedalmond\",\"blue\",\"blueviolet\",\"brown\",\"burlywood\",\"cadetblue\",\"chartreuse\",\"chocolate\",\"coral\",\"cornflowerblue\",\"cornsilk\",\"crimson\",\"cyan\",\"darkblue\",\"darkcyan\",\"darkgoldenrod\",\"darkgray\",\"darkgreen\",\"darkgrey\",\"darkkhaki\",\"darkmagenta\",\"darkolivegreen\",\"darkorange\",\"darkorchid\",\"darkred\",\"darksalmon\",\"darkseagreen\",\"darkslateblue\",\"darkslategray\",\"darkslategrey\",\"darkturquoise\",\"darkviolet\",\"deeppink\",\"deepskyblue\",\"dimgray\",\"dimgrey\",\"dodgerblue\",\"firebrick\",\"floralwhite\",\"forestgreen\",\"fuchsia\",\"gainsboro\",\"ghostwhite\",\"gold\",\"goldenrod\",\"gray\",\"green\",\"greenyellow\",\"grey\",\"honeydew\",\"hotpink\",\"indianred\",\"indigo\",\"ivory\",\"khaki\",\"lavender\",\"lavenderblush\",\"lawngreen\",\"lemonchiffon\",\"lightblue\",\"lightcoral\",\"lightcyan\",\"lightgoldenrodyellow\",\"lightgray\",\"lightgreen\",\"lightgrey\",\"lightpink\",\"lightsalmon\",\"lightseagreen\",\"lightskyblue\",\"lightslategray\",\"lightslategrey\",\"lightsteelblue\",\"lightyellow\",\"lime\",\"limegreen\",\"linen\",\"magenta\",\"maroon\",\"mediumaquamarine\",\"mediumblue\",\"mediumorchid\",\"mediumpurple\",\"mediumseagreen\",\"mediumslateblue\",\"mediumspringgreen\",\"mediumturquoise\",\"mediumvioletred\",\"midnightblue\",\"mintcream\",\"mistyrose\",\"moccasin\",\"navajowhite\",\"navy\",\"navyblue\",\"oldlace\",\"olive\",\"olivedrab\",\"orange\",\"orangered\",\"orchid\",\"palegoldenrod\",\"palegreen\",\"paleturquoise\",\"palevioletred\",\"papayawhip\",\"peachpuff\",\"peru\",\"pink\",\"plum\",\"powderblue\",\"purple\",\"red\",\"rosybrown\",\"royalblue\",\"saddlebrown\",\"salmon\",\"sandybrown\",\"seagreen\",\"seashell\",\"sienna\",\"silver\",\"skyblue\",\"slateblue\",\"slategray\",\"slategrey\",\"snow\",\"springgreen\",\"steelblue\",\"tan\",\"teal\",\"thistle\",\"tomato\",\"turquoise\",\"violet\",\"wheat\",\"white\",\"whitesmoke\",\"yellow\",\"yellowgreen\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"hs_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[300, 70]\",\"selector\":{\"object\":{\"multiple\":false}}},\"xy_color\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"example\":\"[0.52, 0.43]\",\"selector\":{\"object\":{\"multiple\":false}}},\"brightness\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"brightness\",\"color_temp\",\"hs\",\"xy\",\"rgb\",\"rgbw\",\"rgbww\"]}},\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"white\":{\"filter\":{\"attribute\":{\"supported_color_modes\":[\"white\"]}},\"selector\":{\"constant\":{\"value\":true,\"label\":\"Enabled\"}}},\"profile\":{\"example\":\"relax\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"flash\":{\"filter\":{\"supported_features\":[8]},\"selector\":{\"select\":{\"translation_key\":\"flash\",\"options\":[\"long\",\"short\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}}}},\"target\":{\"entity\":[{\"domain\":[\"light\"]}]}}}},{\"domain\":\"automation\",\"services\":{\"trigger\":{\"fields\":{\"skip_condition\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"turn_off\":{\"fields\":{\"stop_actions\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"automation\"]}]}},\"reload\":{\"fields\":{}}}},{\"domain\":\"script\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"script\"]}]}}}},{\"domain\":\"input_number\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"step\":0.001,\"mode\":\"box\"}}}},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_number\"]}]}}}},{\"domain\":\"logbook\",\"services\":{\"log\":{\"fields\":{\"name\":{\"required\":true,\"example\":\"Kitchen\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"message\":{\"required\":true,\"example\":\"is being used\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"entity_id\":{\"selector\":{\"entity\":{\"reorder\":false,\"multiple\":false}}},\"domain\":{\"example\":\"light\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}}}}},{\"domain\":\"device_tracker\",\"services\":{\"see\":{\"fields\":{\"mac\":{\"example\":\"FF:FF:FF:FF:FF:FF\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"dev_id\":{\"example\":\"phonedave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"host_name\":{\"example\":\"Dave\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"location_name\":{\"example\":\"home\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"gps\":{\"example\":\"[51.509802, -0.086692]\",\"selector\":{\"object\":{\"multiple\":false}}},\"gps_accuracy\":{\"selector\":{\"number\":{\"min\":0.0,\"mode\":\"box\",\"unit_of_measurement\":\"m\",\"step\":1.0}}},\"battery\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}}}}},{\"domain\":\"person\",\"services\":{\"reload\":{\"fields\":{}}}},{\"domain\":\"backup\",\"services\":{\"create\":{\"fields\":{}},\"create_automatic\":{\"fields\":{}}}},{\"domain\":\"update\",\"services\":{\"install\":{\"fields\":{\"version\":{\"required\":false,\"example\":\"1.0.0\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"backup\":{\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"skip\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}},\"clear_skipped\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"update\"]}]}}}},{\"domain\":\"ffmpeg\",\"services\":{\"start\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"stop\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}},\"restart\":{\"fields\":{\"entity_id\":{\"selector\":{\"entity\":{\"integration\":\"ffmpeg\",\"domain\":[\"binary_sensor\"],\"reorder\":false,\"multiple\":false}}}}}}},{\"domain\":\"lawn_mower\",\"services\":{\"start_mowing\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[1]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[2]}]}},\"dock\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"lawn_mower\"],\"supported_features\":[4]}]}}}},{\"domain\":\"remote\",\"services\":{\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"turn_on\":{\"fields\":{\"activity\":{\"example\":\"BedroomTV\",\"filter\":{\"supported_features\":[4]},\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"send_command\":{\"fields\":{\"device\":{\"example\":\"32756745\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Play\",\"selector\":{\"object\":{\"multiple\":false}}},\"num_repeats\":{\"default\":1,\"selector\":{\"number\":{\"min\":0.0,\"max\":255.0,\"step\":1.0,\"mode\":\"slider\"}}},\"delay_secs\":{\"default\":0.4,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}},\"hold_secs\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":0.1,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"learn_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"example\":\"Turn on\",\"selector\":{\"object\":{\"multiple\":false}}},\"command_type\":{\"default\":\"ir\",\"selector\":{\"select\":{\"options\":[\"ir\",\"rf\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}},\"alternative\":{\"selector\":{\"boolean\":{}}},\"timeout\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":60.0,\"step\":5.0,\"unit_of_measurement\":\"seconds\",\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}},\"delete_command\":{\"fields\":{\"device\":{\"example\":\"television\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"command\":{\"required\":true,\"example\":\"Mute\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"remote\"]}]}}}},{\"domain\":\"date\",\"services\":{\"set_value\":{\"fields\":{\"date\":{\"required\":true,\"example\":\"2022/11/01\",\"selector\":{\"date\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"date\"]}]}}}},{\"domain\":\"select\",\"services\":{\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"select\"]}]}}}},{\"domain\":\"image\",\"services\":{\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/image_snapshot.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"image\"]}]}}}},{\"domain\":\"humidifier\",\"services\":{\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}},\"set_mode\":{\"fields\":{\"mode\":{\"required\":true,\"example\":\"away\",\"selector\":{\"state\":{\"attribute\":\"mode\",\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"],\"supported_features\":[1]}]}},\"set_humidity\":{\"fields\":{\"humidity\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":100.0,\"unit_of_measurement\":\"%\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"humidifier\"]}]}}}},{\"domain\":\"weather\",\"services\":{\"get_forecasts\":{\"fields\":{\"type\":{\"required\":true,\"selector\":{\"select\":{\"options\":[\"daily\",\"hourly\",\"twice_daily\"],\"translation_key\":\"forecast_type\",\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"weather\"],\"supported_features\":[1,2,4]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"datetime\",\"services\":{\"set_value\":{\"fields\":{\"datetime\":{\"required\":true,\"example\":\"2023-10-07T21:35:22\",\"selector\":{\"datetime\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"datetime\"]}]}}}},{\"domain\":\"siren\",\"services\":{\"turn_on\":{\"fields\":{\"tone\":{\"example\":\"fire\",\"filter\":{\"supported_features\":[4]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"volume_level\":{\"example\":0.5,\"filter\":{\"supported_features\":[8]},\"required\":false,\"selector\":{\"number\":{\"min\":0.0,\"max\":1.0,\"step\":0.05,\"mode\":\"slider\"}}},\"duration\":{\"example\":15,\"filter\":{\"supported_features\":[16]},\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[1]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[2]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"siren\"],\"supported_features\":[3]}]}}}},{\"domain\":\"text\",\"services\":{\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"Hello world!\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"text\"]}]}}}},{\"domain\":\"time\",\"services\":{\"set_value\":{\"fields\":{\"time\":{\"required\":true,\"example\":\"22:15\",\"selector\":{\"time\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"time\"]}]}}}},{\"domain\":\"counter\",\"services\":{\"increment\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"decrement\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"reset\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"counter\"]}]}}}},{\"domain\":\"input_boolean\",\"services\":{\"reload\":{\"fields\":{}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}},\"toggle\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_boolean\"]}]}}}},{\"domain\":\"input_text\",\"services\":{\"reload\":{\"fields\":{}},\"set_value\":{\"fields\":{\"value\":{\"required\":true,\"example\":\"This is an example text\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_text\"]}]}}}},{\"domain\":\"schedule\",\"services\":{\"reload\":{\"fields\":{}},\"get_schedule\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"schedule\"]}]},\"response\":{\"optional\":false}}}},{\"domain\":\"input_datetime\",\"services\":{\"reload\":{\"fields\":{}},\"set_datetime\":{\"fields\":{\"date\":{\"example\":\"\\\"2019-04-20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"time\":{\"example\":\"\\\"05:04:20\\\"\",\"selector\":{\"time\":{}}},\"datetime\":{\"example\":\"\\\"2019-04-20 05:04:20\\\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"timestamp\":{\"selector\":{\"number\":{\"min\":0.0,\"max\":9.223372036854776e+18,\"mode\":\"box\",\"step\":1.0}}}},\"target\":{\"entity\":[{\"domain\":[\"input_datetime\"]}]}}}},{\"domain\":\"input_select\",\"services\":{\"reload\":{\"fields\":{}},\"select_first\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_last\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_next\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_option\":{\"fields\":{\"option\":{\"required\":true,\"example\":\"\\\"Item A\\\"\",\"selector\":{\"state\":{\"hide_states\":[\"unavailable\",\"unknown\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"select_previous\":{\"fields\":{\"cycle\":{\"default\":true,\"selector\":{\"boolean\":{}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}},\"set_options\":{\"fields\":{\"options\":{\"required\":true,\"example\":\"[\\\"Item A\\\", \\\"Item B\\\", \\\"Item C\\\"]\",\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"input_select\"]}]}}}},{\"domain\":\"timer\",\"services\":{\"reload\":{\"fields\":{}},\"start\":{\"fields\":{\"duration\":{\"example\":\"00:01:00 or 60\",\"selector\":{\"duration\":{\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"pause\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"cancel\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"finish\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}},\"change\":{\"fields\":{\"duration\":{\"default\":0,\"required\":true,\"example\":\"00:01:00, 60 or -60\",\"selector\":{\"duration\":{\"allow_negative\":true,\"enable_second\":true}}}},\"target\":{\"entity\":[{\"domain\":[\"timer\"]}]}}}},{\"domain\":\"input_button\",\"services\":{\"reload\":{\"fields\":{}},\"press\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"input_button\"]}]}}}},{\"domain\":\"conversation\",\"services\":{\"process\":{\"fields\":{\"text\":{\"example\":\"Turn all lights on\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}},\"conversation_id\":{\"example\":\"my_conversation_1\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"response\":{\"optional\":true}},\"reload\":{\"fields\":{\"language\":{\"example\":\"NL\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"agent_id\":{\"example\":\"homeassistant\",\"selector\":{\"conversation_agent\":{}}}}}}},{\"domain\":\"tts\",\"services\":{\"speak\":{\"fields\":{\"media_player_entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"message\":{\"example\":\"My name is hanna\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"cache\":{\"default\":true,\"selector\":{\"boolean\":{}}},\"language\":{\"example\":\"ru\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"options\":{\"advanced\":true,\"example\":\"platform specific\",\"selector\":{\"object\":{\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"tts\"]}]}},\"clear_cache\":{\"fields\":{}}}},{\"domain\":\"camera\",\"services\":{\"enable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"disable_motion_detection\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_off\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"turn_on\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"snapshot\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.jpg\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"play_stream\":{\"fields\":{\"media_player\":{\"required\":true,\"selector\":{\"entity\":{\"domain\":[\"media_player\"],\"reorder\":false,\"multiple\":false}}},\"format\":{\"default\":\"hls\",\"selector\":{\"select\":{\"options\":[\"hls\"],\"multiple\":false,\"sort\":false,\"custom_value\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}},\"record\":{\"fields\":{\"filename\":{\"required\":true,\"example\":\"/tmp/snapshot_{{ entity_id.name }}.mp4\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"duration\":{\"default\":30,\"selector\":{\"number\":{\"min\":1.0,\"max\":3600.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}},\"lookback\":{\"default\":0,\"selector\":{\"number\":{\"min\":0.0,\"max\":300.0,\"unit_of_measurement\":\"seconds\",\"step\":1.0,\"mode\":\"slider\"}}}},\"target\":{\"entity\":[{\"domain\":[\"camera\"]}]}}}},{\"domain\":\"ai_task\",\"services\":{\"generate_data\":{\"fields\":{\"task_name\":{\"example\":\"home summary\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a funny notification that the garage door was left open\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":false,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[1]}],\"reorder\":false,\"multiple\":false}}},\"structure\":{\"required\":false,\"example\":\"{ \\\"name\\\": { \\\"selector\\\": { \\\"text\\\": }, \\\"description\\\": \\\"Name of the user\\\", \\\"required\\\": \\\"True\\\" } } }, \\\"age\\\": { \\\"selector\\\": { \\\"number\\\": }, \\\"description\\\": \\\"Age of the user\\\" } }\",\"selector\":{\"object\":{\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}},\"generate_image\":{\"fields\":{\"task_name\":{\"example\":\"picture of a dog\",\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"instructions\":{\"example\":\"Generate a high quality square image of a dog on transparent background\",\"required\":true,\"selector\":{\"text\":{\"multiline\":true,\"multiple\":false}}},\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"ai_task\"],\"supported_features\":[4]}],\"reorder\":false,\"multiple\":false}}},\"attachments\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"*\"],\"multiple\":true}}}},\"response\":{\"optional\":false}}}},{\"domain\":\"image_processing\",\"services\":{\"scan\":{\"fields\":{},\"target\":{\"entity\":[{\"domain\":[\"image_processing\"]}]}}}},{\"domain\":\"assist_satellite\",\"services\":{\"announce\":{\"fields\":{\"message\":{\"required\":false,\"example\":\"Time to wake up!\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[1]}]}},\"start_conversation\":{\"fields\":{\"start_message\":{\"required\":false,\"example\":\"You left the lights on in the living room. Turn them off?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"start_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"extra_system_prompt\":{\"required\":false,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}}},\"target\":{\"entity\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}]}},\"ask_question\":{\"fields\":{\"entity_id\":{\"required\":true,\"selector\":{\"entity\":{\"filter\":[{\"domain\":[\"assist_satellite\"],\"supported_features\":[2]}],\"reorder\":false,\"multiple\":false}}},\"question\":{\"required\":false,\"example\":\"What kind of music would you like to play?\",\"default\":\"\",\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"question_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"preannounce\":{\"required\":false,\"default\":true,\"selector\":{\"boolean\":{}}},\"preannounce_media_id\":{\"required\":false,\"selector\":{\"media\":{\"accept\":[\"audio/*\"],\"multiple\":false}}},\"answers\":{\"required\":false,\"selector\":{\"object\":{\"label_field\":\"sentences\",\"description_field\":\"id\",\"multiple\":true,\"translation_key\":\"answers\",\"fields\":{\"id\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":false,\"multiline\":false}}},\"sentences\":{\"required\":true,\"selector\":{\"text\":{\"multiple\":true,\"multiline\":false}}}}}}}},\"response\":{\"optional\":false}}}}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/services" + }, + "recorded_at": "2026-04-21T02:58:33.126194+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_models/test_get_event.json b/tests/cassettes/test_models/test_get_event.json new file mode 100644 index 00000000..f1a1c86f --- /dev/null +++ b/tests/cassettes/test_models/test_get_event.json @@ -0,0 +1,98 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "34" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "{\"message\":\"API running.\"}" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T02:58:33.093324+00:00" + }, + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/events", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "218" + ], + "Content-Encoding": [ + "deflate" + ], + "Date": [ + "Tue, 21 Apr 2026 02:58:33 GMT" + ] + }, + "body": { + "string": "[{\"event\":\"*\",\"listener_count\":1},{\"event\":\"logging_changed\",\"listener_count\":1},{\"event\":\"entity_registry_updated\",\"listener_count\":6},{\"event\":\"homeassistant_start\",\"listener_count\":1},{\"event\":\"homeassistant_stop\",\"listener_count\":52},{\"event\":\"core_config_updated\",\"listener_count\":3},{\"event\":\"floor_registry_updated\",\"listener_count\":1},{\"event\":\"label_registry_updated\",\"listener_count\":3},{\"event\":\"device_registry_updated\",\"listener_count\":2},{\"event\":\"labs_updated\",\"listener_count\":5},{\"event\":\"component_loaded\",\"listener_count\":1},{\"event\":\"category_registry_updated\",\"listener_count\":1},{\"event\":\"homeassistant_final_write\",\"listener_count\":5},{\"event\":\"homeassistant_close\",\"listener_count\":6},{\"event\":\"state_changed\",\"listener_count\":3},{\"event\":\"user_removed\",\"listener_count\":1}]" + }, + "protocol": null, + "url": "http://localhost:8123/api/events" + }, + "recorded_at": "2026-04-21T02:58:33.094908+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file From 087032862c199ba70753fab967ed64beee44c444 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Mon, 20 Apr 2026 20:09:15 -0700 Subject: [PATCH 33/34] Simplify CI: drop Docker Compose, run pytest directly against cassettes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tests no longer need a live HA instance — cassettes handle all HTTP interactions. Removes the HA server container, Dockerfile build, entrypoint wait, volume mounts, and hardcoded token from CI. --- .github/workflows/test-suite.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 896f3e4b..915ccb3b 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -40,26 +40,19 @@ jobs: code_functionality: name: "Code Functionality" runs-on: ubuntu-latest - environment: "Test Suite" steps: - name: Checkout uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} - - name: Pre Docker Setup - run: | - mkdir volumes/coverage - - name: Run Test Environment - run: | - docker compose up --build --exit-code-from tests - env: - HOMEASSISTANTAPI_TOKEN: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJkMDE4YjQ4YzMyZTE0ODNhYjY2ZWQzOTZmYzg3ZDAyNiIsImlhdCI6MTY3ODU3NDUwMSwiZXhwIjoxOTkzOTM0NTAxfQ.fyhnfwpont4uE0gn46_Ut_pPmyn4QWv0MDaVAei2PPk" # This is non-sensitive data - - name: Post Docker Setup - run: | - sudo chown -R $USER volumes + - name: Install uv + uses: astral-sh/setup-uv@v4 + - name: Install Dependencies + run: uv sync --group dev + - name: Run Tests + run: uv run pytest --cov --cov-report xml:coverage.xml - name: Upload Coverage Report uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./volumes/coverage/coverage.xml - verbose: true + files: coverage.xml From f3fb58eab9eca9ef2543fa7b9f1f34384f561645 Mon Sep 17 00:00:00 2001 From: Adam Logan Date: Mon, 20 Apr 2026 20:31:57 -0700 Subject: [PATCH 34/34] Fix unauthorized tests to use nimax sessions and record cassettes Tests were making raw connections to localhost:8123 which fails in CI without a live HA instance. Thread nimax_session/nimax_async_session through all four unauthorized tests so requests are cassette-backed. --- .../test_errors/test_async_unauthorized.json | 52 +++++++++++++++++++ .../test_async_websocket_unauthorized.json | 31 +++++++++++ .../test_errors/test_unauthorized.json | 52 +++++++++++++++++++ .../test_websocket_unauthorized.json | 31 +++++++++++ tests/test_errors.py | 28 +++++++--- 5 files changed, 186 insertions(+), 8 deletions(-) create mode 100644 tests/cassettes/test_errors/test_async_unauthorized.json create mode 100644 tests/cassettes/test_errors/test_async_websocket_unauthorized.json create mode 100644 tests/cassettes/test_errors/test_unauthorized.json create mode 100644 tests/cassettes/test_errors/test_websocket_unauthorized.json diff --git a/tests/cassettes/test_errors/test_async_unauthorized.json b/tests/cassettes/test_errors/test_async_unauthorized.json new file mode 100644 index 00000000..7275df4d --- /dev/null +++ b/tests/cassettes/test_errors/test_async_unauthorized.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 401, + "message": "Unauthorized" + }, + "headers": { + "WWW-Authenticate": [ + "Bearer resource_metadata=\"http://localhost:8123/.well-known/oauth-protected-resource\"" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "17" + ], + "Date": [ + "Tue, 21 Apr 2026 03:30:53 GMT" + ] + }, + "body": { + "string": "401: Unauthorized" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T03:30:53.769540+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_async_websocket_unauthorized.json b/tests/cassettes/test_errors/test_async_websocket_unauthorized.json new file mode 100644 index 00000000..71af6a68 --- /dev/null +++ b/tests/cassettes/test_errors/test_async_websocket_unauthorized.json @@ -0,0 +1,31 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T03:30:53.776216+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"lolthisisawrongtokenforsure\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_invalid\",\"message\":\"Invalid access token or password\"}", + "offset_ms": 0 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_unauthorized.json b/tests/cassettes/test_errors/test_unauthorized.json new file mode 100644 index 00000000..8c05afe6 --- /dev/null +++ b/tests/cassettes/test_errors/test_unauthorized.json @@ -0,0 +1,52 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [ + { + "request": { + "method": "GET", + "uri": "http://localhost:8123/api/", + "headers": {}, + "body": null + }, + "response": { + "status": { + "code": 401, + "message": "Unauthorized" + }, + "headers": { + "WWW-Authenticate": [ + "Bearer resource_metadata=\"http://localhost:8123/.well-known/oauth-protected-resource\"" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Referrer-Policy": [ + "no-referrer" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "17" + ], + "Date": [ + "Tue, 21 Apr 2026 03:30:53 GMT" + ] + }, + "body": { + "string": "401: Unauthorized" + }, + "protocol": null, + "url": "http://localhost:8123/api/" + }, + "recorded_at": "2026-04-21T03:30:53.763500+00:00" + } + ], + "websocket_sessions": [] +} \ No newline at end of file diff --git a/tests/cassettes/test_errors/test_websocket_unauthorized.json b/tests/cassettes/test_errors/test_websocket_unauthorized.json new file mode 100644 index 00000000..27b88e6c --- /dev/null +++ b/tests/cassettes/test_errors/test_websocket_unauthorized.json @@ -0,0 +1,31 @@ +{ + "nimax_version": "1.0.0", + "http_interactions": [], + "websocket_sessions": [ + { + "uri": "ws://localhost:8123/api/websocket", + "handshake_recorded_at": "2026-04-21T03:30:53.772646+00:00", + "protocol": null, + "frames": [ + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_required\",\"ha_version\":\"2026.4.3\"}", + "offset_ms": 0 + }, + { + "direction": "send", + "type": "text", + "payload": "{\"access_token\": \"lolthisisawrongtokenforsure\", \"type\": \"auth\"}", + "offset_ms": 0 + }, + { + "direction": "recv", + "type": "text", + "payload": "{\"type\":\"auth_invalid\",\"message\":\"Invalid access token or password\"}", + "offset_ms": 0 + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/test_errors.py b/tests/test_errors.py index 6fd1777a..b169b085 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -40,25 +40,37 @@ WRONG_TOKEN = "lolthisisawrongtokenforsure" # noqa: S105 -def test_unauthorized() -> None: - with pytest.raises(UnauthorizedError), Client(HA_URL, WRONG_TOKEN): +def test_unauthorized(nimax_session: niquests.Session) -> None: + with ( + pytest.raises(UnauthorizedError), + Client(HA_URL, WRONG_TOKEN, session=nimax_session), + ): pass -def test_websocket_unauthorized() -> None: - with pytest.raises(UnauthorizedError), WebsocketClient(HA_WS_URL, WRONG_TOKEN): +def test_websocket_unauthorized(nimax_session: niquests.Session) -> None: + with ( + pytest.raises(UnauthorizedError), + WebsocketClient(HA_WS_URL, WRONG_TOKEN, session=nimax_session), + ): pass -async def test_async_websocket_unauthorized() -> None: +async def test_async_websocket_unauthorized( + nimax_async_session: niquests.AsyncSession, +) -> None: with pytest.raises(UnauthorizedError): - async with AsyncWebsocketClient(HA_WS_URL, WRONG_TOKEN): + async with AsyncWebsocketClient( + HA_WS_URL, + WRONG_TOKEN, + session=nimax_async_session, + ): pass -async def test_async_unauthorized() -> None: +async def test_async_unauthorized(nimax_async_session: niquests.AsyncSession) -> None: with pytest.raises(UnauthorizedError): - async with AsyncClient(HA_URL, WRONG_TOKEN): + async with AsyncClient(HA_URL, WRONG_TOKEN, session=nimax_async_session): pass